From 72def5b48a80fcbf1b1542cc355dbe06a44bb223 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 23 Aug 2023 02:42:21 -0400 Subject: [PATCH 1/9] refactor!: separate heredoc_body and heredoc_end --- grammar.js | 40 +++++---- src/scanner.c | 67 ++++++++++----- test/corpus/commands.txt | 171 ++++++++++++++++++++++++--------------- 3 files changed, 173 insertions(+), 105 deletions(-) diff --git a/grammar.js b/grammar.js index b8740cbb..666aae22 100644 --- a/grammar.js +++ b/grammar.js @@ -48,10 +48,10 @@ module.exports = grammar({ externals: $ => [ $.heredoc_start, - $._simple_heredoc_body, + $.simple_heredoc_body, $._heredoc_body_beginning, $._heredoc_body_middle, - $._heredoc_body_end, + $.heredoc_end, $.file_descriptor, $._empty_value, $._concat, @@ -88,17 +88,17 @@ module.exports = grammar({ _statements: $ => prec(1, seq( repeat(seq( $._statement, - optional(seq('\n', $.heredoc_body)), + optional(seq('\n', choice($._heredoc_body, $._simple_heredoc_body))), $._terminator, )), $._statement, - optional(seq('\n', $.heredoc_body)), + optional(seq('\n', choice($._heredoc_body, $._simple_heredoc_body))), optional($._terminator), )), _statements2: $ => repeat1(seq( $._statement, - optional(seq('\n', $.heredoc_body)), + optional(seq('\n', choice($._heredoc_body, $._simple_heredoc_body))), $._terminator, )), @@ -438,18 +438,24 @@ module.exports = grammar({ $.heredoc_start, ), - heredoc_body: $ => choice( - $._simple_heredoc_body, - seq( - $._heredoc_body_beginning, - repeat(choice( - $.expansion, - $.simple_expansion, - $.command_substitution, - $._heredoc_body_middle, - )), - $._heredoc_body_end, - ), + _heredoc_body: $ => seq( + $.heredoc_body, + $.heredoc_end, + ), + + heredoc_body: $ => seq( + $._heredoc_body_beginning, + repeat(choice( + $.expansion, + $.simple_expansion, + $.command_substitution, + $._heredoc_body_middle, + )), + ), + + _simple_heredoc_body: $ => seq( + $.simple_heredoc_body, + $.heredoc_end, ), herestring_redirect: $ => seq( diff --git a/src/scanner.c b/src/scanner.c index 270ec781..94b4ce01 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -42,7 +42,7 @@ enum TokenType { SIMPLE_HEREDOC_BODY, HEREDOC_BODY_BEGINNING, HEREDOC_BODY_MIDDLE, - HEREDOC_BODY_END, + HEREDOC_END, FILE_DESCRIPTOR, EMPTY_VALUE, CONCAT, @@ -81,11 +81,18 @@ static inline void advance(TSLexer *lexer) { lexer->advance(lexer, false); } static inline void skip(TSLexer *lexer) { lexer->advance(lexer, true); } static inline bool in_error_recovery(const bool *valid_symbols) { - return valid_symbols[HEREDOC_START] && valid_symbols[HEREDOC_BODY_END] && + return valid_symbols[HEREDOC_START] && valid_symbols[HEREDOC_END] && valid_symbols[FILE_DESCRIPTOR] && valid_symbols[EMPTY_VALUE] && valid_symbols[CONCAT] && valid_symbols[REGEX]; } +static inline void reset(Scanner *scanner) { + scanner->heredoc_is_raw = false; + scanner->started_heredoc = false; + scanner->heredoc_allows_indent = false; + STRING_CLEAR(scanner->heredoc_delimiter); +} + static unsigned serialize(Scanner *scanner, char *buffer) { if (scanner->heredoc_delimiter.len + 3 >= TREE_SITTER_SERIALIZATION_BUFFER_SIZE) { @@ -101,10 +108,7 @@ static unsigned serialize(Scanner *scanner, char *buffer) { static void deserialize(Scanner *scanner, const char *buffer, unsigned length) { if (length == 0) { - scanner->heredoc_is_raw = false; - scanner->started_heredoc = false; - scanner->heredoc_allows_indent = false; - STRING_CLEAR(scanner->heredoc_delimiter); + reset(scanner); } else { scanner->heredoc_is_raw = buffer[0]; scanner->started_heredoc = buffer[1]; @@ -195,10 +199,7 @@ static bool scan_heredoc_content(Scanner *scanner, TSLexer *lexer, switch (lexer->lookahead) { case '\0': { if (lexer->eof(lexer) && did_advance) { - scanner->heredoc_is_raw = false; - scanner->started_heredoc = false; - scanner->heredoc_allows_indent = false; - STRING_CLEAR(scanner->heredoc_delimiter); + reset(scanner); lexer->result_symbol = end_type; return true; } @@ -227,21 +228,30 @@ static bool scan_heredoc_content(Scanner *scanner, TSLexer *lexer, } case '\n': { + if (!did_advance) { + skip(lexer); + } else { + advance(lexer); + } did_advance = true; - advance(lexer); if (scanner->heredoc_allows_indent) { while (iswspace(lexer->lookahead)) { advance(lexer); } } - if (scan_heredoc_end_identifier(scanner, lexer)) { - scanner->heredoc_is_raw = false; - scanner->started_heredoc = false; - scanner->heredoc_allows_indent = false; - STRING_CLEAR(scanner->heredoc_delimiter); + if (end_type != SIMPLE_HEREDOC_BODY && + scan_heredoc_end_identifier(scanner, lexer)) { + reset(scanner); lexer->result_symbol = end_type; return true; } + if (end_type == SIMPLE_HEREDOC_BODY) { + lexer->result_symbol = end_type; + lexer->mark_end(lexer); + if (scan_heredoc_end_identifier(scanner, lexer)) { + return true; + } + } break; } @@ -252,14 +262,19 @@ static bool scan_heredoc_content(Scanner *scanner, TSLexer *lexer, while (iswspace(lexer->lookahead)) { skip(lexer); } - if (scan_heredoc_end_identifier(scanner, lexer)) { - scanner->heredoc_is_raw = false; - scanner->started_heredoc = false; - scanner->heredoc_allows_indent = false; - STRING_CLEAR(scanner->heredoc_delimiter); + if (end_type != SIMPLE_HEREDOC_BODY && + scan_heredoc_end_identifier(scanner, lexer)) { + reset(scanner); lexer->result_symbol = end_type; return true; } + if (end_type == SIMPLE_HEREDOC_BODY) { + lexer->result_symbol = end_type; + lexer->mark_end(lexer); + if (scan_heredoc_end_identifier(scanner, lexer)) { + return true; + } + } } did_advance = true; advance(lexer); @@ -325,11 +340,19 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { SIMPLE_HEREDOC_BODY); } + if (valid_symbols[HEREDOC_END]) { + if (scan_heredoc_end_identifier(scanner, lexer)) { + reset(scanner); + lexer->result_symbol = HEREDOC_END; + return true; + } + } + if (valid_symbols[HEREDOC_BODY_MIDDLE] && scanner->heredoc_delimiter.len > 0 && scanner->started_heredoc && !in_error_recovery(valid_symbols)) { return scan_heredoc_content(scanner, lexer, HEREDOC_BODY_MIDDLE, - HEREDOC_BODY_END); + HEREDOC_END); } if (valid_symbols[HEREDOC_START] && !in_error_recovery(valid_symbols)) { diff --git a/test/corpus/commands.txt b/test/corpus/commands.txt index 7362bc3b..bcf8076a 100644 --- a/test/corpus/commands.txt +++ b/test/corpus/commands.txt @@ -157,13 +157,22 @@ JS (program (redirected_statement - (command (command_name (word))) - (heredoc_redirect (heredoc_start))) - (heredoc_body) + (command + (command_name + (word))) + (heredoc_redirect + (heredoc_start))) + (simple_heredoc_body) + (heredoc_end) (redirected_statement - (command (command_name (word)) (word)) - (heredoc_redirect (heredoc_start))) - (heredoc_body)) + (command + (command_name + (word)) + (word)) + (heredoc_redirect + (heredoc_start))) + (simple_heredoc_body) + (heredoc_end)) =============================== Heredocs with variables @@ -179,12 +188,20 @@ exit (program (redirected_statement - (command (command_name (word))) - (heredoc_redirect (heredoc_start))) + (command + (command_name + (word))) + (heredoc_redirect + (heredoc_start))) (heredoc_body - (simple_expansion (variable_name)) - (expansion (variable_name))) - (command (command_name (word)))) + (simple_expansion + (variable_name)) + (expansion + (variable_name))) + (heredoc_end) + (command + (command_name + (word)))) ================================= Heredocs with file redirects @@ -200,16 +217,26 @@ wc -l $tmpfile (program (redirected_statement - (command (command_name (word))) - (heredoc_redirect (heredoc_start)) - (file_redirect (simple_expansion (variable_name)))) + (command + (command_name + (word))) + (heredoc_redirect + (heredoc_start)) + (file_redirect + (simple_expansion + (variable_name)))) (heredoc_body - (simple_expansion (variable_name)) - (expansion (variable_name))) + (simple_expansion + (variable_name)) + (expansion + (variable_name))) + (heredoc_end) (command - (command_name (word)) + (command_name + (word)) (word) - (simple_expansion (variable_name)))) + (simple_expansion + (variable_name)))) ================================= Heredocs with pipes @@ -224,10 +251,17 @@ EOF (program (pipeline (redirected_statement - (command (command_name (word))) - (heredoc_redirect (heredoc_start))) - (command (command_name (word)) (word))) - (heredoc_body)) + (command + (command_name + (word))) + (heredoc_redirect + (heredoc_start))) + (command + (command_name + (word)) + (word))) + (simple_heredoc_body) + (heredoc_end)) ====================================== Heredocs with escaped expansions @@ -239,7 +273,7 @@ EOF --- -(program (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (heredoc_body)) +(program (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (simple_heredoc_body) (heredoc_end)) ====================================== Quoted Heredocs @@ -264,10 +298,10 @@ EOF --- (program - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (heredoc_body) - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (heredoc_body) - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (heredoc_body) - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (heredoc_body)) + (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (simple_heredoc_body) (heredoc_end) + (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (simple_heredoc_body) (heredoc_end) + (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (simple_heredoc_body) (heredoc_end) + (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (simple_heredoc_body) (heredoc_end)) ========================================== Heredocs with indented closing delimiters @@ -288,7 +322,8 @@ usage() { (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) - (heredoc_body (expansion (special_variable_name) (word)))))) + (heredoc_body (expansion (special_variable_name) (word))) + (heredoc_end)))) ========================================== Heredocs with empty bodies @@ -311,39 +346,43 @@ EOF --- (program - (redirected_statement - body: (command - name: (command_name - (word))) - redirect: (heredoc_redirect - (heredoc_start))) - (heredoc_body) - (redirected_statement - body: (command - name: (command_name - (word))) - redirect: (heredoc_redirect - (heredoc_start))) - (heredoc_body) - (function_definition - name: (word) - body: (compound_statement - (redirected_statement - body: (command - name: (command_name - (word))) - redirect: (heredoc_redirect - (heredoc_start))) - (heredoc_body))) - (redirected_statement - body: (command - name: (command_name - (word))) - redirect: (heredoc_redirect - (heredoc_start)) - redirect: (file_redirect - destination: (word))) - (heredoc_body)) + (redirected_statement + body: (command + name: (command_name + (word))) + redirect: (heredoc_redirect + (heredoc_start))) + (simple_heredoc_body) + (heredoc_end) + (redirected_statement + body: (command + name: (command_name + (word))) + redirect: (heredoc_redirect + (heredoc_start))) + (simple_heredoc_body) + (heredoc_end) + (function_definition + name: (word) + body: (compound_statement + (redirected_statement + body: (command + name: (command_name + (word))) + redirect: (heredoc_redirect + (heredoc_start))) + (simple_heredoc_body) + (heredoc_end))) + (redirected_statement + body: (command + name: (command_name + (word))) + redirect: (heredoc_redirect + (heredoc_start)) + redirect: (file_redirect + destination: (word))) + (simple_heredoc_body) + (heredoc_end)) ========================================== Heredocs with weird characters @@ -372,11 +411,11 @@ Hello. --- (program - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (heredoc_body) - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (heredoc_body) - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (heredoc_body) - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (heredoc_body) - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (heredoc_body)) + (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (simple_heredoc_body) (heredoc_end) + (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (simple_heredoc_body) (heredoc_end) + (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (simple_heredoc_body) (heredoc_end) + (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (simple_heredoc_body) (heredoc_end) + (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (simple_heredoc_body) (heredoc_end)) ========================================== Herestrings From f8d7e820feea2468ba0e3e9914d29645d2b2cfdf Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 23 Aug 2023 03:46:31 -0400 Subject: [PATCH 2/9] fix: move heredoc bodies inside heredoc_redirect --- grammar.js | 13 ++++- src/scanner.c | 34 +++++------ test/corpus/commands.txt | 120 +++++++++++++++++++-------------------- 3 files changed, 86 insertions(+), 81 deletions(-) diff --git a/grammar.js b/grammar.js index 666aae22..810df6aa 100644 --- a/grammar.js +++ b/grammar.js @@ -88,17 +88,14 @@ module.exports = grammar({ _statements: $ => prec(1, seq( repeat(seq( $._statement, - optional(seq('\n', choice($._heredoc_body, $._simple_heredoc_body))), $._terminator, )), $._statement, - optional(seq('\n', choice($._heredoc_body, $._simple_heredoc_body))), optional($._terminator), )), _statements2: $ => repeat1(seq( $._statement, - optional(seq('\n', choice($._heredoc_body, $._simple_heredoc_body))), $._terminator, )), @@ -436,6 +433,16 @@ module.exports = grammar({ field('descriptor', optional($.file_descriptor)), choice('<<', '<<-'), $.heredoc_start, + optional(seq( + choice(alias($._heredoc_pipeline, $.pipeline), $.file_redirect), + )), + '\n', + choice($._heredoc_body, $._simple_heredoc_body), + ), + + _heredoc_pipeline: $ => seq( + choice('|', '|&'), + $._statement, ), _heredoc_body: $ => seq( diff --git a/src/scanner.c b/src/scanner.c index 94b4ce01..a5ef953c 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -224,6 +224,12 @@ static bool scan_heredoc_content(Scanner *scanner, TSLexer *lexer, scanner->started_heredoc = true; return true; } + if (middle_type == HEREDOC_BODY_BEGINNING && + lexer->get_column(lexer) == 0) { + lexer->result_symbol = middle_type; + scanner->started_heredoc = true; + return true; + } return false; } @@ -239,19 +245,12 @@ static bool scan_heredoc_content(Scanner *scanner, TSLexer *lexer, advance(lexer); } } - if (end_type != SIMPLE_HEREDOC_BODY && - scan_heredoc_end_identifier(scanner, lexer)) { - reset(scanner); - lexer->result_symbol = end_type; + lexer->result_symbol = + scanner->started_heredoc ? middle_type : end_type; + lexer->mark_end(lexer); + if (scan_heredoc_end_identifier(scanner, lexer)) { return true; } - if (end_type == SIMPLE_HEREDOC_BODY) { - lexer->result_symbol = end_type; - lexer->mark_end(lexer); - if (scan_heredoc_end_identifier(scanner, lexer)) { - return true; - } - } break; } @@ -262,11 +261,11 @@ static bool scan_heredoc_content(Scanner *scanner, TSLexer *lexer, while (iswspace(lexer->lookahead)) { skip(lexer); } - if (end_type != SIMPLE_HEREDOC_BODY && - scan_heredoc_end_identifier(scanner, lexer)) { - reset(scanner); - lexer->result_symbol = end_type; - return true; + if (end_type != SIMPLE_HEREDOC_BODY) { + lexer->result_symbol = middle_type; + if (scan_heredoc_end_identifier(scanner, lexer)) { + return true; + } } if (end_type == SIMPLE_HEREDOC_BODY) { lexer->result_symbol = end_type; @@ -333,7 +332,8 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { } } - if (valid_symbols[HEREDOC_BODY_BEGINNING] && + if ((valid_symbols[HEREDOC_BODY_BEGINNING] || + valid_symbols[SIMPLE_HEREDOC_BODY]) && scanner->heredoc_delimiter.len > 0 && !scanner->started_heredoc && !in_error_recovery(valid_symbols)) { return scan_heredoc_content(scanner, lexer, HEREDOC_BODY_BEGINNING, diff --git a/test/corpus/commands.txt b/test/corpus/commands.txt index bcf8076a..62822431 100644 --- a/test/corpus/commands.txt +++ b/test/corpus/commands.txt @@ -161,18 +161,18 @@ JS (command_name (word))) (heredoc_redirect - (heredoc_start))) - (simple_heredoc_body) - (heredoc_end) + (heredoc_start) + (simple_heredoc_body) + (heredoc_end))) (redirected_statement (command (command_name (word)) (word)) (heredoc_redirect - (heredoc_start))) - (simple_heredoc_body) - (heredoc_end)) + (heredoc_start) + (simple_heredoc_body) + (heredoc_end)))) =============================== Heredocs with variables @@ -192,13 +192,13 @@ exit (command_name (word))) (heredoc_redirect - (heredoc_start))) - (heredoc_body - (simple_expansion - (variable_name)) - (expansion - (variable_name))) - (heredoc_end) + (heredoc_start) + (heredoc_body + (simple_expansion + (variable_name)) + (expansion + (variable_name))) + (heredoc_end))) (command (command_name (word)))) @@ -221,16 +221,16 @@ wc -l $tmpfile (command_name (word))) (heredoc_redirect - (heredoc_start)) - (file_redirect - (simple_expansion - (variable_name)))) - (heredoc_body - (simple_expansion - (variable_name)) - (expansion - (variable_name))) - (heredoc_end) + (heredoc_start) + (file_redirect + (simple_expansion + (variable_name))) + (heredoc_body + (simple_expansion + (variable_name)) + (expansion + (variable_name))) + (heredoc_end))) (command (command_name (word)) @@ -249,19 +249,19 @@ EOF --- (program - (pipeline - (redirected_statement - (command - (command_name - (word))) - (heredoc_redirect - (heredoc_start))) + (redirected_statement (command (command_name - (word)) - (word))) - (simple_heredoc_body) - (heredoc_end)) + (word))) + (heredoc_redirect + (heredoc_start) + (pipeline + (command + (command_name + (word)) + (word))) + (simple_heredoc_body) + (heredoc_end)))) ====================================== Heredocs with escaped expansions @@ -273,7 +273,7 @@ EOF --- -(program (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (simple_heredoc_body) (heredoc_end)) +(program (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start) (simple_heredoc_body) (heredoc_end)))) ====================================== Quoted Heredocs @@ -298,10 +298,10 @@ EOF --- (program - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (simple_heredoc_body) (heredoc_end) - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (simple_heredoc_body) (heredoc_end) - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (simple_heredoc_body) (heredoc_end) - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (simple_heredoc_body) (heredoc_end)) + (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start) (simple_heredoc_body) (heredoc_end))) + (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start) (simple_heredoc_body) (heredoc_end))) + (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start) (simple_heredoc_body) (heredoc_end))) + (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start) (simple_heredoc_body) (heredoc_end)))) ========================================== Heredocs with indented closing delimiters @@ -321,9 +321,7 @@ usage() { (compound_statement (redirected_statement (command (command_name (word))) - (heredoc_redirect (heredoc_start))) - (heredoc_body (expansion (special_variable_name) (word))) - (heredoc_end)))) + (heredoc_redirect (heredoc_start) (heredoc_body (expansion (special_variable_name) (word))) (heredoc_end)))))) ========================================== Heredocs with empty bodies @@ -351,17 +349,17 @@ EOF name: (command_name (word))) redirect: (heredoc_redirect - (heredoc_start))) - (simple_heredoc_body) - (heredoc_end) + (heredoc_start) + (simple_heredoc_body) + (heredoc_end))) (redirected_statement body: (command name: (command_name (word))) redirect: (heredoc_redirect - (heredoc_start))) - (simple_heredoc_body) - (heredoc_end) + (heredoc_start) + (simple_heredoc_body) + (heredoc_end))) (function_definition name: (word) body: (compound_statement @@ -370,19 +368,19 @@ EOF name: (command_name (word))) redirect: (heredoc_redirect - (heredoc_start))) - (simple_heredoc_body) - (heredoc_end))) + (heredoc_start) + (simple_heredoc_body) + (heredoc_end))))) (redirected_statement body: (command name: (command_name (word))) redirect: (heredoc_redirect - (heredoc_start)) - redirect: (file_redirect - destination: (word))) - (simple_heredoc_body) - (heredoc_end)) + (heredoc_start) + (file_redirect + destination: (word)) + (simple_heredoc_body) + (heredoc_end)))) ========================================== Heredocs with weird characters @@ -411,11 +409,11 @@ Hello. --- (program - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (simple_heredoc_body) (heredoc_end) - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (simple_heredoc_body) (heredoc_end) - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (simple_heredoc_body) (heredoc_end) - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (simple_heredoc_body) (heredoc_end) - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start))) (simple_heredoc_body) (heredoc_end)) + (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start) (simple_heredoc_body) (heredoc_end))) + (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start) (simple_heredoc_body) (heredoc_end))) + (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start) (simple_heredoc_body) (heredoc_end))) + (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start) (simple_heredoc_body) (heredoc_end))) + (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start) (simple_heredoc_body) (heredoc_end)))) ========================================== Herestrings From 78bbb275e43abf7590a533a640fd0e25345a1590 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 23 Aug 2023 05:11:13 -0400 Subject: [PATCH 3/9] fix: arithmetic expansions --- grammar.js | 10 +++++--- test/corpus/commands.txt | 6 ++--- test/corpus/literals.txt | 52 +++++++++++++++++++++++++++++++++++++- test/corpus/statements.txt | 44 ++++++++++++++++++++------------ 4 files changed, 87 insertions(+), 25 deletions(-) diff --git a/grammar.js b/grammar.js index 810df6aa..a4e8b6f3 100644 --- a/grammar.js +++ b/grammar.js @@ -562,7 +562,7 @@ module.exports = grammar({ $.brace_expression, ), - arithmetic_expansion: $ => seq('$((', $._arithmetic_expression, '))'), + arithmetic_expansion: $ => seq(choice('$((', '(('), commaSep1($._arithmetic_expression), '))'), brace_expression: $ => seq( alias($._brace_start, '{'), @@ -583,10 +583,12 @@ module.exports = grammar({ _arithmetic_literal: $ => prec(1, choice( $.number, + $.test_operator, $.subscript, $.simple_expansion, $.expansion, $._simple_variable_name, + $.variable_name, )), _arithmetic_binary_expression: $ => prec.left(2, choice( @@ -619,12 +621,12 @@ module.exports = grammar({ ), _arithmetic_unary_expression: $ => choice( - prec(1, seq( + prec(3, seq( token(prec(1, choice('-', '+', '~', '++', '--'))), $._arithmetic_expression, )), - prec.right(1, seq( - choice('!', $.test_operator), + prec.right(3, seq( + '!', $._arithmetic_expression, )), ), diff --git a/test/corpus/commands.txt b/test/corpus/commands.txt index 62822431..6fecc6b5 100644 --- a/test/corpus/commands.txt +++ b/test/corpus/commands.txt @@ -469,15 +469,13 @@ ${array[((number+1))]} (expansion (subscript (variable_name) - (parenthesized_expression - (parenthesized_expression - (concatenation (simple_expansion (variable_name)) (word)))))))) + (arithmetic_expansion (binary_expression (simple_expansion (variable_name)) (number))))))) (command (command_name (expansion (subscript (variable_name) - (parenthesized_expression (parenthesized_expression (word)))))))) + (arithmetic_expansion (binary_expression (variable_name) (number)))))))) ========================================== Bare $ diff --git a/test/corpus/literals.txt b/test/corpus/literals.txt index c95c113b..938c5214 100644 --- a/test/corpus/literals.txt +++ b/test/corpus/literals.txt @@ -843,6 +843,11 @@ Arithmetic expansions echo $((1 + 2 - 3 * 4 / 5)) a=$((6 % 7 ** 8 << 9 >> 10 & 11 | 12 ^ 13)) $(((${1:-${SECONDS}} % 12) + 144)) +((foo=0)) +echo $((bar=1)) +echo $((-1, 1)) +echo $((! -a || ~ +b || ++c || --d)) +echo $((foo-- || bar++)) -------------------------------------------------------------------------------- @@ -889,7 +894,52 @@ $(((${1:-${SECONDS}} % 12) + 144)) (expansion (variable_name))) (number))) - (number)))))) + (number))))) + (command + (command_name + (arithmetic_expansion + (binary_expression + (variable_name) + (number))))) + (command + (command_name + (word)) + (arithmetic_expansion + (binary_expression + (variable_name) + (number)))) + (command + (command_name + (word)) + (arithmetic_expansion + (unary_expression + (number)) + (number))) + (command + (command_name + (word)) + (arithmetic_expansion + (binary_expression + (binary_expression + (binary_expression + (unary_expression + (test_operator)) + (unary_expression + (unary_expression + (variable_name)))) + (unary_expression + (variable_name))) + (unary_expression + (variable_name))))) + (command + (command_name + (word)) + (arithmetic_expansion + (postfix_expression + (binary_expression + (postfix_expression + (variable_name)) + (variable_name)))))) ================================================================================ Concatenation with double backticks diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index 0d419b94..fb35b872 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -393,11 +393,13 @@ done ) (simple_expansion (variable_name))) (if_statement - (test_command - (binary_expression - (simple_expansion - (variable_name)) - (regex))) + (command + (command_name + (arithmetic_expansion + (binary_expression + (simple_expansion + (variable_name)) + (number))))) (command (command_name (word)))))) @@ -421,8 +423,12 @@ done ) (command_substitution (redirected_statement (list - (test_command - (word)) + (command + (command_name + (arithmetic_expansion + (binary_expression + (variable_name) + (number))))) (command (command_name (word)) @@ -470,8 +476,12 @@ done ) (command_substitution (redirected_statement (list - (test_command - (word)) + (command + (command_name + (arithmetic_expansion + (binary_expression + (variable_name) + (number))))) (command (command_name (word)) @@ -935,13 +945,15 @@ fi (program (if_statement - (test_command - (ternary_expression - (binary_expression - (number) - (number)) - (number) - (number))) + (command + (command_name + (arithmetic_expansion + (ternary_expression + (binary_expression + (number) + (number)) + (number) + (number))))) (command (command_name (word)) From afd2e653342789654d815ba6165ca63c8ed60807 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 23 Aug 2023 10:55:59 -0400 Subject: [PATCH 4/9] fix: improve parameter expansions --- grammar.js | 45 +++++++++++-- src/scanner.c | 87 +++++++++++++++++++----- test/corpus/commands.txt | 2 +- test/corpus/literals.txt | 134 +++++++++++++++++++++++++++++++------ test/corpus/statements.txt | 2 +- 5 files changed, 227 insertions(+), 43 deletions(-) diff --git a/grammar.js b/grammar.js index a4e8b6f3..dfab024a 100644 --- a/grammar.js +++ b/grammar.js @@ -31,6 +31,7 @@ module.exports = grammar({ [$.compound_statement], [$.redirected_statement, $.command], [$.redirected_statement, $.command_substitution], + [$._expansion_body], ], inline: $ => [ @@ -57,6 +58,7 @@ module.exports = grammar({ $._concat, $.variable_name, // Variable name followed by an operator like '=' or '+=' $.regex, + $._regex_no_slash, $.extglob_pattern, $._bare_dollar, $._brace_start, @@ -718,9 +720,45 @@ module.exports = grammar({ ), _expansion_body: $ => choice( seq( - $.variable_name, - '=', - optional($._literal), + choice($.variable_name, $._special_variable_name), + choice( + seq( + field('operator', choice('=', ':=', '-', ':-', '+', ':+', '?', ':?')), + repeat(choice($._literal, $.array)), + ), + seq( + field('operator', choice('#', '##', '%', '%%')), + choice($.regex, alias(')', $.regex), $.string, $.raw_string), + ), + seq( + choice('/', '//', '/#', '/%'), + alias($._regex_no_slash, $.regex), + // This can be elided + optional(seq( + '/', + optional(seq( + $._literal, + optional('/'), + )), + )), + ), + seq( + choice(',', ',,', '^', '^^'), + $.regex, + ), + seq( + ':', + choice($._simple_variable_name, $.number, $.arithmetic_expansion, $.expansion, '\n'), + optional(seq( + ':', + optional(choice($._simple_variable_name, $.number, $.arithmetic_expansion, '\n')), + )), + ), + seq( + '@', + field('operator', choice('U', 'u', 'L', 'Q', 'E', 'P', 'A', 'K', 'a', 'k')), + ), + ), ), seq( choice( @@ -731,7 +769,6 @@ module.exports = grammar({ ), optional(seq( choice( - alias(token(prec(1, '/')), '/'), alias(token(prec(1, ',')), ','), alias(token(prec(1, ',,')), ',,'), alias(token(prec(1, '^')), '^'), diff --git a/src/scanner.c b/src/scanner.c index a5ef953c..23542ba1 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -48,6 +48,7 @@ enum TokenType { CONCAT, VARIABLE_NAME, REGEX, + REGEX_NO_SLASH, EXTGLOB_PATTERN, BARE_DOLLAR, BRACE_START, @@ -359,8 +360,9 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { return scan_heredoc_start(scanner, lexer); } - if (valid_symbols[VARIABLE_NAME] || valid_symbols[FILE_DESCRIPTOR] || - valid_symbols[HEREDOC_ARROW]) { + if ((valid_symbols[VARIABLE_NAME] || valid_symbols[FILE_DESCRIPTOR] || + valid_symbols[HEREDOC_ARROW]) && + !valid_symbols[REGEX_NO_SLASH]) { for (;;) { if (lexer->lookahead == ' ' || lexer->lookahead == '\t' || lexer->lookahead == '\r' || @@ -381,6 +383,20 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { } } + // no '*', '@', '?', '-', '$', '0', '_' + if (lexer->lookahead == '*' || lexer->lookahead == '@' || + lexer->lookahead == '?' || lexer->lookahead == '-' || + lexer->lookahead == '$' || lexer->lookahead == '0' || + lexer->lookahead == '_') { + lexer->mark_end(lexer); + advance(lexer); + if (lexer->lookahead == '=' || lexer->lookahead == '[' || + lexer->lookahead == ':' || lexer->lookahead == '-' || + lexer->lookahead == '%' || lexer->lookahead == '#' || + lexer->lookahead == '/') + return false; + } + if (valid_symbols[HEREDOC_ARROW] && lexer->lookahead == '<') { advance(lexer); if (lexer->lookahead == '<') { @@ -434,30 +450,46 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { if (lexer->lookahead == '+') { lexer->mark_end(lexer); advance(lexer); - if (lexer->lookahead == '=') { + if (lexer->lookahead == '=' || lexer->lookahead == ':' || + valid_symbols[CLOSING_BRACE]) { lexer->result_symbol = VARIABLE_NAME; return true; } return false; } - if (lexer->lookahead == '=' || lexer->lookahead == '[') { + if (lexer->lookahead == '=' || lexer->lookahead == '[' || + lexer->lookahead == ':' || lexer->lookahead == '%' || + (lexer->lookahead == '#' && !is_number) || + lexer->lookahead == '/') { + lexer->mark_end(lexer); lexer->result_symbol = VARIABLE_NAME; return true; } + + if (lexer->lookahead == '?') { + lexer->mark_end(lexer); + advance(lexer); + lexer->result_symbol = VARIABLE_NAME; + return isalpha(lexer->lookahead); + } } return false; } - if (valid_symbols[REGEX]) { - while (iswspace(lexer->lookahead)) { - skip(lexer); + if (valid_symbols[REGEX] || + valid_symbols[REGEX_NO_SLASH] && !in_error_recovery(valid_symbols)) { + if (valid_symbols[REGEX]) { + while (iswspace(lexer->lookahead)) { + skip(lexer); + } } - if (lexer->lookahead != '"' && lexer->lookahead != '\'' && - lexer->lookahead != '$') { + if (lexer->lookahead != '"' && lexer->lookahead != '\'' || + (lexer->lookahead == '$' && valid_symbols[REGEX_NO_SLASH])) { typedef struct { bool done; + bool advanced_once; uint32_t paren_depth; uint32_t bracket_depth; uint32_t brace_depth; @@ -465,7 +497,7 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { lexer->mark_end(lexer); - State state = {false, 0, 0, 0}; + State state = {false, false, 0, 0, 0}; while (!state.done) { switch (lexer->lookahead) { case '\0': @@ -500,15 +532,40 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { } if (!state.done) { - bool was_space = iswspace(lexer->lookahead); - advance(lexer); - if (!was_space) { - lexer->mark_end(lexer); + if (valid_symbols[REGEX]) { + bool was_space = iswspace(lexer->lookahead); + advance(lexer); + state.advanced_once = true; + if (!was_space) { + lexer->mark_end(lexer); + } + } else if (valid_symbols[REGEX_NO_SLASH]) { + if (lexer->lookahead == '/') { + lexer->mark_end(lexer); + lexer->result_symbol = REGEX_NO_SLASH; + return true; + } + if (lexer->lookahead == '\\') { + advance(lexer); + if (!lexer->eof(lexer)) { + advance(lexer); + } + } else { + bool was_space = iswspace(lexer->lookahead); + advance(lexer); + if (!was_space) { + lexer->mark_end(lexer); + } + } } } } - lexer->result_symbol = REGEX; + lexer->result_symbol = + valid_symbols[REGEX_NO_SLASH] ? REGEX_NO_SLASH : REGEX; + if (valid_symbols[REGEX] && !state.advanced_once) { + return false; + } return true; } } diff --git a/test/corpus/commands.txt b/test/corpus/commands.txt index 6fecc6b5..12cd34e7 100644 --- a/test/corpus/commands.txt +++ b/test/corpus/commands.txt @@ -321,7 +321,7 @@ usage() { (compound_statement (redirected_statement (command (command_name (word))) - (heredoc_redirect (heredoc_start) (heredoc_body (expansion (special_variable_name) (word))) (heredoc_end)))))) + (heredoc_redirect (heredoc_start) (heredoc_body (expansion (special_variable_name) (regex))) (heredoc_end)))))) ========================================== Heredocs with empty bodies diff --git a/test/corpus/literals.txt b/test/corpus/literals.txt index 938c5214..f24ff1b4 100644 --- a/test/corpus/literals.txt +++ b/test/corpus/literals.txt @@ -121,7 +121,7 @@ echo ${abc: (word)) (expansion (variable_name) - (word))) + (regex))) (command (command_name (word)) @@ -192,74 +192,73 @@ J=${K^^[L]} (string (expansion (variable_name) - (word) - (word)))) + (regex)))) (variable_assignment (variable_name) (string (expansion (variable_name) - (word)))) + (regex)))) (variable_assignment (variable_name) (string (expansion (variable_name) - (word)))) + (regex)))) (variable_assignment (variable_name) (string (expansion (variable_name) - (word)))) + (regex)))) (variable_assignment (variable_name) (string (expansion (variable_name) - (word) - (word)))) + (regex)))) (variable_assignment (variable_name) (string (expansion (variable_name) - (word)))) + (regex)))) (variable_assignment (variable_name) (string (expansion (variable_name) - (array)))) + (regex)))) (variable_assignment (variable_name) (string (expansion - (variable_name)))) + (variable_name) + (regex)))) (variable_assignment (variable_name) (string (expansion - (variable_name)))) + (variable_name) + (regex)))) (variable_assignment (variable_name) (string (expansion - (variable_name)))) + (variable_name) + (regex)))) (variable_assignment (variable_name) (string (expansion (variable_name) - (word) - (word)))) + (regex)))) (variable_assignment (variable_name) (string (expansion (variable_name) - (word) - (word)))) + (regex)))) (variable_assignment (variable_name) (string @@ -275,6 +274,99 @@ J=${K^^[L]} (variable_name) (regex)))) +================================================================================ +More Variable expansions with operators +================================================================================ + +${parameter-default} +${parameter:-default} +${parameter=default} +${parameter:=default} +${parameter+alt_value} +${parameter:+alt_value} +${parameter?err_msg} +${parameter:?err_msg} +${var%Pattern} +${var%%Pattern} +${var:pos} +${var:pos:len} +${MATRIX:$(($RANDOM%${#MATRIX})):1} + +-------------------------------------------------------------------------------- + +(program + (command + (command_name + (expansion + (variable_name) + (word)))) + (command + (command_name + (expansion + (variable_name) + (word)))) + (command + (command_name + (expansion + (variable_name) + (word)))) + (command + (command_name + (expansion + (variable_name) + (word)))) + (command + (command_name + (expansion + (variable_name) + (word)))) + (command + (command_name + (expansion + (variable_name) + (word)))) + (command + (command_name + (expansion + (variable_name) + (word)))) + (command + (command_name + (expansion + (variable_name) + (word)))) + (command + (command_name + (expansion + (variable_name) + (regex)))) + (command + (command_name + (expansion + (variable_name) + (regex)))) + (command + (command_name + (expansion + (variable_name) + (variable_name)))) + (command + (command_name + (expansion + (variable_name) + (variable_name) + (variable_name)))) + (command + (command_name + (expansion + (variable_name) + (arithmetic_expansion + (binary_expression + (variable_name) + (expansion + (variable_name)))) + (number))))) + ================================================================================ Variable expansions in strings ================================================================================ @@ -322,7 +414,8 @@ C=${D/;\ *;|} (variable_name) (expansion (variable_name) - (regex))) + (regex) + (ansi_c_string))) (comment) (variable_assignment (variable_name) @@ -359,10 +452,7 @@ cat ${BAR} ${ABC=def} ${GHI:?jkl} (string (expansion (variable_name) - (concatenation - (word) - (word) - (word))))))) + (regex)))))) ================================================================================ Words ending with '$' diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index fb35b872..906aad4c 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -1347,7 +1347,7 @@ export "$(echo ${key} | tr [:lower:] [:upper:])=${p_key#*=}" (word))))) (expansion (variable_name) - (word))))) + (regex))))) ================================================================================ Unset commands From c680846135523b219dff9a3fbb5c587cd8504ab8 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 23 Aug 2023 11:53:38 -0400 Subject: [PATCH 5/9] fix: regex was overconsuming in test commands --- grammar.js | 3 ++- src/scanner.c | 36 +++++++++++++++++++++++++++++++----- 2 files changed, 33 insertions(+), 6 deletions(-) diff --git a/grammar.js b/grammar.js index dfab024a..fbd2b0e3 100644 --- a/grammar.js +++ b/grammar.js @@ -59,6 +59,7 @@ module.exports = grammar({ $.variable_name, // Variable name followed by an operator like '=' or '+=' $.regex, $._regex_no_slash, + $._regex_no_space, $.extglob_pattern, $._bare_dollar, $._brace_start, @@ -504,7 +505,7 @@ module.exports = grammar({ seq( field('left', $._expression), field('operator', choice('==', '=~', '!=')), - field('right', $.regex), + field('right', alias($._regex_no_space, $.regex)), ), )), diff --git a/src/scanner.c b/src/scanner.c index 23542ba1..7e810597 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -49,6 +49,7 @@ enum TokenType { VARIABLE_NAME, REGEX, REGEX_NO_SLASH, + REGEX_NO_SPACE, EXTGLOB_PATTERN, BARE_DOLLAR, BRACE_START, @@ -477,9 +478,9 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { return false; } - if (valid_symbols[REGEX] || - valid_symbols[REGEX_NO_SLASH] && !in_error_recovery(valid_symbols)) { - if (valid_symbols[REGEX]) { + if (valid_symbols[REGEX] || valid_symbols[REGEX_NO_SLASH] || + valid_symbols[REGEX_NO_SPACE] && !in_error_recovery(valid_symbols)) { + if (valid_symbols[REGEX] || valid_symbols[REGEX_NO_SPACE]) { while (iswspace(lexer->lookahead)) { skip(lexer); } @@ -490,6 +491,7 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { typedef struct { bool done; bool advanced_once; + bool found_non_alnumdollarunderdash; uint32_t paren_depth; uint32_t bracket_depth; uint32_t brace_depth; @@ -497,7 +499,7 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { lexer->mark_end(lexer); - State state = {false, false, 0, 0, 0}; + State state = {false, false, false, 0, 0, 0}; while (!state.done) { switch (lexer->lookahead) { case '\0': @@ -557,12 +559,36 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { lexer->mark_end(lexer); } } + } else if (valid_symbols[REGEX_NO_SPACE]) { + if (lexer->lookahead == '\\') { + state.found_non_alnumdollarunderdash = true; + advance(lexer); + if (!lexer->eof(lexer)) { + advance(lexer); + } + } else { + if (iswspace(lexer->lookahead)) { + lexer->mark_end(lexer); + lexer->result_symbol = REGEX_NO_SPACE; + return state.found_non_alnumdollarunderdash; + } + /* state. = true; */ + if (!iswalnum(lexer->lookahead) && + lexer->lookahead != '$' && + lexer->lookahead != '-' && + lexer->lookahead != '_') { + state.found_non_alnumdollarunderdash = true; + } + advance(lexer); + } } } } lexer->result_symbol = - valid_symbols[REGEX_NO_SLASH] ? REGEX_NO_SLASH : REGEX; + valid_symbols[REGEX_NO_SLASH] ? REGEX_NO_SLASH + : valid_symbols[REGEX_NO_SPACE] ? REGEX_NO_SPACE + : REGEX; if (valid_symbols[REGEX] && !state.advanced_once) { return false; } From ecad8df1795095a184eb35797bd3ae830b9b8f91 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 23 Aug 2023 02:42:33 -0400 Subject: [PATCH 6/9] chore: generate --- src/grammar.json | 702 +- src/node-types.json | 273 +- src/parser.c | 266157 +++++++++++++++++++++-------------------- 3 files changed, 139652 insertions(+), 127480 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index c2b48bb4..7e20f705 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -29,27 +29,6 @@ "type": "SYMBOL", "name": "_statement" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "SYMBOL", - "name": "heredoc_body" - } - ] - }, - { - "type": "BLANK" - } - ] - }, { "type": "SYMBOL", "name": "_terminator" @@ -61,27 +40,6 @@ "type": "SYMBOL", "name": "_statement" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "SYMBOL", - "name": "heredoc_body" - } - ] - }, - { - "type": "BLANK" - } - ] - }, { "type": "CHOICE", "members": [ @@ -106,27 +64,6 @@ "type": "SYMBOL", "name": "_statement" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "SYMBOL", - "name": "heredoc_body" - } - ] - }, - { - "type": "BLANK" - } - ] - }, { "type": "SYMBOL", "name": "_terminator" @@ -2134,52 +2071,135 @@ { "type": "SYMBOL", "name": "heredoc_start" - } - ] - }, - "heredoc_body": { - "type": "CHOICE", - "members": [ + }, { - "type": "SYMBOL", - "name": "_simple_heredoc_body" + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_heredoc_pipeline" + }, + "named": true, + "value": "pipeline" + }, + { + "type": "SYMBOL", + "name": "file_redirect" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] }, { - "type": "SEQ", + "type": "STRING", + "value": "\n" + }, + { + "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "_heredoc_body_beginning" + "name": "_heredoc_body" }, { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "expansion" - }, - { - "type": "SYMBOL", - "name": "simple_expansion" - }, - { - "type": "SYMBOL", - "name": "command_substitution" - }, - { - "type": "SYMBOL", - "name": "_heredoc_body_middle" - } - ] - } + "type": "SYMBOL", + "name": "_simple_heredoc_body" + } + ] + } + ] + }, + "_heredoc_pipeline": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "|" }, { - "type": "SYMBOL", - "name": "_heredoc_body_end" + "type": "STRING", + "value": "|&" } ] + }, + { + "type": "SYMBOL", + "name": "_statement" + } + ] + }, + "_heredoc_body": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "heredoc_body" + }, + { + "type": "SYMBOL", + "name": "heredoc_end" + } + ] + }, + "heredoc_body": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_heredoc_body_beginning" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expansion" + }, + { + "type": "SYMBOL", + "name": "simple_expansion" + }, + { + "type": "SYMBOL", + "name": "command_substitution" + }, + { + "type": "SYMBOL", + "name": "_heredoc_body_middle" + } + ] + } + } + ] + }, + "_simple_heredoc_body": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "simple_heredoc_body" + }, + { + "type": "SYMBOL", + "name": "heredoc_end" } ] }, @@ -2441,8 +2461,13 @@ "type": "FIELD", "name": "right", "content": { - "type": "SYMBOL", - "name": "regex" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_regex_no_space" + }, + "named": true, + "value": "regex" } } ] @@ -2701,12 +2726,42 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "$((" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "$((" + }, + { + "type": "STRING", + "value": "((" + } + ] }, { - "type": "SYMBOL", - "name": "_arithmetic_expression" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_arithmetic_expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_arithmetic_expression" + } + ] + } + } + ] }, { "type": "STRING", @@ -2830,6 +2885,10 @@ "type": "SYMBOL", "name": "number" }, + { + "type": "SYMBOL", + "name": "test_operator" + }, { "type": "SYMBOL", "name": "subscript" @@ -2845,6 +2904,10 @@ { "type": "SYMBOL", "name": "_simple_variable_name" + }, + { + "type": "SYMBOL", + "name": "variable_name" } ] } @@ -3062,7 +3125,7 @@ "members": [ { "type": "PREC", - "value": 1, + "value": 3, "content": { "type": "SEQ", "members": [ @@ -3107,22 +3170,13 @@ }, { "type": "PREC_RIGHT", - "value": 1, + "value": 3, "content": { "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "SYMBOL", - "name": "test_operator" - } - ] + "type": "STRING", + "value": "!" }, { "type": "SYMBOL", @@ -3570,23 +3624,388 @@ { "type": "SEQ", "members": [ - { - "type": "SYMBOL", - "name": "variable_name" - }, - { - "type": "STRING", - "value": "=" - }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "_literal" + "name": "variable_name" }, { - "type": "BLANK" + "type": "SYMBOL", + "name": "_special_variable_name" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "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": ":?" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_literal" + }, + { + "type": "SYMBOL", + "name": "array" + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "#" + }, + { + "type": "STRING", + "value": "##" + }, + { + "type": "STRING", + "value": "%" + }, + { + "type": "STRING", + "value": "%%" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "regex" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": ")" + }, + "named": true, + "value": "regex" + }, + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "raw_string" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "/" + }, + { + "type": "STRING", + "value": "//" + }, + { + "type": "STRING", + "value": "/#" + }, + { + "type": "STRING", + "value": "/%" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_regex_no_slash" + }, + "named": true, + "value": "regex" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "/" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_literal" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "/" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "STRING", + "value": ",," + }, + { + "type": "STRING", + "value": "^" + }, + { + "type": "STRING", + "value": "^^" + } + ] + }, + { + "type": "SYMBOL", + "name": "regex" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_simple_variable_name" + }, + { + "type": "SYMBOL", + "name": "number" + }, + { + "type": "SYMBOL", + "name": "arithmetic_expansion" + }, + { + "type": "SYMBOL", + "name": "expansion" + }, + { + "type": "STRING", + "value": "\n" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_simple_variable_name" + }, + { + "type": "SYMBOL", + "name": "number" + }, + { + "type": "SYMBOL", + "name": "arithmetic_expansion" + }, + { + "type": "STRING", + "value": "\n" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "U" + }, + { + "type": "STRING", + "value": "u" + }, + { + "type": "STRING", + "value": "L" + }, + { + "type": "STRING", + "value": "Q" + }, + { + "type": "STRING", + "value": "E" + }, + { + "type": "STRING", + "value": "P" + }, + { + "type": "STRING", + "value": "A" + }, + { + "type": "STRING", + "value": "K" + }, + { + "type": "STRING", + "value": "a" + }, + { + "type": "STRING", + "value": "k" + } + ] + } + } + ] } ] } @@ -3625,22 +4044,6 @@ { "type": "CHOICE", "members": [ - { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "STRING", - "value": "/" - } - } - }, - "named": false, - "value": "/" - }, { "type": "ALIAS", "content": { @@ -4197,6 +4600,9 @@ [ "redirected_statement", "command_substitution" + ], + [ + "_expansion_body" ] ], "precedences": [], @@ -4207,7 +4613,7 @@ }, { "type": "SYMBOL", - "name": "_simple_heredoc_body" + "name": "simple_heredoc_body" }, { "type": "SYMBOL", @@ -4219,7 +4625,7 @@ }, { "type": "SYMBOL", - "name": "_heredoc_body_end" + "name": "heredoc_end" }, { "type": "SYMBOL", @@ -4241,6 +4647,14 @@ "type": "SYMBOL", "name": "regex" }, + { + "type": "SYMBOL", + "name": "_regex_no_slash" + }, + { + "type": "SYMBOL", + "name": "_regex_no_space" + }, { "type": "SYMBOL", "name": "extglob_pattern" diff --git a/src/node-types.json b/src/node-types.json index cefd046d..a67d1d8e 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -174,7 +174,7 @@ "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ { @@ -209,6 +209,10 @@ "type": "ternary_expression", "named": true }, + { + "type": "test_operator", + "named": true + }, { "type": "unary_expression", "named": true @@ -267,6 +271,10 @@ "type": "subscript", "named": true }, + { + "type": "test_operator", + "named": true + }, { "type": "variable_name", "named": true @@ -435,6 +443,10 @@ "type": "subscript", "named": true }, + { + "type": "test_operator", + "named": true + }, { "type": "variable_name", "named": true @@ -740,10 +752,6 @@ { "type": "_statement", "named": true - }, - { - "type": "heredoc_body", - "named": true } ] } @@ -872,10 +880,6 @@ { "type": "file_redirect", "named": true - }, - { - "type": "heredoc_body", - "named": true } ] } @@ -891,10 +895,6 @@ { "type": "_statement", "named": true - }, - { - "type": "heredoc_body", - "named": true } ] } @@ -952,10 +952,6 @@ { "type": "_statement", "named": true - }, - { - "type": "heredoc_body", - "named": true } ] } @@ -971,10 +967,6 @@ { "type": "_statement", "named": true - }, - { - "type": "heredoc_body", - "named": true } ] } @@ -990,10 +982,6 @@ { "type": "_statement", "named": true - }, - { - "type": "heredoc_body", - "named": true } ] } @@ -1001,7 +989,102 @@ { "type": "expansion", "named": true, - "fields": {}, + "fields": { + "operator": { + "multiple": false, + "required": false, + "types": [ + { + "type": "#", + "named": false + }, + { + "type": "##", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "%%", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": ":+", + "named": false + }, + { + "type": ":-", + "named": false + }, + { + "type": ":=", + "named": false + }, + { + "type": ":?", + "named": false + }, + { + "type": "=", + "named": false + }, + { + "type": "?", + "named": false + }, + { + "type": "A", + "named": false + }, + { + "type": "E", + "named": false + }, + { + "type": "K", + "named": false + }, + { + "type": "L", + "named": false + }, + { + "type": "P", + "named": false + }, + { + "type": "Q", + "named": false + }, + { + "type": "U", + "named": false + }, + { + "type": "a", + "named": false + }, + { + "type": "k", + "named": false + }, + { + "type": "u", + "named": false + } + ] + } + }, "children": { "multiple": true, "required": false, @@ -1190,12 +1273,32 @@ } }, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ + { + "type": "file_redirect", + "named": true + }, + { + "type": "heredoc_body", + "named": true + }, + { + "type": "heredoc_end", + "named": true + }, { "type": "heredoc_start", "named": true + }, + { + "type": "pipeline", + "named": true + }, + { + "type": "simple_heredoc_body", + "named": true } ] } @@ -1340,10 +1443,6 @@ { "type": "else_clause", "named": true - }, - { - "type": "heredoc_body", - "named": true } ] } @@ -1441,6 +1540,10 @@ "type": "subscript", "named": true }, + { + "type": "test_operator", + "named": true + }, { "type": "variable_assignment", "named": true @@ -1503,6 +1606,10 @@ "type": "subscript", "named": true }, + { + "type": "test_operator", + "named": true + }, { "type": "variable_name", "named": true @@ -1521,10 +1628,6 @@ { "type": "_statement", "named": true - }, - { - "type": "heredoc_body", - "named": true } ] } @@ -1540,10 +1643,6 @@ { "type": "_statement", "named": true - }, - { - "type": "heredoc_body", - "named": true } ] } @@ -1691,10 +1790,6 @@ { "type": "_statement", "named": true - }, - { - "type": "heredoc_body", - "named": true } ] } @@ -1727,6 +1822,10 @@ "type": "subscript", "named": true }, + { + "type": "test_operator", + "named": true + }, { "type": "variable_name", "named": true @@ -1757,6 +1856,10 @@ "type": "subscript", "named": true }, + { + "type": "test_operator", + "named": true + }, { "type": "variable_name", "named": true @@ -1787,6 +1890,10 @@ "type": "subscript", "named": true }, + { + "type": "test_operator", + "named": true + }, { "type": "variable_name", "named": true @@ -2137,6 +2244,10 @@ "type": "#", "named": false }, + { + "type": "##", + "named": false + }, { "type": "$", "named": false @@ -2161,6 +2272,10 @@ "type": "%", "named": false }, + { + "type": "%%", + "named": false + }, { "type": "%=", "named": false @@ -2257,6 +2372,18 @@ "type": "/", "named": false }, + { + "type": "/#", + "named": false + }, + { + "type": "/%", + "named": false + }, + { + "type": "//", + "named": false + }, { "type": "/=", "named": false @@ -2265,10 +2392,18 @@ "type": ":", "named": false }, + { + "type": ":+", + "named": false + }, { "type": ":-", "named": false }, + { + "type": ":=", + "named": false + }, { "type": ":?", "named": false @@ -2365,6 +2500,38 @@ "type": "?", "named": false }, + { + "type": "@", + "named": false + }, + { + "type": "A", + "named": false + }, + { + "type": "E", + "named": false + }, + { + "type": "K", + "named": false + }, + { + "type": "L", + "named": false + }, + { + "type": "P", + "named": false + }, + { + "type": "Q", + "named": false + }, + { + "type": "U", + "named": false + }, { "type": "[", "named": false @@ -2401,6 +2568,10 @@ "type": "``", "named": false }, + { + "type": "a", + "named": false + }, { "type": "ansi_c_string", "named": true @@ -2461,6 +2632,10 @@ "type": "function", "named": false }, + { + "type": "heredoc_end", + "named": true + }, { "type": "heredoc_start", "named": true @@ -2473,6 +2648,10 @@ "type": "in", "named": false }, + { + "type": "k", + "named": false + }, { "type": "local", "named": false @@ -2493,6 +2672,10 @@ "type": "select", "named": false }, + { + "type": "simple_heredoc_body", + "named": true + }, { "type": "special_variable_name", "named": true @@ -2509,6 +2692,10 @@ "type": "typeset", "named": false }, + { + "type": "u", + "named": false + }, { "type": "unset", "named": false diff --git a/src/parser.c b/src/parser.c index d9f52794..31f5d08d 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,97 +14,97 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 4816 -#define LARGE_STATE_COUNT 436 -#define SYMBOL_COUNT 223 +#define STATE_COUNT 5041 +#define LARGE_STATE_COUNT 433 +#define SYMBOL_COUNT 248 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 136 -#define EXTERNAL_TOKEN_COUNT 18 +#define TOKEN_COUNT 156 +#define EXTERNAL_TOKEN_COUNT 20 #define FIELD_COUNT 19 #define MAX_ALIAS_SEQUENCE_LENGTH 8 -#define PRODUCTION_ID_COUNT 104 +#define PRODUCTION_ID_COUNT 115 enum { sym_word = 1, - anon_sym_LF = 2, - anon_sym_for = 3, - anon_sym_select = 4, - anon_sym_in = 5, - anon_sym_LPAREN_LPAREN = 6, - anon_sym_RPAREN_RPAREN = 7, - anon_sym_SEMI = 8, - anon_sym_COMMA = 9, - anon_sym_EQ = 10, - anon_sym_PLUS_PLUS = 11, - anon_sym_DASH_DASH = 12, - anon_sym_PLUS_EQ = 13, - anon_sym_DASH_EQ = 14, - anon_sym_STAR_EQ = 15, - anon_sym_SLASH_EQ = 16, - anon_sym_PERCENT_EQ = 17, - anon_sym_STAR_STAR_EQ = 18, - anon_sym_LT_LT_EQ = 19, - anon_sym_GT_GT_EQ = 20, - anon_sym_AMP_EQ = 21, - anon_sym_CARET_EQ = 22, - anon_sym_PIPE_EQ = 23, - anon_sym_EQ_EQ = 24, - anon_sym_BANG_EQ = 25, - anon_sym_LT_EQ = 26, - anon_sym_GT_EQ = 27, - anon_sym_AMP_AMP = 28, - anon_sym_PIPE_PIPE = 29, - anon_sym_LT_LT = 30, - anon_sym_GT_GT = 31, - anon_sym_PLUS = 32, - anon_sym_DASH = 33, - anon_sym_STAR = 34, - anon_sym_SLASH = 35, - anon_sym_PERCENT = 36, - anon_sym_STAR_STAR = 37, - anon_sym_LT = 38, - anon_sym_GT = 39, - anon_sym_LPAREN = 40, - anon_sym_RPAREN = 41, - aux_sym__c_word_token1 = 42, - anon_sym_while = 43, - anon_sym_until = 44, - anon_sym_do = 45, - anon_sym_done = 46, - anon_sym_if = 47, - anon_sym_then = 48, - anon_sym_fi = 49, - anon_sym_elif = 50, - anon_sym_else = 51, - anon_sym_case = 52, - anon_sym_esac = 53, - anon_sym_PIPE = 54, - anon_sym_SEMI_SEMI = 55, - anon_sym_SEMI_AMP = 56, - anon_sym_SEMI_SEMI_AMP = 57, - anon_sym_function = 58, - anon_sym_LBRACE = 59, - anon_sym_RBRACE = 60, - anon_sym_PIPE_AMP = 61, - anon_sym_BANG = 62, - anon_sym_LBRACK = 63, - anon_sym_RBRACK = 64, - anon_sym_LBRACK_LBRACK = 65, - anon_sym_RBRACK_RBRACK = 66, - anon_sym_declare = 67, - anon_sym_typeset = 68, - anon_sym_export = 69, - anon_sym_readonly = 70, - anon_sym_local = 71, - anon_sym_unset = 72, - anon_sym_unsetenv = 73, - anon_sym_EQ_TILDE = 74, - anon_sym_AMP_GT = 75, - anon_sym_AMP_GT_GT = 76, - anon_sym_LT_AMP = 77, - anon_sym_GT_AMP = 78, - anon_sym_GT_PIPE = 79, - anon_sym_LT_LT_DASH = 80, + anon_sym_for = 2, + anon_sym_select = 3, + anon_sym_in = 4, + anon_sym_LPAREN_LPAREN = 5, + anon_sym_RPAREN_RPAREN = 6, + anon_sym_SEMI = 7, + anon_sym_COMMA = 8, + anon_sym_EQ = 9, + anon_sym_PLUS_PLUS = 10, + anon_sym_DASH_DASH = 11, + anon_sym_PLUS_EQ = 12, + anon_sym_DASH_EQ = 13, + anon_sym_STAR_EQ = 14, + anon_sym_SLASH_EQ = 15, + anon_sym_PERCENT_EQ = 16, + anon_sym_STAR_STAR_EQ = 17, + anon_sym_LT_LT_EQ = 18, + anon_sym_GT_GT_EQ = 19, + anon_sym_AMP_EQ = 20, + anon_sym_CARET_EQ = 21, + anon_sym_PIPE_EQ = 22, + anon_sym_EQ_EQ = 23, + anon_sym_BANG_EQ = 24, + anon_sym_LT_EQ = 25, + anon_sym_GT_EQ = 26, + anon_sym_AMP_AMP = 27, + anon_sym_PIPE_PIPE = 28, + anon_sym_LT_LT = 29, + anon_sym_GT_GT = 30, + anon_sym_PLUS = 31, + anon_sym_DASH = 32, + anon_sym_STAR = 33, + anon_sym_SLASH = 34, + anon_sym_PERCENT = 35, + anon_sym_STAR_STAR = 36, + anon_sym_LT = 37, + anon_sym_GT = 38, + anon_sym_LPAREN = 39, + anon_sym_RPAREN = 40, + aux_sym__c_word_token1 = 41, + anon_sym_while = 42, + anon_sym_until = 43, + anon_sym_do = 44, + anon_sym_done = 45, + anon_sym_if = 46, + anon_sym_then = 47, + anon_sym_fi = 48, + anon_sym_elif = 49, + anon_sym_else = 50, + anon_sym_case = 51, + anon_sym_esac = 52, + anon_sym_PIPE = 53, + anon_sym_SEMI_SEMI = 54, + anon_sym_SEMI_AMP = 55, + anon_sym_SEMI_SEMI_AMP = 56, + anon_sym_function = 57, + anon_sym_LBRACE = 58, + anon_sym_RBRACE = 59, + anon_sym_PIPE_AMP = 60, + anon_sym_BANG = 61, + anon_sym_LBRACK = 62, + anon_sym_RBRACK = 63, + anon_sym_LBRACK_LBRACK = 64, + anon_sym_RBRACK_RBRACK = 65, + anon_sym_declare = 66, + anon_sym_typeset = 67, + anon_sym_export = 68, + anon_sym_readonly = 69, + anon_sym_local = 70, + anon_sym_unset = 71, + anon_sym_unsetenv = 72, + anon_sym_EQ_TILDE = 73, + anon_sym_AMP_GT = 74, + anon_sym_AMP_GT_GT = 75, + anon_sym_LT_AMP = 76, + anon_sym_GT_AMP = 77, + anon_sym_GT_PIPE = 78, + anon_sym_LT_LT_DASH = 79, + anon_sym_LF = 80, anon_sym_LT_LT_LT = 81, anon_sym_AMP = 82, anon_sym_CARET = 83, @@ -127,132 +127,156 @@ enum { anon_sym_POUND = 100, anon_sym_DOLLAR_LBRACE = 101, anon_sym_RBRACE3 = 102, - anon_sym_SLASH2 = 103, - anon_sym_COMMA2 = 104, - anon_sym_COMMA_COMMA = 105, - anon_sym_CARET2 = 106, - anon_sym_CARET_CARET = 107, - anon_sym_COLON_QMARK = 108, - anon_sym_COLON_DASH = 109, - anon_sym_DOLLAR_LPAREN = 110, - anon_sym_BQUOTE = 111, - anon_sym_DOLLAR_BQUOTE = 112, - anon_sym_LT_LPAREN = 113, - anon_sym_GT_LPAREN = 114, - sym_comment = 115, - sym__comment_word = 116, - aux_sym__simple_variable_name_token1 = 117, - aux_sym__multiline_variable_name_token1 = 118, - anon_sym_AT = 119, - anon_sym_0 = 120, - anon_sym__ = 121, - sym_test_operator = 122, - sym_heredoc_start = 123, - sym__simple_heredoc_body = 124, - sym__heredoc_body_beginning = 125, - sym__heredoc_body_middle = 126, - sym__heredoc_body_end = 127, - sym_file_descriptor = 128, - sym__empty_value = 129, - sym__concat = 130, - sym_variable_name = 131, - sym_regex = 132, - sym_extglob_pattern = 133, - sym__bare_dollar = 134, - sym__brace_start = 135, - sym_program = 136, - sym__statements = 137, - aux_sym__statements2 = 138, - sym__terminated_statement = 139, - sym_redirected_statement = 140, - sym_for_statement = 141, - sym_c_style_for_statement = 142, - sym__for_body = 143, - sym__c_expression = 144, - sym__c_expression_not_assignment = 145, - sym__c_variable_assignment = 146, - sym__c_unary_expression = 147, - sym__c_binary_expression = 148, - sym__c_postfix_expression = 149, - sym__c_parenthesized_expression = 150, - sym_while_statement = 151, - sym_do_group = 152, - sym_if_statement = 153, - sym_elif_clause = 154, - sym_else_clause = 155, - sym_case_statement = 156, - sym_case_item = 157, - sym_last_case_item = 158, - sym_function_definition = 159, - sym_compound_statement = 160, - sym_subshell = 161, - sym_pipeline = 162, - sym_list = 163, - sym_negated_command = 164, - sym_test_command = 165, - sym_declaration_command = 166, - sym_unset_command = 167, - sym_command = 168, - sym_command_name = 169, - sym_variable_assignment = 170, - sym_variable_assignments = 171, - sym_subscript = 172, - sym_file_redirect = 173, - sym_heredoc_redirect = 174, - sym_heredoc_body = 175, - sym_herestring_redirect = 176, - sym__expression = 177, - sym_binary_expression = 178, - sym_ternary_expression = 179, - sym_unary_expression = 180, - sym_postfix_expression = 181, - sym_parenthesized_expression = 182, - sym_arithmetic_expansion = 183, - sym_brace_expression = 184, - sym__arithmetic_expression = 185, - sym__arithmetic_literal = 186, - sym__arithmetic_binary_expression = 187, - sym__arithmetic_ternary_expression = 188, - sym__arithmetic_unary_expression = 189, - sym__arithmetic_postfix_expression = 190, - sym__arithmetic_parenthesized_expression = 191, - sym_concatenation = 192, - sym_string = 193, - sym_translated_string = 194, - sym_array = 195, - sym_number = 196, - sym_simple_expansion = 197, - sym_expansion = 198, - sym__expansion_body = 199, - sym_command_substitution = 200, - sym_process_substitution = 201, - sym__c_terminator = 202, - aux_sym__statements_repeat1 = 203, - aux_sym_redirected_statement_repeat1 = 204, - aux_sym_redirected_statement_repeat2 = 205, - aux_sym_for_statement_repeat1 = 206, - aux_sym__for_body_repeat1 = 207, - aux_sym_while_statement_repeat1 = 208, - aux_sym_if_statement_repeat1 = 209, - aux_sym_case_statement_repeat1 = 210, - aux_sym_case_item_repeat1 = 211, - aux_sym_declaration_command_repeat1 = 212, - aux_sym_unset_command_repeat1 = 213, - aux_sym_command_repeat1 = 214, - aux_sym_command_repeat2 = 215, - aux_sym_variable_assignments_repeat1 = 216, - aux_sym_heredoc_body_repeat1 = 217, - aux_sym__literal_repeat1 = 218, - aux_sym_concatenation_repeat1 = 219, - aux_sym_string_repeat1 = 220, - aux_sym_expansion_repeat1 = 221, - aux_sym__expansion_body_repeat1 = 222, + anon_sym_COLON_EQ = 103, + anon_sym_COLON_DASH = 104, + anon_sym_COLON_PLUS = 105, + anon_sym_COLON_QMARK = 106, + anon_sym_POUND_POUND = 107, + anon_sym_PERCENT_PERCENT = 108, + anon_sym_SLASH_SLASH = 109, + anon_sym_SLASH_POUND = 110, + anon_sym_SLASH_PERCENT = 111, + anon_sym_COMMA_COMMA = 112, + anon_sym_CARET_CARET = 113, + anon_sym_AT = 114, + anon_sym_U = 115, + anon_sym_u = 116, + anon_sym_L = 117, + anon_sym_Q = 118, + anon_sym_E = 119, + anon_sym_P = 120, + anon_sym_A = 121, + anon_sym_K = 122, + anon_sym_a = 123, + anon_sym_k = 124, + anon_sym_COMMA2 = 125, + anon_sym_COMMA_COMMA2 = 126, + anon_sym_CARET2 = 127, + anon_sym_CARET_CARET2 = 128, + anon_sym_DOLLAR_LPAREN = 129, + anon_sym_BQUOTE = 130, + anon_sym_DOLLAR_BQUOTE = 131, + anon_sym_LT_LPAREN = 132, + anon_sym_GT_LPAREN = 133, + sym_comment = 134, + sym__comment_word = 135, + aux_sym__simple_variable_name_token1 = 136, + aux_sym__multiline_variable_name_token1 = 137, + anon_sym_0 = 138, + anon_sym__ = 139, + sym_test_operator = 140, + sym_heredoc_start = 141, + sym_simple_heredoc_body = 142, + sym__heredoc_body_beginning = 143, + sym__heredoc_body_middle = 144, + sym_heredoc_end = 145, + sym_file_descriptor = 146, + sym__empty_value = 147, + sym__concat = 148, + sym_variable_name = 149, + sym_regex = 150, + sym__regex_no_slash = 151, + sym__regex_no_space = 152, + sym_extglob_pattern = 153, + sym__bare_dollar = 154, + sym__brace_start = 155, + sym_program = 156, + sym__statements = 157, + aux_sym__statements2 = 158, + sym__terminated_statement = 159, + sym_redirected_statement = 160, + sym_for_statement = 161, + sym_c_style_for_statement = 162, + sym__for_body = 163, + sym__c_expression = 164, + sym__c_expression_not_assignment = 165, + sym__c_variable_assignment = 166, + sym__c_unary_expression = 167, + sym__c_binary_expression = 168, + sym__c_postfix_expression = 169, + sym__c_parenthesized_expression = 170, + sym_while_statement = 171, + sym_do_group = 172, + sym_if_statement = 173, + sym_elif_clause = 174, + sym_else_clause = 175, + sym_case_statement = 176, + sym_case_item = 177, + sym_last_case_item = 178, + sym_function_definition = 179, + sym_compound_statement = 180, + sym_subshell = 181, + sym_pipeline = 182, + sym_list = 183, + sym_negated_command = 184, + sym_test_command = 185, + sym_declaration_command = 186, + sym_unset_command = 187, + sym_command = 188, + sym_command_name = 189, + sym_variable_assignment = 190, + sym_variable_assignments = 191, + sym_subscript = 192, + sym_file_redirect = 193, + sym_heredoc_redirect = 194, + sym__heredoc_pipeline = 195, + sym__heredoc_body = 196, + sym_heredoc_body = 197, + sym__simple_heredoc_body = 198, + sym_herestring_redirect = 199, + sym__expression = 200, + sym_binary_expression = 201, + sym_ternary_expression = 202, + sym_unary_expression = 203, + sym_postfix_expression = 204, + sym_parenthesized_expression = 205, + sym_arithmetic_expansion = 206, + sym_brace_expression = 207, + sym__arithmetic_expression = 208, + sym__arithmetic_literal = 209, + sym__arithmetic_binary_expression = 210, + sym__arithmetic_ternary_expression = 211, + sym__arithmetic_unary_expression = 212, + sym__arithmetic_postfix_expression = 213, + sym__arithmetic_parenthesized_expression = 214, + sym_concatenation = 215, + sym_string = 216, + sym_translated_string = 217, + sym_array = 218, + sym_number = 219, + sym_simple_expansion = 220, + sym_expansion = 221, + sym__expansion_body = 222, + sym_command_substitution = 223, + sym_process_substitution = 224, + sym__c_terminator = 225, + aux_sym__statements_repeat1 = 226, + aux_sym_redirected_statement_repeat1 = 227, + aux_sym_redirected_statement_repeat2 = 228, + aux_sym_for_statement_repeat1 = 229, + aux_sym__for_body_repeat1 = 230, + aux_sym_while_statement_repeat1 = 231, + aux_sym_if_statement_repeat1 = 232, + aux_sym_case_statement_repeat1 = 233, + aux_sym_case_item_repeat1 = 234, + aux_sym_declaration_command_repeat1 = 235, + aux_sym_unset_command_repeat1 = 236, + aux_sym_command_repeat1 = 237, + aux_sym_command_repeat2 = 238, + aux_sym_variable_assignments_repeat1 = 239, + aux_sym_heredoc_body_repeat1 = 240, + aux_sym__literal_repeat1 = 241, + aux_sym_arithmetic_expansion_repeat1 = 242, + aux_sym_concatenation_repeat1 = 243, + aux_sym_string_repeat1 = 244, + aux_sym_expansion_repeat1 = 245, + aux_sym__expansion_body_repeat1 = 246, + aux_sym__expansion_body_repeat2 = 247, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", [sym_word] = "word", - [anon_sym_LF] = "\n", [anon_sym_for] = "for", [anon_sym_select] = "select", [anon_sym_in] = "in", @@ -331,6 +355,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_GT_AMP] = ">&", [anon_sym_GT_PIPE] = ">|", [anon_sym_LT_LT_DASH] = "<<-", + [anon_sym_LF] = "\n", [anon_sym_LT_LT_LT] = "<<<", [anon_sym_AMP] = "&", [anon_sym_CARET] = "^", @@ -353,13 +378,32 @@ static const char * const ts_symbol_names[] = { [anon_sym_POUND] = "#", [anon_sym_DOLLAR_LBRACE] = "${", [anon_sym_RBRACE3] = "}", - [anon_sym_SLASH2] = "/", - [anon_sym_COMMA2] = ",", + [anon_sym_COLON_EQ] = ":=", + [anon_sym_COLON_DASH] = ":-", + [anon_sym_COLON_PLUS] = ":+", + [anon_sym_COLON_QMARK] = ":\?", + [anon_sym_POUND_POUND] = "##", + [anon_sym_PERCENT_PERCENT] = "%%", + [anon_sym_SLASH_SLASH] = "//", + [anon_sym_SLASH_POUND] = "/#", + [anon_sym_SLASH_PERCENT] = "/%", [anon_sym_COMMA_COMMA] = ",,", - [anon_sym_CARET2] = "^", [anon_sym_CARET_CARET] = "^^", - [anon_sym_COLON_QMARK] = ":\?", - [anon_sym_COLON_DASH] = ":-", + [anon_sym_AT] = "@", + [anon_sym_U] = "U", + [anon_sym_u] = "u", + [anon_sym_L] = "L", + [anon_sym_Q] = "Q", + [anon_sym_E] = "E", + [anon_sym_P] = "P", + [anon_sym_A] = "A", + [anon_sym_K] = "K", + [anon_sym_a] = "a", + [anon_sym_k] = "k", + [anon_sym_COMMA2] = ",", + [anon_sym_COMMA_COMMA2] = ",,", + [anon_sym_CARET2] = "^", + [anon_sym_CARET_CARET2] = "^^", [anon_sym_DOLLAR_LPAREN] = "$(", [anon_sym_BQUOTE] = "`", [anon_sym_DOLLAR_BQUOTE] = "$`", @@ -369,20 +413,21 @@ static const char * const ts_symbol_names[] = { [sym__comment_word] = "word", [aux_sym__simple_variable_name_token1] = "variable_name", [aux_sym__multiline_variable_name_token1] = "variable_name", - [anon_sym_AT] = "special_variable_name", [anon_sym_0] = "special_variable_name", [anon_sym__] = "special_variable_name", [sym_test_operator] = "test_operator", [sym_heredoc_start] = "heredoc_start", - [sym__simple_heredoc_body] = "_simple_heredoc_body", + [sym_simple_heredoc_body] = "simple_heredoc_body", [sym__heredoc_body_beginning] = "_heredoc_body_beginning", [sym__heredoc_body_middle] = "_heredoc_body_middle", - [sym__heredoc_body_end] = "_heredoc_body_end", + [sym_heredoc_end] = "heredoc_end", [sym_file_descriptor] = "file_descriptor", [sym__empty_value] = "_empty_value", [sym__concat] = "_concat", [sym_variable_name] = "variable_name", [sym_regex] = "regex", + [sym__regex_no_slash] = "regex", + [sym__regex_no_space] = "regex", [sym_extglob_pattern] = "extglob_pattern", [sym__bare_dollar] = "$", [sym__brace_start] = "{", @@ -425,7 +470,10 @@ static const char * const ts_symbol_names[] = { [sym_subscript] = "subscript", [sym_file_redirect] = "file_redirect", [sym_heredoc_redirect] = "heredoc_redirect", + [sym__heredoc_pipeline] = "pipeline", + [sym__heredoc_body] = "_heredoc_body", [sym_heredoc_body] = "heredoc_body", + [sym__simple_heredoc_body] = "_simple_heredoc_body", [sym_herestring_redirect] = "herestring_redirect", [sym__expression] = "_expression", [sym_binary_expression] = "binary_expression", @@ -469,16 +517,17 @@ static const char * const ts_symbol_names[] = { [aux_sym_variable_assignments_repeat1] = "variable_assignments_repeat1", [aux_sym_heredoc_body_repeat1] = "heredoc_body_repeat1", [aux_sym__literal_repeat1] = "_literal_repeat1", + [aux_sym_arithmetic_expansion_repeat1] = "arithmetic_expansion_repeat1", [aux_sym_concatenation_repeat1] = "concatenation_repeat1", [aux_sym_string_repeat1] = "string_repeat1", [aux_sym_expansion_repeat1] = "expansion_repeat1", [aux_sym__expansion_body_repeat1] = "_expansion_body_repeat1", + [aux_sym__expansion_body_repeat2] = "_expansion_body_repeat2", }; static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, [sym_word] = sym_word, - [anon_sym_LF] = anon_sym_LF, [anon_sym_for] = anon_sym_for, [anon_sym_select] = anon_sym_select, [anon_sym_in] = anon_sym_in, @@ -557,6 +606,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_GT_AMP] = anon_sym_GT_AMP, [anon_sym_GT_PIPE] = anon_sym_GT_PIPE, [anon_sym_LT_LT_DASH] = anon_sym_LT_LT_DASH, + [anon_sym_LF] = anon_sym_LF, [anon_sym_LT_LT_LT] = anon_sym_LT_LT_LT, [anon_sym_AMP] = anon_sym_AMP, [anon_sym_CARET] = anon_sym_CARET, @@ -579,13 +629,32 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_POUND] = anon_sym_POUND, [anon_sym_DOLLAR_LBRACE] = anon_sym_DOLLAR_LBRACE, [anon_sym_RBRACE3] = anon_sym_RBRACE, - [anon_sym_SLASH2] = anon_sym_SLASH, - [anon_sym_COMMA2] = anon_sym_COMMA, + [anon_sym_COLON_EQ] = anon_sym_COLON_EQ, + [anon_sym_COLON_DASH] = anon_sym_COLON_DASH, + [anon_sym_COLON_PLUS] = anon_sym_COLON_PLUS, + [anon_sym_COLON_QMARK] = anon_sym_COLON_QMARK, + [anon_sym_POUND_POUND] = anon_sym_POUND_POUND, + [anon_sym_PERCENT_PERCENT] = anon_sym_PERCENT_PERCENT, + [anon_sym_SLASH_SLASH] = anon_sym_SLASH_SLASH, + [anon_sym_SLASH_POUND] = anon_sym_SLASH_POUND, + [anon_sym_SLASH_PERCENT] = anon_sym_SLASH_PERCENT, [anon_sym_COMMA_COMMA] = anon_sym_COMMA_COMMA, - [anon_sym_CARET2] = anon_sym_CARET, [anon_sym_CARET_CARET] = anon_sym_CARET_CARET, - [anon_sym_COLON_QMARK] = anon_sym_COLON_QMARK, - [anon_sym_COLON_DASH] = anon_sym_COLON_DASH, + [anon_sym_AT] = anon_sym_AT, + [anon_sym_U] = anon_sym_U, + [anon_sym_u] = anon_sym_u, + [anon_sym_L] = anon_sym_L, + [anon_sym_Q] = anon_sym_Q, + [anon_sym_E] = anon_sym_E, + [anon_sym_P] = anon_sym_P, + [anon_sym_A] = anon_sym_A, + [anon_sym_K] = anon_sym_K, + [anon_sym_a] = anon_sym_a, + [anon_sym_k] = anon_sym_k, + [anon_sym_COMMA2] = anon_sym_COMMA, + [anon_sym_COMMA_COMMA2] = anon_sym_COMMA_COMMA, + [anon_sym_CARET2] = anon_sym_CARET, + [anon_sym_CARET_CARET2] = anon_sym_CARET_CARET, [anon_sym_DOLLAR_LPAREN] = anon_sym_DOLLAR_LPAREN, [anon_sym_BQUOTE] = anon_sym_BQUOTE, [anon_sym_DOLLAR_BQUOTE] = anon_sym_DOLLAR_BQUOTE, @@ -595,20 +664,21 @@ static const TSSymbol ts_symbol_map[] = { [sym__comment_word] = sym_word, [aux_sym__simple_variable_name_token1] = sym_variable_name, [aux_sym__multiline_variable_name_token1] = sym_variable_name, - [anon_sym_AT] = anon_sym_AT, - [anon_sym_0] = anon_sym_AT, - [anon_sym__] = anon_sym_AT, + [anon_sym_0] = anon_sym_0, + [anon_sym__] = anon_sym_0, [sym_test_operator] = sym_test_operator, [sym_heredoc_start] = sym_heredoc_start, - [sym__simple_heredoc_body] = sym__simple_heredoc_body, + [sym_simple_heredoc_body] = sym_simple_heredoc_body, [sym__heredoc_body_beginning] = sym__heredoc_body_beginning, [sym__heredoc_body_middle] = sym__heredoc_body_middle, - [sym__heredoc_body_end] = sym__heredoc_body_end, + [sym_heredoc_end] = sym_heredoc_end, [sym_file_descriptor] = sym_file_descriptor, [sym__empty_value] = sym__empty_value, [sym__concat] = sym__concat, [sym_variable_name] = sym_variable_name, [sym_regex] = sym_regex, + [sym__regex_no_slash] = sym_regex, + [sym__regex_no_space] = sym_regex, [sym_extglob_pattern] = sym_extglob_pattern, [sym__bare_dollar] = anon_sym_DOLLAR, [sym__brace_start] = anon_sym_LBRACE, @@ -651,7 +721,10 @@ static const TSSymbol ts_symbol_map[] = { [sym_subscript] = sym_subscript, [sym_file_redirect] = sym_file_redirect, [sym_heredoc_redirect] = sym_heredoc_redirect, + [sym__heredoc_pipeline] = sym_pipeline, + [sym__heredoc_body] = sym__heredoc_body, [sym_heredoc_body] = sym_heredoc_body, + [sym__simple_heredoc_body] = sym__simple_heredoc_body, [sym_herestring_redirect] = sym_herestring_redirect, [sym__expression] = sym__expression, [sym_binary_expression] = sym_binary_expression, @@ -695,10 +768,12 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_variable_assignments_repeat1] = aux_sym_variable_assignments_repeat1, [aux_sym_heredoc_body_repeat1] = aux_sym_heredoc_body_repeat1, [aux_sym__literal_repeat1] = aux_sym__literal_repeat1, + [aux_sym_arithmetic_expansion_repeat1] = aux_sym_arithmetic_expansion_repeat1, [aux_sym_concatenation_repeat1] = aux_sym_concatenation_repeat1, [aux_sym_string_repeat1] = aux_sym_string_repeat1, [aux_sym_expansion_repeat1] = aux_sym_expansion_repeat1, [aux_sym__expansion_body_repeat1] = aux_sym__expansion_body_repeat1, + [aux_sym__expansion_body_repeat2] = aux_sym__expansion_body_repeat2, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -710,10 +785,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [anon_sym_LF] = { - .visible = true, - .named = false, - }, [anon_sym_for] = { .visible = true, .named = false, @@ -1026,6 +1097,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_LF] = { + .visible = true, + .named = false, + }, [anon_sym_LT_LT_LT] = { .visible = true, .named = false, @@ -1114,19 +1189,43 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_SLASH2] = { + [anon_sym_COLON_EQ] = { .visible = true, .named = false, }, - [anon_sym_COMMA2] = { + [anon_sym_COLON_DASH] = { .visible = true, .named = false, }, - [anon_sym_COMMA_COMMA] = { + [anon_sym_COLON_PLUS] = { .visible = true, .named = false, }, - [anon_sym_CARET2] = { + [anon_sym_COLON_QMARK] = { + .visible = true, + .named = false, + }, + [anon_sym_POUND_POUND] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT_PERCENT] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_POUND] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_PERCENT] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA_COMMA] = { .visible = true, .named = false, }, @@ -1134,11 +1233,63 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_COLON_QMARK] = { + [anon_sym_AT] = { .visible = true, .named = false, }, - [anon_sym_COLON_DASH] = { + [anon_sym_U] = { + .visible = true, + .named = false, + }, + [anon_sym_u] = { + .visible = true, + .named = false, + }, + [anon_sym_L] = { + .visible = true, + .named = false, + }, + [anon_sym_Q] = { + .visible = true, + .named = false, + }, + [anon_sym_E] = { + .visible = true, + .named = false, + }, + [anon_sym_P] = { + .visible = true, + .named = false, + }, + [anon_sym_A] = { + .visible = true, + .named = false, + }, + [anon_sym_K] = { + .visible = true, + .named = false, + }, + [anon_sym_a] = { + .visible = true, + .named = false, + }, + [anon_sym_k] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA2] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA_COMMA2] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET2] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET_CARET2] = { .visible = true, .named = false, }, @@ -1178,10 +1329,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [anon_sym_AT] = { - .visible = true, - .named = true, - }, [anon_sym_0] = { .visible = true, .named = true, @@ -1198,8 +1345,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__simple_heredoc_body] = { - .visible = false, + [sym_simple_heredoc_body] = { + .visible = true, .named = true, }, [sym__heredoc_body_beginning] = { @@ -1210,8 +1357,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__heredoc_body_end] = { - .visible = false, + [sym_heredoc_end] = { + .visible = true, .named = true, }, [sym_file_descriptor] = { @@ -1234,6 +1381,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__regex_no_slash] = { + .visible = true, + .named = true, + }, + [sym__regex_no_space] = { + .visible = true, + .named = true, + }, [sym_extglob_pattern] = { .visible = true, .named = true, @@ -1402,10 +1557,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__heredoc_pipeline] = { + .visible = true, + .named = true, + }, + [sym__heredoc_body] = { + .visible = false, + .named = true, + }, [sym_heredoc_body] = { .visible = true, .named = true, }, + [sym__simple_heredoc_body] = { + .visible = false, + .named = true, + }, [sym_herestring_redirect] = { .visible = true, .named = true, @@ -1579,6 +1746,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_arithmetic_expansion_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_concatenation_repeat1] = { .visible = false, .named = false, @@ -1595,6 +1766,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym__expansion_body_repeat2] = { + .visible = false, + .named = false, + }, }; enum { @@ -1644,9 +1819,9 @@ static const char * const ts_field_names[] = { static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [2] = {.index = 0, .length = 1}, - [3] = {.index = 1, .length = 1}, - [4] = {.index = 2, .length = 3}, - [5] = {.index = 5, .length = 3}, + [3] = {.index = 1, .length = 3}, + [4] = {.index = 4, .length = 3}, + [5] = {.index = 7, .length = 1}, [8] = {.index = 8, .length = 2}, [9] = {.index = 10, .length = 1}, [10] = {.index = 10, .length = 1}, @@ -1657,104 +1832,112 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [15] = {.index = 16, .length = 2}, [16] = {.index = 18, .length = 2}, [17] = {.index = 20, .length = 2}, - [19] = {.index = 22, .length = 2}, - [20] = {.index = 22, .length = 2}, - [21] = {.index = 24, .length = 2}, - [22] = {.index = 26, .length = 2}, - [23] = {.index = 28, .length = 2}, - [24] = {.index = 28, .length = 2}, - [25] = {.index = 30, .length = 2}, - [26] = {.index = 32, .length = 1}, - [27] = {.index = 33, .length = 1}, - [28] = {.index = 33, .length = 1}, + [19] = {.index = 22, .length = 1}, + [20] = {.index = 22, .length = 1}, + [21] = {.index = 23, .length = 1}, + [22] = {.index = 24, .length = 2}, + [23] = {.index = 24, .length = 2}, + [24] = {.index = 26, .length = 2}, + [25] = {.index = 28, .length = 2}, + [26] = {.index = 30, .length = 2}, + [27] = {.index = 30, .length = 2}, + [28] = {.index = 32, .length = 2}, [29] = {.index = 34, .length = 3}, - [31] = {.index = 37, .length = 2}, - [32] = {.index = 39, .length = 1}, - [33] = {.index = 39, .length = 1}, - [35] = {.index = 40, .length = 4}, - [36] = {.index = 44, .length = 1}, - [37] = {.index = 45, .length = 1}, - [38] = {.index = 46, .length = 1}, - [39] = {.index = 46, .length = 1}, - [40] = {.index = 47, .length = 2}, - [41] = {.index = 49, .length = 4}, - [42] = {.index = 53, .length = 2}, - [43] = {.index = 55, .length = 2}, - [44] = {.index = 57, .length = 2}, - [45] = {.index = 59, .length = 2}, - [46] = {.index = 61, .length = 2}, - [47] = {.index = 63, .length = 2}, - [48] = {.index = 65, .length = 3}, - [49] = {.index = 68, .length = 2}, - [50] = {.index = 70, .length = 2}, - [51] = {.index = 72, .length = 2}, - [52] = {.index = 74, .length = 2}, - [53] = {.index = 68, .length = 2}, - [54] = {.index = 70, .length = 2}, - [55] = {.index = 72, .length = 2}, - [56] = {.index = 76, .length = 3}, - [57] = {.index = 79, .length = 3}, - [58] = {.index = 82, .length = 3}, - [59] = {.index = 85, .length = 3}, - [60] = {.index = 88, .length = 3}, - [61] = {.index = 91, .length = 3}, - [62] = {.index = 94, .length = 3}, - [63] = {.index = 97, .length = 3}, - [64] = {.index = 100, .length = 2}, - [65] = {.index = 102, .length = 2}, - [66] = {.index = 104, .length = 3}, - [67] = {.index = 107, .length = 3}, - [68] = {.index = 110, .length = 2}, - [69] = {.index = 112, .length = 2}, - [70] = {.index = 114, .length = 2}, - [71] = {.index = 110, .length = 2}, - [72] = {.index = 112, .length = 2}, - [73] = {.index = 114, .length = 2}, - [74] = {.index = 100, .length = 2}, - [75] = {.index = 102, .length = 2}, - [76] = {.index = 104, .length = 3}, - [77] = {.index = 107, .length = 3}, - [78] = {.index = 116, .length = 4}, - [79] = {.index = 120, .length = 4}, - [80] = {.index = 124, .length = 4}, - [81] = {.index = 128, .length = 4}, - [82] = {.index = 132, .length = 4}, - [83] = {.index = 136, .length = 4}, - [84] = {.index = 140, .length = 3}, - [85] = {.index = 143, .length = 3}, - [86] = {.index = 146, .length = 2}, - [87] = {.index = 148, .length = 2}, - [88] = {.index = 150, .length = 3}, - [89] = {.index = 153, .length = 3}, - [90] = {.index = 146, .length = 2}, - [91] = {.index = 148, .length = 2}, - [92] = {.index = 150, .length = 3}, - [93] = {.index = 153, .length = 3}, - [94] = {.index = 140, .length = 3}, - [95] = {.index = 143, .length = 3}, - [96] = {.index = 156, .length = 5}, - [97] = {.index = 161, .length = 5}, - [98] = {.index = 166, .length = 5}, - [99] = {.index = 171, .length = 3}, - [100] = {.index = 174, .length = 3}, - [101] = {.index = 171, .length = 3}, - [102] = {.index = 174, .length = 3}, - [103] = {.index = 177, .length = 6}, + [30] = {.index = 37, .length = 1}, + [31] = {.index = 38, .length = 1}, + [32] = {.index = 38, .length = 1}, + [34] = {.index = 22, .length = 1}, + [35] = {.index = 39, .length = 1}, + [37] = {.index = 22, .length = 1}, + [38] = {.index = 39, .length = 1}, + [39] = {.index = 40, .length = 1}, + [40] = {.index = 41, .length = 2}, + [41] = {.index = 43, .length = 1}, + [42] = {.index = 43, .length = 1}, + [44] = {.index = 44, .length = 4}, + [45] = {.index = 48, .length = 1}, + [46] = {.index = 49, .length = 1}, + [47] = {.index = 50, .length = 1}, + [48] = {.index = 50, .length = 1}, + [49] = {.index = 51, .length = 2}, + [50] = {.index = 53, .length = 4}, + [51] = {.index = 57, .length = 2}, + [52] = {.index = 59, .length = 2}, + [53] = {.index = 61, .length = 2}, + [54] = {.index = 63, .length = 2}, + [55] = {.index = 65, .length = 2}, + [56] = {.index = 67, .length = 2}, + [57] = {.index = 69, .length = 3}, + [58] = {.index = 72, .length = 3}, + [59] = {.index = 75, .length = 2}, + [60] = {.index = 77, .length = 2}, + [61] = {.index = 79, .length = 2}, + [62] = {.index = 81, .length = 2}, + [63] = {.index = 75, .length = 2}, + [64] = {.index = 77, .length = 2}, + [65] = {.index = 79, .length = 2}, + [68] = {.index = 83, .length = 3}, + [69] = {.index = 86, .length = 3}, + [70] = {.index = 89, .length = 3}, + [71] = {.index = 92, .length = 3}, + [72] = {.index = 95, .length = 3}, + [73] = {.index = 98, .length = 3}, + [74] = {.index = 101, .length = 3}, + [75] = {.index = 104, .length = 2}, + [76] = {.index = 106, .length = 2}, + [77] = {.index = 108, .length = 3}, + [78] = {.index = 111, .length = 3}, + [79] = {.index = 114, .length = 2}, + [80] = {.index = 116, .length = 2}, + [81] = {.index = 118, .length = 2}, + [82] = {.index = 114, .length = 2}, + [83] = {.index = 116, .length = 2}, + [84] = {.index = 118, .length = 2}, + [85] = {.index = 104, .length = 2}, + [86] = {.index = 106, .length = 2}, + [87] = {.index = 108, .length = 3}, + [88] = {.index = 111, .length = 3}, + [89] = {.index = 120, .length = 4}, + [90] = {.index = 124, .length = 4}, + [91] = {.index = 128, .length = 4}, + [92] = {.index = 132, .length = 4}, + [93] = {.index = 136, .length = 4}, + [94] = {.index = 140, .length = 4}, + [95] = {.index = 144, .length = 3}, + [96] = {.index = 147, .length = 3}, + [97] = {.index = 150, .length = 2}, + [98] = {.index = 152, .length = 2}, + [99] = {.index = 154, .length = 3}, + [100] = {.index = 157, .length = 3}, + [101] = {.index = 150, .length = 2}, + [102] = {.index = 152, .length = 2}, + [103] = {.index = 154, .length = 3}, + [104] = {.index = 157, .length = 3}, + [105] = {.index = 144, .length = 3}, + [106] = {.index = 147, .length = 3}, + [107] = {.index = 160, .length = 5}, + [108] = {.index = 165, .length = 5}, + [109] = {.index = 170, .length = 5}, + [110] = {.index = 175, .length = 3}, + [111] = {.index = 178, .length = 3}, + [112] = {.index = 175, .length = 3}, + [113] = {.index = 178, .length = 3}, + [114] = {.index = 181, .length = 6}, }; static const TSFieldMapEntry ts_field_map_entries[] = { [0] = {field_name, 0}, [1] = - {field_destination, 1}, - [2] = {field_left, 0, .inherited = true}, {field_operator, 0, .inherited = true}, {field_right, 0, .inherited = true}, - [5] = + [4] = {field_alternative, 0, .inherited = true}, {field_condition, 0, .inherited = true}, {field_consequence, 0, .inherited = true}, + [7] = + {field_destination, 1}, [8] = {field_body, 0}, {field_redirect, 1}, @@ -1778,220 +1961,228 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 2}, {field_name, 1}, [22] = + {field_operator, 1}, + [23] = + {field_operator, 1, .inherited = true}, + [24] = {field_argument, 0}, {field_argument, 1}, - [24] = + [26] = {field_argument, 0, .inherited = true}, {field_argument, 1, .inherited = true}, - [26] = + [28] = {field_argument, 2, .inherited = true}, {field_name, 1}, - [28] = + [30] = {field_index, 2}, {field_name, 0}, - [30] = + [32] = {field_body, 3}, {field_variable, 1}, - [32] = - {field_condition, 1}, - [33] = - {field_value, 1}, [34] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, [37] = + {field_condition, 1}, + [38] = + {field_value, 1}, + [39] = + {field_operator, 2}, + [40] = + {field_operator, 2, .inherited = true}, + [41] = {field_body, 3}, {field_name, 0}, - [39] = + [43] = {field_descriptor, 0}, - [40] = + [44] = {field_body, 4}, {field_condition, 2, .inherited = true}, {field_initializer, 2, .inherited = true}, {field_update, 2, .inherited = true}, - [44] = + [48] = {field_initializer, 0}, - [45] = + [49] = {field_update, 2}, - [46] = + [50] = {field_value, 0}, - [47] = + [51] = {field_body, 4}, {field_name, 1}, - [49] = + [53] = {field_body, 5}, {field_condition, 2, .inherited = true}, {field_initializer, 2, .inherited = true}, {field_update, 2, .inherited = true}, - [53] = + [57] = {field_condition, 2}, {field_initializer, 0}, - [55] = + [59] = {field_initializer, 0}, {field_update, 3}, - [57] = + [61] = {field_initializer, 0}, {field_initializer, 1}, - [59] = + [63] = {field_condition, 1}, {field_update, 3}, - [61] = + [65] = {field_condition, 1}, {field_condition, 2}, - [63] = + [67] = {field_update, 2}, {field_update, 3}, - [65] = + [69] = {field_body, 5}, {field_value, 3}, {field_variable, 1}, - [68] = + [72] = + {field_alternative, 4}, + {field_condition, 0}, + {field_consequence, 2}, + [75] = {field_termination, 2}, {field_value, 0}, - [70] = + [77] = {field_fallthrough, 2}, {field_value, 0}, - [72] = + [79] = {field_value, 0}, {field_value, 1, .inherited = true}, - [74] = + [81] = {field_value, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [76] = - {field_alternative, 4}, - {field_condition, 0}, - {field_consequence, 2}, - [79] = + [83] = {field_condition, 2}, {field_initializer, 0}, {field_update, 4}, - [82] = + [86] = {field_condition, 2}, {field_condition, 3}, {field_initializer, 0}, - [85] = + [89] = {field_initializer, 0}, {field_update, 3}, {field_update, 4}, - [88] = + [92] = {field_condition, 3}, {field_initializer, 0}, {field_initializer, 1}, - [91] = + [95] = {field_initializer, 0}, {field_initializer, 1}, {field_update, 4}, - [94] = + [98] = {field_condition, 1}, {field_update, 3}, {field_update, 4}, - [97] = + [101] = {field_condition, 1}, {field_condition, 2}, {field_update, 4}, - [100] = + [104] = {field_termination, 3}, {field_value, 0}, - [102] = + [106] = {field_fallthrough, 3}, {field_value, 0}, - [104] = + [108] = {field_termination, 3}, {field_value, 0}, {field_value, 1, .inherited = true}, - [107] = + [111] = {field_fallthrough, 3}, {field_value, 0}, {field_value, 1, .inherited = true}, - [110] = + [114] = {field_termination, 3}, {field_value, 1}, - [112] = + [116] = {field_fallthrough, 3}, {field_value, 1}, - [114] = + [118] = {field_value, 1}, {field_value, 2, .inherited = true}, - [116] = + [120] = {field_condition, 2}, {field_initializer, 0}, {field_update, 4}, {field_update, 5}, - [120] = + [124] = {field_condition, 2}, {field_condition, 3}, {field_initializer, 0}, {field_update, 5}, - [124] = + [128] = {field_condition, 3}, {field_initializer, 0}, {field_initializer, 1}, {field_update, 5}, - [128] = + [132] = {field_condition, 3}, {field_condition, 4}, {field_initializer, 0}, {field_initializer, 1}, - [132] = + [136] = {field_initializer, 0}, {field_initializer, 1}, {field_update, 4}, {field_update, 5}, - [136] = + [140] = {field_condition, 1}, {field_condition, 2}, {field_update, 4}, {field_update, 5}, - [140] = + [144] = {field_termination, 4}, {field_value, 0}, {field_value, 1, .inherited = true}, - [143] = + [147] = {field_fallthrough, 4}, {field_value, 0}, {field_value, 1, .inherited = true}, - [146] = + [150] = {field_termination, 4}, {field_value, 1}, - [148] = + [152] = {field_fallthrough, 4}, {field_value, 1}, - [150] = + [154] = {field_termination, 4}, {field_value, 1}, {field_value, 2, .inherited = true}, - [153] = + [157] = {field_fallthrough, 4}, {field_value, 1}, {field_value, 2, .inherited = true}, - [156] = + [160] = {field_condition, 2}, {field_condition, 3}, {field_initializer, 0}, {field_update, 5}, {field_update, 6}, - [161] = + [165] = {field_condition, 3}, {field_initializer, 0}, {field_initializer, 1}, {field_update, 5}, {field_update, 6}, - [166] = + [170] = {field_condition, 3}, {field_condition, 4}, {field_initializer, 0}, {field_initializer, 1}, {field_update, 6}, - [171] = + [175] = {field_termination, 5}, {field_value, 1}, {field_value, 2, .inherited = true}, - [174] = + [178] = {field_fallthrough, 5}, {field_value, 1}, {field_value, 2, .inherited = true}, - [177] = + [181] = {field_condition, 3}, {field_condition, 4}, {field_initializer, 0}, @@ -2006,10 +2197,10 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [0] = sym_word, }, [6] = { - [1] = anon_sym_AT, + [1] = anon_sym_0, }, [7] = { - [0] = anon_sym_AT, + [0] = anon_sym_0, }, [10] = { [0] = sym_word, @@ -2021,78 +2212,104 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = sym_word, }, [20] = { + [0] = anon_sym_0, + }, + [23] = { [1] = sym_word, }, - [24] = { + [27] = { [2] = sym_word, }, - [28] = { + [32] = { [1] = sym_word, }, - [30] = { - [2] = sym_word, - }, [33] = { - [2] = sym_word, + [2] = sym_regex, }, [34] = { + [2] = sym_regex, + }, + [36] = { + [0] = anon_sym_0, + [2] = sym_regex, + }, + [37] = { + [0] = anon_sym_0, + [2] = sym_regex, + }, + [38] = { + [0] = anon_sym_0, + }, + [42] = { + [2] = sym_word, + }, + [43] = { [0] = sym_variable_name, }, - [39] = { + [48] = { [0] = sym_word, }, - [53] = { + [63] = { [0] = sym_word, }, - [54] = { + [64] = { [0] = sym_word, }, - [55] = { + [65] = { [0] = sym_word, }, - [71] = { + [66] = { + [2] = sym_regex, + [4] = sym_word, + }, + [67] = { + [0] = anon_sym_0, + [2] = sym_regex, + [4] = sym_word, + }, + [82] = { [1] = sym_word, }, - [72] = { + [83] = { [1] = sym_word, }, - [73] = { + [84] = { [1] = sym_word, }, - [74] = { + [85] = { [0] = sym_word, }, - [75] = { + [86] = { [0] = sym_word, }, - [76] = { + [87] = { [0] = sym_word, }, - [77] = { + [88] = { [0] = sym_word, }, - [90] = { + [101] = { [1] = sym_word, }, - [91] = { + [102] = { [1] = sym_word, }, - [92] = { + [103] = { [1] = sym_word, }, - [93] = { + [104] = { [1] = sym_word, }, - [94] = { + [105] = { [0] = sym_word, }, - [95] = { + [106] = { [0] = sym_word, }, - [101] = { + [112] = { [1] = sym_word, }, - [102] = { + [113] = { [1] = sym_word, }, }; @@ -2109,29 +2326,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 3, - [5] = 2, - [6] = 3, - [7] = 2, - [8] = 3, + [4] = 2, + [5] = 3, + [6] = 2, + [7] = 3, + [8] = 8, [9] = 9, - [10] = 10, - [11] = 9, + [10] = 9, + [11] = 8, [12] = 9, - [13] = 10, + [13] = 8, [14] = 14, - [15] = 10, + [15] = 14, [16] = 14, - [17] = 14, - [18] = 14, - [19] = 19, - [20] = 20, - [21] = 19, - [22] = 20, - [23] = 19, - [24] = 20, - [25] = 19, - [26] = 20, + [17] = 17, + [18] = 18, + [19] = 18, + [20] = 17, + [21] = 18, + [22] = 17, + [23] = 23, + [24] = 24, + [25] = 25, + [26] = 26, [27] = 27, [28] = 28, [29] = 29, @@ -2143,11 +2360,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [35] = 35, [36] = 36, [37] = 37, - [38] = 38, + [38] = 8, [39] = 39, [40] = 40, [41] = 41, - [42] = 10, + [42] = 42, [43] = 43, [44] = 44, [45] = 45, @@ -2157,4770 +2374,4995 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [49] = 49, [50] = 50, [51] = 51, - [52] = 52, - [53] = 53, - [54] = 53, - [55] = 53, - [56] = 53, - [57] = 57, - [58] = 58, + [52] = 49, + [53] = 49, + [54] = 54, + [55] = 54, + [56] = 54, + [57] = 54, + [58] = 54, [59] = 59, - [60] = 60, - [61] = 59, - [62] = 59, - [63] = 59, - [64] = 59, - [65] = 59, - [66] = 59, - [67] = 67, + [60] = 54, + [61] = 54, + [62] = 54, + [63] = 63, + [64] = 64, + [65] = 63, + [66] = 66, + [67] = 63, [68] = 68, - [69] = 67, - [70] = 70, - [71] = 68, - [72] = 72, - [73] = 73, - [74] = 74, - [75] = 75, - [76] = 67, - [77] = 67, - [78] = 68, - [79] = 79, - [80] = 67, - [81] = 68, - [82] = 79, - [83] = 67, - [84] = 68, - [85] = 73, - [86] = 79, - [87] = 67, - [88] = 68, - [89] = 79, - [90] = 67, - [91] = 68, - [92] = 72, - [93] = 79, - [94] = 67, - [95] = 68, - [96] = 79, - [97] = 70, - [98] = 67, - [99] = 68, - [100] = 79, - [101] = 70, - [102] = 73, - [103] = 74, - [104] = 67, - [105] = 75, + [69] = 66, + [70] = 66, + [71] = 63, + [72] = 68, + [73] = 66, + [74] = 63, + [75] = 68, + [76] = 66, + [77] = 63, + [78] = 78, + [79] = 68, + [80] = 64, + [81] = 66, + [82] = 63, + [83] = 68, + [84] = 84, + [85] = 64, + [86] = 66, + [87] = 87, + [88] = 88, + [89] = 63, + [90] = 68, + [91] = 64, + [92] = 66, + [93] = 93, + [94] = 78, + [95] = 63, + [96] = 68, + [97] = 64, + [98] = 98, + [99] = 66, + [100] = 63, + [101] = 68, + [102] = 64, + [103] = 84, + [104] = 66, + [105] = 63, [106] = 68, - [107] = 79, - [108] = 70, - [109] = 67, - [110] = 68, - [111] = 79, - [112] = 70, - [113] = 67, - [114] = 68, - [115] = 72, - [116] = 79, - [117] = 70, - [118] = 67, - [119] = 68, - [120] = 73, - [121] = 74, - [122] = 79, - [123] = 75, - [124] = 70, - [125] = 67, - [126] = 68, - [127] = 79, - [128] = 70, - [129] = 67, - [130] = 68, - [131] = 79, - [132] = 70, - [133] = 70, - [134] = 134, - [135] = 135, - [136] = 67, - [137] = 79, + [107] = 87, + [108] = 64, + [109] = 66, + [110] = 63, + [111] = 68, + [112] = 64, + [113] = 68, + [114] = 66, + [115] = 63, + [116] = 68, + [117] = 64, + [118] = 63, + [119] = 66, + [120] = 63, + [121] = 66, + [122] = 68, + [123] = 84, + [124] = 64, + [125] = 66, + [126] = 63, + [127] = 68, + [128] = 64, + [129] = 66, + [130] = 63, + [131] = 68, + [132] = 64, + [133] = 64, + [134] = 88, + [135] = 66, + [136] = 136, + [137] = 63, [138] = 68, - [139] = 79, - [140] = 70, - [141] = 67, - [142] = 68, - [143] = 67, - [144] = 79, - [145] = 70, - [146] = 68, - [147] = 79, - [148] = 79, - [149] = 68, - [150] = 70, - [151] = 67, - [152] = 67, - [153] = 68, - [154] = 72, - [155] = 155, - [156] = 79, - [157] = 70, - [158] = 134, - [159] = 135, - [160] = 79, - [161] = 68, - [162] = 79, - [163] = 79, - [164] = 70, - [165] = 67, + [139] = 64, + [140] = 66, + [141] = 93, + [142] = 78, + [143] = 98, + [144] = 63, + [145] = 68, + [146] = 64, + [147] = 84, + [148] = 68, + [149] = 66, + [150] = 63, + [151] = 63, + [152] = 68, + [153] = 64, + [154] = 66, + [155] = 66, + [156] = 63, + [157] = 68, + [158] = 64, + [159] = 66, + [160] = 63, + [161] = 64, + [162] = 68, + [163] = 64, + [164] = 66, + [165] = 63, [166] = 68, - [167] = 79, - [168] = 70, - [169] = 67, + [167] = 64, + [168] = 66, + [169] = 63, [170] = 68, - [171] = 79, - [172] = 70, - [173] = 67, + [171] = 64, + [172] = 66, + [173] = 63, [174] = 68, - [175] = 79, - [176] = 68, - [177] = 70, - [178] = 70, - [179] = 67, - [180] = 68, - [181] = 67, - [182] = 74, - [183] = 79, - [184] = 135, - [185] = 134, - [186] = 70, - [187] = 67, + [175] = 64, + [176] = 66, + [177] = 63, + [178] = 68, + [179] = 64, + [180] = 66, + [181] = 63, + [182] = 68, + [183] = 64, + [184] = 68, + [185] = 66, + [186] = 186, + [187] = 63, [188] = 68, - [189] = 79, - [190] = 79, - [191] = 70, - [192] = 67, - [193] = 49, - [194] = 68, - [195] = 70, + [189] = 63, + [190] = 93, + [191] = 64, + [192] = 63, + [193] = 66, + [194] = 66, + [195] = 63, [196] = 68, - [197] = 134, - [198] = 79, - [199] = 70, - [200] = 67, - [201] = 68, - [202] = 79, - [203] = 70, - [204] = 67, - [205] = 135, - [206] = 79, - [207] = 68, - [208] = 79, - [209] = 70, - [210] = 68, - [211] = 67, + [197] = 64, + [198] = 88, + [199] = 66, + [200] = 63, + [201] = 40, + [202] = 68, + [203] = 66, + [204] = 64, + [205] = 64, + [206] = 66, + [207] = 63, + [208] = 68, + [209] = 64, + [210] = 66, + [211] = 63, [212] = 68, - [213] = 79, - [214] = 67, - [215] = 70, - [216] = 70, - [217] = 134, - [218] = 79, - [219] = 67, - [220] = 68, - [221] = 79, - [222] = 70, - [223] = 67, - [224] = 68, - [225] = 68, - [226] = 79, - [227] = 67, - [228] = 70, - [229] = 67, - [230] = 70, - [231] = 79, + [213] = 63, + [214] = 68, + [215] = 64, + [216] = 66, + [217] = 66, + [218] = 64, + [219] = 68, + [220] = 64, + [221] = 66, + [222] = 63, + [223] = 68, + [224] = 64, + [225] = 66, + [226] = 63, + [227] = 68, + [228] = 64, + [229] = 66, + [230] = 63, + [231] = 98, [232] = 68, - [233] = 67, - [234] = 68, - [235] = 79, - [236] = 70, - [237] = 79, - [238] = 68, - [239] = 70, - [240] = 67, + [233] = 64, + [234] = 66, + [235] = 63, + [236] = 68, + [237] = 64, + [238] = 66, + [239] = 63, + [240] = 68, [241] = 68, - [242] = 79, - [243] = 70, - [244] = 67, - [245] = 68, - [246] = 67, - [247] = 79, - [248] = 70, - [249] = 70, - [250] = 67, - [251] = 68, - [252] = 79, - [253] = 70, - [254] = 67, - [255] = 68, - [256] = 79, - [257] = 68, - [258] = 67, - [259] = 70, - [260] = 79, - [261] = 79, + [242] = 64, + [243] = 63, + [244] = 66, + [245] = 87, + [246] = 66, + [247] = 63, + [248] = 68, + [249] = 64, + [250] = 66, + [251] = 63, + [252] = 68, + [253] = 64, + [254] = 66, + [255] = 63, + [256] = 68, + [257] = 64, + [258] = 64, + [259] = 66, + [260] = 68, + [261] = 63, [262] = 68, - [263] = 70, - [264] = 67, - [265] = 70, - [266] = 67, - [267] = 68, - [268] = 79, - [269] = 70, - [270] = 67, - [271] = 68, - [272] = 79, - [273] = 70, - [274] = 67, + [263] = 64, + [264] = 66, + [265] = 63, + [266] = 68, + [267] = 63, + [268] = 68, + [269] = 64, + [270] = 63, + [271] = 66, + [272] = 66, + [273] = 63, + [274] = 64, [275] = 68, - [276] = 79, - [277] = 70, - [278] = 67, - [279] = 68, - [280] = 79, - [281] = 70, - [282] = 67, - [283] = 68, - [284] = 79, - [285] = 70, - [286] = 67, - [287] = 68, - [288] = 79, - [289] = 70, - [290] = 67, - [291] = 75, + [276] = 68, + [277] = 68, + [278] = 66, + [279] = 63, + [280] = 68, + [281] = 64, + [282] = 66, + [283] = 63, + [284] = 68, + [285] = 64, + [286] = 66, + [287] = 63, + [288] = 68, + [289] = 64, + [290] = 66, + [291] = 63, [292] = 68, - [293] = 67, - [294] = 294, - [295] = 70, - [296] = 79, - [297] = 70, - [298] = 67, - [299] = 68, - [300] = 79, - [301] = 70, - [302] = 67, - [303] = 68, - [304] = 79, - [305] = 70, - [306] = 67, - [307] = 68, - [308] = 79, - [309] = 309, - [310] = 310, - [311] = 311, - [312] = 309, - [313] = 311, - [314] = 311, + [293] = 64, + [294] = 66, + [295] = 295, + [296] = 295, + [297] = 295, + [298] = 295, + [299] = 299, + [300] = 300, + [301] = 300, + [302] = 302, + [303] = 295, + [304] = 300, + [305] = 305, + [306] = 306, + [307] = 305, + [308] = 306, + [309] = 305, + [310] = 305, + [311] = 306, + [312] = 306, + [313] = 305, + [314] = 306, [315] = 315, - [316] = 311, - [317] = 309, - [318] = 309, - [319] = 311, - [320] = 320, - [321] = 321, - [322] = 320, - [323] = 321, - [324] = 321, - [325] = 320, - [326] = 320, - [327] = 321, - [328] = 321, - [329] = 321, - [330] = 320, - [331] = 320, - [332] = 321, - [333] = 320, + [316] = 305, + [317] = 306, + [318] = 305, + [319] = 306, + [320] = 306, + [321] = 305, + [322] = 322, + [323] = 323, + [324] = 323, + [325] = 323, + [326] = 322, + [327] = 322, + [328] = 322, + [329] = 322, + [330] = 322, + [331] = 323, + [332] = 322, + [333] = 322, [334] = 334, [335] = 335, - [336] = 335, - [337] = 334, - [338] = 334, + [336] = 334, + [337] = 335, + [338] = 338, [339] = 334, - [340] = 334, - [341] = 335, - [342] = 335, - [343] = 334, - [344] = 334, + [340] = 335, + [341] = 338, + [342] = 342, + [343] = 343, + [344] = 344, [345] = 345, - [346] = 346, - [347] = 334, - [348] = 346, - [349] = 345, + [346] = 342, + [347] = 347, + [348] = 338, + [349] = 349, [350] = 350, - [351] = 345, - [352] = 346, - [353] = 350, + [351] = 351, + [352] = 352, + [353] = 353, [354] = 354, - [355] = 355, + [355] = 347, [356] = 356, - [357] = 350, + [357] = 357, [358] = 358, - [359] = 359, - [360] = 359, + [359] = 345, + [360] = 344, [361] = 361, - [362] = 362, - [363] = 356, - [364] = 359, - [365] = 358, + [362] = 342, + [363] = 343, + [364] = 364, + [365] = 365, [366] = 366, [367] = 367, [368] = 368, - [369] = 354, + [369] = 369, [370] = 370, [371] = 371, [372] = 372, [373] = 373, - [374] = 374, - [375] = 375, - [376] = 376, - [377] = 355, - [378] = 378, - [379] = 379, - [380] = 380, - [381] = 381, - [382] = 382, - [383] = 383, - [384] = 382, - [385] = 385, - [386] = 374, - [387] = 373, - [388] = 366, - [389] = 376, - [390] = 361, - [391] = 378, - [392] = 392, - [393] = 379, - [394] = 372, - [395] = 392, - [396] = 380, - [397] = 375, - [398] = 381, - [399] = 371, - [400] = 370, - [401] = 367, - [402] = 368, - [403] = 383, - [404] = 362, - [405] = 405, - [406] = 385, - [407] = 407, - [408] = 407, - [409] = 392, - [410] = 350, - [411] = 354, - [412] = 405, - [413] = 359, - [414] = 356, - [415] = 355, - [416] = 358, - [417] = 407, - [418] = 370, - [419] = 371, - [420] = 373, - [421] = 362, - [422] = 374, - [423] = 379, - [424] = 383, - [425] = 376, - [426] = 367, - [427] = 361, - [428] = 366, - [429] = 382, - [430] = 375, - [431] = 368, - [432] = 372, - [433] = 380, - [434] = 381, - [435] = 378, - [436] = 392, - [437] = 385, - [438] = 407, - [439] = 405, + [374] = 349, + [375] = 364, + [376] = 365, + [377] = 377, + [378] = 373, + [379] = 377, + [380] = 372, + [381] = 354, + [382] = 368, + [383] = 366, + [384] = 350, + [385] = 369, + [386] = 371, + [387] = 351, + [388] = 370, + [389] = 352, + [390] = 353, + [391] = 356, + [392] = 357, + [393] = 358, + [394] = 361, + [395] = 395, + [396] = 367, + [397] = 397, + [398] = 395, + [399] = 377, + [400] = 400, + [401] = 338, + [402] = 400, + [403] = 342, + [404] = 347, + [405] = 400, + [406] = 345, + [407] = 343, + [408] = 344, + [409] = 397, + [410] = 356, + [411] = 365, + [412] = 370, + [413] = 357, + [414] = 358, + [415] = 352, + [416] = 372, + [417] = 361, + [418] = 366, + [419] = 364, + [420] = 353, + [421] = 368, + [422] = 369, + [423] = 351, + [424] = 371, + [425] = 349, + [426] = 350, + [427] = 367, + [428] = 373, + [429] = 354, + [430] = 430, + [431] = 377, + [432] = 395, + [433] = 397, + [434] = 400, + [435] = 435, + [436] = 435, + [437] = 435, + [438] = 435, + [439] = 439, [440] = 440, - [441] = 440, - [442] = 440, - [443] = 440, - [444] = 444, - [445] = 445, + [441] = 441, + [442] = 441, + [443] = 443, + [444] = 439, + [445] = 440, [446] = 446, [447] = 447, [448] = 448, - [449] = 446, - [450] = 450, - [451] = 451, - [452] = 445, - [453] = 453, - [454] = 444, - [455] = 444, - [456] = 445, - [457] = 453, - [458] = 451, - [459] = 446, - [460] = 446, - [461] = 444, - [462] = 447, - [463] = 448, - [464] = 445, - [465] = 345, - [466] = 346, - [467] = 450, - [468] = 445, + [449] = 449, + [450] = 446, + [451] = 449, + [452] = 448, + [453] = 443, + [454] = 439, + [455] = 447, + [456] = 439, + [457] = 441, + [458] = 441, + [459] = 440, + [460] = 440, + [461] = 335, + [462] = 334, + [463] = 334, + [464] = 448, + [465] = 465, + [466] = 466, + [467] = 449, + [468] = 468, [469] = 469, - [470] = 451, + [470] = 448, [471] = 471, - [472] = 472, - [473] = 473, - [474] = 474, - [475] = 475, - [476] = 446, - [477] = 445, - [478] = 444, - [479] = 448, - [480] = 345, - [481] = 346, - [482] = 482, - [483] = 448, - [484] = 451, - [485] = 453, - [486] = 453, - [487] = 446, - [488] = 450, - [489] = 489, - [490] = 447, - [491] = 491, - [492] = 450, - [493] = 447, - [494] = 447, - [495] = 345, - [496] = 345, - [497] = 346, - [498] = 469, - [499] = 345, - [500] = 450, - [501] = 491, - [502] = 451, - [503] = 471, - [504] = 489, - [505] = 453, - [506] = 472, - [507] = 447, - [508] = 473, - [509] = 346, - [510] = 472, - [511] = 475, - [512] = 448, - [513] = 482, - [514] = 345, - [515] = 473, - [516] = 346, - [517] = 453, - [518] = 475, - [519] = 346, - [520] = 451, - [521] = 448, - [522] = 472, - [523] = 489, - [524] = 471, - [525] = 346, - [526] = 345, - [527] = 346, - [528] = 475, - [529] = 345, - [530] = 475, - [531] = 473, - [532] = 473, - [533] = 346, - [534] = 346, - [535] = 345, - [536] = 472, - [537] = 471, - [538] = 472, - [539] = 482, - [540] = 345, - [541] = 473, - [542] = 346, - [543] = 345, - [544] = 482, - [545] = 489, - [546] = 475, - [547] = 547, + [472] = 443, + [473] = 446, + [474] = 443, + [475] = 449, + [476] = 447, + [477] = 439, + [478] = 335, + [479] = 441, + [480] = 440, + [481] = 446, + [482] = 440, + [483] = 441, + [484] = 447, + [485] = 485, + [486] = 471, + [487] = 334, + [488] = 446, + [489] = 471, + [490] = 334, + [491] = 449, + [492] = 443, + [493] = 335, + [494] = 448, + [495] = 446, + [496] = 465, + [497] = 469, + [498] = 334, + [499] = 335, + [500] = 468, + [501] = 334, + [502] = 466, + [503] = 447, + [504] = 485, + [505] = 443, + [506] = 449, + [507] = 469, + [508] = 335, + [509] = 448, + [510] = 468, + [511] = 335, + [512] = 465, + [513] = 466, + [514] = 485, + [515] = 335, + [516] = 334, + [517] = 469, + [518] = 471, + [519] = 469, + [520] = 468, + [521] = 471, + [522] = 469, + [523] = 471, + [524] = 334, + [525] = 335, + [526] = 468, + [527] = 465, + [528] = 335, + [529] = 334, + [530] = 468, + [531] = 334, + [532] = 466, + [533] = 335, + [534] = 335, + [535] = 334, + [536] = 485, + [537] = 335, + [538] = 439, + [539] = 466, + [540] = 540, + [541] = 471, + [542] = 468, + [543] = 465, + [544] = 335, + [545] = 469, + [546] = 334, + [547] = 485, [548] = 548, - [549] = 549, - [550] = 346, - [551] = 475, - [552] = 549, - [553] = 549, - [554] = 489, - [555] = 473, - [556] = 475, - [557] = 346, - [558] = 345, - [559] = 471, + [549] = 465, + [550] = 469, + [551] = 540, + [552] = 334, + [553] = 471, + [554] = 334, + [555] = 471, + [556] = 335, + [557] = 440, + [558] = 468, + [559] = 466, [560] = 560, - [561] = 345, - [562] = 549, - [563] = 489, - [564] = 473, - [565] = 345, - [566] = 566, - [567] = 346, - [568] = 547, - [569] = 482, - [570] = 473, - [571] = 469, - [572] = 482, - [573] = 573, - [574] = 346, - [575] = 475, - [576] = 491, - [577] = 491, - [578] = 566, - [579] = 472, - [580] = 580, - [581] = 345, - [582] = 469, - [583] = 346, - [584] = 548, - [585] = 472, - [586] = 345, - [587] = 573, - [588] = 346, - [589] = 345, - [590] = 472, - [591] = 474, - [592] = 592, - [593] = 346, - [594] = 594, - [595] = 592, - [596] = 592, - [597] = 592, - [598] = 345, - [599] = 346, - [600] = 592, - [601] = 592, - [602] = 469, - [603] = 345, - [604] = 446, - [605] = 475, - [606] = 345, - [607] = 346, - [608] = 472, - [609] = 491, + [561] = 441, + [562] = 334, + [563] = 334, + [564] = 335, + [565] = 334, + [566] = 560, + [567] = 468, + [568] = 469, + [569] = 335, + [570] = 335, + [571] = 334, + [572] = 334, + [573] = 469, + [574] = 334, + [575] = 335, + [576] = 576, + [577] = 576, + [578] = 576, + [579] = 576, + [580] = 576, + [581] = 440, + [582] = 576, + [583] = 441, + [584] = 334, + [585] = 335, + [586] = 334, + [587] = 576, + [588] = 443, + [589] = 335, + [590] = 449, + [591] = 335, + [592] = 334, + [593] = 335, + [594] = 468, + [595] = 335, + [596] = 447, + [597] = 446, + [598] = 471, + [599] = 576, + [600] = 468, + [601] = 469, + [602] = 448, + [603] = 439, + [604] = 449, + [605] = 605, + [606] = 335, + [607] = 334, + [608] = 608, + [609] = 447, [610] = 610, - [611] = 445, - [612] = 346, - [613] = 345, - [614] = 444, - [615] = 346, - [616] = 472, - [617] = 473, - [618] = 346, - [619] = 345, - [620] = 473, + [611] = 446, + [612] = 443, + [613] = 613, + [614] = 334, + [615] = 448, + [616] = 616, + [617] = 334, + [618] = 335, + [619] = 335, + [620] = 468, [621] = 621, - [622] = 345, - [623] = 592, - [624] = 624, - [625] = 625, - [626] = 448, - [627] = 447, - [628] = 628, - [629] = 451, - [630] = 346, - [631] = 453, - [632] = 345, - [633] = 345, - [634] = 346, - [635] = 450, - [636] = 636, - [637] = 547, + [622] = 469, + [623] = 540, + [624] = 613, + [625] = 616, + [626] = 468, + [627] = 469, + [628] = 548, + [629] = 466, + [630] = 621, + [631] = 610, + [632] = 608, + [633] = 621, + [634] = 465, + [635] = 560, + [636] = 485, + [637] = 637, [638] = 638, - [639] = 346, - [640] = 638, - [641] = 628, - [642] = 566, - [643] = 624, - [644] = 636, - [645] = 638, - [646] = 580, - [647] = 345, - [648] = 648, - [649] = 625, - [650] = 573, - [651] = 346, - [652] = 346, - [653] = 345, - [654] = 473, - [655] = 345, - [656] = 475, + [639] = 471, + [640] = 334, + [641] = 335, + [642] = 471, + [643] = 335, + [644] = 613, + [645] = 466, + [646] = 646, + [647] = 468, + [648] = 616, + [649] = 469, + [650] = 465, + [651] = 334, + [652] = 540, + [653] = 608, + [654] = 335, + [655] = 335, + [656] = 610, [657] = 638, - [658] = 472, - [659] = 548, + [658] = 334, + [659] = 485, [660] = 560, - [661] = 661, - [662] = 346, - [663] = 566, - [664] = 345, - [665] = 624, + [661] = 334, + [662] = 613, + [663] = 616, + [664] = 471, + [665] = 665, [666] = 666, - [667] = 667, - [668] = 346, - [669] = 669, - [670] = 345, - [671] = 355, - [672] = 473, - [673] = 354, - [674] = 674, - [675] = 482, - [676] = 676, - [677] = 489, - [678] = 548, - [679] = 358, - [680] = 624, - [681] = 472, - [682] = 636, - [683] = 625, - [684] = 356, - [685] = 625, - [686] = 636, - [687] = 687, - [688] = 688, - [689] = 345, - [690] = 346, - [691] = 346, - [692] = 628, - [693] = 345, - [694] = 471, - [695] = 695, - [696] = 345, - [697] = 346, - [698] = 547, - [699] = 661, - [700] = 473, - [701] = 573, - [702] = 472, - [703] = 475, - [704] = 475, - [705] = 345, - [706] = 628, - [707] = 346, - [708] = 361, - [709] = 354, - [710] = 710, - [711] = 380, - [712] = 381, - [713] = 356, - [714] = 710, - [715] = 475, - [716] = 376, - [717] = 661, - [718] = 718, - [719] = 472, - [720] = 473, - [721] = 721, - [722] = 722, - [723] = 379, - [724] = 724, - [725] = 688, - [726] = 346, - [727] = 345, - [728] = 687, - [729] = 625, + [667] = 335, + [668] = 334, + [669] = 471, + [670] = 469, + [671] = 468, + [672] = 471, + [673] = 673, + [674] = 610, + [675] = 675, + [676] = 608, + [677] = 335, + [678] = 678, + [679] = 343, + [680] = 347, + [681] = 681, + [682] = 469, + [683] = 334, + [684] = 344, + [685] = 468, + [686] = 345, + [687] = 335, + [688] = 345, + [689] = 335, + [690] = 334, + [691] = 354, + [692] = 638, + [693] = 371, + [694] = 351, + [695] = 352, + [696] = 334, + [697] = 335, + [698] = 353, + [699] = 357, + [700] = 361, + [701] = 610, + [702] = 356, + [703] = 616, + [704] = 358, + [705] = 364, + [706] = 706, + [707] = 344, + [708] = 345, + [709] = 709, + [710] = 347, + [711] = 370, + [712] = 349, + [713] = 365, + [714] = 372, + [715] = 335, + [716] = 373, + [717] = 367, + [718] = 350, + [719] = 335, + [720] = 369, + [721] = 368, + [722] = 334, + [723] = 366, + [724] = 343, + [725] = 344, + [726] = 334, + [727] = 727, + [728] = 678, + [729] = 681, [730] = 730, - [731] = 378, - [732] = 356, - [733] = 625, - [734] = 358, - [735] = 636, - [736] = 628, - [737] = 676, - [738] = 636, - [739] = 382, - [740] = 373, - [741] = 730, - [742] = 355, - [743] = 345, - [744] = 383, - [745] = 346, - [746] = 666, - [747] = 674, - [748] = 667, - [749] = 374, - [750] = 718, - [751] = 751, - [752] = 752, + [731] = 347, + [732] = 732, + [733] = 343, + [734] = 665, + [735] = 334, + [736] = 335, + [737] = 334, + [738] = 335, + [739] = 666, + [740] = 468, + [741] = 334, + [742] = 613, + [743] = 608, + [744] = 334, + [745] = 335, + [746] = 469, + [747] = 747, + [748] = 748, + [749] = 334, + [750] = 335, + [751] = 638, + [752] = 471, [753] = 753, - [754] = 661, - [755] = 358, - [756] = 371, - [757] = 345, - [758] = 346, - [759] = 370, - [760] = 368, - [761] = 346, - [762] = 624, - [763] = 362, - [764] = 355, - [765] = 367, - [766] = 375, - [767] = 366, - [768] = 345, - [769] = 710, - [770] = 770, - [771] = 710, - [772] = 354, - [773] = 372, - [774] = 774, - [775] = 356, - [776] = 676, - [777] = 371, - [778] = 370, - [779] = 674, - [780] = 676, - [781] = 674, - [782] = 358, - [783] = 368, - [784] = 367, + [754] = 610, + [755] = 732, + [756] = 616, + [757] = 675, + [758] = 673, + [759] = 759, + [760] = 334, + [761] = 335, + [762] = 762, + [763] = 732, + [764] = 759, + [765] = 753, + [766] = 367, + [767] = 344, + [768] = 638, + [769] = 673, + [770] = 727, + [771] = 345, + [772] = 730, + [773] = 675, + [774] = 673, + [775] = 373, + [776] = 675, + [777] = 666, + [778] = 665, + [779] = 747, + [780] = 748, + [781] = 347, + [782] = 782, + [783] = 783, + [784] = 784, [785] = 785, - [786] = 354, - [787] = 355, - [788] = 366, - [789] = 789, - [790] = 790, - [791] = 791, + [786] = 747, + [787] = 748, + [788] = 343, + [789] = 365, + [790] = 681, + [791] = 334, [792] = 792, - [793] = 385, - [794] = 752, - [795] = 753, - [796] = 796, - [797] = 797, - [798] = 358, - [799] = 666, - [800] = 667, - [801] = 356, - [802] = 802, - [803] = 355, - [804] = 345, - [805] = 346, - [806] = 806, - [807] = 807, - [808] = 354, - [809] = 354, - [810] = 355, - [811] = 661, - [812] = 812, - [813] = 358, - [814] = 373, - [815] = 378, - [816] = 379, - [817] = 380, - [818] = 381, - [819] = 372, - [820] = 820, - [821] = 821, - [822] = 361, - [823] = 823, - [824] = 661, - [825] = 356, - [826] = 345, - [827] = 375, - [828] = 362, - [829] = 346, - [830] = 666, - [831] = 667, - [832] = 356, - [833] = 382, - [834] = 356, - [835] = 366, - [836] = 383, - [837] = 687, - [838] = 358, - [839] = 376, - [840] = 354, - [841] = 355, - [842] = 367, - [843] = 368, - [844] = 722, - [845] = 370, - [846] = 724, - [847] = 373, - [848] = 362, - [849] = 378, - [850] = 375, - [851] = 851, - [852] = 688, - [853] = 379, - [854] = 371, - [855] = 372, - [856] = 724, - [857] = 380, - [858] = 381, - [859] = 358, - [860] = 722, - [861] = 383, - [862] = 376, - [863] = 361, - [864] = 355, - [865] = 688, - [866] = 354, - [867] = 687, - [868] = 382, - [869] = 374, - [870] = 374, - [871] = 366, - [872] = 375, - [873] = 362, - [874] = 374, - [875] = 371, - [876] = 370, - [877] = 368, - [878] = 367, - [879] = 405, - [880] = 381, - [881] = 380, - [882] = 373, - [883] = 372, - [884] = 382, - [885] = 379, - [886] = 886, - [887] = 361, - [888] = 376, - [889] = 370, - [890] = 383, - [891] = 724, - [892] = 381, - [893] = 722, - [894] = 886, - [895] = 380, - [896] = 823, - [897] = 376, - [898] = 382, - [899] = 361, - [900] = 379, - [901] = 366, - [902] = 851, - [903] = 774, - [904] = 355, - [905] = 378, - [906] = 367, - [907] = 821, - [908] = 378, - [909] = 820, - [910] = 368, - [911] = 911, - [912] = 375, - [913] = 356, - [914] = 370, - [915] = 371, - [916] = 368, - [917] = 373, + [793] = 335, + [794] = 665, + [795] = 678, + [796] = 395, + [797] = 344, + [798] = 345, + [799] = 347, + [800] = 681, + [801] = 678, + [802] = 354, + [803] = 371, + [804] = 351, + [805] = 352, + [806] = 353, + [807] = 344, + [808] = 345, + [809] = 809, + [810] = 347, + [811] = 343, + [812] = 357, + [813] = 345, + [814] = 344, + [815] = 361, + [816] = 343, + [817] = 817, + [818] = 818, + [819] = 354, + [820] = 356, + [821] = 371, + [822] = 351, + [823] = 358, + [824] = 824, + [825] = 352, + [826] = 364, + [827] = 353, + [828] = 666, + [829] = 638, + [830] = 357, + [831] = 831, + [832] = 370, + [833] = 349, + [834] = 361, + [835] = 372, + [836] = 347, + [837] = 356, + [838] = 350, + [839] = 358, + [840] = 369, + [841] = 368, + [842] = 364, + [843] = 366, + [844] = 343, + [845] = 365, + [846] = 347, + [847] = 367, + [848] = 370, + [849] = 349, + [850] = 372, + [851] = 373, + [852] = 350, + [853] = 369, + [854] = 368, + [855] = 345, + [856] = 344, + [857] = 334, + [858] = 335, + [859] = 366, + [860] = 860, + [861] = 861, + [862] = 334, + [863] = 335, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 343, + [868] = 868, + [869] = 869, + [870] = 365, + [871] = 364, + [872] = 397, + [873] = 354, + [874] = 371, + [875] = 351, + [876] = 352, + [877] = 353, + [878] = 354, + [879] = 357, + [880] = 371, + [881] = 351, + [882] = 347, + [883] = 345, + [884] = 352, + [885] = 361, + [886] = 365, + [887] = 353, + [888] = 344, + [889] = 344, + [890] = 748, + [891] = 345, + [892] = 747, + [893] = 343, + [894] = 894, + [895] = 730, + [896] = 894, + [897] = 347, + [898] = 727, + [899] = 894, + [900] = 900, + [901] = 356, + [902] = 343, + [903] = 344, + [904] = 395, + [905] = 357, + [906] = 358, + [907] = 792, + [908] = 894, + [909] = 361, + [910] = 364, + [911] = 345, + [912] = 347, + [913] = 784, + [914] = 785, + [915] = 747, + [916] = 343, + [917] = 356, [918] = 367, - [919] = 374, - [920] = 367, - [921] = 368, - [922] = 374, - [923] = 354, - [924] = 375, - [925] = 355, - [926] = 378, - [927] = 361, - [928] = 376, - [929] = 370, - [930] = 374, - [931] = 851, - [932] = 774, - [933] = 356, - [934] = 812, - [935] = 371, - [936] = 752, - [937] = 366, - [938] = 355, - [939] = 372, - [940] = 753, - [941] = 358, - [942] = 379, - [943] = 382, - [944] = 354, - [945] = 945, - [946] = 374, - [947] = 947, - [948] = 372, - [949] = 385, - [950] = 366, - [951] = 367, - [952] = 380, - [953] = 381, + [919] = 748, + [920] = 358, + [921] = 370, + [922] = 349, + [923] = 364, + [924] = 809, + [925] = 344, + [926] = 354, + [927] = 372, + [928] = 356, + [929] = 373, + [930] = 345, + [931] = 364, + [932] = 343, + [933] = 817, + [934] = 678, + [935] = 681, + [936] = 818, + [937] = 344, + [938] = 366, + [939] = 345, + [940] = 831, + [941] = 894, + [942] = 784, + [943] = 785, + [944] = 675, + [945] = 673, + [946] = 353, + [947] = 366, + [948] = 347, + [949] = 894, + [950] = 950, + [951] = 368, + [952] = 369, + [953] = 366, [954] = 368, - [955] = 354, - [956] = 358, - [957] = 355, - [958] = 753, - [959] = 752, - [960] = 383, - [961] = 886, - [962] = 687, - [963] = 356, - [964] = 886, - [965] = 361, - [966] = 376, - [967] = 370, - [968] = 667, - [969] = 807, - [970] = 371, - [971] = 362, - [972] = 381, - [973] = 373, - [974] = 380, - [975] = 886, - [976] = 666, - [977] = 362, - [978] = 886, - [979] = 375, - [980] = 373, - [981] = 379, - [982] = 382, - [983] = 378, - [984] = 379, - [985] = 380, - [986] = 378, - [987] = 724, - [988] = 371, - [989] = 722, - [990] = 381, - [991] = 376, - [992] = 676, - [993] = 373, - [994] = 361, - [995] = 375, + [955] = 357, + [956] = 365, + [957] = 894, + [958] = 666, + [959] = 665, + [960] = 354, + [961] = 367, + [962] = 350, + [963] = 748, + [964] = 747, + [965] = 395, + [966] = 371, + [967] = 351, + [968] = 371, + [969] = 351, + [970] = 369, + [971] = 350, + [972] = 358, + [973] = 369, + [974] = 974, + [975] = 350, + [976] = 370, + [977] = 349, + [978] = 352, + [979] = 368, + [980] = 367, + [981] = 370, + [982] = 373, + [983] = 372, + [984] = 349, + [985] = 352, + [986] = 366, + [987] = 353, + [988] = 373, + [989] = 372, + [990] = 373, + [991] = 372, + [992] = 344, + [993] = 345, + [994] = 349, + [995] = 361, [996] = 996, - [997] = 382, - [998] = 372, - [999] = 356, - [1000] = 383, - [1001] = 674, - [1002] = 362, - [1003] = 356, - [1004] = 355, - [1005] = 354, - [1006] = 385, - [1007] = 354, - [1008] = 383, - [1009] = 1009, - [1010] = 356, - [1011] = 362, - [1012] = 688, - [1013] = 354, - [1014] = 724, - [1015] = 358, - [1016] = 366, - [1017] = 358, - [1018] = 358, - [1019] = 722, - [1020] = 1020, - [1021] = 372, - [1022] = 355, - [1023] = 886, - [1024] = 383, - [1025] = 362, - [1026] = 379, - [1027] = 373, - [1028] = 374, - [1029] = 362, - [1030] = 370, - [1031] = 376, - [1032] = 361, - [1033] = 375, - [1034] = 378, - [1035] = 378, - [1036] = 375, - [1037] = 372, - [1038] = 812, - [1039] = 373, - [1040] = 368, - [1041] = 374, - [1042] = 367, - [1043] = 722, - [1044] = 374, - [1045] = 355, - [1046] = 379, - [1047] = 382, - [1048] = 372, - [1049] = 354, - [1050] = 385, - [1051] = 358, - [1052] = 366, - [1053] = 381, - [1054] = 380, - [1055] = 356, - [1056] = 379, - [1057] = 383, - [1058] = 355, - [1059] = 354, - [1060] = 405, - [1061] = 358, - [1062] = 1062, - [1063] = 381, - [1064] = 383, - [1065] = 383, - [1066] = 372, - [1067] = 372, - [1068] = 382, - [1069] = 371, - [1070] = 375, - [1071] = 380, - [1072] = 362, - [1073] = 370, - [1074] = 356, - [1075] = 380, - [1076] = 354, - [1077] = 356, - [1078] = 361, - [1079] = 376, - [1080] = 383, - [1081] = 371, - [1082] = 381, - [1083] = 380, - [1084] = 382, - [1085] = 379, - [1086] = 378, - [1087] = 355, - [1088] = 354, - [1089] = 373, - [1090] = 358, - [1091] = 370, - [1092] = 376, - [1093] = 361, - [1094] = 355, - [1095] = 368, - [1096] = 361, - [1097] = 376, - [1098] = 367, - [1099] = 381, - [1100] = 380, - [1101] = 385, - [1102] = 371, - [1103] = 378, - [1104] = 373, - [1105] = 947, - [1106] = 823, - [1107] = 366, - [1108] = 373, - [1109] = 820, - [1110] = 945, - [1111] = 821, - [1112] = 368, - [1113] = 774, - [1114] = 851, - [1115] = 807, - [1116] = 376, - [1117] = 355, - [1118] = 354, - [1119] = 361, - [1120] = 1120, - [1121] = 821, - [1122] = 820, - [1123] = 366, - [1124] = 1124, - [1125] = 378, - [1126] = 367, - [1127] = 374, - [1128] = 405, - [1129] = 947, - [1130] = 382, - [1131] = 367, - [1132] = 385, - [1133] = 358, - [1134] = 368, - [1135] = 366, - [1136] = 370, - [1137] = 812, - [1138] = 385, - [1139] = 752, - [1140] = 371, - [1141] = 753, - [1142] = 356, - [1143] = 355, - [1144] = 996, - [1145] = 722, - [1146] = 722, - [1147] = 724, - [1148] = 356, - [1149] = 724, - [1150] = 724, - [1151] = 372, - [1152] = 371, - [1153] = 354, - [1154] = 370, - [1155] = 379, - [1156] = 374, - [1157] = 358, - [1158] = 375, - [1159] = 1159, - [1160] = 1009, - [1161] = 362, + [997] = 370, + [998] = 367, + [999] = 730, + [1000] = 727, + [1001] = 365, + [1002] = 894, + [1003] = 1003, + [1004] = 347, + [1005] = 361, + [1006] = 372, + [1007] = 373, + [1008] = 354, + [1009] = 356, + [1010] = 367, + [1011] = 350, + [1012] = 364, + [1013] = 343, + [1014] = 350, + [1015] = 353, + [1016] = 357, + [1017] = 369, + [1018] = 368, + [1019] = 361, + [1020] = 366, + [1021] = 357, + [1022] = 371, + [1023] = 351, + [1024] = 358, + [1025] = 343, + [1026] = 1026, + [1027] = 356, + [1028] = 358, + [1029] = 369, + [1030] = 368, + [1031] = 365, + [1032] = 370, + [1033] = 349, + [1034] = 352, + [1035] = 370, + [1036] = 397, + [1037] = 347, + [1038] = 370, + [1039] = 349, + [1040] = 364, + [1041] = 352, + [1042] = 372, + [1043] = 358, + [1044] = 616, + [1045] = 356, + [1046] = 350, + [1047] = 354, + [1048] = 356, + [1049] = 395, + [1050] = 357, + [1051] = 354, + [1052] = 358, + [1053] = 349, + [1054] = 369, + [1055] = 368, + [1056] = 361, + [1057] = 364, + [1058] = 366, + [1059] = 809, + [1060] = 351, + [1061] = 395, + [1062] = 373, + [1063] = 371, + [1064] = 344, + [1065] = 370, + [1066] = 357, + [1067] = 345, + [1068] = 395, + [1069] = 352, + [1070] = 361, + [1071] = 371, + [1072] = 747, + [1073] = 343, + [1074] = 748, + [1075] = 353, + [1076] = 353, + [1077] = 367, + [1078] = 343, + [1079] = 792, + [1080] = 817, + [1081] = 343, + [1082] = 365, + [1083] = 356, + [1084] = 365, + [1085] = 367, + [1086] = 358, + [1087] = 370, + [1088] = 349, + [1089] = 364, + [1090] = 1090, + [1091] = 818, + [1092] = 372, + [1093] = 373, + [1094] = 351, + [1095] = 372, + [1096] = 831, + [1097] = 351, + [1098] = 373, + [1099] = 371, + [1100] = 357, + [1101] = 344, + [1102] = 345, + [1103] = 1103, + [1104] = 831, + [1105] = 354, + [1106] = 367, + [1107] = 365, + [1108] = 365, + [1109] = 350, + [1110] = 347, + [1111] = 369, + [1112] = 367, + [1113] = 350, + [1114] = 369, + [1115] = 368, + [1116] = 368, + [1117] = 361, + [1118] = 349, + [1119] = 366, + [1120] = 366, + [1121] = 372, + [1122] = 784, + [1123] = 373, + [1124] = 785, + [1125] = 343, + [1126] = 344, + [1127] = 345, + [1128] = 785, + [1129] = 784, + [1130] = 900, + [1131] = 347, + [1132] = 397, + [1133] = 352, + [1134] = 353, + [1135] = 818, + [1136] = 817, + [1137] = 1137, + [1138] = 350, + [1139] = 792, + [1140] = 1140, + [1141] = 369, + [1142] = 368, + [1143] = 366, + [1144] = 354, + [1145] = 344, + [1146] = 950, + [1147] = 345, + [1148] = 353, + [1149] = 395, + [1150] = 371, + [1151] = 351, + [1152] = 357, + [1153] = 352, + [1154] = 809, + [1155] = 353, + [1156] = 343, + [1157] = 366, + [1158] = 361, + [1159] = 344, + [1160] = 364, + [1161] = 356, [1162] = 368, - [1163] = 1163, - [1164] = 383, - [1165] = 367, - [1166] = 385, - [1167] = 366, - [1168] = 382, - [1169] = 356, - [1170] = 1020, - [1171] = 362, - [1172] = 823, - [1173] = 774, - [1174] = 851, - [1175] = 375, - [1176] = 774, - [1177] = 851, - [1178] = 807, - [1179] = 381, - [1180] = 405, - [1181] = 385, - [1182] = 355, - [1183] = 354, - [1184] = 358, - [1185] = 356, - [1186] = 1163, - [1187] = 373, - [1188] = 356, - [1189] = 356, - [1190] = 1159, - [1191] = 376, - [1192] = 361, - [1193] = 378, - [1194] = 724, - [1195] = 722, - [1196] = 371, - [1197] = 1020, - [1198] = 379, - [1199] = 380, - [1200] = 820, - [1201] = 821, - [1202] = 851, - [1203] = 774, - [1204] = 381, - [1205] = 355, - [1206] = 354, - [1207] = 1124, - [1208] = 358, - [1209] = 1209, - [1210] = 774, - [1211] = 851, - [1212] = 382, - [1213] = 383, - [1214] = 1214, - [1215] = 362, - [1216] = 356, - [1217] = 375, - [1218] = 374, - [1219] = 947, - [1220] = 372, - [1221] = 1009, - [1222] = 1120, - [1223] = 371, - [1224] = 1062, - [1225] = 373, - [1226] = 373, - [1227] = 996, - [1228] = 405, - [1229] = 362, - [1230] = 370, - [1231] = 376, - [1232] = 361, - [1233] = 378, - [1234] = 380, - [1235] = 368, - [1236] = 367, - [1237] = 945, - [1238] = 370, - [1239] = 379, - [1240] = 376, - [1241] = 945, - [1242] = 361, - [1243] = 378, - [1244] = 366, - [1245] = 380, - [1246] = 381, - [1247] = 1120, - [1248] = 375, - [1249] = 368, - [1250] = 625, - [1251] = 367, - [1252] = 374, - [1253] = 636, - [1254] = 1163, - [1255] = 1159, - [1256] = 996, - [1257] = 379, - [1258] = 382, + [1163] = 369, + [1164] = 350, + [1165] = 345, + [1166] = 747, + [1167] = 373, + [1168] = 372, + [1169] = 748, + [1170] = 349, + [1171] = 370, + [1172] = 352, + [1173] = 367, + [1174] = 730, + [1175] = 344, + [1176] = 727, + [1177] = 358, + [1178] = 785, + [1179] = 784, + [1180] = 365, + [1181] = 345, + [1182] = 357, + [1183] = 974, + [1184] = 610, + [1185] = 347, + [1186] = 395, + [1187] = 358, + [1188] = 747, + [1189] = 748, + [1190] = 354, + [1191] = 356, + [1192] = 900, + [1193] = 996, + [1194] = 1194, + [1195] = 343, + [1196] = 361, + [1197] = 364, + [1198] = 371, + [1199] = 1199, + [1200] = 1003, + [1201] = 351, + [1202] = 347, + [1203] = 357, + [1204] = 1140, + [1205] = 351, + [1206] = 371, + [1207] = 372, + [1208] = 373, + [1209] = 353, + [1210] = 747, + [1211] = 748, + [1212] = 784, + [1213] = 785, + [1214] = 356, + [1215] = 350, + [1216] = 1216, + [1217] = 344, + [1218] = 345, + [1219] = 343, + [1220] = 352, + [1221] = 349, + [1222] = 1137, + [1223] = 357, + [1224] = 358, + [1225] = 369, + [1226] = 1103, + [1227] = 368, + [1228] = 370, + [1229] = 361, + [1230] = 364, + [1231] = 345, + [1232] = 351, + [1233] = 350, + [1234] = 367, + [1235] = 371, + [1236] = 817, + [1237] = 366, + [1238] = 357, + [1239] = 344, + [1240] = 900, + [1241] = 373, + [1242] = 818, + [1243] = 370, + [1244] = 349, + [1245] = 372, + [1246] = 365, + [1247] = 352, + [1248] = 395, + [1249] = 367, + [1250] = 367, + [1251] = 370, + [1252] = 349, + [1253] = 354, + [1254] = 1140, + [1255] = 1194, + [1256] = 343, + [1257] = 365, + [1258] = 1199, [1259] = 372, - [1260] = 405, - [1261] = 366, - [1262] = 381, - [1263] = 385, - [1264] = 382, - [1265] = 1009, - [1266] = 405, - [1267] = 385, - [1268] = 1020, - [1269] = 383, - [1270] = 383, - [1271] = 356, - [1272] = 366, - [1273] = 385, - [1274] = 354, - [1275] = 355, + [1260] = 373, + [1261] = 1199, + [1262] = 1194, + [1263] = 350, + [1264] = 369, + [1265] = 974, + [1266] = 368, + [1267] = 366, + [1268] = 395, + [1269] = 366, + [1270] = 785, + [1271] = 368, + [1272] = 356, + [1273] = 369, + [1274] = 397, + [1275] = 1003, [1276] = 354, - [1277] = 355, - [1278] = 362, - [1279] = 367, - [1280] = 368, - [1281] = 375, - [1282] = 370, - [1283] = 371, - [1284] = 374, - [1285] = 405, - [1286] = 374, - [1287] = 1124, - [1288] = 372, - [1289] = 385, - [1290] = 372, - [1291] = 375, - [1292] = 362, - [1293] = 371, - [1294] = 383, - [1295] = 382, - [1296] = 370, - [1297] = 361, - [1298] = 376, - [1299] = 381, - [1300] = 380, - [1301] = 379, - [1302] = 1302, - [1303] = 378, - [1304] = 368, - [1305] = 367, - [1306] = 373, - [1307] = 366, - [1308] = 371, - [1309] = 947, - [1310] = 373, - [1311] = 362, - [1312] = 370, - [1313] = 376, - [1314] = 361, - [1315] = 378, - [1316] = 375, - [1317] = 368, - [1318] = 367, - [1319] = 374, - [1320] = 379, - [1321] = 382, - [1322] = 372, - [1323] = 381, - [1324] = 383, - [1325] = 774, - [1326] = 851, - [1327] = 358, - [1328] = 947, - [1329] = 380, - [1330] = 366, - [1331] = 370, - [1332] = 366, - [1333] = 374, - [1334] = 382, - [1335] = 361, - [1336] = 376, - [1337] = 381, - [1338] = 1124, - [1339] = 380, - [1340] = 1120, - [1341] = 374, - [1342] = 367, - [1343] = 368, - [1344] = 379, - [1345] = 375, - [1346] = 356, - [1347] = 378, - [1348] = 361, - [1349] = 376, - [1350] = 1062, - [1351] = 378, - [1352] = 375, - [1353] = 373, - [1354] = 362, - [1355] = 947, - [1356] = 383, - [1357] = 362, - [1358] = 372, - [1359] = 373, - [1360] = 371, - [1361] = 371, - [1362] = 385, - [1363] = 373, - [1364] = 345, - [1365] = 1302, - [1366] = 346, - [1367] = 370, - [1368] = 378, - [1369] = 1159, - [1370] = 358, - [1371] = 368, - [1372] = 947, - [1373] = 385, - [1374] = 367, - [1375] = 1163, - [1376] = 379, - [1377] = 1120, - [1378] = 366, - [1379] = 405, - [1380] = 1120, - [1381] = 1124, - [1382] = 380, - [1383] = 381, - [1384] = 405, - [1385] = 1062, - [1386] = 661, - [1387] = 376, - [1388] = 405, - [1389] = 361, - [1390] = 354, - [1391] = 355, - [1392] = 405, - [1393] = 851, - [1394] = 1394, - [1395] = 774, - [1396] = 382, - [1397] = 1159, - [1398] = 383, - [1399] = 356, - [1400] = 405, - [1401] = 385, - [1402] = 1163, - [1403] = 356, - [1404] = 383, - [1405] = 1214, - [1406] = 385, - [1407] = 356, - [1408] = 362, - [1409] = 1124, - [1410] = 375, - [1411] = 374, + [1277] = 350, + [1278] = 950, + [1279] = 351, + [1280] = 364, + [1281] = 343, + [1282] = 397, + [1283] = 638, + [1284] = 358, + [1285] = 373, + [1286] = 372, + [1287] = 784, + [1288] = 356, + [1289] = 996, + [1290] = 349, + [1291] = 1291, + [1292] = 353, + [1293] = 352, + [1294] = 370, + [1295] = 900, + [1296] = 351, + [1297] = 371, + [1298] = 361, + [1299] = 1137, + [1300] = 369, + [1301] = 367, + [1302] = 354, + [1303] = 344, + [1304] = 366, + [1305] = 368, + [1306] = 369, + [1307] = 350, + [1308] = 367, + [1309] = 373, + [1310] = 345, + [1311] = 347, + [1312] = 372, + [1313] = 365, + [1314] = 353, + [1315] = 365, + [1316] = 364, + [1317] = 361, + [1318] = 352, + [1319] = 349, + [1320] = 370, + [1321] = 368, + [1322] = 616, + [1323] = 358, + [1324] = 610, + [1325] = 351, + [1326] = 371, + [1327] = 357, + [1328] = 1328, + [1329] = 364, + [1330] = 353, + [1331] = 356, + [1332] = 361, + [1333] = 354, + [1334] = 343, + [1335] = 358, + [1336] = 996, + [1337] = 785, + [1338] = 356, + [1339] = 784, + [1340] = 364, + [1341] = 1003, + [1342] = 950, + [1343] = 371, + [1344] = 358, + [1345] = 395, + [1346] = 361, + [1347] = 397, + [1348] = 900, + [1349] = 357, + [1350] = 395, + [1351] = 354, + [1352] = 397, + [1353] = 344, + [1354] = 345, + [1355] = 365, + [1356] = 347, + [1357] = 397, + [1358] = 974, + [1359] = 353, + [1360] = 366, + [1361] = 395, + [1362] = 352, + [1363] = 352, + [1364] = 350, + [1365] = 1291, + [1366] = 343, + [1367] = 397, + [1368] = 1137, + [1369] = 678, + [1370] = 900, + [1371] = 1194, + [1372] = 395, + [1373] = 395, + [1374] = 397, + [1375] = 784, + [1376] = 1137, + [1377] = 681, + [1378] = 675, + [1379] = 785, + [1380] = 343, + [1381] = 343, + [1382] = 673, + [1383] = 345, + [1384] = 344, + [1385] = 1199, + [1386] = 1140, + [1387] = 638, + [1388] = 1194, + [1389] = 1199, + [1390] = 1103, + [1391] = 366, + [1392] = 344, + [1393] = 345, + [1394] = 1137, + [1395] = 354, + [1396] = 371, + [1397] = 666, + [1398] = 368, + [1399] = 351, + [1400] = 353, + [1401] = 356, + [1402] = 357, + [1403] = 358, + [1404] = 395, + [1405] = 361, + [1406] = 369, + [1407] = 665, + [1408] = 1216, + [1409] = 364, + [1410] = 350, + [1411] = 373, [1412] = 372, - [1413] = 371, - [1414] = 385, - [1415] = 1159, - [1416] = 366, - [1417] = 356, - [1418] = 380, - [1419] = 354, - [1420] = 381, - [1421] = 1163, - [1422] = 379, - [1423] = 382, - [1424] = 367, - [1425] = 356, - [1426] = 368, - [1427] = 370, - [1428] = 372, - [1429] = 355, - [1430] = 356, - [1431] = 674, - [1432] = 1432, - [1433] = 1432, - [1434] = 1432, - [1435] = 1432, - [1436] = 1436, - [1437] = 1432, - [1438] = 1394, - [1439] = 1439, - [1440] = 354, - [1441] = 1432, - [1442] = 355, - [1443] = 1432, - [1444] = 666, - [1445] = 356, - [1446] = 1432, - [1447] = 1432, - [1448] = 385, - [1449] = 1432, - [1450] = 355, - [1451] = 1432, - [1452] = 354, - [1453] = 1394, - [1454] = 1432, - [1455] = 1394, - [1456] = 385, - [1457] = 1432, - [1458] = 1432, - [1459] = 1432, - [1460] = 472, - [1461] = 1461, - [1462] = 385, - [1463] = 1432, - [1464] = 1432, - [1465] = 1120, - [1466] = 358, - [1467] = 1432, - [1468] = 1461, - [1469] = 1432, - [1470] = 475, - [1471] = 405, - [1472] = 1124, - [1473] = 1432, - [1474] = 1439, - [1475] = 1436, - [1476] = 1436, - [1477] = 1477, - [1478] = 1478, - [1479] = 1479, - [1480] = 1439, - [1481] = 385, - [1482] = 1432, - [1483] = 1432, - [1484] = 1432, - [1485] = 1432, - [1486] = 1432, - [1487] = 1214, - [1488] = 1432, - [1489] = 1394, - [1490] = 1432, - [1491] = 373, - [1492] = 405, - [1493] = 378, - [1494] = 405, - [1495] = 1432, - [1496] = 379, - [1497] = 380, - [1498] = 381, - [1499] = 1120, - [1500] = 376, - [1501] = 361, - [1502] = 405, - [1503] = 1432, - [1504] = 1432, - [1505] = 1432, - [1506] = 1432, - [1507] = 1432, - [1508] = 1159, - [1509] = 355, - [1510] = 1432, - [1511] = 382, - [1512] = 1432, - [1513] = 383, - [1514] = 1432, - [1515] = 1432, - [1516] = 362, - [1517] = 375, - [1518] = 372, - [1519] = 1432, - [1520] = 1432, - [1521] = 1432, - [1522] = 1439, - [1523] = 405, - [1524] = 1432, - [1525] = 374, - [1526] = 1432, - [1527] = 1432, - [1528] = 1432, - [1529] = 1432, - [1530] = 1432, - [1531] = 1163, - [1532] = 1532, - [1533] = 1461, - [1534] = 1163, - [1535] = 371, - [1536] = 370, - [1537] = 1436, - [1538] = 368, - [1539] = 367, - [1540] = 385, - [1541] = 356, - [1542] = 355, - [1543] = 366, - [1544] = 1432, - [1545] = 354, - [1546] = 354, - [1547] = 473, - [1548] = 1124, - [1549] = 1394, - [1550] = 1302, - [1551] = 355, - [1552] = 354, - [1553] = 1432, - [1554] = 1302, - [1555] = 688, - [1556] = 1214, + [1413] = 334, + [1414] = 335, + [1415] = 395, + [1416] = 347, + [1417] = 349, + [1418] = 370, + [1419] = 395, + [1420] = 365, + [1421] = 1103, + [1422] = 367, + [1423] = 397, + [1424] = 397, + [1425] = 367, + [1426] = 370, + [1427] = 349, + [1428] = 365, + [1429] = 372, + [1430] = 373, + [1431] = 354, + [1432] = 1199, + [1433] = 371, + [1434] = 1194, + [1435] = 351, + [1436] = 369, + [1437] = 364, + [1438] = 1140, + [1439] = 368, + [1440] = 358, + [1441] = 352, + [1442] = 366, + [1443] = 1140, + [1444] = 356, + [1445] = 353, + [1446] = 900, + [1447] = 397, + [1448] = 357, + [1449] = 361, + [1450] = 1450, + [1451] = 1199, + [1452] = 1450, + [1453] = 1450, + [1454] = 1137, + [1455] = 1450, + [1456] = 1450, + [1457] = 1194, + [1458] = 343, + [1459] = 678, + [1460] = 681, + [1461] = 1216, + [1462] = 1450, + [1463] = 471, + [1464] = 1450, + [1465] = 395, + [1466] = 1450, + [1467] = 469, + [1468] = 397, + [1469] = 1450, + [1470] = 347, + [1471] = 675, + [1472] = 343, + [1473] = 356, + [1474] = 1450, + [1475] = 673, + [1476] = 1450, + [1477] = 1450, + [1478] = 1450, + [1479] = 1450, + [1480] = 357, + [1481] = 1450, + [1482] = 354, + [1483] = 1450, + [1484] = 1216, + [1485] = 371, + [1486] = 397, + [1487] = 397, + [1488] = 351, + [1489] = 1450, + [1490] = 1450, + [1491] = 358, + [1492] = 1450, + [1493] = 1450, + [1494] = 1450, + [1495] = 1194, + [1496] = 395, + [1497] = 343, + [1498] = 1450, + [1499] = 1291, + [1500] = 1450, + [1501] = 1450, + [1502] = 397, + [1503] = 1450, + [1504] = 370, + [1505] = 349, + [1506] = 352, + [1507] = 343, + [1508] = 1450, + [1509] = 1450, + [1510] = 1450, + [1511] = 361, + [1512] = 1450, + [1513] = 343, + [1514] = 1450, + [1515] = 748, + [1516] = 1450, + [1517] = 747, + [1518] = 343, + [1519] = 1140, + [1520] = 468, + [1521] = 347, + [1522] = 364, + [1523] = 1450, + [1524] = 345, + [1525] = 344, + [1526] = 1450, + [1527] = 343, + [1528] = 365, + [1529] = 1450, + [1530] = 727, + [1531] = 1450, + [1532] = 343, + [1533] = 730, + [1534] = 1450, + [1535] = 1450, + [1536] = 1450, + [1537] = 353, + [1538] = 1450, + [1539] = 666, + [1540] = 1450, + [1541] = 1450, + [1542] = 366, + [1543] = 1450, + [1544] = 665, + [1545] = 368, + [1546] = 344, + [1547] = 345, + [1548] = 1199, + [1549] = 1450, + [1550] = 1450, + [1551] = 369, + [1552] = 1450, + [1553] = 1450, + [1554] = 1450, + [1555] = 1140, + [1556] = 1450, [1557] = 1557, - [1558] = 1432, - [1559] = 1394, - [1560] = 358, - [1561] = 687, - [1562] = 1432, - [1563] = 1432, - [1564] = 1432, - [1565] = 355, - [1566] = 1159, - [1567] = 1432, - [1568] = 354, - [1569] = 676, - [1570] = 667, - [1571] = 355, - [1572] = 354, - [1573] = 1432, - [1574] = 1432, - [1575] = 1575, - [1576] = 361, - [1577] = 376, - [1578] = 1578, - [1579] = 1302, - [1580] = 1580, - [1581] = 373, - [1582] = 385, - [1583] = 374, - [1584] = 1461, - [1585] = 367, - [1586] = 368, - [1587] = 1214, - [1588] = 774, - [1589] = 851, - [1590] = 372, - [1591] = 1578, - [1592] = 378, - [1593] = 1575, - [1594] = 1578, - [1595] = 1595, - [1596] = 379, - [1597] = 1578, - [1598] = 355, - [1599] = 1578, - [1600] = 354, - [1601] = 375, - [1602] = 405, - [1603] = 356, - [1604] = 373, - [1605] = 1580, - [1606] = 1575, - [1607] = 355, - [1608] = 380, - [1609] = 381, - [1610] = 366, - [1611] = 1611, - [1612] = 1578, - [1613] = 374, - [1614] = 1580, - [1615] = 382, - [1616] = 358, - [1617] = 370, - [1618] = 362, - [1619] = 1619, - [1620] = 1620, - [1621] = 354, - [1622] = 376, - [1623] = 361, - [1624] = 1578, - [1625] = 378, - [1626] = 383, - [1627] = 371, - [1628] = 358, - [1629] = 1595, - [1630] = 379, - [1631] = 405, - [1632] = 362, - [1633] = 1611, - [1634] = 1595, - [1635] = 354, - [1636] = 370, - [1637] = 1578, - [1638] = 1638, - [1639] = 380, - [1640] = 381, - [1641] = 375, - [1642] = 1575, - [1643] = 368, - [1644] = 367, - [1645] = 356, - [1646] = 1580, - [1647] = 1611, - [1648] = 1648, - [1649] = 346, - [1650] = 724, - [1651] = 371, - [1652] = 722, - [1653] = 405, - [1654] = 405, - [1655] = 345, - [1656] = 372, - [1657] = 366, - [1658] = 405, - [1659] = 753, - [1660] = 1461, - [1661] = 382, - [1662] = 1394, - [1663] = 383, - [1664] = 1611, - [1665] = 752, - [1666] = 1595, - [1667] = 385, - [1668] = 355, - [1669] = 1669, - [1670] = 1670, - [1671] = 1671, - [1672] = 1672, - [1673] = 1673, - [1674] = 1674, - [1675] = 1675, - [1676] = 356, - [1677] = 356, - [1678] = 724, - [1679] = 722, - [1680] = 1680, - [1681] = 1681, - [1682] = 358, - [1683] = 354, - [1684] = 355, - [1685] = 812, - [1686] = 358, - [1687] = 1671, - [1688] = 354, - [1689] = 355, - [1690] = 1648, - [1691] = 820, - [1692] = 1692, - [1693] = 821, - [1694] = 366, - [1695] = 1638, - [1696] = 1696, - [1697] = 1697, - [1698] = 1557, - [1699] = 1692, - [1700] = 1700, - [1701] = 367, - [1702] = 368, - [1703] = 1703, - [1704] = 1704, - [1705] = 1672, - [1706] = 1706, - [1707] = 1620, - [1708] = 1619, + [1558] = 350, + [1559] = 1450, + [1560] = 1137, + [1561] = 367, + [1562] = 1450, + [1563] = 1450, + [1564] = 397, + [1565] = 345, + [1566] = 373, + [1567] = 1450, + [1568] = 1450, + [1569] = 372, + [1570] = 1291, + [1571] = 1450, + [1572] = 344, + [1573] = 818, + [1574] = 1574, + [1575] = 343, + [1576] = 343, + [1577] = 748, + [1578] = 747, + [1579] = 785, + [1580] = 784, + [1581] = 747, + [1582] = 748, + [1583] = 1557, + [1584] = 1557, + [1585] = 1585, + [1586] = 1586, + [1587] = 1587, + [1588] = 730, + [1589] = 727, + [1590] = 1590, + [1591] = 397, + [1592] = 1574, + [1593] = 1557, + [1594] = 344, + [1595] = 345, + [1596] = 345, + [1597] = 344, + [1598] = 395, + [1599] = 1557, + [1600] = 395, + [1601] = 1601, + [1602] = 347, + [1603] = 1587, + [1604] = 1585, + [1605] = 354, + [1606] = 344, + [1607] = 345, + [1608] = 1608, + [1609] = 1609, + [1610] = 371, + [1611] = 351, + [1612] = 345, + [1613] = 1574, + [1614] = 352, + [1615] = 1574, + [1616] = 353, + [1617] = 1617, + [1618] = 1291, + [1619] = 344, + [1620] = 784, + [1621] = 1621, + [1622] = 785, + [1623] = 1623, + [1624] = 366, + [1625] = 357, + [1626] = 344, + [1627] = 1627, + [1628] = 1628, + [1629] = 1629, + [1630] = 345, + [1631] = 368, + [1632] = 369, + [1633] = 1633, + [1634] = 361, + [1635] = 1557, + [1636] = 1586, + [1637] = 1557, + [1638] = 397, + [1639] = 350, + [1640] = 1640, + [1641] = 1586, + [1642] = 1574, + [1643] = 1574, + [1644] = 373, + [1645] = 372, + [1646] = 349, + [1647] = 370, + [1648] = 344, + [1649] = 356, + [1650] = 1609, + [1651] = 345, + [1652] = 1608, + [1653] = 358, + [1654] = 367, + [1655] = 1585, + [1656] = 343, + [1657] = 1587, + [1658] = 364, + [1659] = 365, + [1660] = 345, + [1661] = 1661, + [1662] = 344, + [1663] = 1663, + [1664] = 395, + [1665] = 1216, + [1666] = 364, + [1667] = 361, + [1668] = 345, + [1669] = 358, + [1670] = 357, + [1671] = 365, + [1672] = 356, + [1673] = 1574, + [1674] = 353, + [1675] = 367, + [1676] = 352, + [1677] = 370, + [1678] = 349, + [1679] = 351, + [1680] = 371, + [1681] = 354, + [1682] = 372, + [1683] = 343, + [1684] = 1574, + [1685] = 373, + [1686] = 1627, + [1687] = 817, + [1688] = 350, + [1689] = 369, + [1690] = 368, + [1691] = 366, + [1692] = 344, + [1693] = 347, + [1694] = 345, + [1695] = 345, + [1696] = 344, + [1697] = 343, + [1698] = 1587, + [1699] = 1585, + [1700] = 1608, + [1701] = 1609, + [1702] = 1621, + [1703] = 347, + [1704] = 1621, + [1705] = 1627, + [1706] = 344, + [1707] = 334, + [1708] = 335, [1709] = 1709, - [1710] = 370, - [1711] = 1711, - [1712] = 1712, - [1713] = 1671, - [1714] = 1672, - [1715] = 1671, - [1716] = 1669, - [1717] = 371, - [1718] = 1718, - [1719] = 1719, - [1720] = 1671, - [1721] = 807, - [1722] = 823, - [1723] = 1671, - [1724] = 372, - [1725] = 1619, - [1726] = 1620, - [1727] = 1718, - [1728] = 1692, - [1729] = 1669, - [1730] = 374, - [1731] = 1718, - [1732] = 1719, - [1733] = 1733, - [1734] = 1696, - [1735] = 375, - [1736] = 1672, - [1737] = 1669, - [1738] = 1479, - [1739] = 1670, - [1740] = 1478, - [1741] = 1700, - [1742] = 1477, - [1743] = 362, - [1744] = 1672, - [1745] = 1745, - [1746] = 1671, - [1747] = 1733, - [1748] = 1648, - [1749] = 383, - [1750] = 1719, - [1751] = 1718, - [1752] = 366, - [1753] = 1719, - [1754] = 1638, - [1755] = 346, - [1756] = 382, - [1757] = 345, - [1758] = 1758, - [1759] = 1696, - [1760] = 1733, - [1761] = 367, - [1762] = 368, - [1763] = 851, - [1764] = 774, - [1765] = 1673, - [1766] = 373, - [1767] = 1672, - [1768] = 378, - [1769] = 1709, - [1770] = 370, - [1771] = 405, - [1772] = 1669, - [1773] = 1672, - [1774] = 379, - [1775] = 371, - [1776] = 356, - [1777] = 382, - [1778] = 381, - [1779] = 380, - [1780] = 380, - [1781] = 355, - [1782] = 372, - [1783] = 354, - [1784] = 381, - [1785] = 379, - [1786] = 851, - [1787] = 774, - [1788] = 374, - [1789] = 383, - [1790] = 1692, - [1791] = 1696, - [1792] = 358, - [1793] = 375, - [1794] = 1733, - [1795] = 378, - [1796] = 361, - [1797] = 376, - [1798] = 1673, - [1799] = 373, - [1800] = 362, - [1801] = 1672, - [1802] = 373, - [1803] = 376, - [1804] = 1709, - [1805] = 383, - [1806] = 361, - [1807] = 378, - [1808] = 1669, - [1809] = 1696, - [1810] = 1733, - [1811] = 1673, - [1812] = 382, - [1813] = 1669, - [1814] = 405, - [1815] = 1696, - [1816] = 385, - [1817] = 1733, - [1818] = 1696, - [1819] = 379, - [1820] = 1733, - [1821] = 1696, - [1822] = 1822, - [1823] = 1733, - [1824] = 1669, - [1825] = 1745, - [1826] = 380, - [1827] = 381, - [1828] = 1828, - [1829] = 1829, - [1830] = 1697, - [1831] = 1831, - [1832] = 371, - [1833] = 383, - [1834] = 374, - [1835] = 362, - [1836] = 1836, - [1837] = 375, - [1838] = 362, - [1839] = 370, - [1840] = 382, - [1841] = 375, - [1842] = 405, - [1843] = 1843, - [1844] = 374, - [1845] = 1745, - [1846] = 1829, - [1847] = 1847, - [1848] = 372, - [1849] = 1822, - [1850] = 375, - [1851] = 372, - [1852] = 1700, - [1853] = 1670, - [1854] = 368, - [1855] = 367, - [1856] = 371, - [1857] = 374, - [1858] = 1829, - [1859] = 1831, - [1860] = 362, - [1861] = 370, - [1862] = 381, - [1863] = 380, - [1864] = 1831, - [1865] = 1681, - [1866] = 1829, - [1867] = 368, - [1868] = 367, - [1869] = 379, - [1870] = 383, - [1871] = 996, - [1872] = 1836, - [1873] = 1829, - [1874] = 366, - [1875] = 1843, - [1876] = 1822, - [1877] = 1829, - [1878] = 1120, - [1879] = 378, - [1880] = 361, - [1881] = 376, - [1882] = 1829, - [1883] = 1847, - [1884] = 1697, - [1885] = 1828, - [1886] = 373, - [1887] = 1829, - [1888] = 1674, - [1889] = 383, - [1890] = 1828, - [1891] = 1829, - [1892] = 366, - [1893] = 947, - [1894] = 1700, - [1895] = 1670, - [1896] = 382, - [1897] = 1829, - [1898] = 1557, - [1899] = 1847, - [1900] = 1745, - [1901] = 1829, - [1902] = 1902, - [1903] = 1831, - [1904] = 382, - [1905] = 385, - [1906] = 371, - [1907] = 1758, - [1908] = 385, - [1909] = 1829, - [1910] = 1829, - [1911] = 1557, - [1912] = 1829, - [1913] = 1913, - [1914] = 1836, - [1915] = 1829, - [1916] = 1843, - [1917] = 1829, - [1918] = 381, - [1919] = 380, - [1920] = 361, - [1921] = 1829, - [1922] = 1829, - [1923] = 1829, - [1924] = 1847, - [1925] = 379, - [1926] = 1828, - [1927] = 1829, - [1928] = 1745, - [1929] = 1829, - [1930] = 1829, - [1931] = 345, - [1932] = 346, - [1933] = 370, - [1934] = 376, - [1935] = 378, - [1936] = 1829, - [1937] = 1829, - [1938] = 1829, - [1939] = 1829, - [1940] = 345, - [1941] = 346, - [1942] = 373, - [1943] = 1829, - [1944] = 361, - [1945] = 376, - [1946] = 383, - [1947] = 1829, - [1948] = 1829, - [1949] = 1829, - [1950] = 1829, - [1951] = 1829, - [1952] = 1829, - [1953] = 1829, - [1954] = 1829, - [1955] = 1829, - [1956] = 1829, - [1957] = 774, - [1958] = 851, - [1959] = 1681, - [1960] = 1829, - [1961] = 381, - [1962] = 1829, - [1963] = 1829, - [1964] = 1674, - [1965] = 1829, - [1966] = 1829, - [1967] = 1829, - [1968] = 1829, - [1969] = 1829, - [1970] = 1829, - [1971] = 372, - [1972] = 1829, - [1973] = 1829, - [1974] = 1829, - [1975] = 380, - [1976] = 1829, - [1977] = 1020, - [1978] = 1745, - [1979] = 1670, - [1980] = 382, - [1981] = 1700, - [1982] = 1831, - [1983] = 379, - [1984] = 378, - [1985] = 1532, - [1986] = 368, - [1987] = 367, - [1988] = 1831, - [1989] = 361, - [1990] = 376, - [1991] = 1477, - [1992] = 373, - [1993] = 1680, - [1994] = 1478, - [1995] = 1675, - [1996] = 381, - [1997] = 945, - [1998] = 380, - [1999] = 1479, - [2000] = 366, - [2001] = 379, - [2002] = 378, - [2003] = 1670, - [2004] = 1700, - [2005] = 1843, - [2006] = 373, - [2007] = 1836, - [2008] = 1703, - [2009] = 1704, - [2010] = 1706, - [2011] = 1670, - [2012] = 1700, - [2013] = 1831, - [2014] = 1532, - [2015] = 1913, - [2016] = 1009, - [2017] = 1902, - [2018] = 1831, - [2019] = 1712, - [2020] = 1477, - [2021] = 355, - [2022] = 354, - [2023] = 1745, - [2024] = 1478, - [2025] = 358, - [2026] = 1479, - [2027] = 356, - [2028] = 1711, - [2029] = 382, - [2030] = 405, - [2031] = 405, - [2032] = 372, - [2033] = 374, - [2034] = 947, - [2035] = 385, - [2036] = 375, - [2037] = 371, - [2038] = 362, - [2039] = 1670, - [2040] = 370, - [2041] = 368, - [2042] = 367, - [2043] = 366, - [2044] = 1700, - [2045] = 385, - [2046] = 385, - [2047] = 383, - [2048] = 1124, - [2049] = 1745, - [2050] = 1302, - [2051] = 1120, - [2052] = 346, - [2053] = 1120, - [2054] = 345, - [2055] = 345, - [2056] = 1062, - [2057] = 361, - [2058] = 376, - [2059] = 2059, - [2060] = 381, - [2061] = 380, - [2062] = 379, - [2063] = 378, - [2064] = 346, - [2065] = 345, - [2066] = 373, - [2067] = 346, - [2068] = 1159, - [2069] = 346, - [2070] = 345, - [2071] = 1163, - [2072] = 2072, - [2073] = 2072, + [1710] = 345, + [1711] = 1557, + [1712] = 352, + [1713] = 373, + [1714] = 1714, + [1715] = 1715, + [1716] = 1715, + [1717] = 1717, + [1718] = 1715, + [1719] = 1715, + [1720] = 353, + [1721] = 351, + [1722] = 373, + [1723] = 1715, + [1724] = 365, + [1725] = 1725, + [1726] = 1715, + [1727] = 356, + [1728] = 371, + [1729] = 343, + [1730] = 1715, + [1731] = 831, + [1732] = 1715, + [1733] = 357, + [1734] = 367, + [1735] = 1735, + [1736] = 1715, + [1737] = 1715, + [1738] = 358, + [1739] = 1715, + [1740] = 1740, + [1741] = 1709, + [1742] = 1742, + [1743] = 1715, + [1744] = 1744, + [1745] = 343, + [1746] = 361, + [1747] = 1747, + [1748] = 364, + [1749] = 1749, + [1750] = 1715, + [1751] = 1715, + [1752] = 1714, + [1753] = 1747, + [1754] = 1714, + [1755] = 1715, + [1756] = 818, + [1757] = 354, + [1758] = 817, + [1759] = 1715, + [1760] = 1715, + [1761] = 1735, + [1762] = 1715, + [1763] = 784, + [1764] = 1740, + [1765] = 809, + [1766] = 371, + [1767] = 351, + [1768] = 1715, + [1769] = 1717, + [1770] = 785, + [1771] = 747, + [1772] = 748, + [1773] = 347, + [1774] = 1742, + [1775] = 1715, + [1776] = 352, + [1777] = 1715, + [1778] = 345, + [1779] = 1742, + [1780] = 344, + [1781] = 1715, + [1782] = 353, + [1783] = 343, + [1784] = 365, + [1785] = 1725, + [1786] = 1735, + [1787] = 1747, + [1788] = 344, + [1789] = 356, + [1790] = 345, + [1791] = 367, + [1792] = 354, + [1793] = 345, + [1794] = 1794, + [1795] = 357, + [1796] = 354, + [1797] = 344, + [1798] = 1725, + [1799] = 347, + [1800] = 358, + [1801] = 1735, + [1802] = 1715, + [1803] = 1714, + [1804] = 370, + [1805] = 349, + [1806] = 1714, + [1807] = 361, + [1808] = 1747, + [1809] = 364, + [1810] = 356, + [1811] = 1747, + [1812] = 347, + [1813] = 350, + [1814] = 1714, + [1815] = 372, + [1816] = 373, + [1817] = 1717, + [1818] = 1715, + [1819] = 1740, + [1820] = 1715, + [1821] = 1715, + [1822] = 350, + [1823] = 397, + [1824] = 395, + [1825] = 1715, + [1826] = 792, + [1827] = 345, + [1828] = 397, + [1829] = 1715, + [1830] = 344, + [1831] = 1586, + [1832] = 369, + [1833] = 368, + [1834] = 372, + [1835] = 1715, + [1836] = 1725, + [1837] = 1715, + [1838] = 1715, + [1839] = 1839, + [1840] = 1735, + [1841] = 366, + [1842] = 369, + [1843] = 1715, + [1844] = 365, + [1845] = 368, + [1846] = 1846, + [1847] = 1735, + [1848] = 1848, + [1849] = 370, + [1850] = 1715, + [1851] = 367, + [1852] = 349, + [1853] = 371, + [1854] = 395, + [1855] = 1735, + [1856] = 351, + [1857] = 358, + [1858] = 1725, + [1859] = 1709, + [1860] = 1742, + [1861] = 1861, + [1862] = 1862, + [1863] = 1715, + [1864] = 370, + [1865] = 349, + [1866] = 1715, + [1867] = 350, + [1868] = 1735, + [1869] = 1715, + [1870] = 1747, + [1871] = 1871, + [1872] = 1715, + [1873] = 1715, + [1874] = 1715, + [1875] = 372, + [1876] = 373, + [1877] = 352, + [1878] = 784, + [1879] = 1715, + [1880] = 785, + [1881] = 364, + [1882] = 350, + [1883] = 397, + [1884] = 1714, + [1885] = 353, + [1886] = 1715, + [1887] = 1715, + [1888] = 1725, + [1889] = 1747, + [1890] = 365, + [1891] = 784, + [1892] = 369, + [1893] = 368, + [1894] = 785, + [1895] = 1742, + [1896] = 1715, + [1897] = 1715, + [1898] = 1714, + [1899] = 1899, + [1900] = 361, + [1901] = 366, + [1902] = 366, + [1903] = 367, + [1904] = 1715, + [1905] = 1715, + [1906] = 1747, + [1907] = 366, + [1908] = 368, + [1909] = 1715, + [1910] = 395, + [1911] = 1715, + [1912] = 1742, + [1913] = 1740, + [1914] = 1709, + [1915] = 372, + [1916] = 369, + [1917] = 1742, + [1918] = 343, + [1919] = 1725, + [1920] = 357, + [1921] = 1715, + [1922] = 1725, + [1923] = 1586, + [1924] = 1924, + [1925] = 1925, + [1926] = 344, + [1927] = 1715, + [1928] = 352, + [1929] = 1629, + [1930] = 350, + [1931] = 347, + [1932] = 345, + [1933] = 373, + [1934] = 372, + [1935] = 344, + [1936] = 369, + [1937] = 368, + [1938] = 366, + [1939] = 368, + [1940] = 366, + [1941] = 1941, + [1942] = 366, + [1943] = 369, + [1944] = 350, + [1945] = 1945, + [1946] = 349, + [1947] = 370, + [1948] = 1941, + [1949] = 368, + [1950] = 369, + [1951] = 343, + [1952] = 350, + [1953] = 367, + [1954] = 1941, + [1955] = 373, + [1956] = 372, + [1957] = 365, + [1958] = 349, + [1959] = 370, + [1960] = 364, + [1961] = 1617, + [1962] = 1661, + [1963] = 373, + [1964] = 372, + [1965] = 1663, + [1966] = 367, + [1967] = 1967, + [1968] = 1140, + [1969] = 365, + [1970] = 1003, + [1971] = 364, + [1972] = 1590, + [1973] = 1973, + [1974] = 1973, + [1975] = 358, + [1976] = 900, + [1977] = 356, + [1978] = 1623, + [1979] = 364, + [1980] = 1980, + [1981] = 361, + [1982] = 1973, + [1983] = 395, + [1984] = 358, + [1985] = 1967, + [1986] = 996, + [1987] = 357, + [1988] = 356, + [1989] = 1989, + [1990] = 1990, + [1991] = 974, + [1992] = 353, + [1993] = 395, + [1994] = 361, + [1995] = 349, + [1996] = 370, + [1997] = 335, + [1998] = 351, + [1999] = 371, + [2000] = 357, + [2001] = 334, + [2002] = 354, + [2003] = 1990, + [2004] = 1989, + [2005] = 354, + [2006] = 353, + [2007] = 367, + [2008] = 371, + [2009] = 397, + [2010] = 351, + [2011] = 352, + [2012] = 352, + [2013] = 353, + [2014] = 950, + [2015] = 351, + [2016] = 365, + [2017] = 371, + [2018] = 356, + [2019] = 397, + [2020] = 784, + [2021] = 785, + [2022] = 357, + [2023] = 1601, + [2024] = 358, + [2025] = 1601, + [2026] = 1633, + [2027] = 1617, + [2028] = 1973, + [2029] = 397, + [2030] = 1663, + [2031] = 361, + [2032] = 354, + [2033] = 1661, + [2034] = 1628, + [2035] = 1137, + [2036] = 1794, + [2037] = 2037, + [2038] = 1989, + [2039] = 364, + [2040] = 1749, + [2041] = 2041, + [2042] = 369, + [2043] = 351, + [2044] = 1839, + [2045] = 2045, + [2046] = 1899, + [2047] = 370, + [2048] = 349, + [2049] = 371, + [2050] = 1640, + [2051] = 1989, + [2052] = 2052, + [2053] = 900, + [2054] = 1990, + [2055] = 370, + [2056] = 2056, + [2057] = 1989, + [2058] = 1839, + [2059] = 1925, + [2060] = 1990, + [2061] = 1899, + [2062] = 2037, + [2063] = 2052, + [2064] = 1744, + [2065] = 1628, + [2066] = 1924, + [2067] = 2041, + [2068] = 1749, + [2069] = 395, + [2070] = 365, + [2071] = 1633, + [2072] = 365, + [2073] = 1623, [2074] = 2074, - [2075] = 1120, - [2076] = 2076, - [2077] = 345, - [2078] = 346, - [2079] = 2079, - [2080] = 345, - [2081] = 346, - [2082] = 405, - [2083] = 2076, - [2084] = 2084, - [2085] = 2074, - [2086] = 1163, - [2087] = 2072, - [2088] = 2084, - [2089] = 1214, - [2090] = 356, - [2091] = 405, - [2092] = 345, - [2093] = 2076, - [2094] = 345, - [2095] = 2084, - [2096] = 2074, - [2097] = 2072, - [2098] = 2098, - [2099] = 346, - [2100] = 2100, - [2101] = 346, - [2102] = 405, - [2103] = 1302, - [2104] = 358, - [2105] = 1159, - [2106] = 354, - [2107] = 1124, - [2108] = 385, - [2109] = 355, - [2110] = 2076, - [2111] = 2084, - [2112] = 2074, - [2113] = 381, - [2114] = 361, - [2115] = 366, + [2075] = 2056, + [2076] = 1199, + [2077] = 352, + [2078] = 1744, + [2079] = 2045, + [2080] = 1629, + [2081] = 395, + [2082] = 372, + [2083] = 373, + [2084] = 353, + [2085] = 2052, + [2086] = 372, + [2087] = 373, + [2088] = 1633, + [2089] = 334, + [2090] = 335, + [2091] = 1871, + [2092] = 2037, + [2093] = 1629, + [2094] = 1140, + [2095] = 2074, + [2096] = 1990, + [2097] = 1989, + [2098] = 366, + [2099] = 1846, + [2100] = 1967, + [2101] = 357, + [2102] = 1967, + [2103] = 367, + [2104] = 1862, + [2105] = 1291, + [2106] = 2037, + [2107] = 1967, + [2108] = 361, + [2109] = 334, + [2110] = 1861, + [2111] = 1640, + [2112] = 2045, + [2113] = 367, + [2114] = 397, + [2115] = 349, [2116] = 2116, - [2117] = 367, - [2118] = 368, - [2119] = 2119, - [2120] = 405, - [2121] = 2121, - [2122] = 2122, - [2123] = 2123, - [2124] = 370, - [2125] = 2125, - [2126] = 371, - [2127] = 2127, - [2128] = 2128, - [2129] = 2129, - [2130] = 372, - [2131] = 2123, - [2132] = 2132, - [2133] = 2125, - [2134] = 2119, - [2135] = 374, - [2136] = 2127, - [2137] = 373, - [2138] = 2138, - [2139] = 376, - [2140] = 378, - [2141] = 475, - [2142] = 379, - [2143] = 380, - [2144] = 2128, - [2145] = 2129, - [2146] = 2123, - [2147] = 375, - [2148] = 2132, - [2149] = 2149, - [2150] = 362, - [2151] = 2129, - [2152] = 2125, - [2153] = 2119, - [2154] = 2127, + [2117] = 1623, + [2118] = 1103, + [2119] = 350, + [2120] = 2037, + [2121] = 335, + [2122] = 1990, + [2123] = 397, + [2124] = 1194, + [2125] = 1989, + [2126] = 354, + [2127] = 350, + [2128] = 2037, + [2129] = 2052, + [2130] = 1990, + [2131] = 1628, + [2132] = 368, + [2133] = 1967, + [2134] = 1140, + [2135] = 2037, + [2136] = 356, + [2137] = 2116, + [2138] = 358, + [2139] = 2037, + [2140] = 1967, + [2141] = 366, + [2142] = 395, + [2143] = 2074, + [2144] = 2056, + [2145] = 1848, + [2146] = 369, + [2147] = 368, + [2148] = 2148, + [2149] = 1967, + [2150] = 397, + [2151] = 335, + [2152] = 2152, + [2153] = 2148, + [2154] = 1216, [2155] = 2155, - [2156] = 2132, - [2157] = 2128, - [2158] = 2129, - [2159] = 2123, - [2160] = 2132, - [2161] = 345, - [2162] = 2125, - [2163] = 346, - [2164] = 2119, - [2165] = 2127, - [2166] = 373, - [2167] = 382, - [2168] = 378, - [2169] = 383, - [2170] = 379, - [2171] = 362, - [2172] = 380, - [2173] = 381, - [2174] = 375, - [2175] = 372, - [2176] = 376, - [2177] = 361, - [2178] = 382, - [2179] = 383, - [2180] = 2128, - [2181] = 2181, - [2182] = 2182, - [2183] = 2181, - [2184] = 2079, - [2185] = 2181, - [2186] = 2181, + [2156] = 395, + [2157] = 2157, + [2158] = 2157, + [2159] = 335, + [2160] = 343, + [2161] = 334, + [2162] = 334, + [2163] = 1990, + [2164] = 334, + [2165] = 2165, + [2166] = 334, + [2167] = 335, + [2168] = 2148, + [2169] = 1194, + [2170] = 1137, + [2171] = 2165, + [2172] = 397, + [2173] = 2173, + [2174] = 2152, + [2175] = 1291, + [2176] = 397, + [2177] = 1199, + [2178] = 1140, + [2179] = 344, + [2180] = 345, + [2181] = 1989, + [2182] = 2152, + [2183] = 2157, + [2184] = 2165, + [2185] = 347, + [2186] = 335, [2187] = 2187, - [2188] = 2181, - [2189] = 2181, - [2190] = 345, - [2191] = 346, - [2192] = 2181, - [2193] = 2079, - [2194] = 2181, - [2195] = 2181, - [2196] = 2181, - [2197] = 2181, - [2198] = 385, - [2199] = 2181, - [2200] = 2181, - [2201] = 2181, - [2202] = 2181, - [2203] = 2181, - [2204] = 2181, - [2205] = 2181, - [2206] = 2181, - [2207] = 2181, - [2208] = 362, - [2209] = 1159, - [2210] = 2121, - [2211] = 2138, - [2212] = 2116, - [2213] = 380, - [2214] = 376, - [2215] = 361, - [2216] = 381, - [2217] = 2217, - [2218] = 372, - [2219] = 2149, - [2220] = 405, - [2221] = 382, - [2222] = 379, - [2223] = 379, - [2224] = 382, - [2225] = 383, - [2226] = 2138, - [2227] = 2122, - [2228] = 380, - [2229] = 378, - [2230] = 373, - [2231] = 373, - [2232] = 2155, - [2233] = 381, - [2234] = 375, - [2235] = 375, - [2236] = 383, - [2237] = 1163, - [2238] = 378, - [2239] = 2121, - [2240] = 2149, - [2241] = 2116, - [2242] = 361, - [2243] = 362, - [2244] = 2122, - [2245] = 376, - [2246] = 2155, - [2247] = 372, - [2248] = 345, - [2249] = 2249, - [2250] = 2249, - [2251] = 2251, - [2252] = 475, - [2253] = 2249, - [2254] = 2251, - [2255] = 2251, - [2256] = 2251, - [2257] = 2249, - [2258] = 2251, - [2259] = 2251, - [2260] = 2251, - [2261] = 355, - [2262] = 346, - [2263] = 2249, - [2264] = 2249, - [2265] = 354, - [2266] = 2249, - [2267] = 345, - [2268] = 346, - [2269] = 2249, - [2270] = 2249, - [2271] = 2251, - [2272] = 851, - [2273] = 2251, - [2274] = 774, - [2275] = 2251, - [2276] = 2249, - [2277] = 2249, - [2278] = 2251, - [2279] = 358, - [2280] = 2249, - [2281] = 2249, - [2282] = 2251, - [2283] = 356, - [2284] = 2251, - [2285] = 2249, - [2286] = 722, - [2287] = 2251, - [2288] = 724, - [2289] = 2249, - [2290] = 2251, - [2291] = 2249, - [2292] = 380, - [2293] = 2293, - [2294] = 345, - [2295] = 371, - [2296] = 2293, - [2297] = 346, - [2298] = 2298, - [2299] = 2298, - [2300] = 374, - [2301] = 2301, - [2302] = 382, - [2303] = 2303, - [2304] = 2304, - [2305] = 2305, - [2306] = 2306, - [2307] = 2301, - [2308] = 2301, - [2309] = 383, - [2310] = 2298, - [2311] = 2293, - [2312] = 2312, - [2313] = 2306, - [2314] = 2293, - [2315] = 2301, - [2316] = 372, - [2317] = 362, - [2318] = 2301, - [2319] = 361, - [2320] = 2306, - [2321] = 2303, - [2322] = 2306, - [2323] = 2301, - [2324] = 378, - [2325] = 2306, - [2326] = 2301, - [2327] = 2293, - [2328] = 2306, - [2329] = 2293, - [2330] = 376, - [2331] = 381, - [2332] = 2303, - [2333] = 373, - [2334] = 2301, - [2335] = 2306, - [2336] = 2306, - [2337] = 2303, - [2338] = 2301, - [2339] = 2306, - [2340] = 2301, - [2341] = 346, - [2342] = 2301, - [2343] = 2306, - [2344] = 367, - [2345] = 2306, - [2346] = 2301, - [2347] = 2306, - [2348] = 366, - [2349] = 2301, - [2350] = 2350, - [2351] = 2298, - [2352] = 2306, - [2353] = 345, - [2354] = 2301, - [2355] = 375, - [2356] = 2301, - [2357] = 2306, - [2358] = 370, - [2359] = 2306, - [2360] = 379, - [2361] = 2306, - [2362] = 368, - [2363] = 2301, - [2364] = 2364, - [2365] = 2364, - [2366] = 2366, - [2367] = 1120, - [2368] = 2368, - [2369] = 2369, - [2370] = 2369, - [2371] = 2368, - [2372] = 2366, - [2373] = 2373, - [2374] = 2373, - [2375] = 2369, - [2376] = 2373, - [2377] = 2373, - [2378] = 2378, - [2379] = 2379, - [2380] = 2380, - [2381] = 2364, - [2382] = 2366, - [2383] = 2373, - [2384] = 2368, - [2385] = 2369, - [2386] = 2373, - [2387] = 2369, - [2388] = 2369, - [2389] = 2373, - [2390] = 356, - [2391] = 2373, - [2392] = 385, - [2393] = 2369, - [2394] = 947, - [2395] = 2369, - [2396] = 2368, - [2397] = 2366, - [2398] = 2364, - [2399] = 2399, - [2400] = 2400, - [2401] = 2401, - [2402] = 2399, - [2403] = 2399, - [2404] = 722, - [2405] = 2401, - [2406] = 2401, - [2407] = 2399, - [2408] = 2401, - [2409] = 2399, - [2410] = 2399, - [2411] = 2401, - [2412] = 2400, - [2413] = 2399, - [2414] = 2401, - [2415] = 2401, - [2416] = 2399, + [2188] = 369, + [2189] = 372, + [2190] = 2190, + [2191] = 2191, + [2192] = 2192, + [2193] = 2193, + [2194] = 350, + [2195] = 2195, + [2196] = 471, + [2197] = 364, + [2198] = 335, + [2199] = 334, + [2200] = 373, + [2201] = 2201, + [2202] = 2191, + [2203] = 368, + [2204] = 2204, + [2205] = 349, + [2206] = 370, + [2207] = 2193, + [2208] = 2190, + [2209] = 361, + [2210] = 2204, + [2211] = 2211, + [2212] = 334, + [2213] = 397, + [2214] = 2214, + [2215] = 2190, + [2216] = 335, + [2217] = 366, + [2218] = 335, + [2219] = 334, + [2220] = 2193, + [2221] = 335, + [2222] = 2192, + [2223] = 2214, + [2224] = 358, + [2225] = 367, + [2226] = 334, + [2227] = 2204, + [2228] = 357, + [2229] = 356, + [2230] = 2191, + [2231] = 365, + [2232] = 2195, + [2233] = 2192, + [2234] = 353, + [2235] = 352, + [2236] = 2214, + [2237] = 2195, + [2238] = 354, + [2239] = 371, + [2240] = 351, + [2241] = 2241, + [2242] = 2242, + [2243] = 2243, + [2244] = 2244, + [2245] = 356, + [2246] = 2246, + [2247] = 358, + [2248] = 334, + [2249] = 364, + [2250] = 335, + [2251] = 2243, + [2252] = 2243, + [2253] = 2243, + [2254] = 366, + [2255] = 349, + [2256] = 370, + [2257] = 368, + [2258] = 369, + [2259] = 365, + [2260] = 2260, + [2261] = 2243, + [2262] = 2262, + [2263] = 2243, + [2264] = 2243, + [2265] = 2265, + [2266] = 2243, + [2267] = 2243, + [2268] = 2268, + [2269] = 2269, + [2270] = 350, + [2271] = 2243, + [2272] = 2243, + [2273] = 2243, + [2274] = 373, + [2275] = 372, + [2276] = 2276, + [2277] = 2277, + [2278] = 367, + [2279] = 2243, + [2280] = 335, + [2281] = 334, + [2282] = 2243, + [2283] = 2243, + [2284] = 2243, + [2285] = 2243, + [2286] = 2243, + [2287] = 2243, + [2288] = 2243, + [2289] = 2289, + [2290] = 2243, + [2291] = 395, + [2292] = 2292, + [2293] = 2243, + [2294] = 2243, + [2295] = 2295, + [2296] = 2201, + [2297] = 1199, + [2298] = 1194, + [2299] = 397, + [2300] = 2201, + [2301] = 2260, + [2302] = 2302, + [2303] = 2269, + [2304] = 358, + [2305] = 364, + [2306] = 2302, + [2307] = 2307, + [2308] = 2302, + [2309] = 335, + [2310] = 471, + [2311] = 358, + [2312] = 2307, + [2313] = 2302, + [2314] = 334, + [2315] = 2292, + [2316] = 369, + [2317] = 2307, + [2318] = 334, + [2319] = 2244, + [2320] = 364, + [2321] = 2307, + [2322] = 2241, + [2323] = 2302, + [2324] = 2302, + [2325] = 2307, + [2326] = 335, + [2327] = 2302, + [2328] = 2307, + [2329] = 2307, + [2330] = 2302, + [2331] = 365, + [2332] = 2241, + [2333] = 367, + [2334] = 2307, + [2335] = 2302, + [2336] = 748, + [2337] = 370, + [2338] = 356, + [2339] = 2246, + [2340] = 2244, + [2341] = 2302, + [2342] = 370, + [2343] = 356, + [2344] = 349, + [2345] = 747, + [2346] = 2292, + [2347] = 2302, + [2348] = 2307, + [2349] = 471, + [2350] = 2307, + [2351] = 349, + [2352] = 365, + [2353] = 372, + [2354] = 373, + [2355] = 372, + [2356] = 2302, + [2357] = 2307, + [2358] = 366, + [2359] = 367, + [2360] = 2246, + [2361] = 373, + [2362] = 350, + [2363] = 785, + [2364] = 2302, + [2365] = 2307, + [2366] = 369, + [2367] = 368, + [2368] = 784, + [2369] = 366, + [2370] = 2307, + [2371] = 2269, + [2372] = 2302, + [2373] = 368, + [2374] = 2307, + [2375] = 2307, + [2376] = 344, + [2377] = 345, + [2378] = 468, + [2379] = 2302, + [2380] = 469, + [2381] = 350, + [2382] = 343, + [2383] = 2307, + [2384] = 347, + [2385] = 2260, + [2386] = 2386, + [2387] = 334, + [2388] = 335, + [2389] = 354, + [2390] = 334, + [2391] = 2391, + [2392] = 2391, + [2393] = 2393, + [2394] = 2386, + [2395] = 352, + [2396] = 2393, + [2397] = 2386, + [2398] = 2398, + [2399] = 353, + [2400] = 2393, + [2401] = 335, + [2402] = 2391, + [2403] = 2386, + [2404] = 2386, + [2405] = 2393, + [2406] = 356, + [2407] = 2393, + [2408] = 2391, + [2409] = 357, + [2410] = 2410, + [2411] = 2393, + [2412] = 358, + [2413] = 361, + [2414] = 364, + [2415] = 2386, + [2416] = 2393, [2417] = 2417, - [2418] = 2401, - [2419] = 2401, - [2420] = 2400, - [2421] = 2401, - [2422] = 2401, - [2423] = 2401, - [2424] = 2399, - [2425] = 2401, - [2426] = 2399, - [2427] = 2401, - [2428] = 2400, - [2429] = 2399, - [2430] = 2400, - [2431] = 2401, - [2432] = 2400, - [2433] = 2399, - [2434] = 2401, - [2435] = 2399, - [2436] = 1124, - [2437] = 2399, - [2438] = 2399, - [2439] = 2401, - [2440] = 2399, - [2441] = 2400, - [2442] = 2400, - [2443] = 2401, - [2444] = 2399, - [2445] = 2399, - [2446] = 2399, - [2447] = 2399, - [2448] = 2399, - [2449] = 2400, - [2450] = 2450, - [2451] = 2401, - [2452] = 2401, - [2453] = 2399, - [2454] = 724, - [2455] = 2400, - [2456] = 2399, - [2457] = 2457, - [2458] = 2399, - [2459] = 2400, - [2460] = 2399, - [2461] = 2400, - [2462] = 2401, - [2463] = 2401, - [2464] = 2399, - [2465] = 2465, - [2466] = 2399, - [2467] = 2399, - [2468] = 2400, - [2469] = 2400, - [2470] = 2401, - [2471] = 2401, - [2472] = 2401, - [2473] = 2399, - [2474] = 2401, - [2475] = 2400, - [2476] = 2400, - [2477] = 2400, - [2478] = 2401, - [2479] = 2401, - [2480] = 2401, - [2481] = 2400, - [2482] = 2401, - [2483] = 2399, - [2484] = 2400, - [2485] = 2401, - [2486] = 2401, - [2487] = 2399, - [2488] = 2400, - [2489] = 2399, - [2490] = 1159, - [2491] = 2399, - [2492] = 2399, - [2493] = 2400, - [2494] = 2401, - [2495] = 2400, - [2496] = 2401, - [2497] = 2399, - [2498] = 2401, - [2499] = 2399, - [2500] = 2399, - [2501] = 2401, - [2502] = 356, - [2503] = 2503, - [2504] = 2401, - [2505] = 2399, - [2506] = 2399, - [2507] = 355, - [2508] = 2400, - [2509] = 354, - [2510] = 2510, - [2511] = 2401, - [2512] = 2399, - [2513] = 2399, - [2514] = 2401, - [2515] = 2400, - [2516] = 2401, - [2517] = 358, - [2518] = 2401, - [2519] = 2399, - [2520] = 2400, - [2521] = 2401, - [2522] = 2401, - [2523] = 2399, - [2524] = 2400, - [2525] = 2400, - [2526] = 2399, - [2527] = 2401, - [2528] = 2399, - [2529] = 2401, - [2530] = 2400, - [2531] = 2401, - [2532] = 2399, - [2533] = 2400, - [2534] = 2534, - [2535] = 2399, - [2536] = 2400, - [2537] = 2401, - [2538] = 2399, - [2539] = 356, - [2540] = 2400, - [2541] = 2400, - [2542] = 2401, - [2543] = 2401, - [2544] = 2399, - [2545] = 2401, - [2546] = 2400, - [2547] = 2400, - [2548] = 2401, - [2549] = 2400, - [2550] = 2399, - [2551] = 2401, - [2552] = 2401, - [2553] = 1163, - [2554] = 2399, - [2555] = 2399, - [2556] = 2400, - [2557] = 2400, - [2558] = 2400, - [2559] = 2559, - [2560] = 2400, - [2561] = 2401, - [2562] = 2401, - [2563] = 2399, - [2564] = 2400, - [2565] = 2401, - [2566] = 2401, - [2567] = 2401, - [2568] = 2401, - [2569] = 2399, - [2570] = 405, - [2571] = 2400, - [2572] = 2401, - [2573] = 2399, - [2574] = 2400, - [2575] = 2401, - [2576] = 2399, - [2577] = 2401, - [2578] = 2399, - [2579] = 2399, - [2580] = 2400, - [2581] = 2401, - [2582] = 2399, - [2583] = 2400, - [2584] = 2401, - [2585] = 2399, - [2586] = 2400, - [2587] = 2401, - [2588] = 2399, - [2589] = 2400, - [2590] = 2399, - [2591] = 2400, - [2592] = 2399, - [2593] = 2400, - [2594] = 2399, - [2595] = 2400, - [2596] = 2399, - [2597] = 722, - [2598] = 2598, - [2599] = 2534, - [2600] = 362, - [2601] = 375, - [2602] = 2602, - [2603] = 2450, - [2604] = 2559, - [2605] = 385, - [2606] = 372, - [2607] = 383, - [2608] = 2608, - [2609] = 2609, - [2610] = 2465, - [2611] = 356, - [2612] = 373, - [2613] = 355, - [2614] = 382, - [2615] = 354, - [2616] = 358, - [2617] = 2457, - [2618] = 378, - [2619] = 374, - [2620] = 371, - [2621] = 370, - [2622] = 379, - [2623] = 368, - [2624] = 367, - [2625] = 2503, - [2626] = 356, - [2627] = 366, - [2628] = 947, - [2629] = 2510, - [2630] = 2417, - [2631] = 724, - [2632] = 358, - [2633] = 361, - [2634] = 376, - [2635] = 356, - [2636] = 354, - [2637] = 355, - [2638] = 356, - [2639] = 381, - [2640] = 380, - [2641] = 368, - [2642] = 2642, - [2643] = 354, - [2644] = 2457, - [2645] = 372, - [2646] = 378, - [2647] = 2450, - [2648] = 355, - [2649] = 2649, - [2650] = 2503, - [2651] = 373, - [2652] = 373, - [2653] = 358, - [2654] = 2465, - [2655] = 370, - [2656] = 385, - [2657] = 366, - [2658] = 2608, - [2659] = 2465, - [2660] = 375, - [2661] = 2534, - [2662] = 367, - [2663] = 2457, - [2664] = 371, - [2665] = 379, - [2666] = 2609, - [2667] = 2417, - [2668] = 2450, - [2669] = 367, - [2670] = 2465, - [2671] = 2598, - [2672] = 356, - [2673] = 380, - [2674] = 362, - [2675] = 381, - [2676] = 2676, - [2677] = 374, - [2678] = 2678, - [2679] = 376, - [2680] = 358, - [2681] = 361, - [2682] = 2503, - [2683] = 378, - [2684] = 2534, - [2685] = 2534, - [2686] = 2510, - [2687] = 370, - [2688] = 2417, - [2689] = 371, - [2690] = 379, - [2691] = 2559, - [2692] = 2692, - [2693] = 356, - [2694] = 2602, - [2695] = 354, - [2696] = 724, - [2697] = 2559, - [2698] = 2457, - [2699] = 2417, - [2700] = 355, - [2701] = 355, - [2702] = 356, - [2703] = 380, - [2704] = 381, - [2705] = 366, - [2706] = 2559, - [2707] = 2510, - [2708] = 376, - [2709] = 2450, - [2710] = 361, - [2711] = 947, - [2712] = 2712, - [2713] = 724, - [2714] = 2503, - [2715] = 722, - [2716] = 372, - [2717] = 722, - [2718] = 385, + [2418] = 2386, + [2419] = 2393, + [2420] = 351, + [2421] = 2386, + [2422] = 2393, + [2423] = 2417, + [2424] = 2386, + [2425] = 365, + [2426] = 2426, + [2427] = 2393, + [2428] = 367, + [2429] = 2391, + [2430] = 2393, + [2431] = 2386, + [2432] = 2393, + [2433] = 2386, + [2434] = 2386, + [2435] = 2393, + [2436] = 2386, + [2437] = 2417, + [2438] = 370, + [2439] = 2391, + [2440] = 349, + [2441] = 2386, + [2442] = 2393, + [2443] = 371, + [2444] = 372, + [2445] = 335, + [2446] = 373, + [2447] = 2391, + [2448] = 350, + [2449] = 2386, + [2450] = 334, + [2451] = 2393, + [2452] = 2393, + [2453] = 2386, + [2454] = 369, + [2455] = 368, + [2456] = 335, + [2457] = 334, + [2458] = 334, + [2459] = 366, + [2460] = 335, + [2461] = 2393, + [2462] = 2462, + [2463] = 2386, + [2464] = 2464, + [2465] = 2386, + [2466] = 2393, + [2467] = 2386, + [2468] = 2393, + [2469] = 2469, + [2470] = 2469, + [2471] = 2471, + [2472] = 2472, + [2473] = 2473, + [2474] = 2469, + [2475] = 2471, + [2476] = 2471, + [2477] = 2469, + [2478] = 2478, + [2479] = 2479, + [2480] = 335, + [2481] = 334, + [2482] = 2469, + [2483] = 900, + [2484] = 2471, + [2485] = 2469, + [2486] = 2471, + [2487] = 2472, + [2488] = 2473, + [2489] = 2469, + [2490] = 2471, + [2491] = 2471, + [2492] = 2479, + [2493] = 2478, + [2494] = 2469, + [2495] = 1140, + [2496] = 2472, + [2497] = 2479, + [2498] = 2471, + [2499] = 2478, + [2500] = 2479, + [2501] = 2478, + [2502] = 395, + [2503] = 2469, + [2504] = 2473, + [2505] = 2471, + [2506] = 2506, + [2507] = 2507, + [2508] = 2506, + [2509] = 2509, + [2510] = 397, + [2511] = 2509, + [2512] = 2507, + [2513] = 2507, + [2514] = 2506, + [2515] = 2507, + [2516] = 2516, + [2517] = 2509, + [2518] = 2506, + [2519] = 2507, + [2520] = 2507, + [2521] = 2507, + [2522] = 2506, + [2523] = 2506, + [2524] = 2506, + [2525] = 2509, + [2526] = 2509, + [2527] = 2506, + [2528] = 2507, + [2529] = 2506, + [2530] = 1137, + [2531] = 2506, + [2532] = 2507, + [2533] = 2506, + [2534] = 2509, + [2535] = 2507, + [2536] = 2509, + [2537] = 2506, + [2538] = 2506, + [2539] = 2507, + [2540] = 2507, + [2541] = 2506, + [2542] = 2507, + [2543] = 2506, + [2544] = 2544, + [2545] = 2507, + [2546] = 2506, + [2547] = 2509, + [2548] = 2507, + [2549] = 2509, + [2550] = 2506, + [2551] = 2507, + [2552] = 2506, + [2553] = 2506, + [2554] = 2507, + [2555] = 2507, + [2556] = 2506, + [2557] = 2509, + [2558] = 2509, + [2559] = 2506, + [2560] = 2506, + [2561] = 2507, + [2562] = 2509, + [2563] = 2506, + [2564] = 2507, + [2565] = 2506, + [2566] = 2507, + [2567] = 2506, + [2568] = 2507, + [2569] = 2507, + [2570] = 2507, + [2571] = 2506, + [2572] = 2506, + [2573] = 2507, + [2574] = 2506, + [2575] = 2507, + [2576] = 2509, + [2577] = 2506, + [2578] = 2507, + [2579] = 2507, + [2580] = 2507, + [2581] = 2506, + [2582] = 2506, + [2583] = 2507, + [2584] = 2509, + [2585] = 2509, + [2586] = 2507, + [2587] = 2507, + [2588] = 2507, + [2589] = 2506, + [2590] = 2509, + [2591] = 2506, + [2592] = 2509, + [2593] = 2509, + [2594] = 2507, + [2595] = 2509, + [2596] = 2506, + [2597] = 2506, + [2598] = 2506, + [2599] = 2506, + [2600] = 2509, + [2601] = 2509, + [2602] = 2507, + [2603] = 343, + [2604] = 2506, + [2605] = 1199, + [2606] = 2509, + [2607] = 2506, + [2608] = 2507, + [2609] = 2506, + [2610] = 2509, + [2611] = 2509, + [2612] = 1194, + [2613] = 2507, + [2614] = 2506, + [2615] = 2509, + [2616] = 2507, + [2617] = 2506, + [2618] = 2507, + [2619] = 2509, + [2620] = 2506, + [2621] = 2509, + [2622] = 2507, + [2623] = 2507, + [2624] = 2506, + [2625] = 2509, + [2626] = 2507, + [2627] = 2509, + [2628] = 2509, + [2629] = 2507, + [2630] = 2509, + [2631] = 2507, + [2632] = 2506, + [2633] = 2506, + [2634] = 2507, + [2635] = 2506, + [2636] = 2509, + [2637] = 2507, + [2638] = 2506, + [2639] = 2506, + [2640] = 2507, + [2641] = 2506, + [2642] = 2507, + [2643] = 2509, + [2644] = 2506, + [2645] = 2645, + [2646] = 2507, + [2647] = 2509, + [2648] = 2506, + [2649] = 2507, + [2650] = 2507, + [2651] = 2507, + [2652] = 2507, + [2653] = 2509, + [2654] = 2506, + [2655] = 2506, + [2656] = 2509, + [2657] = 2506, + [2658] = 2506, + [2659] = 2509, + [2660] = 2507, + [2661] = 2507, + [2662] = 2506, + [2663] = 2507, + [2664] = 2507, + [2665] = 2507, + [2666] = 2506, + [2667] = 2507, + [2668] = 2506, + [2669] = 2507, + [2670] = 2509, + [2671] = 2506, + [2672] = 2509, + [2673] = 2506, + [2674] = 2507, + [2675] = 2506, + [2676] = 2507, + [2677] = 2509, + [2678] = 2509, + [2679] = 2506, + [2680] = 2507, + [2681] = 2507, + [2682] = 2506, + [2683] = 2507, + [2684] = 2506, + [2685] = 2509, + [2686] = 2506, + [2687] = 2507, + [2688] = 2507, + [2689] = 2509, + [2690] = 2507, + [2691] = 2506, + [2692] = 2507, + [2693] = 2509, + [2694] = 2506, + [2695] = 2506, + [2696] = 2507, + [2697] = 2506, + [2698] = 2507, + [2699] = 2509, + [2700] = 2506, + [2701] = 2507, + [2702] = 2509, + [2703] = 2506, + [2704] = 2509, + [2705] = 2509, + [2706] = 2506, + [2707] = 2507, + [2708] = 2507, + [2709] = 2506, + [2710] = 2710, + [2711] = 2711, + [2712] = 347, + [2713] = 343, + [2714] = 2714, + [2715] = 2715, + [2716] = 2716, + [2717] = 747, + [2718] = 748, [2719] = 2719, - [2720] = 375, - [2721] = 383, - [2722] = 724, - [2723] = 405, - [2724] = 354, - [2725] = 382, - [2726] = 2726, - [2727] = 722, - [2728] = 383, - [2729] = 2729, - [2730] = 2730, - [2731] = 362, - [2732] = 2510, - [2733] = 382, - [2734] = 374, - [2735] = 2735, - [2736] = 2736, - [2737] = 2737, - [2738] = 356, - [2739] = 355, - [2740] = 354, - [2741] = 368, - [2742] = 376, - [2743] = 2608, - [2744] = 379, - [2745] = 2745, - [2746] = 378, - [2747] = 2598, - [2748] = 354, - [2749] = 355, - [2750] = 851, - [2751] = 366, - [2752] = 373, - [2753] = 356, - [2754] = 381, - [2755] = 2755, - [2756] = 724, - [2757] = 2757, - [2758] = 380, - [2759] = 2755, - [2760] = 371, - [2761] = 371, - [2762] = 381, - [2763] = 2763, - [2764] = 2764, - [2765] = 375, - [2766] = 722, - [2767] = 405, - [2768] = 380, - [2769] = 370, - [2770] = 2692, - [2771] = 2729, - [2772] = 362, - [2773] = 376, + [2720] = 2720, + [2721] = 343, + [2722] = 2722, + [2723] = 347, + [2724] = 345, + [2725] = 344, + [2726] = 347, + [2727] = 2716, + [2728] = 356, + [2729] = 353, + [2730] = 354, + [2731] = 371, + [2732] = 350, + [2733] = 343, + [2734] = 369, + [2735] = 368, + [2736] = 351, + [2737] = 352, + [2738] = 395, + [2739] = 366, + [2740] = 368, + [2741] = 366, + [2742] = 343, + [2743] = 358, + [2744] = 345, + [2745] = 353, + [2746] = 365, + [2747] = 373, + [2748] = 2711, + [2749] = 2722, + [2750] = 2719, + [2751] = 372, + [2752] = 2714, + [2753] = 369, + [2754] = 357, + [2755] = 350, + [2756] = 900, + [2757] = 361, + [2758] = 395, + [2759] = 2710, + [2760] = 349, + [2761] = 370, + [2762] = 347, + [2763] = 352, + [2764] = 357, + [2765] = 2765, + [2766] = 2766, + [2767] = 367, + [2768] = 356, + [2769] = 367, + [2770] = 364, + [2771] = 358, + [2772] = 373, + [2773] = 343, [2774] = 361, - [2775] = 2457, - [2776] = 370, - [2777] = 2559, - [2778] = 362, - [2779] = 2763, - [2780] = 2602, - [2781] = 2781, - [2782] = 2598, - [2783] = 368, - [2784] = 372, - [2785] = 2417, - [2786] = 2786, - [2787] = 2534, - [2788] = 355, - [2789] = 2450, - [2790] = 2726, - [2791] = 379, - [2792] = 2764, - [2793] = 354, - [2794] = 367, - [2795] = 361, - [2796] = 774, - [2797] = 372, - [2798] = 2609, + [2775] = 372, + [2776] = 343, + [2777] = 344, + [2778] = 365, + [2779] = 2779, + [2780] = 2720, + [2781] = 354, + [2782] = 370, + [2783] = 2715, + [2784] = 364, + [2785] = 349, + [2786] = 747, + [2787] = 748, + [2788] = 900, + [2789] = 371, + [2790] = 344, + [2791] = 2791, + [2792] = 345, + [2793] = 351, + [2794] = 747, + [2795] = 343, + [2796] = 2719, + [2797] = 2715, + [2798] = 2716, [2799] = 2799, - [2800] = 2745, - [2801] = 355, - [2802] = 1159, - [2803] = 2763, - [2804] = 2764, - [2805] = 2598, - [2806] = 2602, - [2807] = 2786, - [2808] = 374, - [2809] = 2510, - [2810] = 355, - [2811] = 2755, - [2812] = 378, - [2813] = 354, - [2814] = 2757, - [2815] = 1163, - [2816] = 354, - [2817] = 2817, - [2818] = 375, - [2819] = 2608, - [2820] = 356, - [2821] = 358, - [2822] = 385, - [2823] = 2609, - [2824] = 366, - [2825] = 2608, - [2826] = 355, - [2827] = 368, - [2828] = 2828, - [2829] = 2676, - [2830] = 374, - [2831] = 2757, - [2832] = 382, - [2833] = 383, - [2834] = 358, - [2835] = 947, - [2836] = 1124, - [2837] = 2757, - [2838] = 2609, - [2839] = 405, - [2840] = 373, - [2841] = 385, - [2842] = 2602, - [2843] = 367, - [2844] = 354, - [2845] = 382, - [2846] = 383, - [2847] = 2847, - [2848] = 383, - [2849] = 2849, - [2850] = 2598, - [2851] = 2851, - [2852] = 368, - [2853] = 367, - [2854] = 379, - [2855] = 2692, - [2856] = 381, - [2857] = 405, - [2858] = 2858, - [2859] = 380, - [2860] = 405, - [2861] = 2861, - [2862] = 2862, - [2863] = 368, - [2864] = 2609, - [2865] = 370, - [2866] = 355, - [2867] = 2867, - [2868] = 2676, - [2869] = 372, - [2870] = 2870, - [2871] = 379, + [2800] = 2720, + [2801] = 2801, + [2802] = 2802, + [2803] = 2803, + [2804] = 748, + [2805] = 748, + [2806] = 365, + [2807] = 2711, + [2808] = 367, + [2809] = 2715, + [2810] = 367, + [2811] = 784, + [2812] = 785, + [2813] = 2813, + [2814] = 2719, + [2815] = 357, + [2816] = 344, + [2817] = 370, + [2818] = 397, + [2819] = 2722, + [2820] = 345, + [2821] = 2716, + [2822] = 357, + [2823] = 349, + [2824] = 361, + [2825] = 2710, + [2826] = 343, + [2827] = 373, + [2828] = 372, + [2829] = 2829, + [2830] = 343, + [2831] = 344, + [2832] = 345, + [2833] = 2711, + [2834] = 2834, + [2835] = 344, + [2836] = 345, + [2837] = 364, + [2838] = 356, + [2839] = 372, + [2840] = 349, + [2841] = 2841, + [2842] = 370, + [2843] = 373, + [2844] = 371, + [2845] = 2710, + [2846] = 353, + [2847] = 2841, + [2848] = 343, + [2849] = 358, + [2850] = 361, + [2851] = 2711, + [2852] = 352, + [2853] = 350, + [2854] = 2720, + [2855] = 2716, + [2856] = 345, + [2857] = 344, + [2858] = 365, + [2859] = 2859, + [2860] = 344, + [2861] = 2714, + [2862] = 350, + [2863] = 369, + [2864] = 2813, + [2865] = 2865, + [2866] = 347, + [2867] = 368, + [2868] = 2714, + [2869] = 748, + [2870] = 747, + [2871] = 2710, [2872] = 2872, - [2873] = 366, - [2874] = 2874, - [2875] = 2875, - [2876] = 383, - [2877] = 2877, - [2878] = 375, - [2879] = 2879, - [2880] = 370, - [2881] = 2881, - [2882] = 2602, - [2883] = 2883, - [2884] = 380, - [2885] = 2885, - [2886] = 376, - [2887] = 361, - [2888] = 2888, - [2889] = 367, - [2890] = 1124, - [2891] = 2692, - [2892] = 2892, - [2893] = 382, - [2894] = 385, - [2895] = 2895, - [2896] = 2896, - [2897] = 2897, - [2898] = 2898, - [2899] = 2899, - [2900] = 382, - [2901] = 2901, - [2902] = 378, - [2903] = 2726, - [2904] = 381, - [2905] = 1159, - [2906] = 371, - [2907] = 2907, - [2908] = 374, + [2873] = 2715, + [2874] = 2719, + [2875] = 351, + [2876] = 395, + [2877] = 369, + [2878] = 351, + [2879] = 366, + [2880] = 368, + [2881] = 397, + [2882] = 2882, + [2883] = 747, + [2884] = 2779, + [2885] = 2714, + [2886] = 2886, + [2887] = 364, + [2888] = 371, + [2889] = 354, + [2890] = 2791, + [2891] = 345, + [2892] = 2722, + [2893] = 353, + [2894] = 2765, + [2895] = 395, + [2896] = 356, + [2897] = 343, + [2898] = 366, + [2899] = 2766, + [2900] = 2722, + [2901] = 354, + [2902] = 2720, + [2903] = 352, + [2904] = 358, + [2905] = 2719, + [2906] = 345, + [2907] = 397, + [2908] = 365, [2909] = 2909, - [2910] = 378, - [2911] = 366, - [2912] = 362, - [2913] = 2828, - [2914] = 2692, - [2915] = 2781, - [2916] = 2817, - [2917] = 2917, - [2918] = 2918, - [2919] = 2729, - [2920] = 361, - [2921] = 362, - [2922] = 1163, - [2923] = 376, - [2924] = 2729, - [2925] = 2925, - [2926] = 2926, - [2927] = 375, - [2928] = 373, - [2929] = 372, - [2930] = 2729, - [2931] = 2931, - [2932] = 2932, - [2933] = 371, - [2934] = 354, - [2935] = 373, - [2936] = 2936, + [2910] = 1199, + [2911] = 367, + [2912] = 2912, + [2913] = 345, + [2914] = 2914, + [2915] = 344, + [2916] = 344, + [2917] = 343, + [2918] = 345, + [2919] = 2765, + [2920] = 2765, + [2921] = 2766, + [2922] = 370, + [2923] = 349, + [2924] = 2791, + [2925] = 2714, + [2926] = 364, + [2927] = 2779, + [2928] = 371, + [2929] = 351, + [2930] = 344, + [2931] = 397, + [2932] = 2766, + [2933] = 358, + [2934] = 2914, + [2935] = 2791, + [2936] = 2909, [2937] = 2937, - [2938] = 2608, - [2939] = 2939, - [2940] = 2940, - [2941] = 374, + [2938] = 372, + [2939] = 373, + [2940] = 2779, + [2941] = 2715, [2942] = 2942, [2943] = 2943, [2944] = 2944, - [2945] = 2942, - [2946] = 2901, - [2947] = 1124, - [2948] = 2861, - [2949] = 1159, - [2950] = 2867, - [2951] = 2870, - [2952] = 2847, - [2953] = 2875, - [2954] = 2909, - [2955] = 2849, - [2956] = 2956, - [2957] = 1120, - [2958] = 2944, - [2959] = 2932, - [2960] = 2817, - [2961] = 2937, - [2962] = 2962, - [2963] = 2879, - [2964] = 1163, - [2965] = 2897, - [2966] = 2956, - [2967] = 2962, - [2968] = 2817, - [2969] = 2828, - [2970] = 2881, - [2971] = 2926, - [2972] = 2962, - [2973] = 2931, - [2974] = 2692, - [2975] = 2940, - [2976] = 2729, - [2977] = 2872, - [2978] = 2858, - [2979] = 2828, - [2980] = 2925, - [2981] = 2899, - [2982] = 2943, - [2983] = 2851, - [2984] = 2956, - [2985] = 2907, - [2986] = 2936, - [2987] = 2781, - [2988] = 405, - [2989] = 2781, - [2990] = 2918, - [2991] = 2877, - [2992] = 2817, - [2993] = 2939, - [2994] = 2898, - [2995] = 2917, - [2996] = 2895, - [2997] = 2781, - [2998] = 385, - [2999] = 2892, - [3000] = 2888, - [3001] = 2828, - [3002] = 2885, - [3003] = 2883, - [3004] = 2896, - [3005] = 2874, - [3006] = 2862, - [3007] = 2937, - [3008] = 3008, + [2945] = 2710, + [2946] = 356, + [2947] = 2947, + [2948] = 2937, + [2949] = 1199, + [2950] = 2950, + [2951] = 1137, + [2952] = 354, + [2953] = 2720, + [2954] = 2954, + [2955] = 747, + [2956] = 2909, + [2957] = 2943, + [2958] = 350, + [2959] = 2912, + [2960] = 345, + [2961] = 1194, + [2962] = 361, + [2963] = 2944, + [2964] = 366, + [2965] = 344, + [2966] = 2791, + [2967] = 2937, + [2968] = 1194, + [2969] = 357, + [2970] = 2886, + [2971] = 2765, + [2972] = 2766, + [2973] = 748, + [2974] = 2799, + [2975] = 1137, + [2976] = 2943, + [2977] = 2722, + [2978] = 2944, + [2979] = 353, + [2980] = 352, + [2981] = 368, + [2982] = 369, + [2983] = 2779, + [2984] = 2984, + [2985] = 2985, + [2986] = 2986, + [2987] = 343, + [2988] = 2988, + [2989] = 2791, + [2990] = 2990, + [2991] = 2991, + [2992] = 2992, + [2993] = 2993, + [2994] = 2985, + [2995] = 2995, + [2996] = 2996, + [2997] = 2997, + [2998] = 2799, + [2999] = 2999, + [3000] = 2986, + [3001] = 2992, + [3002] = 3002, + [3003] = 3003, + [3004] = 3004, + [3005] = 3005, + [3006] = 2947, + [3007] = 2950, + [3008] = 2993, [3009] = 3009, - [3010] = 3008, - [3011] = 355, - [3012] = 2926, - [3013] = 3008, - [3014] = 2899, - [3015] = 354, - [3016] = 2936, - [3017] = 3017, - [3018] = 3018, - [3019] = 2828, - [3020] = 3008, - [3021] = 2939, - [3022] = 3009, - [3023] = 2925, - [3024] = 356, - [3025] = 3008, - [3026] = 2896, - [3027] = 3008, - [3028] = 3028, - [3029] = 358, - [3030] = 3030, - [3031] = 3008, - [3032] = 3008, - [3033] = 3008, - [3034] = 3008, - [3035] = 3028, - [3036] = 3036, - [3037] = 3008, - [3038] = 2943, - [3039] = 3008, + [3010] = 2942, + [3011] = 3011, + [3012] = 3012, + [3013] = 3013, + [3014] = 3014, + [3015] = 3015, + [3016] = 344, + [3017] = 345, + [3018] = 3015, + [3019] = 3019, + [3020] = 344, + [3021] = 3003, + [3022] = 3022, + [3023] = 3023, + [3024] = 345, + [3025] = 3025, + [3026] = 3026, + [3027] = 3027, + [3028] = 2990, + [3029] = 3029, + [3030] = 2766, + [3031] = 3031, + [3032] = 2886, + [3033] = 3033, + [3034] = 2886, + [3035] = 3022, + [3036] = 3025, + [3037] = 2991, + [3038] = 3038, + [3039] = 3039, [3040] = 3040, - [3041] = 3008, - [3042] = 3008, - [3043] = 3008, - [3044] = 3040, - [3045] = 2849, - [3046] = 356, - [3047] = 2877, - [3048] = 3008, - [3049] = 3008, - [3050] = 2881, - [3051] = 2892, - [3052] = 3008, - [3053] = 2909, - [3054] = 2875, - [3055] = 3008, - [3056] = 3008, - [3057] = 2870, - [3058] = 2867, - [3059] = 2781, - [3060] = 2817, - [3061] = 3008, - [3062] = 2885, - [3063] = 405, - [3064] = 3008, - [3065] = 2874, - [3066] = 3008, - [3067] = 2862, - [3068] = 3008, - [3069] = 3008, - [3070] = 2861, - [3071] = 3008, - [3072] = 2879, - [3073] = 3008, - [3074] = 3008, - [3075] = 3008, - [3076] = 3008, - [3077] = 3008, - [3078] = 2901, - [3079] = 3008, - [3080] = 2918, - [3081] = 2942, - [3082] = 2917, - [3083] = 2944, - [3084] = 3008, - [3085] = 3008, - [3086] = 3008, - [3087] = 356, - [3088] = 3008, - [3089] = 3008, - [3090] = 3008, - [3091] = 3008, - [3092] = 3008, - [3093] = 3008, - [3094] = 3008, - [3095] = 2883, - [3096] = 3008, - [3097] = 3008, - [3098] = 2895, - [3099] = 3008, - [3100] = 3008, - [3101] = 3018, - [3102] = 3017, - [3103] = 774, - [3104] = 3008, - [3105] = 3030, - [3106] = 3008, - [3107] = 3036, - [3108] = 2940, - [3109] = 3008, - [3110] = 3008, - [3111] = 2888, - [3112] = 2898, - [3113] = 3009, - [3114] = 2907, - [3115] = 2851, - [3116] = 3009, - [3117] = 2559, - [3118] = 2858, - [3119] = 2872, - [3120] = 2931, - [3121] = 2897, - [3122] = 2847, - [3123] = 2932, - [3124] = 2450, - [3125] = 851, + [3041] = 3041, + [3042] = 3042, + [3043] = 3043, + [3044] = 3044, + [3045] = 3041, + [3046] = 2997, + [3047] = 3047, + [3048] = 3048, + [3049] = 2799, + [3050] = 3050, + [3051] = 3013, + [3052] = 3039, + [3053] = 3012, + [3054] = 2995, + [3055] = 3014, + [3056] = 3056, + [3057] = 3004, + [3058] = 3044, + [3059] = 2765, + [3060] = 2779, + [3061] = 3011, + [3062] = 3040, + [3063] = 3002, + [3064] = 2988, + [3065] = 3065, + [3066] = 3066, + [3067] = 3027, + [3068] = 3019, + [3069] = 3043, + [3070] = 3009, + [3071] = 3031, + [3072] = 3033, + [3073] = 2996, + [3074] = 2984, + [3075] = 3038, + [3076] = 3048, + [3077] = 395, + [3078] = 3078, + [3079] = 3042, + [3080] = 3080, + [3081] = 3050, + [3082] = 3066, + [3083] = 2799, + [3084] = 3056, + [3085] = 3023, + [3086] = 3080, + [3087] = 3026, + [3088] = 3065, + [3089] = 3078, + [3090] = 1140, + [3091] = 2886, + [3092] = 3029, + [3093] = 347, + [3094] = 345, + [3095] = 352, + [3096] = 344, + [3097] = 343, + [3098] = 785, + [3099] = 2886, + [3100] = 356, + [3101] = 2799, + [3102] = 784, + [3103] = 345, + [3104] = 367, + [3105] = 397, + [3106] = 3106, + [3107] = 366, + [3108] = 3106, + [3109] = 371, + [3110] = 2950, + [3111] = 2942, + [3112] = 370, + [3113] = 349, + [3114] = 347, + [3115] = 368, + [3116] = 343, + [3117] = 369, + [3118] = 351, + [3119] = 2947, + [3120] = 344, + [3121] = 357, + [3122] = 365, + [3123] = 2947, + [3124] = 2950, + [3125] = 354, [3126] = 3126, - [3127] = 356, - [3128] = 3128, - [3129] = 3126, - [3130] = 2417, - [3131] = 3131, - [3132] = 3126, - [3133] = 3128, - [3134] = 3134, - [3135] = 3128, - [3136] = 3126, - [3137] = 367, - [3138] = 3138, - [3139] = 3126, - [3140] = 3128, - [3141] = 3126, - [3142] = 3128, - [3143] = 3128, - [3144] = 368, - [3145] = 3128, - [3146] = 3126, - [3147] = 3128, - [3148] = 3126, - [3149] = 3126, - [3150] = 3150, - [3151] = 370, - [3152] = 354, - [3153] = 3126, - [3154] = 3128, - [3155] = 3126, - [3156] = 3126, - [3157] = 3128, - [3158] = 2457, - [3159] = 3128, - [3160] = 3126, - [3161] = 358, - [3162] = 3126, + [3127] = 3126, + [3128] = 3106, + [3129] = 2942, + [3130] = 353, + [3131] = 3126, + [3132] = 364, + [3133] = 350, + [3134] = 2942, + [3135] = 2950, + [3136] = 343, + [3137] = 358, + [3138] = 785, + [3139] = 784, + [3140] = 373, + [3141] = 372, + [3142] = 361, + [3143] = 2947, + [3144] = 3144, + [3145] = 3144, + [3146] = 3146, + [3147] = 3144, + [3148] = 2715, + [3149] = 3149, + [3150] = 353, + [3151] = 747, + [3152] = 3144, + [3153] = 356, + [3154] = 3154, + [3155] = 3155, + [3156] = 3156, + [3157] = 2942, + [3158] = 3158, + [3159] = 3144, + [3160] = 3160, + [3161] = 352, + [3162] = 2950, [3163] = 3163, - [3164] = 3128, + [3164] = 3144, [3165] = 3165, - [3166] = 371, - [3167] = 3128, - [3168] = 3128, - [3169] = 372, - [3170] = 3134, - [3171] = 3126, - [3172] = 374, - [3173] = 3128, - [3174] = 3126, + [3166] = 3144, + [3167] = 357, + [3168] = 3168, + [3169] = 2722, + [3170] = 358, + [3171] = 361, + [3172] = 3144, + [3173] = 3144, + [3174] = 351, [3175] = 3175, - [3176] = 3176, + [3176] = 3144, [3177] = 3177, - [3178] = 3126, - [3179] = 3128, - [3180] = 3126, - [3181] = 3128, - [3182] = 3126, - [3183] = 358, - [3184] = 3126, - [3185] = 2609, - [3186] = 2510, - [3187] = 362, + [3178] = 371, + [3179] = 2947, + [3180] = 364, + [3181] = 3144, + [3182] = 3144, + [3183] = 354, + [3184] = 3144, + [3185] = 3144, + [3186] = 748, + [3187] = 3144, [3188] = 3188, [3189] = 3189, - [3190] = 3126, - [3191] = 3126, - [3192] = 3128, - [3193] = 3126, - [3194] = 3128, + [3190] = 3190, + [3191] = 3144, + [3192] = 3144, + [3193] = 3144, + [3194] = 3144, [3195] = 3195, - [3196] = 3128, - [3197] = 2608, - [3198] = 3126, - [3199] = 3126, - [3200] = 3126, - [3201] = 3128, - [3202] = 3128, - [3203] = 3128, - [3204] = 3128, - [3205] = 3128, - [3206] = 3206, - [3207] = 3207, - [3208] = 3128, - [3209] = 3126, - [3210] = 3126, - [3211] = 3128, - [3212] = 3128, - [3213] = 354, - [3214] = 355, - [3215] = 3126, - [3216] = 3126, - [3217] = 3128, - [3218] = 3128, - [3219] = 3126, - [3220] = 3128, - [3221] = 2534, - [3222] = 3126, - [3223] = 3126, - [3224] = 3126, - [3225] = 3128, - [3226] = 3226, - [3227] = 3128, - [3228] = 3128, - [3229] = 3126, - [3230] = 3126, - [3231] = 3126, - [3232] = 3128, - [3233] = 3128, - [3234] = 3126, - [3235] = 3128, - [3236] = 383, - [3237] = 3126, - [3238] = 3128, - [3239] = 382, - [3240] = 3126, - [3241] = 3128, - [3242] = 3128, - [3243] = 722, - [3244] = 375, - [3245] = 3245, - [3246] = 3246, - [3247] = 3126, - [3248] = 3128, - [3249] = 3126, - [3250] = 3126, - [3251] = 724, - [3252] = 3128, - [3253] = 2559, - [3254] = 3126, - [3255] = 3128, - [3256] = 3126, - [3257] = 2602, - [3258] = 3128, - [3259] = 3128, - [3260] = 3260, - [3261] = 3126, - [3262] = 3126, - [3263] = 361, - [3264] = 3126, - [3265] = 3265, - [3266] = 376, - [3267] = 3128, - [3268] = 3128, - [3269] = 2598, - [3270] = 3126, - [3271] = 373, - [3272] = 381, - [3273] = 380, - [3274] = 3126, - [3275] = 2450, - [3276] = 3126, - [3277] = 3128, - [3278] = 3126, - [3279] = 3128, - [3280] = 3280, - [3281] = 3281, - [3282] = 3128, - [3283] = 379, - [3284] = 3128, - [3285] = 3126, - [3286] = 3286, - [3287] = 3128, - [3288] = 3288, - [3289] = 366, - [3290] = 3126, - [3291] = 3291, - [3292] = 3128, - [3293] = 3128, - [3294] = 355, - [3295] = 3295, - [3296] = 378, - [3297] = 3128, - [3298] = 3126, - [3299] = 3126, - [3300] = 3128, - [3301] = 3301, - [3302] = 358, - [3303] = 383, + [3196] = 3144, + [3197] = 3144, + [3198] = 3144, + [3199] = 3199, + [3200] = 3144, + [3201] = 3144, + [3202] = 3202, + [3203] = 3203, + [3204] = 3204, + [3205] = 3144, + [3206] = 370, + [3207] = 3144, + [3208] = 3144, + [3209] = 367, + [3210] = 3203, + [3211] = 3211, + [3212] = 349, + [3213] = 3144, + [3214] = 395, + [3215] = 2720, + [3216] = 3144, + [3217] = 3217, + [3218] = 3218, + [3219] = 3144, + [3220] = 3220, + [3221] = 2720, + [3222] = 372, + [3223] = 3144, + [3224] = 3224, + [3225] = 2719, + [3226] = 2715, + [3227] = 373, + [3228] = 3144, + [3229] = 350, + [3230] = 365, + [3231] = 369, + [3232] = 3144, + [3233] = 343, + [3234] = 344, + [3235] = 368, + [3236] = 345, + [3237] = 3144, + [3238] = 3238, + [3239] = 343, + [3240] = 3144, + [3241] = 3241, + [3242] = 3146, + [3243] = 3144, + [3244] = 3144, + [3245] = 366, + [3246] = 3144, + [3247] = 3144, + [3248] = 3248, + [3249] = 3144, + [3250] = 3250, + [3251] = 3251, + [3252] = 3144, + [3253] = 3253, + [3254] = 3254, + [3255] = 3163, + [3256] = 3256, + [3257] = 3154, + [3258] = 3144, + [3259] = 3144, + [3260] = 343, + [3261] = 3144, + [3262] = 2714, + [3263] = 3144, + [3264] = 3156, + [3265] = 3203, + [3266] = 3144, + [3267] = 3267, + [3268] = 3144, + [3269] = 2710, + [3270] = 3248, + [3271] = 3144, + [3272] = 3144, + [3273] = 3144, + [3274] = 3220, + [3275] = 3275, + [3276] = 3276, + [3277] = 3275, + [3278] = 3278, + [3279] = 3275, + [3280] = 3275, + [3281] = 3275, + [3282] = 3282, + [3283] = 3278, + [3284] = 3278, + [3285] = 3285, + [3286] = 347, + [3287] = 3287, + [3288] = 3275, + [3289] = 2722, + [3290] = 3290, + [3291] = 3275, + [3292] = 3292, + [3293] = 3278, + [3294] = 2791, + [3295] = 3275, + [3296] = 3278, + [3297] = 3275, + [3298] = 3278, + [3299] = 3299, + [3300] = 3300, + [3301] = 3278, + [3302] = 3302, + [3303] = 3303, [3304] = 3304, - [3305] = 3305, + [3305] = 3275, [3306] = 3306, - [3307] = 367, - [3308] = 382, - [3309] = 368, + [3307] = 3278, + [3308] = 3278, + [3309] = 3275, [3310] = 3310, - [3311] = 3311, - [3312] = 383, - [3313] = 361, + [3311] = 3275, + [3312] = 3278, + [3313] = 3313, [3314] = 3314, - [3315] = 3315, - [3316] = 385, - [3317] = 3317, - [3318] = 376, + [3315] = 3278, + [3316] = 3316, + [3317] = 3275, + [3318] = 3318, [3319] = 3319, - [3320] = 362, - [3321] = 947, - [3322] = 1120, - [3323] = 370, - [3324] = 3324, - [3325] = 3325, - [3326] = 371, - [3327] = 354, + [3320] = 3320, + [3321] = 3275, + [3322] = 3278, + [3323] = 3278, + [3324] = 3278, + [3325] = 3275, + [3326] = 3278, + [3327] = 3275, [3328] = 3328, - [3329] = 3329, - [3330] = 3330, - [3331] = 375, - [3332] = 3332, - [3333] = 3333, - [3334] = 3334, - [3335] = 361, - [3336] = 376, + [3329] = 3278, + [3330] = 2766, + [3331] = 3275, + [3332] = 345, + [3333] = 3278, + [3334] = 344, + [3335] = 3275, + [3336] = 3336, [3337] = 3337, - [3338] = 3338, - [3339] = 2608, - [3340] = 3340, - [3341] = 3341, - [3342] = 3342, - [3343] = 381, - [3344] = 380, - [3345] = 3345, - [3346] = 2602, - [3347] = 355, - [3348] = 3348, - [3349] = 3349, - [3350] = 381, - [3351] = 379, - [3352] = 385, - [3353] = 378, - [3354] = 380, - [3355] = 2609, - [3356] = 3356, - [3357] = 3357, - [3358] = 382, - [3359] = 3359, - [3360] = 3360, - [3361] = 373, - [3362] = 2729, + [3338] = 3275, + [3339] = 3275, + [3340] = 3278, + [3341] = 3278, + [3342] = 3275, + [3343] = 3275, + [3344] = 3344, + [3345] = 2720, + [3346] = 3346, + [3347] = 3278, + [3348] = 3275, + [3349] = 3275, + [3350] = 3278, + [3351] = 3278, + [3352] = 3278, + [3353] = 3278, + [3354] = 3275, + [3355] = 1140, + [3356] = 3278, + [3357] = 3278, + [3358] = 3275, + [3359] = 3278, + [3360] = 2719, + [3361] = 3275, + [3362] = 3362, [3363] = 3363, - [3364] = 3364, - [3365] = 379, - [3366] = 372, - [3367] = 362, - [3368] = 3368, - [3369] = 3369, - [3370] = 374, - [3371] = 2726, - [3372] = 3372, + [3364] = 343, + [3365] = 3365, + [3366] = 3275, + [3367] = 3278, + [3368] = 2710, + [3369] = 3275, + [3370] = 3302, + [3371] = 2765, + [3372] = 3275, [3373] = 3373, [3374] = 3374, - [3375] = 3375, - [3376] = 378, - [3377] = 366, - [3378] = 375, + [3375] = 3278, + [3376] = 3278, + [3377] = 3275, + [3378] = 3275, [3379] = 3379, - [3380] = 3380, - [3381] = 3381, - [3382] = 2598, - [3383] = 3383, - [3384] = 3384, + [3380] = 3278, + [3381] = 3278, + [3382] = 2765, + [3383] = 2766, + [3384] = 3275, [3385] = 3385, - [3386] = 3386, + [3386] = 2779, [3387] = 3387, [3388] = 3388, - [3389] = 3389, - [3390] = 385, + [3389] = 3278, + [3390] = 3278, [3391] = 3391, - [3392] = 3392, - [3393] = 374, - [3394] = 3394, - [3395] = 3395, - [3396] = 372, + [3392] = 3278, + [3393] = 3275, + [3394] = 3275, + [3395] = 3275, + [3396] = 3396, [3397] = 3397, [3398] = 3398, - [3399] = 373, + [3399] = 3399, [3400] = 3400, - [3401] = 366, - [3402] = 3402, - [3403] = 3403, + [3401] = 3278, + [3402] = 3278, + [3403] = 3275, [3404] = 3404, - [3405] = 3405, - [3406] = 3406, + [3405] = 3275, + [3406] = 2714, [3407] = 3407, [3408] = 3408, - [3409] = 371, - [3410] = 370, - [3411] = 2692, - [3412] = 368, - [3413] = 367, - [3414] = 2676, + [3409] = 3278, + [3410] = 1194, + [3411] = 3275, + [3412] = 347, + [3413] = 3275, + [3414] = 3278, [3415] = 3415, - [3416] = 3416, - [3417] = 405, - [3418] = 379, - [3419] = 371, - [3420] = 370, - [3421] = 374, - [3422] = 372, - [3423] = 385, - [3424] = 368, - [3425] = 375, - [3426] = 2692, - [3427] = 367, - [3428] = 2726, - [3429] = 362, - [3430] = 405, - [3431] = 2676, - [3432] = 405, - [3433] = 383, - [3434] = 382, - [3435] = 361, - [3436] = 376, - [3437] = 380, - [3438] = 381, - [3439] = 345, - [3440] = 346, - [3441] = 366, - [3442] = 378, - [3443] = 373, - [3444] = 2729, - [3445] = 2781, - [3446] = 2817, - [3447] = 2828, - [3448] = 2883, - [3449] = 1163, - [3450] = 405, - [3451] = 1159, - [3452] = 3452, - [3453] = 2895, - [3454] = 1124, - [3455] = 2939, - [3456] = 2925, - [3457] = 2896, - [3458] = 2883, - [3459] = 2875, - [3460] = 2901, - [3461] = 2879, - [3462] = 2847, - [3463] = 2874, - [3464] = 2851, - [3465] = 2881, - [3466] = 2858, - [3467] = 2872, - [3468] = 2931, - [3469] = 2939, - [3470] = 2895, - [3471] = 2907, - [3472] = 2940, - [3473] = 2925, - [3474] = 2936, - [3475] = 2849, - [3476] = 2870, - [3477] = 2897, - [3478] = 2932, - [3479] = 2862, - [3480] = 2917, - [3481] = 2944, - [3482] = 2867, - [3483] = 2861, - [3484] = 2885, - [3485] = 2877, - [3486] = 2888, - [3487] = 2899, - [3488] = 2909, - [3489] = 2892, - [3490] = 2942, - [3491] = 2898, - [3492] = 2943, - [3493] = 2926, - [3494] = 2918, - [3495] = 2937, - [3496] = 345, - [3497] = 346, - [3498] = 346, - [3499] = 345, - [3500] = 3500, - [3501] = 3501, - [3502] = 3502, - [3503] = 3503, - [3504] = 3504, - [3505] = 3502, - [3506] = 3500, - [3507] = 3504, - [3508] = 3501, - [3509] = 3501, - [3510] = 3503, - [3511] = 3502, - [3512] = 3500, - [3513] = 3502, - [3514] = 3500, - [3515] = 3501, - [3516] = 3504, - [3517] = 3503, - [3518] = 3500, - [3519] = 3503, - [3520] = 3502, - [3521] = 3500, - [3522] = 3504, - [3523] = 3504, - [3524] = 3504, - [3525] = 3501, - [3526] = 3501, - [3527] = 3503, - [3528] = 3502, - [3529] = 3500, - [3530] = 3501, - [3531] = 3500, - [3532] = 3500, - [3533] = 3501, - [3534] = 3502, - [3535] = 3504, - [3536] = 3503, - [3537] = 3502, - [3538] = 3503, - [3539] = 3504, - [3540] = 3502, - [3541] = 3501, - [3542] = 3500, - [3543] = 3502, - [3544] = 3503, - [3545] = 3502, - [3546] = 3504, - [3547] = 3504, - [3548] = 3504, - [3549] = 3500, - [3550] = 3501, - [3551] = 3500, - [3552] = 3504, - [3553] = 3501, - [3554] = 3500, - [3555] = 3501, - [3556] = 3503, - [3557] = 3504, - [3558] = 3504, - [3559] = 3502, - [3560] = 3504, - [3561] = 3501, - [3562] = 3500, - [3563] = 3501, - [3564] = 3503, - [3565] = 3502, - [3566] = 3500, - [3567] = 3504, - [3568] = 3502, - [3569] = 3500, - [3570] = 3501, - [3571] = 3503, - [3572] = 3504, - [3573] = 3502, - [3574] = 3502, - [3575] = 3501, - [3576] = 3500, - [3577] = 3504, - [3578] = 3504, - [3579] = 3503, - [3580] = 3502, - [3581] = 3503, - [3582] = 3503, - [3583] = 3504, - [3584] = 3503, - [3585] = 3502, - [3586] = 3501, - [3587] = 3500, - [3588] = 3502, - [3589] = 3500, - [3590] = 3501, - [3591] = 3504, - [3592] = 3501, - [3593] = 3500, - [3594] = 3502, - [3595] = 3502, - [3596] = 3503, - [3597] = 3503, - [3598] = 3504, - [3599] = 3504, - [3600] = 3501, - [3601] = 3500, - [3602] = 3500, - [3603] = 3502, - [3604] = 3503, - [3605] = 3502, - [3606] = 3501, - [3607] = 3501, - [3608] = 3500, - [3609] = 3500, - [3610] = 3501, - [3611] = 3502, - [3612] = 3503, - [3613] = 3502, - [3614] = 3504, - [3615] = 3503, - [3616] = 3504, - [3617] = 3501, - [3618] = 3504, - [3619] = 3500, - [3620] = 3503, - [3621] = 3502, - [3622] = 3503, - [3623] = 3504, - [3624] = 3503, - [3625] = 3502, - [3626] = 3504, - [3627] = 3501, - [3628] = 3500, - [3629] = 3500, - [3630] = 3501, - [3631] = 3502, - [3632] = 3504, - [3633] = 3502, - [3634] = 3503, - [3635] = 3504, - [3636] = 3503, - [3637] = 3501, - [3638] = 3504, - [3639] = 3500, - [3640] = 3501, - [3641] = 3500, - [3642] = 3503, - [3643] = 3502, - [3644] = 3501, - [3645] = 3500, - [3646] = 3503, - [3647] = 3500, - [3648] = 3501, - [3649] = 3500, - [3650] = 3502, - [3651] = 3502, - [3652] = 3503, - [3653] = 3503, - [3654] = 3504, - [3655] = 3501, - [3656] = 3504, - [3657] = 3504, - [3658] = 3501, - [3659] = 3500, - [3660] = 3503, - [3661] = 3502, - [3662] = 3502, - [3663] = 3501, - [3664] = 3503, - [3665] = 3500, - [3666] = 3501, - [3667] = 3503, - [3668] = 3502, - [3669] = 3504, - [3670] = 3504, - [3671] = 3500, - [3672] = 3504, - [3673] = 3501, - [3674] = 3504, - [3675] = 3501, - [3676] = 3500, - [3677] = 3501, - [3678] = 3503, - [3679] = 3502, - [3680] = 3500, - [3681] = 3502, - [3682] = 3503, - [3683] = 3500, - [3684] = 3501, - [3685] = 3502, - [3686] = 3504, - [3687] = 3501, - [3688] = 3503, - [3689] = 3504, - [3690] = 3504, - [3691] = 3691, - [3692] = 3504, - [3693] = 3500, - [3694] = 3501, - [3695] = 3500, - [3696] = 3503, - [3697] = 3502, - [3698] = 3502, - [3699] = 3503, - [3700] = 3501, - [3701] = 3500, - [3702] = 3501, - [3703] = 3500, - [3704] = 3503, - [3705] = 3502, - [3706] = 3504, - [3707] = 3504, - [3708] = 3503, - [3709] = 3502, - [3710] = 3504, - [3711] = 3503, - [3712] = 3501, - [3713] = 3500, - [3714] = 3503, - [3715] = 3502, - [3716] = 3500, - [3717] = 3501, - [3718] = 3502, - [3719] = 3500, - [3720] = 3501, - [3721] = 3503, - [3722] = 3502, - [3723] = 3500, - [3724] = 3504, - [3725] = 3501, - [3726] = 3500, - [3727] = 3504, - [3728] = 3504, - [3729] = 3503, - [3730] = 3502, - [3731] = 3503, - [3732] = 3503, - [3733] = 3502, - [3734] = 3504, - [3735] = 3502, - [3736] = 3502, - [3737] = 3500, - [3738] = 3501, - [3739] = 3500, - [3740] = 3504, - [3741] = 3501, - [3742] = 3500, - [3743] = 3503, - [3744] = 3502, - [3745] = 3503, - [3746] = 3504, - [3747] = 3501, - [3748] = 3500, - [3749] = 3504, - [3750] = 3503, - [3751] = 3502, - [3752] = 3501, - [3753] = 3503, - [3754] = 3502, - [3755] = 3500, - [3756] = 3501, - [3757] = 3501, - [3758] = 3758, - [3759] = 3759, - [3760] = 3760, - [3761] = 3760, - [3762] = 3760, - [3763] = 3763, - [3764] = 3764, - [3765] = 3764, - [3766] = 3764, - [3767] = 3763, - [3768] = 3764, - [3769] = 3759, - [3770] = 3764, - [3771] = 3764, - [3772] = 3759, - [3773] = 3763, - [3774] = 3774, - [3775] = 3764, - [3776] = 3764, - [3777] = 3760, - [3778] = 3760, - [3779] = 3760, - [3780] = 3780, - [3781] = 356, - [3782] = 381, - [3783] = 373, - [3784] = 379, - [3785] = 361, - [3786] = 378, - [3787] = 380, - [3788] = 374, - [3789] = 376, - [3790] = 3790, - [3791] = 358, - [3792] = 3792, - [3793] = 3793, - [3794] = 3793, - [3795] = 3795, - [3796] = 355, - [3797] = 3792, - [3798] = 3795, - [3799] = 3792, - [3800] = 3792, - [3801] = 3792, - [3802] = 3792, - [3803] = 3792, - [3804] = 3792, - [3805] = 3805, - [3806] = 3806, - [3807] = 3795, - [3808] = 3793, - [3809] = 3792, - [3810] = 3792, - [3811] = 3795, - [3812] = 3793, - [3813] = 3792, - [3814] = 354, - [3815] = 3792, - [3816] = 3792, - [3817] = 3792, - [3818] = 3792, - [3819] = 3792, - [3820] = 368, - [3821] = 3821, - [3822] = 3822, - [3823] = 375, - [3824] = 3824, - [3825] = 371, - [3826] = 383, - [3827] = 379, - [3828] = 382, - [3829] = 3824, - [3830] = 362, - [3831] = 3831, - [3832] = 3821, - [3833] = 3833, - [3834] = 3824, - [3835] = 3835, - [3836] = 3822, - [3837] = 3824, - [3838] = 380, - [3839] = 381, - [3840] = 379, - [3841] = 378, - [3842] = 373, - [3843] = 378, - [3844] = 3824, - [3845] = 3824, - [3846] = 3821, - [3847] = 3822, - [3848] = 3824, - [3849] = 3822, - [3850] = 3850, - [3851] = 3851, - [3852] = 3835, - [3853] = 361, - [3854] = 381, - [3855] = 3835, - [3856] = 373, - [3857] = 3857, - [3858] = 372, - [3859] = 380, - [3860] = 3822, - [3861] = 367, - [3862] = 374, - [3863] = 385, - [3864] = 3822, - [3865] = 3835, - [3866] = 3835, - [3867] = 376, - [3868] = 361, - [3869] = 3835, - [3870] = 370, - [3871] = 376, - [3872] = 366, - [3873] = 3821, - [3874] = 3822, - [3875] = 3835, - [3876] = 3876, - [3877] = 3877, - [3878] = 3851, - [3879] = 3879, - [3880] = 3880, - [3881] = 3881, - [3882] = 3850, - [3883] = 356, - [3884] = 3833, - [3885] = 3885, - [3886] = 3886, - [3887] = 3857, - [3888] = 3831, - [3889] = 3889, - [3890] = 3876, - [3891] = 3876, - [3892] = 3892, - [3893] = 3893, - [3894] = 3881, - [3895] = 3881, - [3896] = 3896, - [3897] = 3897, - [3898] = 3881, - [3899] = 405, + [3416] = 2791, + [3417] = 3417, + [3418] = 2779, + [3419] = 3278, + [3420] = 1199, + [3421] = 3275, + [3422] = 3275, + [3423] = 748, + [3424] = 3278, + [3425] = 3278, + [3426] = 3426, + [3427] = 3278, + [3428] = 3278, + [3429] = 3429, + [3430] = 747, + [3431] = 3275, + [3432] = 395, + [3433] = 345, + [3434] = 3275, + [3435] = 3278, + [3436] = 344, + [3437] = 3437, + [3438] = 3275, + [3439] = 3278, + [3440] = 3275, + [3441] = 3441, + [3442] = 3442, + [3443] = 345, + [3444] = 3278, + [3445] = 3278, + [3446] = 3275, + [3447] = 3447, + [3448] = 3448, + [3449] = 3449, + [3450] = 3275, + [3451] = 2715, + [3452] = 3278, + [3453] = 3275, + [3454] = 3278, + [3455] = 3455, + [3456] = 3275, + [3457] = 3457, + [3458] = 3458, + [3459] = 3278, + [3460] = 3460, + [3461] = 3461, + [3462] = 3275, + [3463] = 3463, + [3464] = 3464, + [3465] = 344, + [3466] = 3278, + [3467] = 3275, + [3468] = 3468, + [3469] = 3278, + [3470] = 3275, + [3471] = 397, + [3472] = 3275, + [3473] = 3473, + [3474] = 3275, + [3475] = 3475, + [3476] = 3278, + [3477] = 3278, + [3478] = 3478, + [3479] = 3278, + [3480] = 3480, + [3481] = 3275, + [3482] = 3482, + [3483] = 365, + [3484] = 368, + [3485] = 2841, + [3486] = 357, + [3487] = 2799, + [3488] = 2886, + [3489] = 367, + [3490] = 345, + [3491] = 352, + [3492] = 2765, + [3493] = 364, + [3494] = 2766, + [3495] = 344, + [3496] = 365, + [3497] = 395, + [3498] = 353, + [3499] = 2779, + [3500] = 356, + [3501] = 2791, + [3502] = 395, + [3503] = 397, + [3504] = 361, + [3505] = 351, + [3506] = 370, + [3507] = 2799, + [3508] = 351, + [3509] = 367, + [3510] = 347, + [3511] = 900, + [3512] = 353, + [3513] = 364, + [3514] = 358, + [3515] = 350, + [3516] = 2813, + [3517] = 371, + [3518] = 372, + [3519] = 373, + [3520] = 356, + [3521] = 354, + [3522] = 350, + [3523] = 366, + [3524] = 369, + [3525] = 357, + [3526] = 361, + [3527] = 370, + [3528] = 349, + [3529] = 349, + [3530] = 372, + [3531] = 366, + [3532] = 373, + [3533] = 2886, + [3534] = 369, + [3535] = 354, + [3536] = 352, + [3537] = 368, + [3538] = 358, + [3539] = 371, + [3540] = 354, + [3541] = 367, + [3542] = 364, + [3543] = 372, + [3544] = 353, + [3545] = 358, + [3546] = 2841, + [3547] = 335, + [3548] = 357, + [3549] = 356, + [3550] = 373, + [3551] = 395, + [3552] = 371, + [3553] = 397, + [3554] = 334, + [3555] = 365, + [3556] = 361, + [3557] = 352, + [3558] = 2886, + [3559] = 397, + [3560] = 2813, + [3561] = 2942, + [3562] = 369, + [3563] = 349, + [3564] = 366, + [3565] = 351, + [3566] = 2950, + [3567] = 2947, + [3568] = 2799, + [3569] = 370, + [3570] = 350, + [3571] = 368, + [3572] = 1137, + [3573] = 3573, + [3574] = 1194, + [3575] = 3014, + [3576] = 2947, + [3577] = 3023, + [3578] = 1199, + [3579] = 3025, + [3580] = 397, + [3581] = 3012, + [3582] = 2950, + [3583] = 2996, + [3584] = 3022, + [3585] = 3004, + [3586] = 2942, + [3587] = 3043, + [3588] = 3066, + [3589] = 3029, + [3590] = 3050, + [3591] = 3033, + [3592] = 3027, + [3593] = 3015, + [3594] = 3080, + [3595] = 3042, + [3596] = 3002, + [3597] = 3022, + [3598] = 3023, + [3599] = 3025, + [3600] = 2996, + [3601] = 3014, + [3602] = 3004, + [3603] = 3043, + [3604] = 3012, + [3605] = 2993, + [3606] = 2992, + [3607] = 3041, + [3608] = 2997, + [3609] = 3009, + [3610] = 3044, + [3611] = 2985, + [3612] = 3011, + [3613] = 2995, + [3614] = 3065, + [3615] = 3056, + [3616] = 3019, + [3617] = 3078, + [3618] = 3031, + [3619] = 3039, + [3620] = 2986, + [3621] = 2991, + [3622] = 2988, + [3623] = 3026, + [3624] = 3013, + [3625] = 2990, + [3626] = 3038, + [3627] = 3048, + [3628] = 3040, + [3629] = 2984, + [3630] = 3003, + [3631] = 335, + [3632] = 334, + [3633] = 334, + [3634] = 335, + [3635] = 3635, + [3636] = 3635, + [3637] = 3637, + [3638] = 3637, + [3639] = 3637, + [3640] = 3635, + [3641] = 3635, + [3642] = 3635, + [3643] = 3637, + [3644] = 3637, + [3645] = 3637, + [3646] = 3635, + [3647] = 3635, + [3648] = 3637, + [3649] = 3637, + [3650] = 3635, + [3651] = 3637, + [3652] = 3635, + [3653] = 3635, + [3654] = 3635, + [3655] = 3637, + [3656] = 3635, + [3657] = 3637, + [3658] = 3635, + [3659] = 3635, + [3660] = 3637, + [3661] = 3637, + [3662] = 3635, + [3663] = 3637, + [3664] = 3637, + [3665] = 3635, + [3666] = 3637, + [3667] = 3635, + [3668] = 3635, + [3669] = 3669, + [3670] = 3637, + [3671] = 3637, + [3672] = 3637, + [3673] = 3637, + [3674] = 3635, + [3675] = 3635, + [3676] = 3637, + [3677] = 3635, + [3678] = 3637, + [3679] = 3635, + [3680] = 3635, + [3681] = 3635, + [3682] = 3637, + [3683] = 3635, + [3684] = 3637, + [3685] = 3635, + [3686] = 3635, + [3687] = 3635, + [3688] = 3637, + [3689] = 3635, + [3690] = 3690, + [3691] = 3690, + [3692] = 3637, + [3693] = 3635, + [3694] = 3637, + [3695] = 3637, + [3696] = 3637, + [3697] = 3697, + [3698] = 3637, + [3699] = 3635, + [3700] = 3635, + [3701] = 3637, + [3702] = 3637, + [3703] = 3635, + [3704] = 3637, + [3705] = 3637, + [3706] = 3637, + [3707] = 3635, + [3708] = 3637, + [3709] = 3697, + [3710] = 3635, + [3711] = 3635, + [3712] = 3637, + [3713] = 3637, + [3714] = 3635, + [3715] = 3635, + [3716] = 3690, + [3717] = 3637, + [3718] = 3635, + [3719] = 3635, + [3720] = 3697, + [3721] = 3637, + [3722] = 3637, + [3723] = 3635, + [3724] = 3637, + [3725] = 3635, + [3726] = 3637, + [3727] = 3635, + [3728] = 3637, + [3729] = 3637, + [3730] = 3635, + [3731] = 3635, + [3732] = 3635, + [3733] = 3637, + [3734] = 3637, + [3735] = 3637, + [3736] = 3635, + [3737] = 3637, + [3738] = 3635, + [3739] = 3635, + [3740] = 3637, + [3741] = 3635, + [3742] = 3690, + [3743] = 3637, + [3744] = 3635, + [3745] = 3635, + [3746] = 3637, + [3747] = 3697, + [3748] = 3748, + [3749] = 3749, + [3750] = 3750, + [3751] = 3749, + [3752] = 3748, + [3753] = 3750, + [3754] = 3748, + [3755] = 3750, + [3756] = 3750, + [3757] = 3748, + [3758] = 3749, + [3759] = 3748, + [3760] = 3750, + [3761] = 3750, + [3762] = 3750, + [3763] = 3748, + [3764] = 3749, + [3765] = 3749, + [3766] = 3749, + [3767] = 3749, + [3768] = 3749, + [3769] = 3748, + [3770] = 3749, + [3771] = 3748, + [3772] = 3750, + [3773] = 3748, + [3774] = 3750, + [3775] = 3750, + [3776] = 3748, + [3777] = 3749, + [3778] = 3749, + [3779] = 3748, + [3780] = 3749, + [3781] = 3750, + [3782] = 3750, + [3783] = 3749, + [3784] = 3748, + [3785] = 3748, + [3786] = 3748, + [3787] = 3749, + [3788] = 3748, + [3789] = 3749, + [3790] = 3748, + [3791] = 3749, + [3792] = 3748, + [3793] = 3748, + [3794] = 3750, + [3795] = 3748, + [3796] = 3750, + [3797] = 3749, + [3798] = 3750, + [3799] = 3749, + [3800] = 3749, + [3801] = 3748, + [3802] = 3750, + [3803] = 3749, + [3804] = 3749, + [3805] = 3748, + [3806] = 3748, + [3807] = 3748, + [3808] = 3750, + [3809] = 3748, + [3810] = 3749, + [3811] = 3750, + [3812] = 3748, + [3813] = 3750, + [3814] = 3748, + [3815] = 3749, + [3816] = 3750, + [3817] = 3748, + [3818] = 3749, + [3819] = 3748, + [3820] = 3749, + [3821] = 3748, + [3822] = 3750, + [3823] = 3749, + [3824] = 3750, + [3825] = 3750, + [3826] = 3749, + [3827] = 3750, + [3828] = 3748, + [3829] = 3749, + [3830] = 3750, + [3831] = 3749, + [3832] = 3750, + [3833] = 3748, + [3834] = 3748, + [3835] = 3748, + [3836] = 3750, + [3837] = 3749, + [3838] = 3750, + [3839] = 3748, + [3840] = 3748, + [3841] = 3749, + [3842] = 3748, + [3843] = 3749, + [3844] = 3750, + [3845] = 3749, + [3846] = 3750, + [3847] = 3748, + [3848] = 3748, + [3849] = 3750, + [3850] = 3748, + [3851] = 3750, + [3852] = 3750, + [3853] = 3749, + [3854] = 3750, + [3855] = 3748, + [3856] = 3749, + [3857] = 3749, + [3858] = 3750, + [3859] = 3748, + [3860] = 3749, + [3861] = 3750, + [3862] = 3750, + [3863] = 3749, + [3864] = 3748, + [3865] = 3749, + [3866] = 3750, + [3867] = 3750, + [3868] = 3748, + [3869] = 3749, + [3870] = 3750, + [3871] = 3748, + [3872] = 3748, + [3873] = 3749, + [3874] = 3749, + [3875] = 3748, + [3876] = 3749, + [3877] = 3750, + [3878] = 3750, + [3879] = 3749, + [3880] = 3749, + [3881] = 3749, + [3882] = 3749, + [3883] = 3748, + [3884] = 3748, + [3885] = 3748, + [3886] = 3749, + [3887] = 3750, + [3888] = 3750, + [3889] = 3750, + [3890] = 3749, + [3891] = 3749, + [3892] = 3750, + [3893] = 3748, + [3894] = 3748, + [3895] = 3748, + [3896] = 3750, + [3897] = 3750, + [3898] = 3749, + [3899] = 3749, [3900] = 3900, [3901] = 3901, [3902] = 3902, [3903] = 3903, - [3904] = 3904, - [3905] = 3905, - [3906] = 3876, + [3904] = 3901, + [3905] = 3901, + [3906] = 3903, [3907] = 3907, [3908] = 3908, - [3909] = 358, - [3910] = 3910, - [3911] = 3911, - [3912] = 3912, - [3913] = 354, - [3914] = 3831, - [3915] = 355, - [3916] = 3850, - [3917] = 3917, - [3918] = 3918, + [3909] = 3901, + [3910] = 3901, + [3911] = 3903, + [3912] = 3901, + [3913] = 3901, + [3914] = 3903, + [3915] = 3903, + [3916] = 3901, + [3917] = 3903, + [3918] = 3901, [3919] = 3919, - [3920] = 3833, - [3921] = 3908, - [3922] = 3907, - [3923] = 3907, - [3924] = 3850, - [3925] = 3850, - [3926] = 3917, - [3927] = 3907, - [3928] = 3928, - [3929] = 3851, - [3930] = 3930, - [3931] = 3908, - [3932] = 356, - [3933] = 3857, - [3934] = 3833, + [3920] = 370, + [3921] = 366, + [3922] = 3922, + [3923] = 3923, + [3924] = 357, + [3925] = 372, + [3926] = 3926, + [3927] = 3927, + [3928] = 350, + [3929] = 368, + [3930] = 349, + [3931] = 373, + [3932] = 369, + [3933] = 361, + [3934] = 3934, [3935] = 3935, - [3936] = 3917, - [3937] = 3917, - [3938] = 3908, - [3939] = 3833, - [3940] = 378, - [3941] = 361, - [3942] = 358, + [3936] = 3936, + [3937] = 343, + [3938] = 3938, + [3939] = 3939, + [3940] = 3939, + [3941] = 3939, + [3942] = 3942, [3943] = 3943, - [3944] = 380, - [3945] = 3945, - [3946] = 3946, - [3947] = 3947, - [3948] = 3948, - [3949] = 3949, - [3950] = 3950, - [3951] = 3951, - [3952] = 354, - [3953] = 3953, - [3954] = 355, - [3955] = 362, - [3956] = 381, - [3957] = 3957, - [3958] = 3950, - [3959] = 3959, - [3960] = 379, - [3961] = 3961, - [3962] = 376, - [3963] = 373, - [3964] = 366, - [3965] = 3965, - [3966] = 3966, - [3967] = 3967, - [3968] = 371, - [3969] = 382, - [3970] = 385, - [3971] = 372, - [3972] = 3972, - [3973] = 3950, - [3974] = 3965, - [3975] = 3975, - [3976] = 375, - [3977] = 368, - [3978] = 3978, - [3979] = 3979, - [3980] = 370, - [3981] = 3950, - [3982] = 367, - [3983] = 3983, - [3984] = 374, - [3985] = 383, - [3986] = 368, - [3987] = 3987, - [3988] = 3988, - [3989] = 3989, - [3990] = 3990, - [3991] = 3991, - [3992] = 3990, - [3993] = 3991, - [3994] = 3994, - [3995] = 361, - [3996] = 366, - [3997] = 3997, - [3998] = 375, - [3999] = 373, - [4000] = 3987, - [4001] = 372, - [4002] = 3990, - [4003] = 4003, - [4004] = 376, - [4005] = 4005, - [4006] = 4006, - [4007] = 3990, - [4008] = 4008, - [4009] = 4009, - [4010] = 3990, - [4011] = 3990, - [4012] = 4012, - [4013] = 3919, - [4014] = 367, - [4015] = 405, - [4016] = 3990, - [4017] = 4017, - [4018] = 4018, - [4019] = 4019, - [4020] = 4020, - [4021] = 4021, - [4022] = 4022, - [4023] = 3990, - [4024] = 383, - [4025] = 3987, - [4026] = 3990, + [3944] = 3939, + [3945] = 3939, + [3946] = 345, + [3947] = 3939, + [3948] = 3939, + [3949] = 3939, + [3950] = 3939, + [3951] = 347, + [3952] = 3943, + [3953] = 3939, + [3954] = 3942, + [3955] = 3939, + [3956] = 3942, + [3957] = 3939, + [3958] = 3943, + [3959] = 344, + [3960] = 3939, + [3961] = 3939, + [3962] = 3939, + [3963] = 3939, + [3964] = 3939, + [3965] = 3939, + [3966] = 3939, + [3967] = 350, + [3968] = 3968, + [3969] = 3969, + [3970] = 365, + [3971] = 3971, + [3972] = 3968, + [3973] = 366, + [3974] = 372, + [3975] = 373, + [3976] = 3976, + [3977] = 3971, + [3978] = 372, + [3979] = 367, + [3980] = 354, + [3981] = 3971, + [3982] = 366, + [3983] = 361, + [3984] = 3968, + [3985] = 369, + [3986] = 350, + [3987] = 3976, + [3988] = 3976, + [3989] = 357, + [3990] = 352, + [3991] = 349, + [3992] = 3971, + [3993] = 370, + [3994] = 368, + [3995] = 3969, + [3996] = 358, + [3997] = 3968, + [3998] = 351, + [3999] = 353, + [4000] = 3968, + [4001] = 371, + [4002] = 3976, + [4003] = 349, + [4004] = 3976, + [4005] = 370, + [4006] = 356, + [4007] = 3971, + [4008] = 3971, + [4009] = 395, + [4010] = 369, + [4011] = 3971, + [4012] = 3968, + [4013] = 3976, + [4014] = 3969, + [4015] = 3968, + [4016] = 3968, + [4017] = 373, + [4018] = 3976, + [4019] = 368, + [4020] = 3971, + [4021] = 364, + [4022] = 3976, + [4023] = 4023, + [4024] = 4024, + [4025] = 4025, + [4026] = 4024, [4027] = 4027, - [4028] = 370, - [4029] = 371, - [4030] = 3990, - [4031] = 4031, + [4028] = 4024, + [4029] = 4029, + [4030] = 4030, + [4031] = 343, [4032] = 4032, - [4033] = 3990, - [4034] = 3990, - [4035] = 380, - [4036] = 382, + [4033] = 4033, + [4034] = 397, + [4035] = 4035, + [4036] = 343, [4037] = 4037, [4038] = 4038, - [4039] = 381, - [4040] = 4040, + [4039] = 4039, + [4040] = 4023, [4041] = 4041, [4042] = 4042, - [4043] = 3990, + [4043] = 4023, [4044] = 4044, - [4045] = 3990, + [4045] = 4045, [4046] = 4046, - [4047] = 3990, - [4048] = 378, - [4049] = 1620, - [4050] = 1648, + [4047] = 4047, + [4048] = 4048, + [4049] = 4048, + [4050] = 4050, [4051] = 4051, [4052] = 4052, [4053] = 4053, [4054] = 4054, - [4055] = 3990, + [4055] = 4055, [4056] = 4056, [4057] = 4057, - [4058] = 4058, - [4059] = 1638, - [4060] = 3990, + [4058] = 4048, + [4059] = 4059, + [4060] = 4050, [4061] = 4061, [4062] = 4062, - [4063] = 3919, - [4064] = 4064, + [4063] = 4063, + [4064] = 4055, [4065] = 4065, [4066] = 4066, - [4067] = 4067, - [4068] = 3990, - [4069] = 1619, - [4070] = 3990, - [4071] = 385, - [4072] = 3991, + [4067] = 4052, + [4068] = 4056, + [4069] = 4050, + [4070] = 4052, + [4071] = 4071, + [4072] = 4072, [4073] = 4073, - [4074] = 4074, - [4075] = 4075, + [4074] = 347, + [4075] = 4051, [4076] = 4076, - [4077] = 4077, - [4078] = 4078, - [4079] = 374, - [4080] = 4080, - [4081] = 4081, - [4082] = 4082, + [4077] = 4056, + [4078] = 4052, + [4079] = 347, + [4080] = 345, + [4081] = 4059, + [4082] = 4048, [4083] = 4083, - [4084] = 379, + [4084] = 4050, [4085] = 4085, - [4086] = 4086, - [4087] = 3990, - [4088] = 4088, - [4089] = 362, - [4090] = 4090, - [4091] = 4090, - [4092] = 4090, - [4093] = 4093, - [4094] = 4093, - [4095] = 1681, - [4096] = 4093, - [4097] = 1822, - [4098] = 4098, - [4099] = 1697, + [4086] = 4059, + [4087] = 4055, + [4088] = 344, + [4089] = 345, + [4090] = 4051, + [4091] = 344, + [4092] = 4056, + [4093] = 352, + [4094] = 368, + [4095] = 4095, + [4096] = 4096, + [4097] = 358, + [4098] = 357, + [4099] = 4099, [4100] = 4100, - [4101] = 4100, - [4102] = 4093, - [4103] = 3978, + [4101] = 4101, + [4102] = 361, + [4103] = 366, [4104] = 4104, - [4105] = 4100, - [4106] = 4090, - [4107] = 3949, - [4108] = 4093, - [4109] = 4104, - [4110] = 4093, - [4111] = 4093, - [4112] = 4090, - [4113] = 4093, - [4114] = 4098, - [4115] = 4093, - [4116] = 4100, - [4117] = 4093, - [4118] = 4093, - [4119] = 4093, - [4120] = 4120, - [4121] = 4093, - [4122] = 4122, - [4123] = 4104, - [4124] = 4093, - [4125] = 405, - [4126] = 4093, - [4127] = 4098, - [4128] = 4093, - [4129] = 4093, - [4130] = 4098, - [4131] = 4093, - [4132] = 4093, - [4133] = 4093, - [4134] = 4093, - [4135] = 4093, - [4136] = 4093, - [4137] = 4093, - [4138] = 4093, - [4139] = 4093, - [4140] = 4104, - [4141] = 4093, - [4142] = 4090, - [4143] = 4093, - [4144] = 4090, - [4145] = 4090, - [4146] = 4090, - [4147] = 4093, - [4148] = 4090, - [4149] = 4093, - [4150] = 4093, - [4151] = 3978, - [4152] = 4090, - [4153] = 4093, - [4154] = 4090, - [4155] = 4093, - [4156] = 4093, - [4157] = 4093, - [4158] = 4090, - [4159] = 4093, - [4160] = 4090, - [4161] = 4093, - [4162] = 4090, - [4163] = 4093, - [4164] = 4090, - [4165] = 4093, - [4166] = 3949, - [4167] = 4090, - [4168] = 4093, - [4169] = 4090, - [4170] = 4093, - [4171] = 4090, - [4172] = 4093, - [4173] = 4093, - [4174] = 1674, - [4175] = 4093, - [4176] = 4093, - [4177] = 4093, - [4178] = 4090, - [4179] = 4093, - [4180] = 4093, - [4181] = 4093, - [4182] = 4093, - [4183] = 4093, - [4184] = 4093, - [4185] = 4093, - [4186] = 4093, + [4105] = 351, + [4106] = 4106, + [4107] = 4107, + [4108] = 364, + [4109] = 4109, + [4110] = 369, + [4111] = 350, + [4112] = 356, + [4113] = 4113, + [4114] = 373, + [4115] = 372, + [4116] = 353, + [4117] = 366, + [4118] = 358, + [4119] = 4119, + [4120] = 364, + [4121] = 371, + [4122] = 349, + [4123] = 354, + [4124] = 370, + [4125] = 368, + [4126] = 4126, + [4127] = 369, + [4128] = 357, + [4129] = 4104, + [4130] = 395, + [4131] = 350, + [4132] = 354, + [4133] = 367, + [4134] = 4134, + [4135] = 4135, + [4136] = 371, + [4137] = 351, + [4138] = 370, + [4139] = 349, + [4140] = 4140, + [4141] = 365, + [4142] = 4142, + [4143] = 365, + [4144] = 372, + [4145] = 373, + [4146] = 4146, + [4147] = 4147, + [4148] = 356, + [4149] = 367, + [4150] = 4104, + [4151] = 361, + [4152] = 353, + [4153] = 352, + [4154] = 395, + [4155] = 4155, + [4156] = 4156, + [4157] = 4157, + [4158] = 4158, + [4159] = 4159, + [4160] = 4160, + [4161] = 4161, + [4162] = 1617, + [4163] = 4161, + [4164] = 4161, + [4165] = 4158, + [4166] = 4158, + [4167] = 4156, + [4168] = 4161, + [4169] = 4169, + [4170] = 4158, + [4171] = 4161, + [4172] = 4172, + [4173] = 4158, + [4174] = 4155, + [4175] = 4161, + [4176] = 4158, + [4177] = 4177, + [4178] = 4158, + [4179] = 4158, + [4180] = 4161, + [4181] = 4181, + [4182] = 4161, + [4183] = 4183, + [4184] = 4161, + [4185] = 4158, + [4186] = 4161, [4187] = 4187, - [4188] = 4188, - [4189] = 4189, + [4188] = 4158, + [4189] = 4158, [4190] = 4190, [4191] = 4191, - [4192] = 4192, - [4193] = 4189, - [4194] = 4194, - [4195] = 4195, - [4196] = 4196, - [4197] = 4188, - [4198] = 4198, - [4199] = 4191, - [4200] = 4192, - [4201] = 4189, - [4202] = 4194, - [4203] = 4195, - [4204] = 4196, - [4205] = 4188, - [4206] = 4206, - [4207] = 4191, - [4208] = 4187, - [4209] = 4192, + [4192] = 4156, + [4193] = 4158, + [4194] = 4161, + [4195] = 4158, + [4196] = 4161, + [4197] = 4161, + [4198] = 4158, + [4199] = 397, + [4200] = 4161, + [4201] = 4161, + [4202] = 4202, + [4203] = 4161, + [4204] = 4158, + [4205] = 4158, + [4206] = 4158, + [4207] = 4207, + [4208] = 4158, + [4209] = 4158, [4210] = 4210, [4211] = 4211, - [4212] = 4212, - [4213] = 4189, - [4214] = 4194, - [4215] = 4195, - [4216] = 4196, - [4217] = 4188, - [4218] = 4191, - [4219] = 4192, - [4220] = 4189, - [4221] = 4194, - [4222] = 4195, - [4223] = 4196, - [4224] = 4188, - [4225] = 4191, - [4226] = 4192, - [4227] = 4189, - [4228] = 4194, - [4229] = 4189, - [4230] = 4195, - [4231] = 4196, - [4232] = 4188, - [4233] = 4191, - [4234] = 4192, - [4235] = 4189, - [4236] = 4194, - [4237] = 4195, - [4238] = 4195, - [4239] = 4196, - [4240] = 4188, - [4241] = 648, - [4242] = 4191, - [4243] = 4192, - [4244] = 4189, - [4245] = 4194, - [4246] = 4190, - [4247] = 4194, - [4248] = 4195, - [4249] = 4196, - [4250] = 4188, - [4251] = 4191, - [4252] = 4192, - [4253] = 4189, + [4212] = 4158, + [4213] = 4161, + [4214] = 4214, + [4215] = 4215, + [4216] = 4161, + [4217] = 4217, + [4218] = 4158, + [4219] = 4158, + [4220] = 4220, + [4221] = 4221, + [4222] = 4158, + [4223] = 1601, + [4224] = 4224, + [4225] = 4225, + [4226] = 4226, + [4227] = 4161, + [4228] = 4228, + [4229] = 4229, + [4230] = 4158, + [4231] = 4073, + [4232] = 4158, + [4233] = 4233, + [4234] = 4158, + [4235] = 4158, + [4236] = 4158, + [4237] = 4161, + [4238] = 4158, + [4239] = 4239, + [4240] = 4240, + [4241] = 4241, + [4242] = 4242, + [4243] = 4243, + [4244] = 4244, + [4245] = 1661, + [4246] = 4158, + [4247] = 4247, + [4248] = 397, + [4249] = 4158, + [4250] = 4158, + [4251] = 4251, + [4252] = 4158, + [4253] = 4158, [4254] = 4254, - [4255] = 4194, - [4256] = 4198, - [4257] = 4194, - [4258] = 4192, - [4259] = 4195, - [4260] = 4196, - [4261] = 4188, - [4262] = 4191, - [4263] = 4192, - [4264] = 4206, - [4265] = 4189, - [4266] = 4187, - [4267] = 4210, - [4268] = 4211, - [4269] = 4212, - [4270] = 4194, - [4271] = 4191, - [4272] = 4195, - [4273] = 4196, - [4274] = 4188, - [4275] = 4191, - [4276] = 4192, - [4277] = 4189, - [4278] = 4194, - [4279] = 4188, - [4280] = 4195, - [4281] = 4196, - [4282] = 4188, - [4283] = 4191, - [4284] = 4190, - [4285] = 4192, - [4286] = 4196, - [4287] = 4189, - [4288] = 4194, - [4289] = 4195, - [4290] = 4194, - [4291] = 4206, - [4292] = 4195, - [4293] = 4187, - [4294] = 4196, - [4295] = 4188, - [4296] = 4191, - [4297] = 4190, - [4298] = 4192, - [4299] = 4189, - [4300] = 4194, - [4301] = 4189, - [4302] = 4195, - [4303] = 4192, - [4304] = 4206, - [4305] = 4196, - [4306] = 4187, - [4307] = 4188, - [4308] = 4191, - [4309] = 4190, - [4310] = 4192, - [4311] = 4189, - [4312] = 4194, - [4313] = 4191, - [4314] = 4195, - [4315] = 4188, - [4316] = 4206, - [4317] = 4196, - [4318] = 4187, - [4319] = 4188, - [4320] = 4191, - [4321] = 4192, - [4322] = 4189, - [4323] = 4323, - [4324] = 4194, - [4325] = 4196, - [4326] = 4195, - [4327] = 4194, - [4328] = 4187, - [4329] = 4195, - [4330] = 4196, - [4331] = 4188, - [4332] = 4191, - [4333] = 4192, - [4334] = 4189, - [4335] = 4196, - [4336] = 4196, - [4337] = 4187, - [4338] = 4192, - [4339] = 4195, - [4340] = 4196, - [4341] = 4188, - [4342] = 4191, - [4343] = 4192, - [4344] = 4189, - [4345] = 4191, - [4346] = 4187, - [4347] = 4194, - [4348] = 4188, - [4349] = 4195, - [4350] = 4196, - [4351] = 4188, - [4352] = 4191, - [4353] = 4192, - [4354] = 4196, - [4355] = 4187, - [4356] = 4189, - [4357] = 4194, - [4358] = 4195, - [4359] = 4195, - [4360] = 4196, - [4361] = 4361, - [4362] = 4188, - [4363] = 4192, - [4364] = 4187, - [4365] = 4191, - [4366] = 4192, - [4367] = 4189, - [4368] = 4194, - [4369] = 4194, - [4370] = 4195, - [4371] = 4196, - [4372] = 4189, - [4373] = 4187, - [4374] = 4188, - [4375] = 4191, - [4376] = 4192, - [4377] = 4377, - [4378] = 4189, - [4379] = 4194, - [4380] = 4192, - [4381] = 4191, - [4382] = 4187, - [4383] = 4188, - [4384] = 4195, - [4385] = 4196, - [4386] = 4188, - [4387] = 4191, - [4388] = 4192, - [4389] = 4189, - [4390] = 4195, - [4391] = 4187, - [4392] = 4194, - [4393] = 4194, - [4394] = 4195, - [4395] = 4395, - [4396] = 4196, - [4397] = 4188, - [4398] = 4189, - [4399] = 4187, - [4400] = 4191, - [4401] = 4192, - [4402] = 4189, - [4403] = 4194, - [4404] = 4189, - [4405] = 4195, - [4406] = 4192, - [4407] = 4187, - [4408] = 4196, - [4409] = 4188, - [4410] = 4191, - [4411] = 4192, - [4412] = 4189, - [4413] = 4194, - [4414] = 4191, - [4415] = 4187, - [4416] = 4188, + [4255] = 4158, + [4256] = 4158, + [4257] = 4257, + [4258] = 4161, + [4259] = 4259, + [4260] = 4158, + [4261] = 4261, + [4262] = 4262, + [4263] = 4263, + [4264] = 4264, + [4265] = 4265, + [4266] = 4158, + [4267] = 4267, + [4268] = 4158, + [4269] = 4269, + [4270] = 4158, + [4271] = 1663, + [4272] = 4158, + [4273] = 4273, + [4274] = 4158, + [4275] = 4275, + [4276] = 4158, + [4277] = 4158, + [4278] = 4155, + [4279] = 4279, + [4280] = 4280, + [4281] = 4281, + [4282] = 4158, + [4283] = 4158, + [4284] = 4158, + [4285] = 4285, + [4286] = 4286, + [4287] = 4073, + [4288] = 4161, + [4289] = 4158, + [4290] = 4290, + [4291] = 4158, + [4292] = 4161, + [4293] = 4158, + [4294] = 4294, + [4295] = 4295, + [4296] = 4294, + [4297] = 4297, + [4298] = 365, + [4299] = 367, + [4300] = 361, + [4301] = 4294, + [4302] = 350, + [4303] = 4294, + [4304] = 369, + [4305] = 368, + [4306] = 366, + [4307] = 4295, + [4308] = 357, + [4309] = 4294, + [4310] = 4294, + [4311] = 4295, + [4312] = 4294, + [4313] = 4294, + [4314] = 4294, + [4315] = 4294, + [4316] = 4294, + [4317] = 4295, + [4318] = 4294, + [4319] = 4294, + [4320] = 4297, + [4321] = 4295, + [4322] = 4322, + [4323] = 4294, + [4324] = 4294, + [4325] = 4294, + [4326] = 4294, + [4327] = 4327, + [4328] = 4294, + [4329] = 4294, + [4330] = 4294, + [4331] = 4294, + [4332] = 4294, + [4333] = 4126, + [4334] = 4294, + [4335] = 4297, + [4336] = 4294, + [4337] = 4294, + [4338] = 4338, + [4339] = 4294, + [4340] = 4134, + [4341] = 4294, + [4342] = 1744, + [4343] = 1749, + [4344] = 4294, + [4345] = 4294, + [4346] = 4294, + [4347] = 4294, + [4348] = 4134, + [4349] = 4126, + [4350] = 4294, + [4351] = 4351, + [4352] = 4351, + [4353] = 4294, + [4354] = 4294, + [4355] = 4294, + [4356] = 4356, + [4357] = 4294, + [4358] = 4295, + [4359] = 4295, + [4360] = 4295, + [4361] = 4294, + [4362] = 4294, + [4363] = 4295, + [4364] = 4295, + [4365] = 4294, + [4366] = 1839, + [4367] = 4295, + [4368] = 4294, + [4369] = 4295, + [4370] = 1899, + [4371] = 4294, + [4372] = 4295, + [4373] = 4295, + [4374] = 4374, + [4375] = 4294, + [4376] = 4295, + [4377] = 4294, + [4378] = 4294, + [4379] = 4295, + [4380] = 4380, + [4381] = 4294, + [4382] = 4295, + [4383] = 4295, + [4384] = 4384, + [4385] = 4294, + [4386] = 4295, + [4387] = 4295, + [4388] = 4356, + [4389] = 4294, + [4390] = 4351, + [4391] = 4295, + [4392] = 4294, + [4393] = 4294, + [4394] = 4295, + [4395] = 4294, + [4396] = 4295, + [4397] = 4294, + [4398] = 4398, + [4399] = 4294, + [4400] = 4294, + [4401] = 4356, + [4402] = 4294, + [4403] = 4403, + [4404] = 4404, + [4405] = 4405, + [4406] = 4406, + [4407] = 4407, + [4408] = 4408, + [4409] = 4409, + [4410] = 4410, + [4411] = 4411, + [4412] = 4412, + [4413] = 4413, + [4414] = 4414, + [4415] = 4415, + [4416] = 4416, [4417] = 4417, - [4418] = 4195, - [4419] = 4196, - [4420] = 4188, - [4421] = 4191, - [4422] = 4196, - [4423] = 4187, - [4424] = 4192, - [4425] = 4189, - [4426] = 4194, - [4427] = 4195, - [4428] = 4195, - [4429] = 4187, - [4430] = 4195, + [4418] = 4406, + [4419] = 4419, + [4420] = 4420, + [4421] = 4408, + [4422] = 4422, + [4423] = 4409, + [4424] = 4406, + [4425] = 4425, + [4426] = 4406, + [4427] = 4404, + [4428] = 4416, + [4429] = 4403, + [4430] = 4417, [4431] = 4431, - [4432] = 4432, - [4433] = 4196, - [4434] = 4188, - [4435] = 4187, - [4436] = 4191, - [4437] = 4192, - [4438] = 4189, - [4439] = 4194, - [4440] = 4194, - [4441] = 4187, - [4442] = 4189, - [4443] = 4195, - [4444] = 4196, - [4445] = 4188, - [4446] = 4191, - [4447] = 4187, - [4448] = 4192, - [4449] = 4449, - [4450] = 4189, - [4451] = 4194, - [4452] = 4192, + [4432] = 4406, + [4433] = 4408, + [4434] = 4434, + [4435] = 4435, + [4436] = 4409, + [4437] = 4420, + [4438] = 4438, + [4439] = 4416, + [4440] = 4417, + [4441] = 4417, + [4442] = 4442, + [4443] = 4403, + [4444] = 4444, + [4445] = 4406, + [4446] = 4408, + [4447] = 4409, + [4448] = 4409, + [4449] = 4416, + [4450] = 4404, + [4451] = 4417, + [4452] = 4417, [4453] = 4453, - [4454] = 4195, - [4455] = 4196, - [4456] = 4188, - [4457] = 4191, - [4458] = 4192, - [4459] = 4187, - [4460] = 4189, - [4461] = 4194, - [4462] = 4191, - [4463] = 4195, - [4464] = 4464, - [4465] = 4187, - [4466] = 4196, - [4467] = 4188, - [4468] = 4191, - [4469] = 4196, - [4470] = 4192, - [4471] = 4187, - [4472] = 4189, - [4473] = 4194, - [4474] = 4206, - [4475] = 4194, - [4476] = 4195, - [4477] = 4187, - [4478] = 4196, - [4479] = 4188, - [4480] = 4191, - [4481] = 4192, - [4482] = 4194, - [4483] = 4187, - [4484] = 4194, - [4485] = 4189, - [4486] = 4194, - [4487] = 4192, - [4488] = 4191, - [4489] = 4187, - [4490] = 4188, - [4491] = 4195, - [4492] = 4492, - [4493] = 4196, - [4494] = 4188, - [4495] = 4187, - [4496] = 4191, - [4497] = 4192, - [4498] = 4189, - [4499] = 4194, - [4500] = 4189, - [4501] = 4187, - [4502] = 4196, - [4503] = 4195, - [4504] = 4504, - [4505] = 4196, - [4506] = 4188, - [4507] = 4187, - [4508] = 4191, - [4509] = 4192, - [4510] = 4189, - [4511] = 4212, - [4512] = 4188, - [4513] = 4187, - [4514] = 4191, - [4515] = 4211, - [4516] = 4196, - [4517] = 4195, - [4518] = 4196, - [4519] = 4187, - [4520] = 4196, - [4521] = 4188, - [4522] = 4191, - [4523] = 4194, - [4524] = 4192, - [4525] = 4187, - [4526] = 4464, - [4527] = 4189, - [4528] = 4194, - [4529] = 4210, - [4530] = 4432, - [4531] = 4187, - [4532] = 4431, - [4533] = 4189, - [4534] = 4195, - [4535] = 4187, - [4536] = 4195, - [4537] = 4187, - [4538] = 4196, - [4539] = 4188, - [4540] = 4192, - [4541] = 4191, - [4542] = 4192, - [4543] = 4187, - [4544] = 4395, - [4545] = 4189, - [4546] = 4194, - [4547] = 4377, - [4548] = 4361, - [4549] = 4187, - [4550] = 4191, - [4551] = 4195, - [4552] = 4196, - [4553] = 4192, - [4554] = 4188, - [4555] = 4187, - [4556] = 4191, - [4557] = 4192, - [4558] = 4558, - [4559] = 4189, - [4560] = 4492, - [4561] = 4187, - [4562] = 4194, - [4563] = 4563, - [4564] = 4206, - [4565] = 4565, - [4566] = 4191, - [4567] = 4187, - [4568] = 4568, - [4569] = 4192, - [4570] = 4189, - [4571] = 4189, - [4572] = 4572, - [4573] = 4187, - [4574] = 4574, - [4575] = 4194, - [4576] = 4187, - [4577] = 4504, - [4578] = 4195, - [4579] = 4187, - [4580] = 4417, - [4581] = 4196, - [4582] = 4254, - [4583] = 4188, - [4584] = 4191, - [4585] = 4187, - [4586] = 4192, - [4587] = 4189, - [4588] = 4194, - [4589] = 4194, - [4590] = 4195, - [4591] = 4187, - [4592] = 4196, - [4593] = 4188, - [4594] = 4594, - [4595] = 4191, - [4596] = 4192, - [4597] = 4187, - [4598] = 4189, - [4599] = 4194, - [4600] = 4210, - [4601] = 4194, - [4602] = 4196, - [4603] = 4187, - [4604] = 4195, - [4605] = 4196, - [4606] = 4188, - [4607] = 4191, - [4608] = 4192, - [4609] = 4449, - [4610] = 4189, - [4611] = 4194, - [4612] = 4574, - [4613] = 4563, - [4614] = 4195, - [4615] = 4194, - [4616] = 4196, - [4617] = 4188, - [4618] = 4191, - [4619] = 4192, - [4620] = 4189, - [4621] = 4189, - [4622] = 4198, - [4623] = 4194, - [4624] = 4624, - [4625] = 4194, - [4626] = 4192, - [4627] = 4565, - [4628] = 4191, - [4629] = 4188, - [4630] = 4594, - [4631] = 4196, - [4632] = 4492, - [4633] = 4196, - [4634] = 4449, - [4635] = 4572, - [4636] = 4195, - [4637] = 4196, - [4638] = 4188, - [4639] = 4191, - [4640] = 4192, - [4641] = 4558, - [4642] = 4194, - [4643] = 4196, - [4644] = 4191, - [4645] = 4464, - [4646] = 4432, - [4647] = 4431, - [4648] = 4195, - [4649] = 4195, - [4650] = 4196, - [4651] = 4188, - [4652] = 4191, - [4653] = 4191, - [4654] = 4192, - [4655] = 4189, - [4656] = 4656, - [4657] = 4657, - [4658] = 4194, - [4659] = 4395, - [4660] = 4192, - [4661] = 4191, - [4662] = 4568, - [4663] = 4361, - [4664] = 4195, - [4665] = 4464, - [4666] = 4196, - [4667] = 4492, - [4668] = 4188, - [4669] = 4191, - [4670] = 4192, - [4671] = 4189, - [4672] = 4194, - [4673] = 4198, - [4674] = 4558, - [4675] = 4563, - [4676] = 4189, - [4677] = 4568, - [4678] = 4572, - [4679] = 4574, - [4680] = 4192, - [4681] = 4504, - [4682] = 4417, - [4683] = 4254, - [4684] = 4377, - [4685] = 4254, - [4686] = 4417, - [4687] = 4504, - [4688] = 4190, - [4689] = 4574, - [4690] = 4572, - [4691] = 4194, - [4692] = 4196, - [4693] = 4624, - [4694] = 4568, - [4695] = 4563, - [4696] = 4565, - [4697] = 4189, - [4698] = 4558, - [4699] = 4196, - [4700] = 4361, - [4701] = 4194, - [4702] = 4377, - [4703] = 4395, - [4704] = 4195, - [4705] = 4431, - [4706] = 4432, - [4707] = 4191, - [4708] = 4449, - [4709] = 4192, - [4710] = 4624, - [4711] = 4189, - [4712] = 4624, - [4713] = 4190, - [4714] = 4464, - [4715] = 4565, - [4716] = 4196, - [4717] = 4212, - [4718] = 4211, - [4719] = 4189, - [4720] = 4565, - [4721] = 4565, - [4722] = 4565, - [4723] = 4565, - [4724] = 4565, - [4725] = 4565, - [4726] = 4565, - [4727] = 4565, - [4728] = 4565, - [4729] = 4565, - [4730] = 4565, - [4731] = 4565, - [4732] = 4565, - [4733] = 4565, - [4734] = 4565, - [4735] = 4565, - [4736] = 4565, - [4737] = 4565, - [4738] = 4565, - [4739] = 4565, - [4740] = 4565, - [4741] = 4565, - [4742] = 4565, - [4743] = 4565, - [4744] = 4565, - [4745] = 4565, - [4746] = 4565, - [4747] = 4565, - [4748] = 4565, - [4749] = 4565, - [4750] = 4565, - [4751] = 4565, - [4752] = 4565, - [4753] = 4565, - [4754] = 4565, - [4755] = 4565, - [4756] = 4565, - [4757] = 4565, - [4758] = 4565, - [4759] = 4565, - [4760] = 4565, - [4761] = 4565, - [4762] = 4565, - [4763] = 4565, - [4764] = 4565, - [4765] = 4765, - [4766] = 4765, - [4767] = 4492, - [4768] = 4188, - [4769] = 4765, - [4770] = 4765, - [4771] = 4765, - [4772] = 4765, - [4773] = 4765, - [4774] = 4765, - [4775] = 4765, - [4776] = 4765, - [4777] = 4765, - [4778] = 4765, - [4779] = 4765, - [4780] = 4765, - [4781] = 4765, - [4782] = 4765, - [4783] = 4765, - [4784] = 4765, - [4785] = 4765, - [4786] = 4765, - [4787] = 4765, - [4788] = 4765, - [4789] = 4765, - [4790] = 4765, - [4791] = 4765, - [4792] = 4765, - [4793] = 4765, - [4794] = 4765, - [4795] = 4765, - [4796] = 4765, - [4797] = 4765, - [4798] = 4765, - [4799] = 4765, - [4800] = 4765, - [4801] = 4765, - [4802] = 4765, - [4803] = 4765, - [4804] = 4765, - [4805] = 4765, - [4806] = 4765, - [4807] = 4765, - [4808] = 4765, - [4809] = 4765, - [4810] = 4765, - [4811] = 4765, - [4812] = 4765, - [4813] = 4765, - [4814] = 4765, - [4815] = 4765, + [4454] = 4406, + [4455] = 4406, + [4456] = 4408, + [4457] = 4409, + [4458] = 4417, + [4459] = 4416, + [4460] = 4404, + [4461] = 4416, + [4462] = 4409, + [4463] = 4417, + [4464] = 4406, + [4465] = 4408, + [4466] = 4413, + [4467] = 4404, + [4468] = 4416, + [4469] = 4406, + [4470] = 4404, + [4471] = 4408, + [4472] = 4409, + [4473] = 4416, + [4474] = 4417, + [4475] = 4406, + [4476] = 4476, + [4477] = 4477, + [4478] = 4417, + [4479] = 4479, + [4480] = 4404, + [4481] = 4403, + [4482] = 4406, + [4483] = 4483, + [4484] = 4413, + [4485] = 4413, + [4486] = 4408, + [4487] = 4408, + [4488] = 4417, + [4489] = 4404, + [4490] = 4409, + [4491] = 4416, + [4492] = 4409, + [4493] = 4403, + [4494] = 4403, + [4495] = 4444, + [4496] = 4453, + [4497] = 4416, + [4498] = 4404, + [4499] = 4417, + [4500] = 4409, + [4501] = 4416, + [4502] = 4403, + [4503] = 4417, + [4504] = 4406, + [4505] = 4413, + [4506] = 4483, + [4507] = 4404, + [4508] = 4408, + [4509] = 4409, + [4510] = 4416, + [4511] = 4408, + [4512] = 4417, + [4513] = 4513, + [4514] = 4403, + [4515] = 4515, + [4516] = 4404, + [4517] = 4406, + [4518] = 4413, + [4519] = 4405, + [4520] = 4408, + [4521] = 4521, + [4522] = 4409, + [4523] = 4413, + [4524] = 4524, + [4525] = 4404, + [4526] = 4417, + [4527] = 4416, + [4528] = 4416, + [4529] = 4408, + [4530] = 4409, + [4531] = 4417, + [4532] = 4453, + [4533] = 4444, + [4534] = 4404, + [4535] = 4408, + [4536] = 4403, + [4537] = 4406, + [4538] = 4413, + [4539] = 4408, + [4540] = 4409, + [4541] = 4541, + [4542] = 4403, + [4543] = 4404, + [4544] = 4413, + [4545] = 4416, + [4546] = 4546, + [4547] = 4417, + [4548] = 4406, + [4549] = 4415, + [4550] = 4403, + [4551] = 4403, + [4552] = 4404, + [4553] = 4403, + [4554] = 4406, + [4555] = 4413, + [4556] = 4406, + [4557] = 4408, + [4558] = 4409, + [4559] = 4476, + [4560] = 4404, + [4561] = 4416, + [4562] = 4417, + [4563] = 4406, + [4564] = 4414, + [4565] = 4406, + [4566] = 4403, + [4567] = 4404, + [4568] = 4404, + [4569] = 4406, + [4570] = 4413, + [4571] = 4442, + [4572] = 4431, + [4573] = 4408, + [4574] = 4409, + [4575] = 4575, + [4576] = 4404, + [4577] = 4417, + [4578] = 4410, + [4579] = 4579, + [4580] = 4411, + [4581] = 4581, + [4582] = 4416, + [4583] = 4435, + [4584] = 4404, + [4585] = 4412, + [4586] = 4416, + [4587] = 4417, + [4588] = 4588, + [4589] = 4409, + [4590] = 4404, + [4591] = 4414, + [4592] = 4592, + [4593] = 4415, + [4594] = 4408, + [4595] = 4413, + [4596] = 4404, + [4597] = 4413, + [4598] = 4403, + [4599] = 4406, + [4600] = 4419, + [4601] = 4422, + [4602] = 4404, + [4603] = 4413, + [4604] = 4425, + [4605] = 4408, + [4606] = 4409, + [4607] = 4416, + [4608] = 4404, + [4609] = 4408, + [4610] = 4417, + [4611] = 4406, + [4612] = 4612, + [4613] = 4403, + [4614] = 4404, + [4615] = 4406, + [4616] = 4413, + [4617] = 4434, + [4618] = 4435, + [4619] = 4409, + [4620] = 4404, + [4621] = 4420, + [4622] = 4622, + [4623] = 4409, + [4624] = 4612, + [4625] = 4625, + [4626] = 4404, + [4627] = 4416, + [4628] = 4622, + [4629] = 4403, + [4630] = 4444, + [4631] = 4453, + [4632] = 4404, + [4633] = 4417, + [4634] = 4408, + [4635] = 4406, + [4636] = 4417, + [4637] = 4403, + [4638] = 4404, + [4639] = 4639, + [4640] = 4425, + [4641] = 4406, + [4642] = 4413, + [4643] = 4408, + [4644] = 4404, + [4645] = 4409, + [4646] = 4416, + [4647] = 4647, + [4648] = 4416, + [4649] = 4413, + [4650] = 4404, + [4651] = 4408, + [4652] = 4409, + [4653] = 4416, + [4654] = 4575, + [4655] = 4416, + [4656] = 4404, + [4657] = 4417, + [4658] = 4413, + [4659] = 4403, + [4660] = 4404, + [4661] = 4417, + [4662] = 4404, + [4663] = 4408, + [4664] = 4413, + [4665] = 4665, + [4666] = 4416, + [4667] = 4416, + [4668] = 4404, + [4669] = 4422, + [4670] = 4521, + [4671] = 4406, + [4672] = 4413, + [4673] = 4405, + [4674] = 4404, + [4675] = 4406, + [4676] = 4408, + [4677] = 4409, + [4678] = 4416, + [4679] = 4406, + [4680] = 4404, + [4681] = 4417, + [4682] = 4403, + [4683] = 4403, + [4684] = 4403, + [4685] = 4406, + [4686] = 4404, + [4687] = 4419, + [4688] = 4413, + [4689] = 4408, + [4690] = 4409, + [4691] = 4691, + [4692] = 4404, + [4693] = 4406, + [4694] = 4416, + [4695] = 4476, + [4696] = 4417, + [4697] = 4408, + [4698] = 4404, + [4699] = 4417, + [4700] = 4409, + [4701] = 4407, + [4702] = 4416, + [4703] = 4416, + [4704] = 4404, + [4705] = 4705, + [4706] = 4417, + [4707] = 4707, + [4708] = 4403, + [4709] = 4709, + [4710] = 4404, + [4711] = 4442, + [4712] = 4406, + [4713] = 4413, + [4714] = 4431, + [4715] = 4408, + [4716] = 4404, + [4717] = 4409, + [4718] = 4416, + [4719] = 4409, + [4720] = 4407, + [4721] = 4415, + [4722] = 4417, + [4723] = 4417, + [4724] = 4414, + [4725] = 4408, + [4726] = 4413, + [4727] = 4407, + [4728] = 4404, + [4729] = 4413, + [4730] = 4417, + [4731] = 4403, + [4732] = 4406, + [4733] = 4413, + [4734] = 4404, + [4735] = 4408, + [4736] = 4409, + [4737] = 4416, + [4738] = 4416, + [4739] = 4406, + [4740] = 4404, + [4741] = 4417, + [4742] = 4403, + [4743] = 4410, + [4744] = 4409, + [4745] = 4403, + [4746] = 4404, + [4747] = 4406, + [4748] = 4412, + [4749] = 4413, + [4750] = 4408, + [4751] = 4409, + [4752] = 4405, + [4753] = 4408, + [4754] = 4416, + [4755] = 4403, + [4756] = 4417, + [4757] = 4417, + [4758] = 4408, + [4759] = 4416, + [4760] = 4546, + [4761] = 4406, + [4762] = 4406, + [4763] = 4521, + [4764] = 4413, + [4765] = 4408, + [4766] = 4409, + [4767] = 4413, + [4768] = 4768, + [4769] = 4409, + [4770] = 4411, + [4771] = 4771, + [4772] = 4416, + [4773] = 4408, + [4774] = 4417, + [4775] = 4691, + [4776] = 4413, + [4777] = 4409, + [4778] = 4403, + [4779] = 4417, + [4780] = 4406, + [4781] = 4541, + [4782] = 4413, + [4783] = 4408, + [4784] = 4409, + [4785] = 4409, + [4786] = 4416, + [4787] = 4403, + [4788] = 4417, + [4789] = 4403, + [4790] = 4406, + [4791] = 4403, + [4792] = 4406, + [4793] = 4413, + [4794] = 4408, + [4795] = 4409, + [4796] = 4416, + [4797] = 4417, + [4798] = 4417, + [4799] = 4403, + [4800] = 4416, + [4801] = 4403, + [4802] = 4406, + [4803] = 4413, + [4804] = 4408, + [4805] = 4409, + [4806] = 4416, + [4807] = 4771, + [4808] = 4409, + [4809] = 4417, + [4810] = 4408, + [4811] = 4413, + [4812] = 4403, + [4813] = 4406, + [4814] = 4403, + [4815] = 4406, + [4816] = 4413, + [4817] = 4408, + [4818] = 4409, + [4819] = 4416, + [4820] = 4406, + [4821] = 4417, + [4822] = 4403, + [4823] = 4622, + [4824] = 4403, + [4825] = 4406, + [4826] = 4413, + [4827] = 4408, + [4828] = 4409, + [4829] = 4829, + [4830] = 4612, + [4831] = 4416, + [4832] = 4417, + [4833] = 4575, + [4834] = 4403, + [4835] = 4406, + [4836] = 4404, + [4837] = 4413, + [4838] = 4408, + [4839] = 4409, + [4840] = 4416, + [4841] = 4417, + [4842] = 637, + [4843] = 4413, + [4844] = 4768, + [4845] = 4417, + [4846] = 4416, + [4847] = 4771, + [4848] = 4848, + [4849] = 4408, + [4850] = 4408, + [4851] = 4691, + [4852] = 4408, + [4853] = 4413, + [4854] = 4403, + [4855] = 4406, + [4856] = 4541, + [4857] = 4413, + [4858] = 4408, + [4859] = 4409, + [4860] = 4416, + [4861] = 4406, + [4862] = 4417, + [4863] = 4403, + [4864] = 4476, + [4865] = 4409, + [4866] = 4434, + [4867] = 4403, + [4868] = 4406, + [4869] = 4413, + [4870] = 4408, + [4871] = 4409, + [4872] = 4416, + [4873] = 4873, + [4874] = 4874, + [4875] = 4417, + [4876] = 4416, + [4877] = 4417, + [4878] = 4417, + [4879] = 4416, + [4880] = 4403, + [4881] = 4406, + [4882] = 4413, + [4883] = 4408, + [4884] = 4409, + [4885] = 4409, + [4886] = 4416, + [4887] = 4408, + [4888] = 4417, + [4889] = 4413, + [4890] = 4403, + [4891] = 4406, + [4892] = 4403, + [4893] = 4403, + [4894] = 4406, + [4895] = 4413, + [4896] = 4483, + [4897] = 4408, + [4898] = 4409, + [4899] = 4416, + [4900] = 4417, + [4901] = 4409, + [4902] = 4771, + [4903] = 4546, + [4904] = 4406, + [4905] = 4691, + [4906] = 4417, + [4907] = 4417, + [4908] = 4403, + [4909] = 4406, + [4910] = 4541, + [4911] = 4413, + [4912] = 4416, + [4913] = 4403, + [4914] = 4417, + [4915] = 4409, + [4916] = 4406, + [4917] = 4416, + [4918] = 4416, + [4919] = 4417, + [4920] = 4771, + [4921] = 4409, + [4922] = 4408, + [4923] = 4409, + [4924] = 4409, + [4925] = 4413, + [4926] = 4403, + [4927] = 4406, + [4928] = 4483, + [4929] = 4413, + [4930] = 4408, + [4931] = 4413, + [4932] = 4408, + [4933] = 364, + [4934] = 4771, + [4935] = 4771, + [4936] = 4771, + [4937] = 4771, + [4938] = 4771, + [4939] = 4771, + [4940] = 4771, + [4941] = 4771, + [4942] = 4771, + [4943] = 4771, + [4944] = 4771, + [4945] = 4771, + [4946] = 4771, + [4947] = 4771, + [4948] = 4771, + [4949] = 4771, + [4950] = 4771, + [4951] = 4771, + [4952] = 4771, + [4953] = 4771, + [4954] = 4771, + [4955] = 4771, + [4956] = 4771, + [4957] = 4771, + [4958] = 4771, + [4959] = 4771, + [4960] = 4771, + [4961] = 4771, + [4962] = 4771, + [4963] = 4771, + [4964] = 4771, + [4965] = 4771, + [4966] = 4771, + [4967] = 4771, + [4968] = 4771, + [4969] = 4771, + [4970] = 4771, + [4971] = 4771, + [4972] = 4771, + [4973] = 4771, + [4974] = 4771, + [4975] = 4771, + [4976] = 4771, + [4977] = 4977, + [4978] = 4483, + [4979] = 4476, + [4980] = 4409, + [4981] = 358, + [4982] = 4416, + [4983] = 4977, + [4984] = 4483, + [4985] = 4476, + [4986] = 4417, + [4987] = 4768, + [4988] = 356, + [4989] = 4977, + [4990] = 4483, + [4991] = 4476, + [4992] = 4408, + [4993] = 4977, + [4994] = 4483, + [4995] = 4476, + [4996] = 4977, + [4997] = 4977, + [4998] = 4977, + [4999] = 4977, + [5000] = 4977, + [5001] = 4977, + [5002] = 4977, + [5003] = 4977, + [5004] = 4977, + [5005] = 4977, + [5006] = 4977, + [5007] = 4977, + [5008] = 4977, + [5009] = 4977, + [5010] = 4977, + [5011] = 4977, + [5012] = 4977, + [5013] = 4977, + [5014] = 4977, + [5015] = 4977, + [5016] = 4977, + [5017] = 4977, + [5018] = 4977, + [5019] = 4977, + [5020] = 4977, + [5021] = 4977, + [5022] = 4977, + [5023] = 4977, + [5024] = 4977, + [5025] = 4977, + [5026] = 4977, + [5027] = 4977, + [5028] = 4977, + [5029] = 4977, + [5030] = 4977, + [5031] = 4977, + [5032] = 4977, + [5033] = 4977, + [5034] = 4977, + [5035] = 4977, + [5036] = 4977, + [5037] = 4977, + [5038] = 4977, + [5039] = 4977, + [5040] = 4413, }; static inline bool sym_word_character_set_1(int32_t c) { @@ -6988,6 +7430,50 @@ static inline bool sym_word_character_set_4(int32_t c) { } static inline bool sym_word_character_set_5(int32_t c) { + return (c < ';' + ? (c < ' ' + ? (c < '\t' + ? c == 0 + : c <= '\r') + : (c <= ' ' || (c >= '"' && c <= ')'))) + : (c <= '<' || (c < '`' + ? (c < '[' + ? c == '>' + : c <= ']') + : (c <= '`' || (c >= '{' && c <= '}'))))); +} + +static inline bool sym_word_character_set_6(int32_t c) { + return (c < '$' + ? (c < ' ' + ? (c < '\t' + ? c == 0 + : c <= '\r') + : (c <= ' ' || c == '"')) + : (c <= ')' || (c < '`' + ? (c < '[' + ? (c >= ';' && c <= '>') + : c <= ']') + : (c <= '`' || (c >= '{' && c <= '}'))))); +} + +static inline bool sym_word_character_set_7(int32_t c) { + return (c < ';' + ? (c < ' ' + ? (c < '\t' + ? c == 0 + : c <= '\r') + : (c <= ' ' || (c < '$' + ? c == '"' + : c <= ')'))) + : (c <= '<' || (c < '`' + ? (c < '[' + ? c == '>' + : c <= ']') + : (c <= '`' || (c >= '{' && c <= '}'))))); +} + +static inline bool sym_word_character_set_8(int32_t c) { return (c < ';' ? (c < ' ' ? (c < '\t' @@ -7003,7 +7489,7 @@ static inline bool sym_word_character_set_5(int32_t c) { : (c <= '`' || (c >= '{' && c <= '}'))))); } -static inline bool sym_word_character_set_6(int32_t c) { +static inline bool sym_word_character_set_9(int32_t c) { return (c < '&' ? (c < ' ' ? (c < '\t' @@ -7021,5678 +7507,5897 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); switch (state) { case 0: - if (eof) ADVANCE(408); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(579); - if (lookahead == '\'') ADVANCE(246); + if (eof) ADVANCE(442); + if (lookahead == '!') ADVANCE(561); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(687); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(514); + if (lookahead == '&') ADVANCE(630); + if (lookahead == '\'') ADVANCE(266); if (lookahead == '(') ADVANCE(539); if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(511); - if (lookahead == '+') ADVANCE(589); - if (lookahead == ',') ADVANCE(635); - if (lookahead == '-') ADVANCE(590); - if (lookahead == '.') ADVANCE(715); - if (lookahead == '/') ADVANCE(634); - if (lookahead == '0') ADVANCE(709); - if (lookahead == ':') ADVANCE(586); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(464); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); - if (lookahead == '[') ADVANCE(564); - if (lookahead == '\\') ADVANCE(307); - if (lookahead == ']') ADVANCE(565); - if (lookahead == '^') ADVANCE(637); - if (lookahead == '_') ADVANCE(712); - if (lookahead == '`') ADVANCE(645); - if (lookahead == 'e') ADVANCE(722); - if (lookahead == 'i') ADVANCE(721); - if (lookahead == '{') ADVANCE(556); - if (lookahead == '|') ADVANCE(549); - if (lookahead == '}') ADVANCE(595); - if (lookahead == '~') ADVANCE(588); + if (lookahead == '*') ADVANCE(503); + if (lookahead == '+') ADVANCE(643); + if (lookahead == ',') ADVANCE(711); + if (lookahead == '-') ADVANCE(644); + if (lookahead == '.') ADVANCE(791); + if (lookahead == '/') ADVANCE(509); + if (lookahead == '0') ADVANCE(785); + if (lookahead == ':') ADVANCE(638); + if (lookahead == ';') ADVANCE(449); + if (lookahead == '<') ADVANCE(526); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '>') ADVANCE(532); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '[') ADVANCE(565); + if (lookahead == '\\') ADVANCE(336); + if (lookahead == ']') ADVANCE(566); + if (lookahead == '^') ADVANCE(713); + if (lookahead == '_') ADVANCE(788); + if (lookahead == '`') ADVANCE(718); + if (lookahead == 'e') ADVANCE(798); + if (lookahead == 'i') ADVANCE(797); + if (lookahead == '{') ADVANCE(557); + if (lookahead == '|') ADVANCE(550); + if (lookahead == '}') ADVANCE(649); + if (lookahead == '~') ADVANCE(642); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(404) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0) ADVANCE(724); + lookahead == ' ') SKIP(438) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 1: - if (lookahead == '\n') SKIP(171) + if (lookahead == '\n') SKIP(185) END_STATE(); case 2: - if (lookahead == '\n') SKIP(185) + if (lookahead == '\n') SKIP(193) END_STATE(); case 3: - if (lookahead == '\n') SKIP(186) + if (lookahead == '\n') SKIP(194) END_STATE(); case 4: if (lookahead == '\n') SKIP(5) END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(409); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(579); - if (lookahead == '\'') ADVANCE(246); + if (lookahead == '\n') ADVANCE(577); + if (lookahead == '!') ADVANCE(561); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(517); + if (lookahead == '&') ADVANCE(630); + if (lookahead == '\'') ADVANCE(266); if (lookahead == '(') ADVANCE(539); if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(512); - if (lookahead == '+') ADVANCE(589); - if (lookahead == '-') ADVANCE(590); - if (lookahead == '/') ADVANCE(516); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(464); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(584); + if (lookahead == '*') ADVANCE(504); + if (lookahead == '+') ADVANCE(643); + if (lookahead == '-') ADVANCE(644); + if (lookahead == '/') ADVANCE(512); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(526); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '>') ADVANCE(532); + if (lookahead == '?') ADVANCE(636); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(310); - if (lookahead == '^') ADVANCE(581); - if (lookahead == '`') ADVANCE(645); - if (lookahead == '|') ADVANCE(549); - if (lookahead == '~') ADVANCE(588); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(339); + if (lookahead == '^') ADVANCE(632); + if (lookahead == '`') ADVANCE(718); + if (lookahead == '|') ADVANCE(550); + if (lookahead == '~') ADVANCE(642); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0) ADVANCE(724); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 6: - if (lookahead == '\n') SKIP(187) + if (lookahead == '\n') SKIP(195) END_STATE(); case 7: - if (lookahead == '\n') SKIP(189) + if (lookahead == '\n') SKIP(197) END_STATE(); case 8: - if (lookahead == '\n') SKIP(173) + if (lookahead == '\n') SKIP(186) END_STATE(); case 9: - if (lookahead == '\n') SKIP(190) + if (lookahead == '\n') SKIP(198) END_STATE(); case 10: - if (lookahead == '\n') SKIP(174) + if (lookahead == '\n') SKIP(187) END_STATE(); case 11: - if (lookahead == '\n') SKIP(176) + if (lookahead == '\n') SKIP(189) END_STATE(); case 12: - if (lookahead == '\n') ADVANCE(410); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(579); - if (lookahead == '\'') ADVANCE(246); + if (lookahead == '\n') ADVANCE(578); + if (lookahead == '!') ADVANCE(561); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(517); + if (lookahead == '&') ADVANCE(630); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(512); - if (lookahead == '+') ADVANCE(503); - if (lookahead == '-') ADVANCE(506); - if (lookahead == '/') ADVANCE(516); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(464); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); + if (lookahead == '*') ADVANCE(504); + if (lookahead == '+') ADVANCE(494); + if (lookahead == '-') ADVANCE(498); + if (lookahead == '/') ADVANCE(512); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(526); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '>') ADVANCE(532); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(268); - if (lookahead == '^') ADVANCE(581); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(549); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(292); + if (lookahead == '^') ADVANCE(632); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(662); - if (lookahead != 0 && - lookahead != '(') ADVANCE(724); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 13: - if (lookahead == '\n') ADVANCE(669); + if (lookahead == '\n') ADVANCE(742); END_STATE(); case 14: - if (lookahead == '\n') ADVANCE(706); + if (lookahead == '\n') ADVANCE(784); END_STATE(); case 15: - if (lookahead == '\n') ADVANCE(706); + if (lookahead == '\n') ADVANCE(784); if (lookahead == '\r') ADVANCE(14); END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(706); + if (lookahead == '\n') ADVANCE(784); if (lookahead == '\r') ADVANCE(14); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(724); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(800); END_STATE(); case 17: - if (lookahead == '\n') SKIP(108) + if (lookahead == '\n') SKIP(109) END_STATE(); case 18: - if (lookahead == '\n') ADVANCE(686); + if (lookahead == '\n') ADVANCE(763); END_STATE(); case 19: - if (lookahead == '\n') SKIP(140) + if (lookahead == '\n') SKIP(207) END_STATE(); case 20: - if (lookahead == '\n') SKIP(192) + if (lookahead == '\n') SKIP(236) END_STATE(); case 21: - if (lookahead == '\n') SKIP(193) + if (lookahead == '\n') SKIP(196) END_STATE(); case 22: - if (lookahead == '\n') SKIP(188) + if (lookahead == '\n') SKIP(135) END_STATE(); case 23: - if (lookahead == '\n') SKIP(129) + if (lookahead == '\n') SKIP(147) END_STATE(); case 24: - if (lookahead == '\n') SKIP(137) + if (lookahead == '\n') SKIP(151) END_STATE(); case 25: - if (lookahead == '\n') SKIP(141) + if (lookahead == '\n') SKIP(155) END_STATE(); case 26: - if (lookahead == '\n') SKIP(145) + if (lookahead == '\n') SKIP(158) END_STATE(); case 27: - if (lookahead == '\n') SKIP(148) + if (lookahead == '\n') ADVANCE(744); END_STATE(); case 28: - if (lookahead == '\n') ADVANCE(671); + if (lookahead == '\n') ADVANCE(747); END_STATE(); case 29: - if (lookahead == '\n') SKIP(151) + if (lookahead == '\n') SKIP(161) END_STATE(); case 30: - if (lookahead == '\n') SKIP(153) + if (lookahead == '\n') SKIP(164) END_STATE(); case 31: - if (lookahead == '\n') ADVANCE(674); + if (lookahead == '\n') SKIP(166) END_STATE(); case 32: - if (lookahead == '\n') ADVANCE(676); + if (lookahead == '\n') ADVANCE(751); END_STATE(); case 33: - if (lookahead == '\n') ADVANCE(680); + if (lookahead == '\n') ADVANCE(753); END_STATE(); case 34: - if (lookahead == '\n') SKIP(155) + if (lookahead == '\n') ADVANCE(755); END_STATE(); case 35: - if (lookahead == '\n') ADVANCE(682); + if (lookahead == '\n') SKIP(168) END_STATE(); case 36: - if (lookahead == '\n') SKIP(157) + if (lookahead == '\n') ADVANCE(758); END_STATE(); case 37: - if (lookahead == '\n') ADVANCE(684); + if (lookahead == '\n') SKIP(237) END_STATE(); case 38: - if (lookahead == '\n') SKIP(223) + if (lookahead == '\n') SKIP(246) END_STATE(); case 39: - if (lookahead == '\n') SKIP(232) + if (lookahead == '\n') SKIP(243) END_STATE(); case 40: - if (lookahead == '\n') SKIP(220) + if (lookahead == '\n') SKIP(252) END_STATE(); case 41: - if (lookahead == '\n') SKIP(229) + if (lookahead == '\n') ADVANCE(759); END_STATE(); case 42: - if (lookahead == '\n') ADVANCE(697); + if (lookahead == '\n') SKIP(244) END_STATE(); case 43: - if (lookahead == '\n') ADVANCE(693); + if (lookahead == '\n') ADVANCE(766); END_STATE(); case 44: - if (lookahead == '\n') ADVANCE(689); + if (lookahead == '\n') ADVANCE(760); END_STATE(); case 45: - if (lookahead == '\n') SKIP(230) + if (lookahead == '\n') ADVANCE(767); END_STATE(); case 46: - if (lookahead == '\n') SKIP(159) + if (lookahead == '\n') SKIP(240) END_STATE(); case 47: - if (lookahead == '\n') ADVANCE(690); + if (lookahead == '\n') ADVANCE(775); END_STATE(); case 48: - if (lookahead == '\n') ADVANCE(696); + if (lookahead == '\n') ADVANCE(771); END_STATE(); case 49: - if (lookahead == '\n') SKIP(160) + if (lookahead == '\n') ADVANCE(774); END_STATE(); case 50: - if (lookahead == '\n') SKIP(226) + if (lookahead == '\n') SKIP(253) END_STATE(); case 51: - if (lookahead == '\n') SKIP(162) + if (lookahead == '\n') ADVANCE(768); END_STATE(); case 52: - if (lookahead == '\n') ADVANCE(691); + if (lookahead == '\n') ADVANCE(777); END_STATE(); case 53: - if (lookahead == '\n') SKIP(221) + if (lookahead == '\n') SKIP(219) END_STATE(); case 54: - if (lookahead == '\n') ADVANCE(699); + if (lookahead == '\n') ADVANCE(764); END_STATE(); case 55: - if (lookahead == '\n') SKIP(224) + if (lookahead == '\n') SKIP(217) END_STATE(); case 56: - if (lookahead == '\n') SKIP(204) + if (lookahead == '\n') SKIP(223) END_STATE(); case 57: - if (lookahead == '\n') SKIP(202) + if (lookahead == '\n') SKIP(220) END_STATE(); case 58: - if (lookahead == '\n') ADVANCE(687); + if (lookahead == '\n') SKIP(199) END_STATE(); case 59: - if (lookahead == '\n') SKIP(227) + if (lookahead == '\n') SKIP(216) END_STATE(); case 60: - if (lookahead == '\n') SKIP(206) + if (lookahead == '\n') SKIP(182) END_STATE(); case 61: - if (lookahead == '\n') SKIP(205) + if (lookahead == '\n') ADVANCE(765); END_STATE(); case 62: - if (lookahead == '\n') SKIP(201) + if (lookahead == '\n') SKIP(222) END_STATE(); case 63: - if (lookahead == '\n') SKIP(168) + if (lookahead == '\n') SKIP(142) END_STATE(); case 64: - if (lookahead == '\n') SKIP(191) + if (lookahead == '\n') ADVANCE(579); + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == ';') ADVANCE(449); + if (lookahead == '<') ADVANCE(528); + if (lookahead == '>') ADVANCE(534); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(311); + if (lookahead == '_') ADVANCE(790); + if (lookahead == 'e') ADVANCE(739); + if (lookahead == '|') ADVANCE(551); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(64) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); case 65: - if (lookahead == '\n') ADVANCE(688); + if (lookahead == '\n') ADVANCE(743); END_STATE(); case 66: - if (lookahead == '\n') ADVANCE(411); - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(285); - if (lookahead == '_') ADVANCE(714); - if (lookahead == 'e') ADVANCE(666); - if (lookahead == '|') ADVANCE(550); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(66) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + if (lookahead == '\n') ADVANCE(746); END_STATE(); case 67: - if (lookahead == '\n') ADVANCE(670); + if (lookahead == '\n') SKIP(250) END_STATE(); case 68: - if (lookahead == '\n') ADVANCE(673); + if (lookahead == '\n') ADVANCE(748); END_STATE(); case 69: - if (lookahead == '\n') ADVANCE(677); + if (lookahead == '\n') ADVANCE(752); END_STATE(); case 70: - if (lookahead == '\n') ADVANCE(679); + if (lookahead == '\n') SKIP(183) END_STATE(); case 71: - if (lookahead == '\n') SKIP(234) + if (lookahead == '\n') SKIP(72) END_STATE(); case 72: - if (lookahead == '\n') SKIP(73) + if (lookahead == '\n') ADVANCE(580); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(629); + if (lookahead == '*') ADVANCE(506); + if (lookahead == '+') ADVANCE(495); + if (lookahead == ',') ADVANCE(451); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '/') ADVANCE(513); + if (lookahead == ';') ADVANCE(448); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(455); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '\\') SKIP(377) + if (lookahead == '^') ADVANCE(284); + if (lookahead == '|') ADVANCE(281); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(72) END_STATE(); case 73: - if (lookahead == '\n') ADVANCE(412); - if (lookahead == '!') ADVANCE(258); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '&') ADVANCE(578); - if (lookahead == '*') ADVANCE(514); - if (lookahead == '+') ADVANCE(504); - if (lookahead == ',') ADVANCE(462); - if (lookahead == '-') ADVANCE(507); - if (lookahead == '/') ADVANCE(517); - if (lookahead == ';') ADVANCE(459); - if (lookahead == '<') ADVANCE(532); - if (lookahead == '=') ADVANCE(465); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '\\') SKIP(351) - if (lookahead == '^') ADVANCE(260); - if (lookahead == '|') ADVANCE(257); + if (lookahead == '\n') ADVANCE(580); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(655); + if (lookahead == '&') ADVANCE(628); + if (lookahead == '(') ADVANCE(538); + if (lookahead == '+') ADVANCE(276); + if (lookahead == ',') ADVANCE(451); + if (lookahead == '-') ADVANCE(278); + if (lookahead == '0') ADVANCE(678); + if (lookahead == ';') ADVANCE(448); + if (lookahead == '\\') SKIP(382) + if (lookahead == '`') ADVANCE(717); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(73) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(680); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(542); END_STATE(); case 74: - if (lookahead == '\n') ADVANCE(412); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(601); - if (lookahead == '&') ADVANCE(577); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '+') ADVANCE(253); - if (lookahead == ',') ADVANCE(462); - if (lookahead == '-') ADVANCE(255); - if (lookahead == '0') ADVANCE(623); - if (lookahead == ';') ADVANCE(459); - if (lookahead == '\\') SKIP(356) - if (lookahead == '`') ADVANCE(644); + if (lookahead == '\n') ADVANCE(580); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '&') ADVANCE(285); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '-') ADVANCE(280); + if (lookahead == '0') ADVANCE(679); + if (lookahead == '<') ADVANCE(524); + if (lookahead == '>') ADVANCE(534); + if (lookahead == '\\') SKIP(391) + if (lookahead == '|') ADVANCE(549); + if (lookahead == '}') ADVANCE(689); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(74) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(625); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(681); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(542); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); case 75: - if (lookahead == '\n') ADVANCE(412); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '&') ADVANCE(580); - if (lookahead == ')') ADVANCE(540); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '>') ADVANCE(535); + if (lookahead == '\n') ADVANCE(580); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '&') ADVANCE(631); + if (lookahead == ';') ADVANCE(449); + if (lookahead == '<') ADVANCE(528); + if (lookahead == '>') ADVANCE(534); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') SKIP(361) - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') SKIP(384) + if (lookahead == '`') ADVANCE(287); + if (lookahead == 'e') ADVANCE(291); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(75) END_STATE(); case 76: - if (lookahead == '\n') ADVANCE(412); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '&') ADVANCE(580); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '>') ADVANCE(535); + if (lookahead == '\n') ADVANCE(580); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '&') ADVANCE(628); + if (lookahead == ';') ADVANCE(450); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') SKIP(359) - if (lookahead == '`') ADVANCE(263); - if (lookahead == 'e') ADVANCE(267); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') SKIP(392) + if (lookahead == '`') ADVANCE(287); + if (lookahead == 'i') ADVANCE(290); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(76) END_STATE(); case 77: - if (lookahead == '\n') ADVANCE(412); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '&') ADVANCE(577); - if (lookahead == ')') ADVANCE(540); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '\\') SKIP(368) - if (lookahead == '`') ADVANCE(644); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(77) + if (lookahead == '\n') SKIP(248) END_STATE(); case 78: - if (lookahead == '\n') ADVANCE(412); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '&') ADVANCE(577); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '\\') SKIP(367) - if (lookahead == 'e') ADVANCE(267); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(78) + if (lookahead == '\n') SKIP(255) END_STATE(); case 79: - if (lookahead == '\n') SKIP(169) + if (lookahead == '\n') ADVANCE(761); END_STATE(); case 80: - if (lookahead == '\n') SKIP(237) + if (lookahead == '\n') SKIP(224) END_STATE(); case 81: - if (lookahead == '\n') SKIP(209) + if (lookahead == '\n') SKIP(225) END_STATE(); case 82: - if (lookahead == '\n') ADVANCE(685); + if (lookahead == '\n') ADVANCE(769); END_STATE(); case 83: - if (lookahead == '\n') SKIP(208) + if (lookahead == '\n') ADVANCE(754); END_STATE(); case 84: - if (lookahead == '\n') ADVANCE(700); + if (lookahead == '\n') ADVANCE(778); END_STATE(); case 85: - if (lookahead == '\n') ADVANCE(701); + if (lookahead == '\n') ADVANCE(762); END_STATE(); case 86: - if (lookahead == '\n') SKIP(74) + if (lookahead == '\n') ADVANCE(770); END_STATE(); case 87: - if (lookahead == '\n') SKIP(235) + if (lookahead == '\n') ADVANCE(779); END_STATE(); case 88: - if (lookahead == '\n') ADVANCE(692); + if (lookahead == '\n') SKIP(73) END_STATE(); case 89: - if (lookahead == '\n') SKIP(238) + if (lookahead == '\n') SKIP(256) END_STATE(); case 90: - if (lookahead == '\n') SKIP(76) + if (lookahead == '\n') SKIP(75) END_STATE(); case 91: - if (lookahead == '\n') SKIP(236) + if (lookahead == '\n') SKIP(251) END_STATE(); case 92: - if (lookahead == '\n') SKIP(75) + if (lookahead == '\n') SKIP(258) END_STATE(); case 93: - if (lookahead == '\n') SKIP(219) + if (lookahead == '\n') SKIP(232) END_STATE(); case 94: - if (lookahead == '\n') SKIP(241) + if (lookahead == '\n') SKIP(260) END_STATE(); case 95: - if (lookahead == '\n') SKIP(218) + if (lookahead == '\n') SKIP(235) END_STATE(); case 96: - if (lookahead == '\n') ADVANCE(681); + if (lookahead == '\n') ADVANCE(756); END_STATE(); case 97: - if (lookahead == '\n') ADVANCE(702); + if (lookahead == '\n') ADVANCE(780); END_STATE(); case 98: - if (lookahead == '\n') ADVANCE(703); + if (lookahead == '\n') ADVANCE(781); END_STATE(); case 99: - if (lookahead == '\n') ADVANCE(704); + if (lookahead == '\n') SKIP(74) END_STATE(); case 100: - if (lookahead == '\n') ADVANCE(705); + if (lookahead == '\n') ADVANCE(782); END_STATE(); case 101: - if (lookahead == '\n') SKIP(240) + if (lookahead == '\n') ADVANCE(783); END_STATE(); case 102: - if (lookahead == '\n') SKIP(78) + if (lookahead == '\n') SKIP(76) END_STATE(); case 103: - if (lookahead == '\n') SKIP(77) + if (lookahead == '\n') SKIP(259) END_STATE(); case 104: - if (lookahead == '\n') SKIP(242) + if (lookahead == '\n') SKIP(262) END_STATE(); case 105: - if (lookahead == '\n') SKIP(133) + if (lookahead == '\n') SKIP(261) END_STATE(); case 106: - if (lookahead == '\n') SKIP(177) + if (lookahead == '\n') SKIP(143) END_STATE(); case 107: - if (lookahead == '\n') SKIP(175) + if (lookahead == '\n') SKIP(190) END_STATE(); case 108: - if (lookahead == '\n') ADVANCE(413); - if (lookahead == '!') ADVANCE(717); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(579); - if (lookahead == '\'') ADVANCE(246); + if (lookahead == '\n') SKIP(188) + END_STATE(); + case 109: + if (lookahead == '\n') ADVANCE(581); + if (lookahead == '!') ADVANCE(793); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(517); + if (lookahead == '&') ADVANCE(630); + if (lookahead == '\'') ADVANCE(266); if (lookahead == '(') ADVANCE(539); if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(512); - if (lookahead == '+') ADVANCE(503); - if (lookahead == '-') ADVANCE(506); - if (lookahead == '/') ADVANCE(516); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(464); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(584); + if (lookahead == '*') ADVANCE(504); + if (lookahead == '+') ADVANCE(494); + if (lookahead == '-') ADVANCE(498); + if (lookahead == '/') ADVANCE(512); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(526); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '>') ADVANCE(532); + if (lookahead == '?') ADVANCE(636); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(317); - if (lookahead == '^') ADVANCE(581); - if (lookahead == '`') ADVANCE(645); - if (lookahead == '|') ADVANCE(549); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(346); + if (lookahead == '^') ADVANCE(632); + if (lookahead == '`') ADVANCE(718); + if (lookahead == '|') ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(108) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0) ADVANCE(724); - END_STATE(); - case 109: - if (lookahead == '\n') ADVANCE(672); + lookahead == ' ') SKIP(109) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 110: - if (lookahead == '\n') SKIP(136) + if (lookahead == '\n') ADVANCE(745); END_STATE(); case 111: - if (lookahead == '\n') SKIP(144) + if (lookahead == '\n') SKIP(146) END_STATE(); case 112: - if (lookahead == '\n') SKIP(161) + if (lookahead == '\n') SKIP(208) END_STATE(); case 113: - if (lookahead == '\n') SKIP(164) + if (lookahead == '\n') SKIP(176) END_STATE(); case 114: - if (lookahead == '\n') SKIP(166) + if (lookahead == '\n') SKIP(177) END_STATE(); case 115: - if (lookahead == '\n') SKIP(163) + if (lookahead == '\n') SKIP(170) END_STATE(); case 116: - if (lookahead == '\n') ADVANCE(678); + if (lookahead == '\n') SKIP(172) END_STATE(); case 117: - if (lookahead == '\n') SKIP(165) + if (lookahead == '\n') SKIP(179) END_STATE(); case 118: - if (lookahead == '\n') ADVANCE(683); + if (lookahead == '\n') ADVANCE(749); END_STATE(); case 119: - if (lookahead == '\n') SKIP(167) + if (lookahead == '\n') SKIP(174) END_STATE(); case 120: - if (lookahead == '\n') SKIP(233) + if (lookahead == '\n') SKIP(178) END_STATE(); case 121: - if (lookahead == '\n') ADVANCE(698); + if (lookahead == '\n') SKIP(180) END_STATE(); case 122: - if (lookahead == '\n') ADVANCE(695); + if (lookahead == '\n') ADVANCE(757); END_STATE(); case 123: - if (lookahead == '\n') SKIP(231) + if (lookahead == '\n') SKIP(181) END_STATE(); case 124: - if (lookahead == '\n') SKIP(222) + if (lookahead == '\n') SKIP(247) END_STATE(); case 125: - if (lookahead == '\n') SKIP(228) + if (lookahead == '\n') SKIP(241) END_STATE(); case 126: - if (lookahead == '\n') ADVANCE(675); + if (lookahead == '\n') SKIP(245) END_STATE(); case 127: - if (lookahead == '\n') SKIP(170) + if (lookahead == '\n') SKIP(238) END_STATE(); case 128: - if (lookahead == '\n') SKIP(178) + if (lookahead == '\n') ADVANCE(776); END_STATE(); case 129: - if (lookahead == '\n') ADVANCE(414); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(619); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(322); - if (lookahead == '`') ADVANCE(644); - if (lookahead == 'e') ADVANCE(655); - if (lookahead == '|') ADVANCE(550); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(129) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(621); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(657); - if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(724); + if (lookahead == '\n') ADVANCE(772); END_STATE(); case 130: - if (lookahead == '\n') ADVANCE(694); + if (lookahead == '\n') SKIP(254) END_STATE(); case 131: - if (lookahead == '\n') SKIP(225) + if (lookahead == '\n') ADVANCE(750); END_STATE(); case 132: - if (lookahead == '\n') ADVANCE(415); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(718); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(270); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == 'e') ADVANCE(660); - if (lookahead == '|') ADVANCE(550); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(132) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); - if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(724); + if (lookahead == '\n') SKIP(184) END_STATE(); case 133: - if (lookahead == '\n') ADVANCE(416); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(579); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(512); - if (lookahead == '+') ADVANCE(589); - if (lookahead == '-') ADVANCE(590); - if (lookahead == '/') ADVANCE(516); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(464); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(370); - if (lookahead == '^') ADVANCE(581); - if (lookahead == '`') ADVANCE(645); - if (lookahead == '|') ADVANCE(549); - if (lookahead == '~') ADVANCE(588); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(133) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0) ADVANCE(724); + if (lookahead == '\n') SKIP(249) END_STATE(); case 134: - if (lookahead == '\n') ADVANCE(417); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(579); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(512); - if (lookahead == '+') ADVANCE(503); - if (lookahead == '-') ADVANCE(506); - if (lookahead == '/') ADVANCE(516); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ';') ADVANCE(461); + if (lookahead == '\n') SKIP(191) + END_STATE(); + case 135: + if (lookahead == '\n') ADVANCE(582); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(674); + if (lookahead == ';') ADVANCE(449); if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(464); if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(300); - if (lookahead == '^') ADVANCE(581); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(549); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(134) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(662); - if (lookahead != 0 && - lookahead != '(') ADVANCE(724); - END_STATE(); - case 135: - if (lookahead == '\n') ADVANCE(418); - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(286); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(350); + if (lookahead == '`') ADVANCE(717); + if (lookahead == 'e') ADVANCE(728); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(135) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); + if (lookahead != 0 && + lookahead != ')') ADVANCE(800); END_STATE(); case 136: - if (lookahead == '\n') ADVANCE(419); - if (lookahead == '!') ADVANCE(717); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(579); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(512); - if (lookahead == '+') ADVANCE(503); - if (lookahead == '-') ADVANCE(506); - if (lookahead == '/') ADVANCE(516); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(464); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(373); - if (lookahead == '^') ADVANCE(581); - if (lookahead == '`') ADVANCE(645); - if (lookahead == '|') ADVANCE(549); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(136) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0) ADVANCE(724); + if (lookahead == '\n') SKIP(150) END_STATE(); case 137: - if (lookahead == '\n') ADVANCE(420); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(718); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(323); - if (lookahead == '`') ADVANCE(644); - if (lookahead == 'e') ADVANCE(722); - if (lookahead == '|') ADVANCE(550); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(137) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(724); + if (lookahead == '\n') SKIP(242) END_STATE(); case 138: - if (lookahead == '\n') ADVANCE(421); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(718); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(271); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(138) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); - if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(724); + if (lookahead == '\n') ADVANCE(773); END_STATE(); case 139: - if (lookahead == '\n') ADVANCE(422); - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(305); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '|') ADVANCE(550); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(139) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); - END_STATE(); - case 140: - if (lookahead == '\n') ADVANCE(423); - if (lookahead == '!') ADVANCE(717); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(579); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(512); - if (lookahead == '+') ADVANCE(503); - if (lookahead == '-') ADVANCE(506); - if (lookahead == '/') ADVANCE(516); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(461); + if (lookahead == '\n') ADVANCE(583); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ';') ADVANCE(449); if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(464); + if (lookahead == '=') ADVANCE(794); if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(584); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(318); - if (lookahead == '^') ADVANCE(581); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(549); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(294); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == 'e') ADVANCE(733); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(140) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + lookahead == ' ') SKIP(139) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - lookahead != '(') ADVANCE(724); + lookahead != ')') ADVANCE(800); + END_STATE(); + case 140: + if (lookahead == '\n') SKIP(154) END_STATE(); case 141: - if (lookahead == '\n') ADVANCE(424); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(619); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(324); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(141) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(621); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(657); - if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(724); + if (lookahead == '\n') SKIP(239) END_STATE(); case 142: - if (lookahead == '\n') ADVANCE(425); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); + if (lookahead == '\n') ADVANCE(584); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(519); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(539); + if (lookahead == ')') ADVANCE(540); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(674); + if (lookahead == ':') ADVANCE(640); + if (lookahead == ';') ADVANCE(448); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '=') ADVANCE(457); + if (lookahead == '>') ADVANCE(535); if (lookahead == '[' || lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(272); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == 'e') ADVANCE(660); - if (lookahead == '|') ADVANCE(550); + lookahead == '{') ADVANCE(657); + if (lookahead == '\\') ADVANCE(374); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(548); + if (lookahead == '}') ADVANCE(689); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(142) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(724); + lookahead != '&') ADVANCE(800); END_STATE(); case 143: - if (lookahead == '\n') ADVANCE(426); - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '&') ADVANCE(580); + if (lookahead == '\n') ADVANCE(585); + if (lookahead == '!') ADVANCE(561); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(517); + if (lookahead == '&') ADVANCE(630); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(539); if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(287); - if (lookahead == '_') ADVANCE(714); + if (lookahead == '*') ADVANCE(504); + if (lookahead == '+') ADVANCE(643); + if (lookahead == '-') ADVANCE(644); + if (lookahead == '/') ADVANCE(512); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(526); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '>') ADVANCE(532); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(396); + if (lookahead == '^') ADVANCE(632); + if (lookahead == '`') ADVANCE(718); if (lookahead == '|') ADVANCE(550); + if (lookahead == '~') ADVANCE(642); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(143) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 144: - if (lookahead == '\n') ADVANCE(427); - if (lookahead == '!') ADVANCE(717); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(579); - if (lookahead == '\'') ADVANCE(246); + if (lookahead == '\n') ADVANCE(586); + if (lookahead == '!') ADVANCE(561); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(517); + if (lookahead == '&') ADVANCE(630); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(512); - if (lookahead == '+') ADVANCE(503); - if (lookahead == '-') ADVANCE(506); - if (lookahead == '/') ADVANCE(516); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(464); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(584); + if (lookahead == '*') ADVANCE(504); + if (lookahead == '+') ADVANCE(494); + if (lookahead == '-') ADVANCE(498); + if (lookahead == '/') ADVANCE(512); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(526); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '>') ADVANCE(532); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(374); - if (lookahead == '^') ADVANCE(581); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(549); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(329); + if (lookahead == '^') ADVANCE(632); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(144) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0 && - lookahead != '(') ADVANCE(724); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 145: - if (lookahead == '\n') ADVANCE(428); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(619); - if (lookahead == ';') ADVANCE(461); + if (lookahead == '\n') ADVANCE(587); + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == ';') ADVANCE(449); if (lookahead == '<') ADVANCE(528); if (lookahead == '>') ADVANCE(534); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(325); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(312); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(145) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(621); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(657); - if (lookahead != 0 && - lookahead != '(') ADVANCE(724); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); case 146: - if (lookahead == '\n') ADVANCE(429); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(718); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); + if (lookahead == '\n') ADVANCE(588); + if (lookahead == '!') ADVANCE(793); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(517); + if (lookahead == '&') ADVANCE(630); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(539); + if (lookahead == ')') ADVANCE(540); + if (lookahead == '*') ADVANCE(504); + if (lookahead == '+') ADVANCE(494); + if (lookahead == '-') ADVANCE(498); + if (lookahead == '/') ADVANCE(512); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(526); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '>') ADVANCE(532); + if (lookahead == '?') ADVANCE(636); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(301); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(399); + if (lookahead == '^') ADVANCE(632); + if (lookahead == '`') ADVANCE(718); if (lookahead == '|') ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(146) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); - if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(724); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 147: - if (lookahead == '\n') ADVANCE(430); - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(288); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '\n') ADVANCE(589); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(674); + if (lookahead == ';') ADVANCE(449); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(147) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); + if (lookahead != 0 && + lookahead != ')') ADVANCE(800); END_STATE(); case 148: - if (lookahead == '\n') ADVANCE(431); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(718); - if (lookahead == '>') ADVANCE(534); + if (lookahead == '\n') ADVANCE(590); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ';') ADVANCE(449); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(794); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(326); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(295); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(148) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(724); + lookahead != ')') ADVANCE(800); END_STATE(); case 149: - if (lookahead == '\n') ADVANCE(432); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ';') ADVANCE(461); + if (lookahead == '\n') ADVANCE(591); + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == ';') ADVANCE(450); if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(718); if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(313); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(149) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); - if (lookahead != 0 && - lookahead != '(') ADVANCE(724); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); case 150: - if (lookahead == '\n') ADVANCE(433); - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '&') ADVANCE(577); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(293); - if (lookahead == '_') ADVANCE(714); - if (lookahead == 'i') ADVANCE(665); + if (lookahead == '\n') ADVANCE(592); + if (lookahead == '!') ADVANCE(793); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(517); + if (lookahead == '&') ADVANCE(630); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == ')') ADVANCE(541); + if (lookahead == '*') ADVANCE(504); + if (lookahead == '+') ADVANCE(494); + if (lookahead == '-') ADVANCE(498); + if (lookahead == '/') ADVANCE(512); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(526); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '>') ADVANCE(532); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(418); + if (lookahead == '^') ADVANCE(632); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(150) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 151: - if (lookahead == '\n') ADVANCE(434); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(718); - if (lookahead == '>') ADVANCE(534); + if (lookahead == '\n') ADVANCE(593); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(449); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(794); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(327); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(352); + if (lookahead == '`') ADVANCE(717); + if (lookahead == 'e') ADVANCE(798); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(151) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - lookahead != '(') ADVANCE(724); + lookahead != ')') ADVANCE(800); END_STATE(); case 152: - if (lookahead == '\n') ADVANCE(435); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); + if (lookahead == '\n') ADVANCE(594); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(794); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(274); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(152) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(724); + lookahead != ')') ADVANCE(800); END_STATE(); case 153: - if (lookahead == '\n') ADVANCE(436); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(460); + if (lookahead == '\n') ADVANCE(595); + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == ';') ADVANCE(450); if (lookahead == '<') ADVANCE(528); if (lookahead == '>') ADVANCE(534); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(328); - if (lookahead == '`') ADVANCE(644); - if (lookahead == 'e') ADVANCE(722); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(334); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(153) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(724); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); case 154: - if (lookahead == '\n') ADVANCE(437); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); + if (lookahead == '\n') ADVANCE(596); + if (lookahead == '!') ADVANCE(793); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(517); + if (lookahead == '&') ADVANCE(630); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == ')') ADVANCE(540); + if (lookahead == '*') ADVANCE(504); + if (lookahead == '+') ADVANCE(494); + if (lookahead == '-') ADVANCE(498); + if (lookahead == '/') ADVANCE(512); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(526); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '>') ADVANCE(532); + if (lookahead == '?') ADVANCE(636); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(302); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(420); + if (lookahead == '^') ADVANCE(632); + if (lookahead == '`') ADVANCE(717); if (lookahead == '|') ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(154) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); - if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(724); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 155: - if (lookahead == '\n') ADVANCE(438); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); + if (lookahead == '\n') ADVANCE(597); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(449); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(794); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(329); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(353); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(155) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(724); + lookahead != ')') ADVANCE(800); END_STATE(); case 156: - if (lookahead == '\n') ADVANCE(439); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); + if (lookahead == '\n') ADVANCE(598); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(794); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(275); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(296); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(156) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); - if (lookahead != 0 && - lookahead != '(') ADVANCE(724); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 157: - if (lookahead == '\n') ADVANCE(440); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); + if (lookahead == '\n') ADVANCE(599); + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '&') ADVANCE(631); if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(461); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == ';') ADVANCE(450); if (lookahead == '<') ADVANCE(528); if (lookahead == '>') ADVANCE(534); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(314); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(157) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0 && - lookahead != '(') ADVANCE(724); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); case 158: - if (lookahead == '\n') ADVANCE(441); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(577); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(249); - if (lookahead == '>') ADVANCE(250); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); + if (lookahead == '\n') ADVANCE(600); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == ')') ADVANCE(540); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(674); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(289); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(354); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(158) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); - if (lookahead != 0 && - lookahead != '(' && - lookahead != ')' && - lookahead != '|') ADVANCE(724); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 159: - if (lookahead == '\n') ADVANCE(442); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(718); - if (lookahead == '>') ADVANCE(534); + if (lookahead == '\n') ADVANCE(601); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ';') ADVANCE(449); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(336); - if (lookahead == '`') ADVANCE(645); - if (lookahead == 'e') ADVANCE(722); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(297); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == 'e') ADVANCE(733); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(159) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - lookahead != ')') ADVANCE(724); + lookahead != ')') ADVANCE(800); END_STATE(); case 160: - if (lookahead == '\n') ADVANCE(443); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(460); + if (lookahead == '\n') ADVANCE(602); + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(718); if (lookahead == '>') ADVANCE(534); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(337); - if (lookahead == '`') ADVANCE(645); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(317); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(160) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0 && - lookahead != ')') ADVANCE(724); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); case 161: - if (lookahead == '\n') ADVANCE(444); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(619); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); + if (lookahead == '\n') ADVANCE(603); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == ')') ADVANCE(540); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(794); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(375); - if (lookahead == '`') ADVANCE(645); - if (lookahead == 'e') ADVANCE(655); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(355); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(161) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(621); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(657); - if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(724); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 162: - if (lookahead == '\n') ADVANCE(445); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(718); - if (lookahead == '>') ADVANCE(534); + if (lookahead == '\n') ADVANCE(604); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ';') ADVANCE(449); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(339); - if (lookahead == '`') ADVANCE(645); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(298); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(162) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0) ADVANCE(724); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (lookahead != 0 && + lookahead != ')') ADVANCE(800); END_STATE(); case 163: - if (lookahead == '\n') ADVANCE(446); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(378); - if (lookahead == '`') ADVANCE(645); - if (lookahead == 'e') ADVANCE(722); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '\n') ADVANCE(605); + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '&') ADVANCE(628); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(322); + if (lookahead == '_') ADVANCE(790); + if (lookahead == 'i') ADVANCE(738); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(163) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(724); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); case 164: - if (lookahead == '\n') ADVANCE(447); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(619); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); + if (lookahead == '\n') ADVANCE(606); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(449); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(376); - if (lookahead == '`') ADVANCE(645); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(356); + if (lookahead == '`') ADVANCE(717); + if (lookahead == 'e') ADVANCE(798); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(164) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(621); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(657); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(724); + lookahead != ')') ADVANCE(800); END_STATE(); case 165: - if (lookahead == '\n') ADVANCE(448); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); + if (lookahead == '\n') ADVANCE(607); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(379); - if (lookahead == '`') ADVANCE(645); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(331); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(165) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(724); + lookahead != ')') ADVANCE(800); END_STATE(); case 166: - if (lookahead == '\n') ADVANCE(449); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(619); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); + if (lookahead == '\n') ADVANCE(608); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(449); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(377); - if (lookahead == '`') ADVANCE(645); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(357); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(166) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(621); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(657); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - lookahead != '(') ADVANCE(724); + lookahead != ')') ADVANCE(800); END_STATE(); case 167: - if (lookahead == '\n') ADVANCE(450); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); + if (lookahead == '\n') ADVANCE(609); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(380); - if (lookahead == '`') ADVANCE(645); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(299); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(167) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0 && - lookahead != '(') ADVANCE(724); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 168: - if (lookahead == '\n') ADVANCE(451); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(577); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(249); - if (lookahead == '>') ADVANCE(250); + if (lookahead == '\n') ADVANCE(610); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == ')') ADVANCE(540); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(348); - if (lookahead == '`') ADVANCE(644); - if (lookahead == 'e') ADVANCE(722); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(358); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(168) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0 && - lookahead != ')' && - lookahead != '|') ADVANCE(724); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 169: - if (lookahead == '\n') ADVANCE(452); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(577); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(249); - if (lookahead == '>') ADVANCE(250); + if (lookahead == '\n') ADVANCE(611); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(794); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '`') ADVANCE(644); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(300); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(169) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - lookahead != '(' && lookahead != ')' && - lookahead != '|') ADVANCE(724); + lookahead != ';') ADVANCE(800); END_STATE(); case 170: - if (lookahead == '\n') ADVANCE(453); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(577); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(249); - if (lookahead == '>') ADVANCE(250); + if (lookahead == '\n') ADVANCE(612); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(539); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(449); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(794); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(385); - if (lookahead == '`') ADVANCE(645); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(403); + if (lookahead == '`') ADVANCE(718); + if (lookahead == 'e') ADVANCE(798); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(170) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - lookahead != '(' && - lookahead != ')' && - lookahead != '|') ADVANCE(724); + lookahead != ')') ADVANCE(800); END_STATE(); case 171: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(579); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(511); - if (lookahead == '+') ADVANCE(589); - if (lookahead == ',') ADVANCE(635); - if (lookahead == '-') ADVANCE(590); - if (lookahead == '/') ADVANCE(634); - if (lookahead == '0') ADVANCE(709); - if (lookahead == ':') ADVANCE(586); - if (lookahead == ';') ADVANCE(460); + if (lookahead == '\n') ADVANCE(613); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(464); if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); - if (lookahead == '[') ADVANCE(564); - if (lookahead == '\\') ADVANCE(307); - if (lookahead == ']') ADVANCE(565); - if (lookahead == '^') ADVANCE(637); - if (lookahead == '_') ADVANCE(712); - if (lookahead == '`') ADVANCE(645); - if (lookahead == 'e') ADVANCE(722); - if (lookahead == 'i') ADVANCE(721); - if (lookahead == '{') ADVANCE(556); - if (lookahead == '|') ADVANCE(549); - if (lookahead == '}') ADVANCE(633); - if (lookahead == '~') ADVANCE(588); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(302); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(171) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0) ADVANCE(724); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(800); END_STATE(); case 172: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(579); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(512); - if (lookahead == '+') ADVANCE(503); - if (lookahead == '-') ADVANCE(506); - if (lookahead == '/') ADVANCE(516); - if (lookahead == '0') ADVANCE(710); + if (lookahead == '\n') ADVANCE(614); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(539); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(449); if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(464); + if (lookahead == '=') ADVANCE(794); if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(269); - if (lookahead == ']') ADVANCE(565); - if (lookahead == '^') ADVANCE(581); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(549); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(404); + if (lookahead == '`') ADVANCE(718); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(172) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(662); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - lookahead != '(' && - lookahead != ')' && - lookahead != ';') ADVANCE(724); + lookahead != ')') ADVANCE(800); END_STATE(); case 173: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(579); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '*') ADVANCE(512); - if (lookahead == '+') ADVANCE(589); - if (lookahead == '-') ADVANCE(590); - if (lookahead == '/') ADVANCE(516); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(464); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(584); + if (lookahead == '\n') ADVANCE(615); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(628); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '>') ADVANCE(271); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == ']') ADVANCE(565); - if (lookahead == '^') ADVANCE(581); - if (lookahead == '`') ADVANCE(645); - if (lookahead == '|') ADVANCE(549); - if (lookahead == '~') ADVANCE(588); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(315); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(173) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(724); + lookahead != '|') ADVANCE(800); END_STATE(); case 174: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(578); - if (lookahead == '\'') ADVANCE(246); + if (lookahead == '\n') ADVANCE(616); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(512); - if (lookahead == '+') ADVANCE(589); - if (lookahead == '-') ADVANCE(590); - if (lookahead == '/') ADVANCE(516); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(464); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(584); + if (lookahead == ')') ADVANCE(540); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(794); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(315); - if (lookahead == '^') ADVANCE(581); - if (lookahead == '`') ADVANCE(645); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(406); + if (lookahead == '`') ADVANCE(718); if (lookahead == '|') ADVANCE(551); - if (lookahead == '~') ADVANCE(588); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(174) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0 && - lookahead != ';') ADVANCE(724); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 175: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(578); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(512); - if (lookahead == '+') ADVANCE(589); - if (lookahead == '-') ADVANCE(590); - if (lookahead == '/') ADVANCE(516); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(464); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(584); + if (lookahead == '\n') ADVANCE(617); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '>') ADVANCE(271); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(372); - if (lookahead == '^') ADVANCE(581); - if (lookahead == '`') ADVANCE(645); - if (lookahead == '|') ADVANCE(551); - if (lookahead == '~') ADVANCE(588); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(319); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(175) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - lookahead != ';') ADVANCE(724); + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '|') ADVANCE(800); END_STATE(); case 176: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(578); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '*') ADVANCE(512); - if (lookahead == '+') ADVANCE(589); - if (lookahead == '-') ADVANCE(590); - if (lookahead == '/') ADVANCE(516); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ':') ADVANCE(587); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(464); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(584); + if (lookahead == '\n') ADVANCE(618); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(674); + if (lookahead == ';') ADVANCE(449); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(316); - if (lookahead == '^') ADVANCE(581); - if (lookahead == '`') ADVANCE(645); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(401); + if (lookahead == '`') ADVANCE(718); + if (lookahead == 'e') ADVANCE(728); if (lookahead == '|') ADVANCE(551); - if (lookahead == '~') ADVANCE(588); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(176) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(724); + lookahead != ')') ADVANCE(800); END_STATE(); case 177: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(578); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '*') ADVANCE(512); - if (lookahead == '+') ADVANCE(589); - if (lookahead == '-') ADVANCE(590); - if (lookahead == '/') ADVANCE(516); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(464); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(584); + if (lookahead == '\n') ADVANCE(619); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(674); + if (lookahead == ';') ADVANCE(449); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(371); - if (lookahead == ']') ADVANCE(565); - if (lookahead == '^') ADVANCE(581); - if (lookahead == '`') ADVANCE(645); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(402); + if (lookahead == '`') ADVANCE(718); if (lookahead == '|') ADVANCE(551); - if (lookahead == '~') ADVANCE(588); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(177) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(724); + lookahead != ')') ADVANCE(800); END_STATE(); case 178: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(578); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '*') ADVANCE(512); - if (lookahead == '+') ADVANCE(589); - if (lookahead == '-') ADVANCE(590); - if (lookahead == '/') ADVANCE(516); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(464); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(584); + if (lookahead == '\n') ADVANCE(620); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(449); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(386); - if (lookahead == ']') ADVANCE(604); - if (lookahead == '^') ADVANCE(581); - if (lookahead == '`') ADVANCE(645); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(407); + if (lookahead == '`') ADVANCE(718); + if (lookahead == 'e') ADVANCE(798); if (lookahead == '|') ADVANCE(551); - if (lookahead == '~') ADVANCE(588); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(178) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(724); + lookahead != ')') ADVANCE(800); END_STATE(); case 179: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(520); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '(') ADVANCE(539); + if (lookahead == '\n') ADVANCE(621); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ':') ADVANCE(586); - if (lookahead == ';') ADVANCE(459); - if (lookahead == '<') ADVANCE(530); - if (lookahead == '=') ADVANCE(467); - if (lookahead == '>') ADVANCE(536); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(674); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(603); - if (lookahead == '\\') ADVANCE(283); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(548); - if (lookahead == '}') ADVANCE(633); + lookahead == '{' || + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(405); + if (lookahead == '`') ADVANCE(718); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(179) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); - if (lookahead != 0 && - lookahead != '&') ADVANCE(724); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 180: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(261); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); + if (lookahead == '\n') ADVANCE(622); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(449); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(284); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == '`') ADVANCE(718); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(180) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(724); + lookahead != ')') ADVANCE(800); END_STATE(); case 181: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(244); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(718); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); + if (lookahead == '\n') ADVANCE(623); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == ')') ADVANCE(540); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(278); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == '`') ADVANCE(718); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(181) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); - if (lookahead != 0 && - lookahead != '(' && - lookahead != ')' && - lookahead != ';') ADVANCE(724); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 182: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(244); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); + if (lookahead == '\n') ADVANCE(624); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(628); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(539); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '>') ADVANCE(271); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(279); - if (lookahead == ']') ADVANCE(565); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(372); + if (lookahead == '`') ADVANCE(717); + if (lookahead == 'e') ADVANCE(798); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(182) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - lookahead != '(' && lookahead != ')' && - lookahead != ';') ADVANCE(724); + lookahead != '|') ADVANCE(800); END_STATE(); case 183: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(244); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); + if (lookahead == '\n') ADVANCE(625); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(628); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '>') ADVANCE(271); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(281); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(376); + if (lookahead == '`') ADVANCE(717); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(183) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - lookahead != '(' && lookahead != ')' && - lookahead != ';') ADVANCE(724); + lookahead != '|') ADVANCE(800); END_STATE(); case 184: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == '<') ADVANCE(249); - if (lookahead == '>') ADVANCE(250); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); + if (lookahead == '\n') ADVANCE(626); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(628); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '>') ADVANCE(271); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(292); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(415); + if (lookahead == '`') ADVANCE(718); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(184) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - (lookahead < '&' || '(' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(724); + lookahead != ')' && + lookahead != '|') ADVANCE(800); END_STATE(); case 185: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(261); - if (lookahead == '\'') ADVANCE(246); + if (lookahead == '!') ADVANCE(561); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(687); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(514); + if (lookahead == '&') ADVANCE(630); + if (lookahead == '\'') ADVANCE(266); if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(245); + if (lookahead == ')') ADVANCE(541); + if (lookahead == '*') ADVANCE(503); + if (lookahead == '+') ADVANCE(643); + if (lookahead == ',') ADVANCE(711); + if (lookahead == '-') ADVANCE(644); + if (lookahead == '/') ADVANCE(509); + if (lookahead == '0') ADVANCE(785); + if (lookahead == ':') ADVANCE(638); + if (lookahead == ';') ADVANCE(449); if (lookahead == '<') ADVANCE(526); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '[') ADVANCE(564); - if (lookahead == '\\') ADVANCE(308); - if (lookahead == ']' || - lookahead == '}') ADVANCE(603); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '{') ADVANCE(556); - if (lookahead == '|') ADVANCE(548); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '>') ADVANCE(532); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '[') ADVANCE(565); + if (lookahead == '\\') ADVANCE(336); + if (lookahead == ']') ADVANCE(566); + if (lookahead == '^') ADVANCE(713); + if (lookahead == '_') ADVANCE(788); + if (lookahead == '`') ADVANCE(718); + if (lookahead == 'e') ADVANCE(798); + if (lookahead == 'i') ADVANCE(797); + if (lookahead == '{') ADVANCE(557); + if (lookahead == '|') ADVANCE(550); + if (lookahead == '}') ADVANCE(689); + if (lookahead == '~') ADVANCE(642); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(185) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0) ADVANCE(724); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 186: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(261); - if (lookahead == '\'') ADVANCE(246); + if (lookahead == '!') ADVANCE(561); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(517); + if (lookahead == '&') ADVANCE(630); + if (lookahead == '\'') ADVANCE(266); if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(252); - if (lookahead == '+') ADVANCE(589); - if (lookahead == '-') ADVANCE(590); - if (lookahead == '0') ADVANCE(618); + if (lookahead == '*') ADVANCE(504); + if (lookahead == '+') ADVANCE(643); + if (lookahead == '-') ADVANCE(644); + if (lookahead == '/') ADVANCE(512); + if (lookahead == '0') ADVANCE(673); if (lookahead == '<') ADVANCE(526); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '[') ADVANCE(564); - if (lookahead == '\\') ADVANCE(309); - if (lookahead == ']' || - lookahead == '}') ADVANCE(603); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '{') ADVANCE(556); - if (lookahead == '~') ADVANCE(588); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '>') ADVANCE(532); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(342); + if (lookahead == ']') ADVANCE(566); + if (lookahead == '^') ADVANCE(632); + if (lookahead == '`') ADVANCE(718); + if (lookahead == '|') ADVANCE(550); + if (lookahead == '~') ADVANCE(642); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(186) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - lookahead != ';' && - lookahead != '|') ADVANCE(724); + lookahead != ')' && + lookahead != ';') ADVANCE(800); END_STATE(); case 187: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(261); - if (lookahead == '\'') ADVANCE(246); + if (lookahead == '!') ADVANCE(561); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(517); + if (lookahead == '&') ADVANCE(629); + if (lookahead == '\'') ADVANCE(266); if (lookahead == '(') ADVANCE(539); - if (lookahead == '+') ADVANCE(589); - if (lookahead == '-') ADVANCE(590); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '[') ADVANCE(564); - if (lookahead == '\\') ADVANCE(311); - if (lookahead == ']') ADVANCE(565); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '{') ADVANCE(556); - if (lookahead == '}') ADVANCE(603); - if (lookahead == '~') ADVANCE(588); + if (lookahead == ')') ADVANCE(541); + if (lookahead == '*') ADVANCE(504); + if (lookahead == '+') ADVANCE(643); + if (lookahead == '-') ADVANCE(644); + if (lookahead == '/') ADVANCE(512); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(530); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '>') ADVANCE(536); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(344); + if (lookahead == '^') ADVANCE(632); + if (lookahead == '`') ADVANCE(718); + if (lookahead == '|') ADVANCE(552); + if (lookahead == '~') ADVANCE(642); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(187) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(724); + lookahead != ';') ADVANCE(800); END_STATE(); case 188: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(261); - if (lookahead == '\'') ADVANCE(246); + if (lookahead == '!') ADVANCE(561); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(517); + if (lookahead == '&') ADVANCE(629); + if (lookahead == '\'') ADVANCE(266); if (lookahead == '(') ADVANCE(539); - if (lookahead == '+') ADVANCE(589); - if (lookahead == '-') ADVANCE(590); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '[') ADVANCE(564); - if (lookahead == '\\') ADVANCE(321); - if (lookahead == ']' || + if (lookahead == ')') ADVANCE(540); + if (lookahead == '*') ADVANCE(504); + if (lookahead == '+') ADVANCE(643); + if (lookahead == '-') ADVANCE(644); + if (lookahead == '/') ADVANCE(512); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(530); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '>') ADVANCE(536); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '~') ADVANCE(588); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(398); + if (lookahead == '^') ADVANCE(632); + if (lookahead == '`') ADVANCE(718); + if (lookahead == '|') ADVANCE(552); + if (lookahead == '~') ADVANCE(642); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(188) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(724); + lookahead != ';') ADVANCE(800); END_STATE(); case 189: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(261); - if (lookahead == '\'') ADVANCE(246); + if (lookahead == '!') ADVANCE(561); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(517); + if (lookahead == '&') ADVANCE(629); + if (lookahead == '\'') ADVANCE(266); if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '[') ADVANCE(564); - if (lookahead == '\\') ADVANCE(312); - if (lookahead == ']' || - lookahead == '}') ADVANCE(603); - if (lookahead == '`') ADVANCE(644); - if (lookahead == 'e') ADVANCE(722); - if (lookahead == '{') ADVANCE(556); + if (lookahead == '*') ADVANCE(504); + if (lookahead == '+') ADVANCE(643); + if (lookahead == '-') ADVANCE(644); + if (lookahead == '/') ADVANCE(512); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ':') ADVANCE(641); + if (lookahead == '<') ADVANCE(530); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '>') ADVANCE(536); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == '^') ADVANCE(632); + if (lookahead == '`') ADVANCE(718); + if (lookahead == '|') ADVANCE(552); + if (lookahead == '~') ADVANCE(642); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(189) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && lookahead != ')' && - lookahead != '|') ADVANCE(724); + lookahead != ';') ADVANCE(800); END_STATE(); case 190: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(261); - if (lookahead == '\'') ADVANCE(246); + if (lookahead == '!') ADVANCE(561); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(517); + if (lookahead == '&') ADVANCE(629); + if (lookahead == '\'') ADVANCE(266); if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '[') ADVANCE(564); - if (lookahead == '\\') ADVANCE(314); - if (lookahead == ']') ADVANCE(603); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '{') ADVANCE(556); - if (lookahead == '}') ADVANCE(557); + if (lookahead == '*') ADVANCE(504); + if (lookahead == '+') ADVANCE(643); + if (lookahead == '-') ADVANCE(644); + if (lookahead == '/') ADVANCE(512); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(530); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '>') ADVANCE(536); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(397); + if (lookahead == ']') ADVANCE(566); + if (lookahead == '^') ADVANCE(632); + if (lookahead == '`') ADVANCE(718); + if (lookahead == '|') ADVANCE(552); + if (lookahead == '~') ADVANCE(642); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(190) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(724); + lookahead != ';') ADVANCE(800); END_STATE(); case 191: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '\'') ADVANCE(246); + if (lookahead == '!') ADVANCE(561); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(517); + if (lookahead == '&') ADVANCE(629); + if (lookahead == '\'') ADVANCE(266); if (lookahead == '(') ADVANCE(539); - if (lookahead == '+') ADVANCE(589); - if (lookahead == '-') ADVANCE(590); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '<') ADVANCE(249); - if (lookahead == '>') ADVANCE(250); + if (lookahead == '*') ADVANCE(504); + if (lookahead == '+') ADVANCE(643); + if (lookahead == '-') ADVANCE(644); + if (lookahead == '/') ADVANCE(512); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(530); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '>') ADVANCE(536); + if (lookahead == '?') ADVANCE(636); if (lookahead == '[' || - lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(349); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '~') ADVANCE(588); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(417); + if (lookahead == ']') ADVANCE(658); + if (lookahead == '^') ADVANCE(632); + if (lookahead == '`') ADVANCE(718); + if (lookahead == '|') ADVANCE(552); + if (lookahead == '~') ADVANCE(642); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(191) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(724); + lookahead != ')' && + lookahead != ';') ADVANCE(800); END_STATE(); case 192: - if (lookahead == '!') ADVANCE(717); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(579); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '*') ADVANCE(512); - if (lookahead == '+') ADVANCE(503); - if (lookahead == '-') ADVANCE(506); - if (lookahead == '/') ADVANCE(516); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(464); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(584); + if (lookahead == '!') ADVANCE(561); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(517); + if (lookahead == '&') ADVANCE(630); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(504); + if (lookahead == '+') ADVANCE(494); + if (lookahead == '-') ADVANCE(498); + if (lookahead == '/') ADVANCE(512); + if (lookahead == '0') ADVANCE(786); + if (lookahead == '<') ADVANCE(526); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '>') ADVANCE(532); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(319); - if (lookahead == ']') ADVANCE(565); - if (lookahead == '^') ADVANCE(581); - if (lookahead == '`') ADVANCE(645); - if (lookahead == '|') ADVANCE(549); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(293); + if (lookahead == ']') ADVANCE(566); + if (lookahead == '^') ADVANCE(632); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(192) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(724); + lookahead != ';') ADVANCE(800); END_STATE(); case 193: - if (lookahead == '!') ADVANCE(717); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(579); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(512); - if (lookahead == '+') ADVANCE(503); - if (lookahead == '-') ADVANCE(506); - if (lookahead == '/') ADVANCE(516); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(464); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(285); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(539); + if (lookahead == ')') ADVANCE(540); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(265); + if (lookahead == '<') ADVANCE(525); if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(320); - if (lookahead == ']') ADVANCE(565); - if (lookahead == '^') ADVANCE(581); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(549); + if (lookahead == '[') ADVANCE(565); + if (lookahead == '\\') ADVANCE(337); + if (lookahead == ']' || + lookahead == '}') ADVANCE(657); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '{') ADVANCE(557); + if (lookahead == '|') ADVANCE(548); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(193) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0 && - lookahead != '(' && - lookahead != ')' && - lookahead != ';') ADVANCE(724); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 194: - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '&') ADVANCE(578); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(513); - if (lookahead == '+') ADVANCE(504); - if (lookahead == '-') ADVANCE(508); - if (lookahead == '/') ADVANCE(517); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '<') ADVANCE(532); - if (lookahead == '=') ADVANCE(466); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(277); - if (lookahead == '^') ADVANCE(582); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(285); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(539); + if (lookahead == ')') ADVANCE(275); + if (lookahead == '+') ADVANCE(643); + if (lookahead == '-') ADVANCE(644); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(525); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '[') ADVANCE(565); + if (lookahead == '\\') ADVANCE(338); + if (lookahead == ']' || + lookahead == '}') ADVANCE(657); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '{') ADVANCE(557); + if (lookahead == '~') ADVANCE(642); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(194) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0 && + lookahead != ';' && + lookahead != '|') ADVANCE(800); END_STATE(); case 195: - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '&') ADVANCE(578); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(513); - if (lookahead == '+') ADVANCE(504); - if (lookahead == '-') ADVANCE(508); - if (lookahead == '/') ADVANCE(517); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '<') ADVANCE(532); - if (lookahead == '=') ADVANCE(466); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(306); - if (lookahead == '^') ADVANCE(582); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(285); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(539); + if (lookahead == '+') ADVANCE(643); + if (lookahead == '-') ADVANCE(644); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(525); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '[') ADVANCE(565); + if (lookahead == '\\') ADVANCE(340); + if (lookahead == ']') ADVANCE(566); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '{') ADVANCE(557); + if (lookahead == '}') ADVANCE(657); + if (lookahead == '~') ADVANCE(642); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(195) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '|') ADVANCE(800); END_STATE(); case 196: - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '&') ADVANCE(578); - if (lookahead == ')') ADVANCE(252); - if (lookahead == '*') ADVANCE(513); - if (lookahead == '+') ADVANCE(504); - if (lookahead == '-') ADVANCE(508); - if (lookahead == '/') ADVANCE(517); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '<') ADVANCE(532); - if (lookahead == '=') ADVANCE(466); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(304); - if (lookahead == '^') ADVANCE(582); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(285); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(539); + if (lookahead == '+') ADVANCE(643); + if (lookahead == '-') ADVANCE(644); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(525); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '[') ADVANCE(565); + if (lookahead == '\\') ADVANCE(349); + if (lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(657); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '~') ADVANCE(642); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(196) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '|') ADVANCE(800); END_STATE(); case 197: - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '&') ADVANCE(578); - if (lookahead == '*') ADVANCE(513); - if (lookahead == '+') ADVANCE(504); - if (lookahead == '-') ADVANCE(508); - if (lookahead == '/') ADVANCE(517); - if (lookahead == '0') ADVANCE(711); - if (lookahead == ':') ADVANCE(585); - if (lookahead == '<') ADVANCE(532); - if (lookahead == '=') ADVANCE(466); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(280); - if (lookahead == '^') ADVANCE(582); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(285); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(539); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(265); + if (lookahead == '<') ADVANCE(525); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '[') ADVANCE(565); + if (lookahead == '\\') ADVANCE(341); + if (lookahead == ']' || + lookahead == '}') ADVANCE(657); + if (lookahead == '`') ADVANCE(717); + if (lookahead == 'e') ADVANCE(798); + if (lookahead == '{') ADVANCE(557); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(197) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0 && + lookahead != ')' && + lookahead != '|') ADVANCE(800); END_STATE(); case 198: - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '&') ADVANCE(578); - if (lookahead == '*') ADVANCE(513); - if (lookahead == '+') ADVANCE(504); - if (lookahead == '-') ADVANCE(508); - if (lookahead == '/') ADVANCE(517); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '<') ADVANCE(532); - if (lookahead == '=') ADVANCE(466); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(276); - if (lookahead == ']') ADVANCE(565); - if (lookahead == '^') ADVANCE(582); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(285); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(539); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(525); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '[') ADVANCE(565); + if (lookahead == '\\') ADVANCE(343); + if (lookahead == ']') ADVANCE(657); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '{') ADVANCE(557); + if (lookahead == '}') ADVANCE(558); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(198) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '|') ADVANCE(800); END_STATE(); case 199: - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '&') ADVANCE(578); - if (lookahead == '*') ADVANCE(513); - if (lookahead == '+') ADVANCE(504); - if (lookahead == '-') ADVANCE(508); - if (lookahead == '/') ADVANCE(517); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '<') ADVANCE(532); - if (lookahead == '=') ADVANCE(466); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(303); - if (lookahead == ']') ADVANCE(262); - if (lookahead == '^') ADVANCE(582); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(539); + if (lookahead == '+') ADVANCE(643); + if (lookahead == '-') ADVANCE(644); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '>') ADVANCE(271); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(370); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '~') ADVANCE(642); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(199) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '|') ADVANCE(800); END_STATE(); case 200: - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); if (lookahead == '%') ADVANCE(519); - if (lookahead == '&') ADVANCE(578); - if (lookahead == '*') ADVANCE(513); - if (lookahead == '+') ADVANCE(504); - if (lookahead == '-') ADVANCE(508); - if (lookahead == '/') ADVANCE(517); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '<') ADVANCE(532); - if (lookahead == '=') ADVANCE(466); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == '^') ADVANCE(582); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(539); + if (lookahead == ')') ADVANCE(540); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ':') ADVANCE(640); + if (lookahead == ';') ADVANCE(448); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '=') ADVANCE(457); + if (lookahead == '>') ADVANCE(535); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{') ADVANCE(657); + if (lookahead == '\\') ADVANCE(309); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(548); + if (lookahead == '}') ADVANCE(689); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(200) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (lookahead != 0 && + lookahead != '&') ADVANCE(800); END_STATE(); case 201: - if (lookahead == '!') ADVANCE(258); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(601); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '&') ADVANCE(578); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(513); - if (lookahead == '+') ADVANCE(504); - if (lookahead == '-') ADVANCE(508); - if (lookahead == '/') ADVANCE(517); - if (lookahead == ':') ADVANCE(585); - if (lookahead == '<') ADVANCE(532); - if (lookahead == '=') ADVANCE(466); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '[') ADVANCE(563); - if (lookahead == '\\') SKIP(347) - if (lookahead == ']') ADVANCE(262); - if (lookahead == '^') ADVANCE(582); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(551); - if (lookahead == '}') ADVANCE(633); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(285); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == '<') ADVANCE(525); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(310); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(201) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '|') ADVANCE(800); END_STATE(); case 202: - if (lookahead == '!') ADVANCE(258); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '&') ADVANCE(578); - if (lookahead == '(') ADVANCE(251); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(513); - if (lookahead == '+') ADVANCE(504); - if (lookahead == ',') ADVANCE(462); - if (lookahead == '-') ADVANCE(508); - if (lookahead == '/') ADVANCE(517); - if (lookahead == ':') ADVANCE(585); - if (lookahead == '<') ADVANCE(532); - if (lookahead == '=') ADVANCE(466); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '?') ADVANCE(583); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(794); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') SKIP(343) - if (lookahead == ']') ADVANCE(604); - if (lookahead == '^') ADVANCE(582); - if (lookahead == '`') ADVANCE(263); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(301); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(202) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z')) ADVANCE(668); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(800); END_STATE(); case 203: - if (lookahead == '!') ADVANCE(258); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '&') ADVANCE(578); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(513); - if (lookahead == '+') ADVANCE(504); - if (lookahead == ',') ADVANCE(462); - if (lookahead == '-') ADVANCE(508); - if (lookahead == '.') ADVANCE(256); - if (lookahead == '/') ADVANCE(517); - if (lookahead == ':') ADVANCE(585); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(532); - if (lookahead == '=') ADVANCE(466); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '?') ADVANCE(583); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); if (lookahead == '[' || - lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') SKIP(342) - if (lookahead == '^') ADVANCE(582); - if (lookahead == '`') ADVANCE(263); - if (lookahead == 'e') ADVANCE(267); - if (lookahead == 'i') ADVANCE(266); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(303); + if (lookahead == ']') ADVANCE(566); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(204) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(592); + lookahead == ' ') SKIP(203) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(800); END_STATE(); case 204: - if (lookahead == '!') ADVANCE(258); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '&') ADVANCE(578); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(513); - if (lookahead == '+') ADVANCE(504); - if (lookahead == ',') ADVANCE(462); - if (lookahead == '-') ADVANCE(508); - if (lookahead == '/') ADVANCE(517); - if (lookahead == ':') ADVANCE(585); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(532); - if (lookahead == '=') ADVANCE(466); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '?') ADVANCE(583); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') SKIP(342) - if (lookahead == '^') ADVANCE(582); - if (lookahead == '`') ADVANCE(263); - if (lookahead == 'e') ADVANCE(267); - if (lookahead == 'i') ADVANCE(266); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(307); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(204) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(800); END_STATE(); case 205: - if (lookahead == '!') ADVANCE(258); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '&') ADVANCE(578); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(513); - if (lookahead == '+') ADVANCE(504); - if (lookahead == '-') ADVANCE(508); - if (lookahead == '/') ADVANCE(517); - if (lookahead == ':') ADVANCE(585); - if (lookahead == '<') ADVANCE(532); - if (lookahead == '=') ADVANCE(466); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '?') ADVANCE(583); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(539); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '>') ADVANCE(271); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); if (lookahead == '[' || lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') SKIP(346) - if (lookahead == '^') ADVANCE(582); - if (lookahead == '`') ADVANCE(263); - if (lookahead == '|') ADVANCE(551); + lookahead == '{') ADVANCE(657); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '}') ADVANCE(689); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(205) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '|') ADVANCE(800); END_STATE(); case 206: - if (lookahead == '!') ADVANCE(258); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '&') ADVANCE(578); - if (lookahead == '*') ADVANCE(513); - if (lookahead == '+') ADVANCE(504); - if (lookahead == '-') ADVANCE(508); - if (lookahead == '/') ADVANCE(517); - if (lookahead == '<') ADVANCE(532); - if (lookahead == '=') ADVANCE(466); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '?') ADVANCE(583); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == ')') ADVANCE(540); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '>') ADVANCE(271); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') SKIP(345) - if (lookahead == ']') ADVANCE(565); - if (lookahead == '^') ADVANCE(582); - if (lookahead == '`') ADVANCE(263); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(320); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(206) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (lookahead != 0 && + lookahead != '&' && + lookahead != ';' && + lookahead != '|') ADVANCE(800); END_STATE(); case 207: - if (lookahead == '!') ADVANCE(258); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '&') ADVANCE(243); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(514); - if (lookahead == '+') ADVANCE(504); - if (lookahead == ',') ADVANCE(462); - if (lookahead == '-') ADVANCE(507); - if (lookahead == '/') ADVANCE(517); - if (lookahead == '<') ADVANCE(532); - if (lookahead == '=') ADVANCE(465); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '\\') SKIP(355) - if (lookahead == '^') ADVANCE(260); - if (lookahead == '|') ADVANCE(257); - if (lookahead == '}') ADVANCE(595); + if (lookahead == '!') ADVANCE(793); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(517); + if (lookahead == '&') ADVANCE(630); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(539); + if (lookahead == '*') ADVANCE(504); + if (lookahead == '+') ADVANCE(494); + if (lookahead == '-') ADVANCE(498); + if (lookahead == '/') ADVANCE(512); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(526); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '>') ADVANCE(532); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(347); + if (lookahead == ']') ADVANCE(566); + if (lookahead == '^') ADVANCE(632); + if (lookahead == '`') ADVANCE(718); + if (lookahead == '|') ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(208) + lookahead == ' ') SKIP(207) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(800); END_STATE(); case 208: - if (lookahead == '!') ADVANCE(258); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '&') ADVANCE(243); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(514); - if (lookahead == '+') ADVANCE(504); - if (lookahead == ',') ADVANCE(462); - if (lookahead == '-') ADVANCE(507); - if (lookahead == '/') ADVANCE(517); - if (lookahead == '<') ADVANCE(532); - if (lookahead == '=') ADVANCE(465); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '\\') SKIP(355) - if (lookahead == '^') ADVANCE(260); - if (lookahead == '|') ADVANCE(257); + if (lookahead == '!') ADVANCE(793); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(517); + if (lookahead == '&') ADVANCE(630); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(504); + if (lookahead == '+') ADVANCE(494); + if (lookahead == '-') ADVANCE(498); + if (lookahead == '/') ADVANCE(512); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(526); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '>') ADVANCE(532); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(400); + if (lookahead == ']') ADVANCE(566); + if (lookahead == '^') ADVANCE(632); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(208) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(800); END_STATE(); case 209: - if (lookahead == '!') ADVANCE(258); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '&') ADVANCE(243); - if (lookahead == ')') ADVANCE(252); - if (lookahead == '*') ADVANCE(514); - if (lookahead == '+') ADVANCE(504); - if (lookahead == ',') ADVANCE(462); - if (lookahead == '-') ADVANCE(507); - if (lookahead == '/') ADVANCE(517); - if (lookahead == '<') ADVANCE(532); - if (lookahead == '=') ADVANCE(465); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(603); - if (lookahead == '\\') SKIP(354) - if (lookahead == '^') ADVANCE(260); - if (lookahead == '`') ADVANCE(263); - if (lookahead == '|') ADVANCE(257); - if (lookahead == '}') ADVANCE(633); + if (lookahead == '!') ADVANCE(562); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(629); + if (lookahead == ')') ADVANCE(541); + if (lookahead == '*') ADVANCE(505); + if (lookahead == '+') ADVANCE(495); + if (lookahead == '-') ADVANCE(500); + if (lookahead == '/') ADVANCE(513); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(456); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(305); + if (lookahead == '^') ADVANCE(633); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(552); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(209) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); case 210: - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '&') ADVANCE(244); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(290); - if (lookahead == ']') ADVANCE(565); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '!') ADVANCE(562); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(629); + if (lookahead == ')') ADVANCE(540); + if (lookahead == '*') ADVANCE(505); + if (lookahead == '+') ADVANCE(495); + if (lookahead == '-') ADVANCE(500); + if (lookahead == '/') ADVANCE(513); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(456); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(333); + if (lookahead == '^') ADVANCE(633); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(552); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(210) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); case 211: - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '&') ADVANCE(244); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(291); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '!') ADVANCE(562); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(629); + if (lookahead == ')') ADVANCE(275); + if (lookahead == '*') ADVANCE(505); + if (lookahead == '+') ADVANCE(495); + if (lookahead == '-') ADVANCE(500); + if (lookahead == '/') ADVANCE(513); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(456); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(335); + if (lookahead == '^') ADVANCE(633); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(552); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(211) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); case 212: - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(294); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '|') ADVANCE(548); + if (lookahead == '!') ADVANCE(562); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(629); + if (lookahead == '*') ADVANCE(505); + if (lookahead == '+') ADVANCE(495); + if (lookahead == '-') ADVANCE(500); + if (lookahead == '/') ADVANCE(513); + if (lookahead == '0') ADVANCE(787); + if (lookahead == ':') ADVANCE(637); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(456); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(306); + if (lookahead == '^') ADVANCE(633); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(552); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(212) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); case 213: - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(296); - if (lookahead == '_') ADVANCE(714); + if (lookahead == '!') ADVANCE(562); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(629); + if (lookahead == '*') ADVANCE(505); + if (lookahead == '+') ADVANCE(495); + if (lookahead == '-') ADVANCE(500); + if (lookahead == '/') ADVANCE(513); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(456); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(304); + if (lookahead == ']') ADVANCE(566); + if (lookahead == '^') ADVANCE(633); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(552); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(610); + lookahead == ' ') SKIP(213) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); - if (lookahead != 0 && - lookahead != '`') ADVANCE(613); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); case 214: - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(295); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '}') ADVANCE(633); + if (lookahead == '!') ADVANCE(562); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(629); + if (lookahead == '*') ADVANCE(505); + if (lookahead == '+') ADVANCE(495); + if (lookahead == '-') ADVANCE(500); + if (lookahead == '/') ADVANCE(513); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(456); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(332); + if (lookahead == ']') ADVANCE(286); + if (lookahead == '^') ADVANCE(633); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(552); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(214) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); case 215: - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(297); - if (lookahead == '_') ADVANCE(714); + if (lookahead == '!') ADVANCE(562); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(629); + if (lookahead == '*') ADVANCE(505); + if (lookahead == '+') ADVANCE(495); + if (lookahead == '-') ADVANCE(500); + if (lookahead == '/') ADVANCE(513); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(456); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(308); + if (lookahead == '^') ADVANCE(633); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(552); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(215) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); case 216: - if (lookahead == '!') ADVANCE(559); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(298); - if (lookahead == '_') ADVANCE(714); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(655); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(629); + if (lookahead == ')') ADVANCE(541); + if (lookahead == '*') ADVANCE(505); + if (lookahead == '+') ADVANCE(495); + if (lookahead == ',') ADVANCE(451); + if (lookahead == '-') ADVANCE(500); + if (lookahead == '/') ADVANCE(513); + if (lookahead == ':') ADVANCE(637); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(456); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '[') ADVANCE(564); + if (lookahead == '\\') SKIP(371) + if (lookahead == ']') ADVANCE(286); + if (lookahead == '^') ADVANCE(633); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(552); + if (lookahead == '}') ADVANCE(689); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(611); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '`') ADVANCE(613); + lookahead == ' ') SKIP(216) END_STATE(); case 217: - if (lookahead == '!') ADVANCE(559); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '_') ADVANCE(714); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(629); + if (lookahead == '(') ADVANCE(269); + if (lookahead == ')') ADVANCE(540); + if (lookahead == '*') ADVANCE(505); + if (lookahead == '+') ADVANCE(495); + if (lookahead == ',') ADVANCE(451); + if (lookahead == '-') ADVANCE(500); + if (lookahead == '/') ADVANCE(513); + if (lookahead == ':') ADVANCE(637); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(456); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') SKIP(367) + if (lookahead == ']') ADVANCE(658); + if (lookahead == '^') ADVANCE(633); + if (lookahead == '`') ADVANCE(287); + if (lookahead == '|') ADVANCE(552); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(217) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); case 218: - if (lookahead == '!') ADVANCE(559); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(600); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '=') ADVANCE(463); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') SKIP(364) - if (lookahead == '_') ADVANCE(714); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '}') ADVANCE(633); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(629); + if (lookahead == ')') ADVANCE(541); + if (lookahead == '*') ADVANCE(505); + if (lookahead == '+') ADVANCE(495); + if (lookahead == ',') ADVANCE(451); + if (lookahead == '-') ADVANCE(500); + if (lookahead == '.') ADVANCE(279); + if (lookahead == '/') ADVANCE(513); + if (lookahead == ':') ADVANCE(637); + if (lookahead == ';') ADVANCE(265); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(456); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') SKIP(366) + if (lookahead == '^') ADVANCE(633); + if (lookahead == '`') ADVANCE(287); + if (lookahead == 'e') ADVANCE(291); + if (lookahead == 'i') ADVANCE(290); + if (lookahead == '|') ADVANCE(552); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(218) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + lookahead == ' ') SKIP(219) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(646); END_STATE(); case 219: - if (lookahead == '!') ADVANCE(559); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(602); - if (lookahead == '&') ADVANCE(244); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '+') ADVANCE(589); - if (lookahead == '-') ADVANCE(590); - if (lookahead == '0') ADVANCE(624); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '>') ADVANCE(535); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(629); + if (lookahead == ')') ADVANCE(541); + if (lookahead == '*') ADVANCE(505); + if (lookahead == '+') ADVANCE(495); + if (lookahead == ',') ADVANCE(451); + if (lookahead == '-') ADVANCE(500); + if (lookahead == '/') ADVANCE(513); + if (lookahead == ':') ADVANCE(637); + if (lookahead == ';') ADVANCE(265); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(456); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '?') ADVANCE(635); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') SKIP(362) - if (lookahead == '`') ADVANCE(263); - if (lookahead == '|') ADVANCE(550); - if (lookahead == '~') ADVANCE(588); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') SKIP(366) + if (lookahead == '^') ADVANCE(633); + if (lookahead == '`') ADVANCE(287); + if (lookahead == 'e') ADVANCE(291); + if (lookahead == 'i') ADVANCE(290); + if (lookahead == '|') ADVANCE(552); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(219) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(626); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(668); END_STATE(); case 220: - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(520); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '(') ADVANCE(539); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(629); if (lookahead == ')') ADVANCE(540); - if (lookahead == ',') ADVANCE(635); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '/') ADVANCE(634); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ':') ADVANCE(586); - if (lookahead == ';') ADVANCE(459); - if (lookahead == '<') ADVANCE(530); - if (lookahead == '=') ADVANCE(467); - if (lookahead == '>') ADVANCE(536); + if (lookahead == '*') ADVANCE(505); + if (lookahead == '+') ADVANCE(495); + if (lookahead == '-') ADVANCE(500); + if (lookahead == '/') ADVANCE(513); + if (lookahead == ':') ADVANCE(637); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(456); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '?') ADVANCE(635); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(603); - if (lookahead == '\\') ADVANCE(333); - if (lookahead == '^') ADVANCE(638); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(548); - if (lookahead == '}') ADVANCE(633); + lookahead == '{' || + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') SKIP(369) + if (lookahead == '^') ADVANCE(633); + if (lookahead == '`') ADVANCE(287); + if (lookahead == '|') ADVANCE(552); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(220) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0 && - lookahead != '&') ADVANCE(724); END_STATE(); case 221: - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(520); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '(') ADVANCE(539); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(629); if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ':') ADVANCE(586); - if (lookahead == ';') ADVANCE(459); - if (lookahead == '<') ADVANCE(530); - if (lookahead == '=') ADVANCE(467); - if (lookahead == '>') ADVANCE(536); + if (lookahead == '*') ADVANCE(505); + if (lookahead == '+') ADVANCE(495); + if (lookahead == '-') ADVANCE(500); + if (lookahead == '/') ADVANCE(513); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(456); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '[') ADVANCE(564); + if (lookahead == '\\') SKIP(373) + if (lookahead == '^') ADVANCE(633); + if (lookahead == '|') ADVANCE(552); + if (lookahead == '}') ADVANCE(649); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(222) + END_STATE(); + case 222: + if (lookahead == '!') ADVANCE(282); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(629); + if (lookahead == ')') ADVANCE(540); + if (lookahead == '*') ADVANCE(505); + if (lookahead == '+') ADVANCE(495); + if (lookahead == '-') ADVANCE(500); + if (lookahead == '/') ADVANCE(513); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(456); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '[') ADVANCE(564); + if (lookahead == '\\') SKIP(373) + if (lookahead == '^') ADVANCE(633); + if (lookahead == '|') ADVANCE(552); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(222) + END_STATE(); + case 223: + if (lookahead == '!') ADVANCE(282); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(629); + if (lookahead == '*') ADVANCE(505); + if (lookahead == '+') ADVANCE(495); + if (lookahead == '-') ADVANCE(500); + if (lookahead == '/') ADVANCE(513); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(456); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '?') ADVANCE(635); if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(603); - if (lookahead == '\\') ADVANCE(340); - if (lookahead == '`') ADVANCE(644); + lookahead == '{' || + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') SKIP(368) + if (lookahead == ']') ADVANCE(566); + if (lookahead == '^') ADVANCE(633); + if (lookahead == '`') ADVANCE(287); + if (lookahead == '|') ADVANCE(552); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(223) + END_STATE(); + case 224: + if (lookahead == '!') ADVANCE(282); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(263); + if (lookahead == '(') ADVANCE(538); + if (lookahead == ')') ADVANCE(275); + if (lookahead == '*') ADVANCE(506); + if (lookahead == '+') ADVANCE(495); + if (lookahead == ',') ADVANCE(451); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '/') ADVANCE(513); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(455); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '[') ADVANCE(565); + if (lookahead == '\\') SKIP(380) + if (lookahead == '^') ADVANCE(284); + if (lookahead == '{') ADVANCE(557); + if (lookahead == '|') ADVANCE(281); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(224) + END_STATE(); + case 225: + if (lookahead == '!') ADVANCE(282); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(263); + if (lookahead == ')') ADVANCE(540); + if (lookahead == '*') ADVANCE(506); + if (lookahead == '+') ADVANCE(495); + if (lookahead == ',') ADVANCE(451); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '/') ADVANCE(513); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(455); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '\\') SKIP(381) + if (lookahead == '^') ADVANCE(284); + if (lookahead == '|') ADVANCE(281); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(225) + END_STATE(); + case 226: + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '<') ADVANCE(528); + if (lookahead == '>') ADVANCE(534); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(318); + if (lookahead == ']') ADVANCE(566); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(551); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(226) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + END_STATE(); + case 227: + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '<') ADVANCE(528); + if (lookahead == '>') ADVANCE(534); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(321); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(551); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(227) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + END_STATE(); + case 228: + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == ')') ADVANCE(540); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(323); + if (lookahead == '_') ADVANCE(790); if (lookahead == '|') ADVANCE(548); - if (lookahead == '}') ADVANCE(633); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(221) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + lookahead == ' ') SKIP(228) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + END_STATE(); + case 229: + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '/') ADVANCE(508); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(324); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '}') ADVANCE(689); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(229) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + END_STATE(); + case 230: + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(325); + if (lookahead == '_') ADVANCE(790); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(664); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); if (lookahead != 0 && - lookahead != '&') ADVANCE(724); + lookahead != '`') ADVANCE(668); END_STATE(); - case 222: - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(520); - if (lookahead == '\'') ADVANCE(246); + case 231: + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(326); + if (lookahead == '_') ADVANCE(790); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(231) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + END_STATE(); + case 232: + if (lookahead == '!') ADVANCE(560); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(656); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '(') ADVANCE(538); + if (lookahead == '+') ADVANCE(643); + if (lookahead == '-') ADVANCE(644); + if (lookahead == '0') ADVANCE(679); + if (lookahead == '<') ADVANCE(528); + if (lookahead == '>') ADVANCE(534); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') SKIP(387) + if (lookahead == '`') ADVANCE(287); + if (lookahead == '|') ADVANCE(551); + if (lookahead == '~') ADVANCE(642); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(232) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(681); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(741); + END_STATE(); + case 233: + if (lookahead == '!') ADVANCE(560); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(327); + if (lookahead == '_') ADVANCE(790); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(665); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '`') ADVANCE(668); + END_STATE(); + case 234: + if (lookahead == '!') ADVANCE(560); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(328); + if (lookahead == '_') ADVANCE(790); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(234) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + END_STATE(); + case 235: + if (lookahead == '!') ADVANCE(560); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(654); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '=') ADVANCE(453); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') SKIP(389) + if (lookahead == '_') ADVANCE(790); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '}') ADVANCE(689); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(235) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + END_STATE(); + case 236: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(687); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(515); + if (lookahead == '\'') ADVANCE(266); if (lookahead == '(') ADVANCE(539); if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ':') ADVANCE(586); - if (lookahead == ';') ADVANCE(459); - if (lookahead == '<') ADVANCE(530); - if (lookahead == '=') ADVANCE(467); - if (lookahead == '>') ADVANCE(536); + if (lookahead == '+') ADVANCE(496); + if (lookahead == ',') ADVANCE(711); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '/') ADVANCE(510); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ':') ADVANCE(638); + if (lookahead == ';') ADVANCE(448); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '=') ADVANCE(457); + if (lookahead == '>') ADVANCE(535); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(603); - if (lookahead == '\\') ADVANCE(383); - if (lookahead == '`') ADVANCE(645); + lookahead == '{') ADVANCE(657); + if (lookahead == '\\') ADVANCE(348); + if (lookahead == '^') ADVANCE(713); + if (lookahead == '`') ADVANCE(717); if (lookahead == '|') ADVANCE(548); - if (lookahead == '}') ADVANCE(633); + if (lookahead == '}') ADVANCE(689); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(222) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + lookahead == ' ') SKIP(236) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - lookahead != '&') ADVANCE(724); + lookahead != '&') ADVANCE(800); END_STATE(); - case 223: - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(261); - if (lookahead == '\'') ADVANCE(246); + case 237: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(285); + if (lookahead == '\'') ADVANCE(266); if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '[') ADVANCE(564); - if (lookahead == '\\') ADVANCE(331); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(525); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '[') ADVANCE(565); + if (lookahead == '\\') ADVANCE(359); if (lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '`') ADVANCE(644); + lookahead == '}') ADVANCE(657); + if (lookahead == '`') ADVANCE(717); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(223) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + lookahead == ' ') SKIP(237) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(724); + lookahead != '|') ADVANCE(800); END_STATE(); - case 224: - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(261); - if (lookahead == '\'') ADVANCE(246); + case 238: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(285); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '>') ADVANCE(534); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(525); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(341); - if (lookahead == '`') ADVANCE(644); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(413); + if (lookahead == '`') ADVANCE(717); if (lookahead == '|') ADVANCE(548); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(224) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + lookahead == ' ') SKIP(238) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - lookahead != '(' && - lookahead != ';') ADVANCE(724); + lookahead != ';') ADVANCE(800); END_STATE(); - case 225: - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(261); - if (lookahead == '\'') ADVANCE(246); + case 239: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(285); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '>') ADVANCE(534); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(525); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(387); - if (lookahead == '`') ADVANCE(645); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(421); + if (lookahead == '`') ADVANCE(718); if (lookahead == '|') ADVANCE(548); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(225) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + lookahead == ' ') SKIP(239) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - lookahead != '(' && - lookahead != ';') ADVANCE(724); + lookahead != ';') ADVANCE(800); END_STATE(); - case 226: - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(244); - if (lookahead == '\'') ADVANCE(246); + case 240: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '\'') ADVANCE(266); if (lookahead == '(') ADVANCE(539); if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(338); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(364); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(226) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + lookahead == ' ') SKIP(240) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - lookahead != ';') ADVANCE(724); + lookahead != ';') ADVANCE(800); END_STATE(); - case 227: - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(244); - if (lookahead == '\'') ADVANCE(246); + case 241: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '\'') ADVANCE(266); if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(718); - if (lookahead == '>') ADVANCE(534); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(794); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == '`') ADVANCE(645); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(411); + if (lookahead == '`') ADVANCE(718); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(227) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + lookahead == ' ') SKIP(241) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(724); + lookahead != ';') ADVANCE(800); END_STATE(); - case 228: - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(244); - if (lookahead == '\'') ADVANCE(246); + case 242: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(384); - if (lookahead == '`') ADVANCE(645); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(419); + if (lookahead == '`') ADVANCE(718); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(228) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + lookahead == ' ') SKIP(242) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - lookahead != '(' && - lookahead != ';') ADVANCE(724); + lookahead != ';') ADVANCE(800); END_STATE(); - case 229: - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(244); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(718); - if (lookahead == '>') ADVANCE(534); + case 243: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(794); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(334); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(361); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(229) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + lookahead == ' ') SKIP(243) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - lookahead != '(' && lookahead != ')' && - lookahead != ';') ADVANCE(724); + lookahead != ';') ADVANCE(800); END_STATE(); - case 230: - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(244); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); + case 244: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(335); - if (lookahead == ']') ADVANCE(565); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(363); + if (lookahead == ']') ADVANCE(566); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(230) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + lookahead == ' ') SKIP(244) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - lookahead != '(' && lookahead != ')' && - lookahead != ';') ADVANCE(724); + lookahead != ';') ADVANCE(800); END_STATE(); - case 231: - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(244); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); + case 245: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(382); - if (lookahead == ']') ADVANCE(565); - if (lookahead == '`') ADVANCE(645); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(412); + if (lookahead == ']') ADVANCE(566); + if (lookahead == '`') ADVANCE(718); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(231) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + lookahead == ' ') SKIP(245) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - lookahead != '(' && lookahead != ')' && - lookahead != ';') ADVANCE(724); + lookahead != ';') ADVANCE(800); END_STATE(); - case 232: - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(244); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(619); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); + case 246: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(674); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(332); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(360); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(232) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(621); + lookahead == ' ') SKIP(246) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(657); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); if (lookahead != 0 && - lookahead != '(' && lookahead != ')' && - lookahead != ';') ADVANCE(724); + lookahead != ';') ADVANCE(800); END_STATE(); - case 233: - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(244); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(619); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); + case 247: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(674); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(381); - if (lookahead == '`') ADVANCE(645); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(410); + if (lookahead == '`') ADVANCE(718); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(233) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(621); + lookahead == ' ') SKIP(247) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(657); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); if (lookahead != 0 && - lookahead != '(' && lookahead != ')' && - lookahead != ';') ADVANCE(724); + lookahead != ';') ADVANCE(800); END_STATE(); - case 234: - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '\'') ADVANCE(246); + case 248: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '\'') ADVANCE(266); if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '<') ADVANCE(249); - if (lookahead == '>') ADVANCE(250); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '>') ADVANCE(271); if (lookahead == '[' || lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(350); - if (lookahead == '`') ADVANCE(644); - if (lookahead == 'e') ADVANCE(722); + lookahead == '{') ADVANCE(657); + if (lookahead == '\\') ADVANCE(378); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '}') ADVANCE(689); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(234) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + lookahead == ' ') SKIP(248) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(724); + lookahead != '|') ADVANCE(800); END_STATE(); - case 235: - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '<') ADVANCE(249); - if (lookahead == '>') ADVANCE(250); + case 249: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(539); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '>') ADVANCE(271); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(603); - if (lookahead == '\\') ADVANCE(357); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '}') ADVANCE(633); + lookahead == '{') ADVANCE(657); + if (lookahead == '\\') ADVANCE(416); + if (lookahead == '`') ADVANCE(718); + if (lookahead == '}') ADVANCE(689); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(235) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + lookahead == ' ') SKIP(249) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(724); + lookahead != '|') ADVANCE(800); END_STATE(); - case 236: - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(601); - if (lookahead == '&') ADVANCE(244); + case 250: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '\'') ADVANCE(266); if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(252); - if (lookahead == '+') ADVANCE(254); - if (lookahead == '-') ADVANCE(255); - if (lookahead == '0') ADVANCE(623); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(463); - if (lookahead == '>') ADVANCE(535); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '>') ADVANCE(271); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') SKIP(360) - if (lookahead == ']') ADVANCE(565); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(375); + if (lookahead == '`') ADVANCE(717); + if (lookahead == 'e') ADVANCE(798); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(236) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(625); + lookahead == ' ') SKIP(250) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '|') ADVANCE(800); + END_STATE(); + case 251: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(655); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '(') ADVANCE(538); + if (lookahead == ')') ADVANCE(275); + if (lookahead == '+') ADVANCE(277); + if (lookahead == '-') ADVANCE(278); + if (lookahead == '0') ADVANCE(678); + if (lookahead == '<') ADVANCE(528); + if (lookahead == '=') ADVANCE(453); + if (lookahead == '>') ADVANCE(534); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') SKIP(385) + if (lookahead == ']') ADVANCE(566); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(251) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(680); if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(542); END_STATE(); - case 237: - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(652); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '\'') ADVANCE(246); + case 252: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(519); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(539); + if (lookahead == ')') ADVANCE(540); + if (lookahead == ',') ADVANCE(711); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ':') ADVANCE(640); + if (lookahead == ';') ADVANCE(448); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '=') ADVANCE(457); + if (lookahead == '>') ADVANCE(535); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{') ADVANCE(657); + if (lookahead == '\\') ADVANCE(362); + if (lookahead == '^') ADVANCE(713); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(548); + if (lookahead == '}') ADVANCE(689); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(252) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0 && + lookahead != '&') ADVANCE(800); + END_STATE(); + case 253: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(519); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(539); + if (lookahead == ')') ADVANCE(540); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ':') ADVANCE(640); + if (lookahead == ';') ADVANCE(448); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '=') ADVANCE(457); + if (lookahead == '>') ADVANCE(535); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{') ADVANCE(657); + if (lookahead == '\\') ADVANCE(365); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(548); + if (lookahead == '}') ADVANCE(689); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(253) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0 && + lookahead != '&') ADVANCE(800); + END_STATE(); + case 254: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(519); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(539); + if (lookahead == ')') ADVANCE(540); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ':') ADVANCE(640); + if (lookahead == ';') ADVANCE(448); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '=') ADVANCE(457); + if (lookahead == '>') ADVANCE(535); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{') ADVANCE(657); + if (lookahead == '\\') ADVANCE(414); + if (lookahead == '`') ADVANCE(718); + if (lookahead == '|') ADVANCE(548); + if (lookahead == '}') ADVANCE(689); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(254) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0 && + lookahead != '&') ADVANCE(800); + END_STATE(); + case 255: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(725); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '\'') ADVANCE(266); if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '<') ADVANCE(249); - if (lookahead == '>') ADVANCE(250); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '>') ADVANCE(271); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(353); - if (lookahead == '`') ADVANCE(644); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(379); + if (lookahead == '`') ADVANCE(717); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(237) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + lookahead == ' ') SKIP(255) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(724); + lookahead != '|') ADVANCE(800); END_STATE(); - case 238: - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(652); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '<') ADVANCE(249); - if (lookahead == '>') ADVANCE(250); + case 256: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(725); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '>') ADVANCE(271); if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(358); - if (lookahead == ']') ADVANCE(565); - if (lookahead == '`') ADVANCE(644); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(383); + if (lookahead == ']') ADVANCE(566); + if (lookahead == '`') ADVANCE(717); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(238) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + lookahead == ' ') SKIP(256) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(724); + lookahead != '|') ADVANCE(800); END_STATE(); - case 239: - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(607); - if (lookahead == '$') ADVANCE(599); - if (lookahead == '\\') ADVANCE(365); - if (lookahead == '`') ADVANCE(644); + case 257: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(661); + if (lookahead == '$') ADVANCE(653); + if (lookahead == '(') ADVANCE(667); + if (lookahead == '\\') ADVANCE(390); + if (lookahead == '`') ADVANCE(717); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(612); - if (lookahead != 0) ADVANCE(613); + lookahead == ' ') ADVANCE(666); + if (lookahead != 0) ADVANCE(668); END_STATE(); - case 240: - if (lookahead == '#') ADVANCE(651); - if (lookahead == '&') ADVANCE(261); - if (lookahead == ';') ADVANCE(459); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '\\') ADVANCE(366); - if (lookahead == '{') ADVANCE(556); + case 258: + if (lookahead == '#') ADVANCE(687); + if (lookahead == '%') ADVANCE(516); + if (lookahead == '+') ADVANCE(493); + if (lookahead == ',') ADVANCE(452); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '/') ADVANCE(511); + if (lookahead == ':') ADVANCE(639); + if (lookahead == '=') ADVANCE(453); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '[') ADVANCE(564); + if (lookahead == '\\') SKIP(386) + if (lookahead == '^') ADVANCE(634); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(240) - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '[' || ']' < lookahead) && - lookahead != '`' && - lookahead != '|' && - lookahead != '}') ADVANCE(724); + lookahead == ' ') SKIP(258) END_STATE(); - case 241: - if (lookahead == '#') ADVANCE(651); - if (lookahead == '&') ADVANCE(244); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '>') ADVANCE(535); + case 259: + if (lookahead == '#') ADVANCE(724); + if (lookahead == '&') ADVANCE(285); + if (lookahead == '/') ADVANCE(508); + if (lookahead == '<') ADVANCE(524); + if (lookahead == '>') ADVANCE(534); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{') ADVANCE(657); + if (lookahead == '\\') SKIP(393) + if (lookahead == '`') ADVANCE(287); + if (lookahead == '}') ADVANCE(689); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(259) + END_STATE(); + case 260: + if (lookahead == '#') ADVANCE(724); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '<') ADVANCE(528); + if (lookahead == '>') ADVANCE(534); if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(363); - if (lookahead == ']') ADVANCE(565); - if (lookahead == '`') ADVANCE(263); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(388); + if (lookahead == ']') ADVANCE(566); + if (lookahead == '`') ADVANCE(287); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(241) + lookahead == ' ') SKIP(260) if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';') ADVANCE(724); + lookahead != ';') ADVANCE(800); END_STATE(); - case 242: - if (lookahead == '#') ADVANCE(651); - if (lookahead == '+') ADVANCE(259); - if (lookahead == '=') ADVANCE(463); - if (lookahead == '[') ADVANCE(563); - if (lookahead == '\\') SKIP(369) + case 261: + if (lookahead == '#') ADVANCE(724); + if (lookahead == '+') ADVANCE(283); + if (lookahead == '=') ADVANCE(453); + if (lookahead == '[') ADVANCE(564); + if (lookahead == '\\') SKIP(395) if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(242) + lookahead == ' ') SKIP(261) END_STATE(); - case 243: - if (lookahead == '&') ADVANCE(496); - if (lookahead == '=') ADVANCE(486); + case 262: + if (lookahead == '#') ADVANCE(724); + if (lookahead == ';') ADVANCE(448); + if (lookahead == '\\') ADVANCE(394); + if (lookahead == '{') ADVANCE(557); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(262) + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '&' || ')' < lookahead) && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || ']' < lookahead) && + lookahead != '`' && + lookahead != '|' && + lookahead != '}') ADVANCE(800); END_STATE(); - case 244: - if (lookahead == '&') ADVANCE(496); - if (lookahead == '>') ADVANCE(570); + case 263: + if (lookahead == '&') ADVANCE(486); + if (lookahead == '=') ADVANCE(476); END_STATE(); - case 245: - if (lookahead == '&') ADVANCE(554); - if (lookahead == ';') ADVANCE(553); + case 264: + if (lookahead == '&') ADVANCE(486); + if (lookahead == '>') ADVANCE(571); END_STATE(); - case 246: - if (lookahead == '\'') ADVANCE(615); - if (lookahead != 0) ADVANCE(246); + case 265: + if (lookahead == '&') ADVANCE(555); + if (lookahead == ';') ADVANCE(554); END_STATE(); - case 247: - if (lookahead == '\'') ADVANCE(616); - if (lookahead == '\\') ADVANCE(248); - if (lookahead != 0) ADVANCE(247); + case 266: + if (lookahead == '\'') ADVANCE(670); + if (lookahead != 0) ADVANCE(266); END_STATE(); - case 248: - if (lookahead == '\'') ADVANCE(617); - if (lookahead == '\\') ADVANCE(248); - if (lookahead != 0) ADVANCE(247); + case 267: + if (lookahead == '\'') ADVANCE(671); + if (lookahead == '\\') ADVANCE(268); + if (lookahead != 0) ADVANCE(267); END_STATE(); - case 249: - if (lookahead == '(') ADVANCE(647); + case 268: + if (lookahead == '\'') ADVANCE(672); + if (lookahead == '\\') ADVANCE(268); + if (lookahead != 0) ADVANCE(267); END_STATE(); - case 250: - if (lookahead == '(') ADVANCE(648); + case 269: + if (lookahead == '(') ADVANCE(446); END_STATE(); - case 251: - if (lookahead == '(') ADVANCE(457); + case 270: + if (lookahead == '(') ADVANCE(720); END_STATE(); - case 252: - if (lookahead == ')') ADVANCE(458); + case 271: + if (lookahead == '(') ADVANCE(721); END_STATE(); - case 253: - if (lookahead == '+') ADVANCE(468); + case 272: + if (lookahead == '(') ADVANCE(645); END_STATE(); - case 254: - if (lookahead == '+') ADVANCE(468); - if (lookahead == '=') ADVANCE(472); + case 273: + if (lookahead == '(') ADVANCE(272); END_STATE(); - case 255: - if (lookahead == '-') ADVANCE(470); - if (lookahead == '0') ADVANCE(623); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(625); + case 274: + if (lookahead == '(') ADVANCE(272); + if (lookahead == '{') ADVANCE(688); END_STATE(); - case 256: - if (lookahead == '.') ADVANCE(593); + case 275: + if (lookahead == ')') ADVANCE(447); END_STATE(); - case 257: - if (lookahead == '=') ADVANCE(489); - if (lookahead == '|') ADVANCE(497); + case 276: + if (lookahead == '+') ADVANCE(458); END_STATE(); - case 258: - if (lookahead == '=') ADVANCE(492); + case 277: + if (lookahead == '+') ADVANCE(458); + if (lookahead == '=') ADVANCE(462); END_STATE(); - case 259: - if (lookahead == '=') ADVANCE(472); + case 278: + if (lookahead == '-') ADVANCE(460); + if (lookahead == '0') ADVANCE(678); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(680); END_STATE(); - case 260: - if (lookahead == '=') ADVANCE(487); + case 279: + if (lookahead == '.') ADVANCE(647); END_STATE(); - case 261: - if (lookahead == '>') ADVANCE(570); + case 280: + if (lookahead == '0') ADVANCE(678); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(680); END_STATE(); - case 262: - if (lookahead == ']') ADVANCE(567); + case 281: + if (lookahead == '=') ADVANCE(479); + if (lookahead == '|') ADVANCE(487); END_STATE(); - case 263: - if (lookahead == '`') ADVANCE(596); + case 282: + if (lookahead == '=') ADVANCE(482); + END_STATE(); + case 283: + if (lookahead == '=') ADVANCE(462); + END_STATE(); + case 284: + if (lookahead == '=') ADVANCE(477); + END_STATE(); + case 285: + if (lookahead == '>') ADVANCE(571); + END_STATE(); + case 286: + if (lookahead == ']') ADVANCE(568); + END_STATE(); + case 287: + if (lookahead == '`') ADVANCE(650); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(263); + lookahead == ' ') ADVANCE(287); END_STATE(); - case 264: - if (lookahead == 'a') ADVANCE(265); + case 288: + if (lookahead == 'a') ADVANCE(289); END_STATE(); - case 265: + case 289: if (lookahead == 'c') ADVANCE(543); END_STATE(); - case 266: - if (lookahead == 'n') ADVANCE(454); + case 290: + if (lookahead == 'n') ADVANCE(443); END_STATE(); - case 267: - if (lookahead == 's') ADVANCE(264); + case 291: + if (lookahead == 's') ADVANCE(288); END_STATE(); - case 268: + case 292: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || lookahead == ' ') SKIP(12) - if (lookahead == '\n') ADVANCE(669); + if (lookahead == '\n') ADVANCE(742); if (lookahead == '\r') ADVANCE(13); - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 269: + case 293: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(172) - if (lookahead == '\n') ADVANCE(686); + lookahead == ' ') SKIP(192) + if (lookahead == '\n') ADVANCE(763); if (lookahead == '\r') ADVANCE(18); - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 270: + case 294: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(132) - if (lookahead == '\n') ADVANCE(671); - if (lookahead == '\r') ADVANCE(28); - if (lookahead != 0) ADVANCE(724); + lookahead == ' ') SKIP(139) + if (lookahead == '\n') ADVANCE(744); + if (lookahead == '\r') ADVANCE(27); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 271: + case 295: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(138) - if (lookahead == '\n') ADVANCE(674); - if (lookahead == '\r') ADVANCE(31); - if (lookahead != 0) ADVANCE(724); + lookahead == ' ') SKIP(148) + if (lookahead == '\n') ADVANCE(747); + if (lookahead == '\r') ADVANCE(28); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 272: + case 296: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(142) - if (lookahead == '\n') ADVANCE(676); + lookahead == ' ') SKIP(156) + if (lookahead == '\n') ADVANCE(751); if (lookahead == '\r') ADVANCE(32); - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 273: + case 297: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(149) - if (lookahead == '\n') ADVANCE(680); + lookahead == ' ') SKIP(159) + if (lookahead == '\n') ADVANCE(753); if (lookahead == '\r') ADVANCE(33); - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 274: + case 298: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(152) - if (lookahead == '\n') ADVANCE(682); - if (lookahead == '\r') ADVANCE(35); - if (lookahead != 0) ADVANCE(724); + lookahead == ' ') SKIP(162) + if (lookahead == '\n') ADVANCE(755); + if (lookahead == '\r') ADVANCE(34); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 275: + case 299: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(156) - if (lookahead == '\n') ADVANCE(684); - if (lookahead == '\r') ADVANCE(37); - if (lookahead != 0) ADVANCE(724); + lookahead == ' ') SKIP(167) + if (lookahead == '\n') ADVANCE(758); + if (lookahead == '\r') ADVANCE(36); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 276: + case 300: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(198) - if (lookahead == '\n') ADVANCE(697); - if (lookahead == '\r') ADVANCE(42); + lookahead == ' ') SKIP(169) + if (lookahead == '\n') ADVANCE(759); + if (lookahead == '\r') ADVANCE(41); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 277: + case 301: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(194) - if (lookahead == '\n') ADVANCE(693); + lookahead == ' ') SKIP(202) + if (lookahead == '\n') ADVANCE(766); if (lookahead == '\r') ADVANCE(43); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 278: + case 302: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(181) - if (lookahead == '\n') ADVANCE(689); + lookahead == ' ') SKIP(171) + if (lookahead == '\n') ADVANCE(760); if (lookahead == '\r') ADVANCE(44); - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 279: + case 303: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(182) - if (lookahead == '\n') ADVANCE(690); + lookahead == ' ') SKIP(203) + if (lookahead == '\n') ADVANCE(767); + if (lookahead == '\r') ADVANCE(45); + if (lookahead != 0) ADVANCE(800); + END_STATE(); + case 304: + if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || + lookahead == ' ') SKIP(213) + if (lookahead == '\n') ADVANCE(775); if (lookahead == '\r') ADVANCE(47); - if (lookahead != 0) ADVANCE(724); END_STATE(); - case 280: + case 305: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(197) - if (lookahead == '\n') ADVANCE(696); + lookahead == ' ') SKIP(209) + if (lookahead == '\n') ADVANCE(771); if (lookahead == '\r') ADVANCE(48); END_STATE(); - case 281: + case 306: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(183) - if (lookahead == '\n') ADVANCE(691); + lookahead == ' ') SKIP(212) + if (lookahead == '\n') ADVANCE(774); + if (lookahead == '\r') ADVANCE(49); + END_STATE(); + case 307: + if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || + lookahead == ' ') SKIP(204) + if (lookahead == '\n') ADVANCE(768); + if (lookahead == '\r') ADVANCE(51); + if (lookahead != 0) ADVANCE(800); + END_STATE(); + case 308: + if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || + lookahead == ' ') SKIP(215) + if (lookahead == '\n') ADVANCE(777); if (lookahead == '\r') ADVANCE(52); - if (lookahead != 0) ADVANCE(724); END_STATE(); - case 282: + case 309: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || lookahead == ' ') SKIP(200) - if (lookahead == '\n') ADVANCE(699); + if (lookahead == '\n') ADVANCE(764); if (lookahead == '\r') ADVANCE(54); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 283: + case 310: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(179) - if (lookahead == '\n') ADVANCE(687); - if (lookahead == '\r') ADVANCE(58); - if (lookahead != 0) ADVANCE(724); + lookahead == ' ') SKIP(201) + if (lookahead == '\n') ADVANCE(765); + if (lookahead == '\r') ADVANCE(61); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 284: + case 311: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(180) - if (lookahead == '\n') ADVANCE(688); + lookahead == ' ') SKIP(64) + if (lookahead == '\n') ADVANCE(743); if (lookahead == '\r') ADVANCE(65); - if (lookahead != 0) ADVANCE(724); END_STATE(); - case 285: + case 312: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(66) - if (lookahead == '\n') ADVANCE(670); - if (lookahead == '\r') ADVANCE(67); + lookahead == ' ') SKIP(145) + if (lookahead == '\n') ADVANCE(746); + if (lookahead == '\r') ADVANCE(66); END_STATE(); - case 286: + case 313: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(135) - if (lookahead == '\n') ADVANCE(673); + lookahead == ' ') SKIP(149) + if (lookahead == '\n') ADVANCE(748); if (lookahead == '\r') ADVANCE(68); END_STATE(); - case 287: + case 314: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(143) - if (lookahead == '\n') ADVANCE(677); + lookahead == ' ') SKIP(157) + if (lookahead == '\n') ADVANCE(752); if (lookahead == '\r') ADVANCE(69); END_STATE(); - case 288: + case 315: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(147) - if (lookahead == '\n') ADVANCE(679); - if (lookahead == '\r') ADVANCE(70); + lookahead == ' ') SKIP(173) + if (lookahead == '\n') ADVANCE(761); + if (lookahead == '\r') ADVANCE(79); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 289: + case 316: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(158) - if (lookahead == '\n') ADVANCE(685); + lookahead == ' ') SKIP(205) + if (lookahead == '\n') ADVANCE(769); if (lookahead == '\r') ADVANCE(82); - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 290: + case 317: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(210) - if (lookahead == '\n') ADVANCE(700); + lookahead == ' ') SKIP(160) + if (lookahead == '\n') ADVANCE(754); + if (lookahead == '\r') ADVANCE(83); + END_STATE(); + case 318: + if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || + lookahead == ' ') SKIP(226) + if (lookahead == '\n') ADVANCE(778); if (lookahead == '\r') ADVANCE(84); END_STATE(); - case 291: + case 319: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(211) - if (lookahead == '\n') ADVANCE(701); + lookahead == ' ') SKIP(175) + if (lookahead == '\n') ADVANCE(762); if (lookahead == '\r') ADVANCE(85); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 292: + case 320: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(184) - if (lookahead == '\n') ADVANCE(692); - if (lookahead == '\r') ADVANCE(88); - if (lookahead != 0) ADVANCE(724); + lookahead == ' ') SKIP(206) + if (lookahead == '\n') ADVANCE(770); + if (lookahead == '\r') ADVANCE(86); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 293: + case 321: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(150) - if (lookahead == '\n') ADVANCE(681); + lookahead == ' ') SKIP(227) + if (lookahead == '\n') ADVANCE(779); + if (lookahead == '\r') ADVANCE(87); + END_STATE(); + case 322: + if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || + lookahead == ' ') SKIP(163) + if (lookahead == '\n') ADVANCE(756); if (lookahead == '\r') ADVANCE(96); END_STATE(); - case 294: + case 323: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(212) - if (lookahead == '\n') ADVANCE(702); + lookahead == ' ') SKIP(228) + if (lookahead == '\n') ADVANCE(780); if (lookahead == '\r') ADVANCE(97); END_STATE(); - case 295: + case 324: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(214) - if (lookahead == '\n') ADVANCE(703); + lookahead == ' ') SKIP(229) + if (lookahead == '\n') ADVANCE(781); if (lookahead == '\r') ADVANCE(98); END_STATE(); - case 296: + case 325: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') ADVANCE(610); - if (lookahead == '\n') ADVANCE(610); - if (lookahead == '\r') ADVANCE(606); - if (lookahead != 0) ADVANCE(613); + lookahead == ' ') ADVANCE(664); + if (lookahead == '\n') ADVANCE(664); + if (lookahead == '\r') ADVANCE(662); + if (lookahead != 0) ADVANCE(668); END_STATE(); - case 297: + case 326: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(215) - if (lookahead == '\n') ADVANCE(704); - if (lookahead == '\r') ADVANCE(99); + lookahead == ' ') SKIP(231) + if (lookahead == '\n') ADVANCE(782); + if (lookahead == '\r') ADVANCE(100); END_STATE(); - case 298: + case 327: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') ADVANCE(611); - if (lookahead == '\n') ADVANCE(611); - if (lookahead == '\r') ADVANCE(609); - if (lookahead != 0) ADVANCE(613); + lookahead == ' ') ADVANCE(665); + if (lookahead == '\n') ADVANCE(665); + if (lookahead == '\r') ADVANCE(663); + if (lookahead != 0) ADVANCE(668); END_STATE(); - case 299: + case 328: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(217) - if (lookahead == '\n') ADVANCE(705); - if (lookahead == '\r') ADVANCE(100); + lookahead == ' ') SKIP(234) + if (lookahead == '\n') ADVANCE(783); + if (lookahead == '\r') ADVANCE(101); END_STATE(); - case 300: + case 329: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(134) - if (lookahead == '\n') ADVANCE(672); - if (lookahead == '\r') ADVANCE(109); - if (lookahead != 0) ADVANCE(724); + lookahead == ' ') SKIP(144) + if (lookahead == '\n') ADVANCE(745); + if (lookahead == '\r') ADVANCE(110); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 301: + case 330: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(146) - if (lookahead == '\n') ADVANCE(678); - if (lookahead == '\r') ADVANCE(116); - if (lookahead != 0) ADVANCE(724); + lookahead == ' ') SKIP(152) + if (lookahead == '\n') ADVANCE(749); + if (lookahead == '\r') ADVANCE(118); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 302: + case 331: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(154) - if (lookahead == '\n') ADVANCE(683); - if (lookahead == '\r') ADVANCE(118); - if (lookahead != 0) ADVANCE(724); + lookahead == ' ') SKIP(165) + if (lookahead == '\n') ADVANCE(757); + if (lookahead == '\r') ADVANCE(122); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 303: + case 332: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(199) - if (lookahead == '\n') ADVANCE(698); - if (lookahead == '\r') ADVANCE(121); + lookahead == ' ') SKIP(214) + if (lookahead == '\n') ADVANCE(776); + if (lookahead == '\r') ADVANCE(128); END_STATE(); - case 304: + case 333: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(196) - if (lookahead == '\n') ADVANCE(695); - if (lookahead == '\r') ADVANCE(122); + lookahead == ' ') SKIP(210) + if (lookahead == '\n') ADVANCE(772); + if (lookahead == '\r') ADVANCE(129); END_STATE(); - case 305: + case 334: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(139) - if (lookahead == '\n') ADVANCE(675); - if (lookahead == '\r') ADVANCE(126); + lookahead == ' ') SKIP(153) + if (lookahead == '\n') ADVANCE(750); + if (lookahead == '\r') ADVANCE(131); END_STATE(); - case 306: + case 335: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(195) - if (lookahead == '\n') ADVANCE(694); - if (lookahead == '\r') ADVANCE(130); + lookahead == ' ') SKIP(211) + if (lookahead == '\n') ADVANCE(773); + if (lookahead == '\r') ADVANCE(138); END_STATE(); - case 307: + case 336: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(171) + lookahead == ' ') SKIP(185) if (lookahead == '\r') SKIP(1) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 308: + case 337: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(185) + lookahead == ' ') SKIP(193) if (lookahead == '\r') SKIP(2) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 309: + case 338: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(186) + lookahead == ' ') SKIP(194) if (lookahead == '\r') SKIP(3) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 310: + case 339: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(5) if (lookahead == '\r') SKIP(4) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 311: + case 340: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(187) + lookahead == ' ') SKIP(195) if (lookahead == '\r') SKIP(6) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 312: + case 341: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(189) + lookahead == ' ') SKIP(197) if (lookahead == '\r') SKIP(7) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 313: + case 342: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(173) + lookahead == ' ') SKIP(186) if (lookahead == '\r') SKIP(8) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 314: + case 343: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(190) + lookahead == ' ') SKIP(198) if (lookahead == '\r') SKIP(9) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 315: + case 344: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(174) + lookahead == ' ') SKIP(187) if (lookahead == '\r') SKIP(10) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 316: + case 345: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(176) + lookahead == ' ') SKIP(189) if (lookahead == '\r') SKIP(11) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 317: + case 346: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(108) + lookahead == ' ') SKIP(109) if (lookahead == '\r') SKIP(17) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 318: + case 347: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(140) + lookahead == ' ') SKIP(207) if (lookahead == '\r') SKIP(19) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 319: + case 348: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(192) + lookahead == ' ') SKIP(236) if (lookahead == '\r') SKIP(20) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 320: + case 349: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(193) + lookahead == ' ') SKIP(196) if (lookahead == '\r') SKIP(21) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 321: + case 350: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(188) + lookahead == ' ') SKIP(135) if (lookahead == '\r') SKIP(22) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 322: + case 351: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(129) + lookahead == ' ') SKIP(147) if (lookahead == '\r') SKIP(23) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 323: + case 352: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(137) + lookahead == ' ') SKIP(151) if (lookahead == '\r') SKIP(24) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 324: + case 353: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(141) + lookahead == ' ') SKIP(155) if (lookahead == '\r') SKIP(25) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 325: + case 354: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(145) + lookahead == ' ') SKIP(158) if (lookahead == '\r') SKIP(26) - if (lookahead != 0) ADVANCE(724); - END_STATE(); - case 326: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(148) - if (lookahead == '\r') SKIP(27) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 327: + case 355: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(151) + lookahead == ' ') SKIP(161) if (lookahead == '\r') SKIP(29) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 328: + case 356: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(153) + lookahead == ' ') SKIP(164) if (lookahead == '\r') SKIP(30) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 329: + case 357: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(155) - if (lookahead == '\r') SKIP(34) - if (lookahead != 0) ADVANCE(724); + lookahead == ' ') SKIP(166) + if (lookahead == '\r') SKIP(31) + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 330: + case 358: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(157) - if (lookahead == '\r') SKIP(36) - if (lookahead != 0) ADVANCE(724); + lookahead == ' ') SKIP(168) + if (lookahead == '\r') SKIP(35) + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 331: + case 359: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(223) + lookahead == ' ') SKIP(237) + if (lookahead == '\r') SKIP(37) + if (lookahead != 0) ADVANCE(800); + END_STATE(); + case 360: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(246) if (lookahead == '\r') SKIP(38) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 332: + case 361: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(232) + lookahead == ' ') SKIP(243) if (lookahead == '\r') SKIP(39) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 333: + case 362: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(220) + lookahead == ' ') SKIP(252) if (lookahead == '\r') SKIP(40) - if (lookahead != 0) ADVANCE(724); - END_STATE(); - case 334: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(229) - if (lookahead == '\r') SKIP(41) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 335: + case 363: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(230) - if (lookahead == '\r') SKIP(45) - if (lookahead != 0) ADVANCE(724); + lookahead == ' ') SKIP(244) + if (lookahead == '\r') SKIP(42) + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 336: + case 364: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(159) + lookahead == ' ') SKIP(240) if (lookahead == '\r') SKIP(46) - if (lookahead != 0) ADVANCE(724); - END_STATE(); - case 337: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(160) - if (lookahead == '\r') SKIP(49) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 338: + case 365: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(226) + lookahead == ' ') SKIP(253) if (lookahead == '\r') SKIP(50) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 339: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(162) - if (lookahead == '\r') SKIP(51) - if (lookahead != 0) ADVANCE(724); - END_STATE(); - case 340: + case 366: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(221) + lookahead == ' ') SKIP(219) if (lookahead == '\r') SKIP(53) - if (lookahead != 0) ADVANCE(724); END_STATE(); - case 341: + case 367: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(224) + lookahead == ' ') SKIP(217) if (lookahead == '\r') SKIP(55) - if (lookahead != 0) ADVANCE(724); END_STATE(); - case 342: + case 368: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(204) + lookahead == ' ') SKIP(223) if (lookahead == '\r') SKIP(56) END_STATE(); - case 343: + case 369: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(202) + lookahead == ' ') SKIP(220) if (lookahead == '\r') SKIP(57) END_STATE(); - case 344: + case 370: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(227) - if (lookahead == '\r') SKIP(59) - if (lookahead != 0) ADVANCE(724); + lookahead == ' ') SKIP(199) + if (lookahead == '\r') SKIP(58) + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 345: + case 371: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(206) - if (lookahead == '\r') SKIP(60) + lookahead == ' ') SKIP(216) + if (lookahead == '\r') SKIP(59) END_STATE(); - case 346: + case 372: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(205) - if (lookahead == '\r') SKIP(61) + lookahead == ' ') SKIP(182) + if (lookahead == '\r') SKIP(60) + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 347: + case 373: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(201) + lookahead == ' ') SKIP(222) if (lookahead == '\r') SKIP(62) END_STATE(); - case 348: + case 374: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(168) + lookahead == ' ') SKIP(142) if (lookahead == '\r') SKIP(63) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 349: + case 375: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(191) - if (lookahead == '\r') SKIP(64) - if (lookahead != 0) ADVANCE(724); + lookahead == ' ') SKIP(250) + if (lookahead == '\r') SKIP(67) + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 350: + case 376: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(234) + lookahead == ' ') SKIP(183) + if (lookahead == '\r') SKIP(70) + if (lookahead != 0) ADVANCE(800); + END_STATE(); + case 377: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(72) if (lookahead == '\r') SKIP(71) - if (lookahead != 0) ADVANCE(724); END_STATE(); - case 351: + case 378: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(73) - if (lookahead == '\r') SKIP(72) + lookahead == ' ') SKIP(248) + if (lookahead == '\r') SKIP(77) + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 352: + case 379: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(169) - if (lookahead == '\r') SKIP(79) - if (lookahead != 0) ADVANCE(724); + lookahead == ' ') SKIP(255) + if (lookahead == '\r') SKIP(78) + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 353: + case 380: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(237) + lookahead == ' ') SKIP(224) if (lookahead == '\r') SKIP(80) - if (lookahead != 0) ADVANCE(724); END_STATE(); - case 354: + case 381: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(209) + lookahead == ' ') SKIP(225) if (lookahead == '\r') SKIP(81) END_STATE(); - case 355: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(208) - if (lookahead == '\r') SKIP(83) - END_STATE(); - case 356: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(74) - if (lookahead == '\r') SKIP(86) - END_STATE(); - case 357: + case 382: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(235) - if (lookahead == '\r') SKIP(87) - if (lookahead != 0) ADVANCE(724); + lookahead == ' ') SKIP(73) + if (lookahead == '\r') SKIP(88) END_STATE(); - case 358: + case 383: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(238) + lookahead == ' ') SKIP(256) if (lookahead == '\r') SKIP(89) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 359: + case 384: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(76) + lookahead == ' ') SKIP(75) if (lookahead == '\r') SKIP(90) END_STATE(); - case 360: + case 385: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(236) + lookahead == ' ') SKIP(251) if (lookahead == '\r') SKIP(91) END_STATE(); - case 361: + case 386: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(75) + lookahead == ' ') SKIP(258) if (lookahead == '\r') SKIP(92) END_STATE(); - case 362: + case 387: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(219) + lookahead == ' ') SKIP(232) if (lookahead == '\r') SKIP(93) END_STATE(); - case 363: + case 388: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(241) + lookahead == ' ') SKIP(260) if (lookahead == '\r') SKIP(94) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 364: + case 389: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(218) + lookahead == ' ') SKIP(235) if (lookahead == '\r') SKIP(95) END_STATE(); - case 365: + case 390: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(612); - if (lookahead == '\r') ADVANCE(608); - if (lookahead != 0) ADVANCE(613); + lookahead == ' ') ADVANCE(666); + if (lookahead == '\r') ADVANCE(660); + if (lookahead != 0) ADVANCE(668); END_STATE(); - case 366: + case 391: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(240) - if (lookahead == '\r') SKIP(101) - if (lookahead != 0) ADVANCE(724); + lookahead == ' ') SKIP(74) + if (lookahead == '\r') SKIP(99) END_STATE(); - case 367: + case 392: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(78) + lookahead == ' ') SKIP(76) if (lookahead == '\r') SKIP(102) END_STATE(); - case 368: + case 393: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(77) + lookahead == ' ') SKIP(259) if (lookahead == '\r') SKIP(103) END_STATE(); - case 369: + case 394: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(242) + lookahead == ' ') SKIP(262) if (lookahead == '\r') SKIP(104) + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 370: + case 395: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(133) + lookahead == ' ') SKIP(261) if (lookahead == '\r') SKIP(105) - if (lookahead != 0) ADVANCE(724); END_STATE(); - case 371: + case 396: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(177) + lookahead == ' ') SKIP(143) if (lookahead == '\r') SKIP(106) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 372: + case 397: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(175) + lookahead == ' ') SKIP(190) if (lookahead == '\r') SKIP(107) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 373: + case 398: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(136) - if (lookahead == '\r') SKIP(110) - if (lookahead != 0) ADVANCE(724); + lookahead == ' ') SKIP(188) + if (lookahead == '\r') SKIP(108) + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 374: + case 399: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(144) + lookahead == ' ') SKIP(146) if (lookahead == '\r') SKIP(111) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 375: + case 400: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(161) + lookahead == ' ') SKIP(208) if (lookahead == '\r') SKIP(112) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 376: + case 401: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(164) + lookahead == ' ') SKIP(176) if (lookahead == '\r') SKIP(113) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 377: + case 402: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(166) + lookahead == ' ') SKIP(177) if (lookahead == '\r') SKIP(114) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 378: + case 403: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(163) + lookahead == ' ') SKIP(170) if (lookahead == '\r') SKIP(115) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 379: + case 404: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(165) - if (lookahead == '\r') SKIP(117) - if (lookahead != 0) ADVANCE(724); + lookahead == ' ') SKIP(172) + if (lookahead == '\r') SKIP(116) + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 380: + case 405: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(167) + lookahead == ' ') SKIP(179) + if (lookahead == '\r') SKIP(117) + if (lookahead != 0) ADVANCE(800); + END_STATE(); + case 406: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(174) if (lookahead == '\r') SKIP(119) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 381: + case 407: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(233) + lookahead == ' ') SKIP(178) if (lookahead == '\r') SKIP(120) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 382: + case 408: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(231) + lookahead == ' ') SKIP(180) + if (lookahead == '\r') SKIP(121) + if (lookahead != 0) ADVANCE(800); + END_STATE(); + case 409: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(181) if (lookahead == '\r') SKIP(123) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 383: + case 410: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(222) + lookahead == ' ') SKIP(247) if (lookahead == '\r') SKIP(124) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 384: + case 411: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(228) + lookahead == ' ') SKIP(241) if (lookahead == '\r') SKIP(125) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 385: + case 412: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(170) + lookahead == ' ') SKIP(245) + if (lookahead == '\r') SKIP(126) + if (lookahead != 0) ADVANCE(800); + END_STATE(); + case 413: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(238) if (lookahead == '\r') SKIP(127) - if (lookahead != 0) ADVANCE(724); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 386: + case 414: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(178) - if (lookahead == '\r') SKIP(128) - if (lookahead != 0) ADVANCE(724); + lookahead == ' ') SKIP(254) + if (lookahead == '\r') SKIP(130) + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 387: + case 415: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(225) - if (lookahead == '\r') SKIP(131) - if (lookahead != 0) ADVANCE(724); + lookahead == ' ') SKIP(184) + if (lookahead == '\r') SKIP(132) + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 388: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(625); + case 416: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(249) + if (lookahead == '\r') SKIP(133) + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 389: + case 417: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(191) + if (lookahead == '\r') SKIP(134) + if (lookahead != 0) ADVANCE(800); + END_STATE(); + case 418: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(150) + if (lookahead == '\r') SKIP(136) + if (lookahead != 0) ADVANCE(800); + END_STATE(); + case 419: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(242) + if (lookahead == '\r') SKIP(137) + if (lookahead != 0) ADVANCE(800); + END_STATE(); + case 420: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(154) + if (lookahead == '\r') SKIP(140) + if (lookahead != 0) ADVANCE(800); + END_STATE(); + case 421: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(239) + if (lookahead == '\r') SKIP(141) + if (lookahead != 0) ADVANCE(800); + END_STATE(); + case 422: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(680); + END_STATE(); + case 423: if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(724); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(800); END_STATE(); - case 390: + case 424: if (lookahead != 0 && - lookahead != '\r') ADVANCE(613); - if (lookahead == '\r') ADVANCE(614); + lookahead != '\r') ADVANCE(668); + if (lookahead == '\r') ADVANCE(669); END_STATE(); - case 391: - if (eof) ADVANCE(408); - if (lookahead == '\n') ADVANCE(412); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '&') ADVANCE(580); + case 425: + if (eof) ADVANCE(442); + if (lookahead == '\n') ADVANCE(580); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '(') ADVANCE(269); if (lookahead == ')') ADVANCE(540); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '>') ADVANCE(535); + if (lookahead == '-') ADVANCE(280); + if (lookahead == '0') ADVANCE(679); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(528); + if (lookahead == '>') ADVANCE(534); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') SKIP(406) - if (lookahead == '`') ADVANCE(645); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') SKIP(440) + if (lookahead == '`') ADVANCE(718); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(391) + lookahead == ' ') SKIP(425) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(681); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); - case 392: - if (eof) ADVANCE(408); - if (lookahead == '\n') ADVANCE(412); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '&') ADVANCE(577); + case 426: + if (eof) ADVANCE(442); + if (lookahead == '\n') ADVANCE(580); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '&') ADVANCE(631); if (lookahead == ')') ADVANCE(540); - if (lookahead == ';') ADVANCE(461); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(528); + if (lookahead == '>') ADVANCE(534); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') SKIP(407) - if (lookahead == '`') ADVANCE(263); - if (lookahead == 'i') ADVANCE(266); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') SKIP(441) + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(392) + lookahead == ' ') SKIP(426) END_STATE(); - case 393: - if (eof) ADVANCE(408); - if (lookahead == '\n') SKIP(391) - END_STATE(); - case 394: - if (eof) ADVANCE(408); - if (lookahead == '\n') SKIP(392) + case 427: + if (eof) ADVANCE(442); + if (lookahead == '\n') SKIP(425) END_STATE(); - case 395: - if (eof) ADVANCE(408); - if (lookahead == '\n') ADVANCE(422); - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(305); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '|') ADVANCE(550); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(395) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + case 428: + if (eof) ADVANCE(442); + if (lookahead == '\n') SKIP(426) END_STATE(); - case 396: - if (eof) ADVANCE(408); - if (lookahead == '\n') ADVANCE(428); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(619); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); + case 429: + if (eof) ADVANCE(442); + if (lookahead == '\n') ADVANCE(594); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(794); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(325); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(396) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(621); + lookahead == ' ') SKIP(429) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(657); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - lookahead != '(') ADVANCE(724); + lookahead != ')') ADVANCE(800); END_STATE(); - case 397: - if (eof) ADVANCE(408); - if (lookahead == '\n') ADVANCE(429); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ';') ADVANCE(461); + case 430: + if (eof) ADVANCE(442); + if (lookahead == '\n') ADVANCE(595); + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == ';') ADVANCE(450); if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(718); if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(334); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(551); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(430) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + END_STATE(); + case 431: + if (eof) ADVANCE(442); + if (lookahead == '\n') ADVANCE(600); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == ')') ADVANCE(540); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(674); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(301); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(354); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(397) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); + lookahead == ' ') SKIP(431) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); - if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(724); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 398: - if (eof) ADVANCE(408); - if (lookahead == '\n') ADVANCE(434); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); + case 432: + if (eof) ADVANCE(442); + if (lookahead == '\n') ADVANCE(603); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(718); - if (lookahead == '>') ADVANCE(534); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(794); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(327); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(355); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(398) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0 && - lookahead != '(') ADVANCE(724); + lookahead == ' ') SKIP(432) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 399: - if (eof) ADVANCE(408); - if (lookahead == '\n') ADVANCE(437); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); + case 433: + if (eof) ADVANCE(442); + if (lookahead == '\n') ADVANCE(607); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(302); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(331); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(399) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); + lookahead == ' ') SKIP(433) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(724); + lookahead != ')') ADVANCE(800); END_STATE(); - case 400: - if (eof) ADVANCE(408); - if (lookahead == '\n') ADVANCE(440); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); + case 434: + if (eof) ADVANCE(442); + if (lookahead == '\n') ADVANCE(610); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(358); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(400) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0 && - lookahead != '(') ADVANCE(724); + lookahead == ' ') SKIP(434) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 401: - if (eof) ADVANCE(408); - if (lookahead == '\n') ADVANCE(445); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); + case 435: + if (eof) ADVANCE(442); + if (lookahead == '\n') ADVANCE(616); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); if (lookahead == '(') ADVANCE(539); if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(718); - if (lookahead == '>') ADVANCE(534); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(794); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(339); - if (lookahead == '`') ADVANCE(645); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(406); + if (lookahead == '`') ADVANCE(718); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(401) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0) ADVANCE(724); + lookahead == ' ') SKIP(435) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 402: - if (eof) ADVANCE(408); - if (lookahead == '\n') ADVANCE(449); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); + case 436: + if (eof) ADVANCE(442); + if (lookahead == '\n') ADVANCE(621); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(619); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(674); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(377); - if (lookahead == '`') ADVANCE(645); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(405); + if (lookahead == '`') ADVANCE(718); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(402) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(621); + lookahead == ' ') SKIP(436) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(657); - if (lookahead != 0 && - lookahead != '(') ADVANCE(724); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 403: - if (eof) ADVANCE(408); - if (lookahead == '\n') ADVANCE(450); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); + case 437: + if (eof) ADVANCE(442); + if (lookahead == '\n') ADVANCE(623); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(603); - if (lookahead == '\\') ADVANCE(380); - if (lookahead == '`') ADVANCE(645); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(657); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == '`') ADVANCE(718); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(403) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0 && - lookahead != '(') ADVANCE(724); + lookahead == ' ') SKIP(437) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 404: - if (eof) ADVANCE(408); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(579); - if (lookahead == '\'') ADVANCE(246); + case 438: + if (eof) ADVANCE(442); + if (lookahead == '!') ADVANCE(561); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(687); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(514); + if (lookahead == '&') ADVANCE(630); + if (lookahead == '\'') ADVANCE(266); if (lookahead == '(') ADVANCE(539); if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(511); - if (lookahead == '+') ADVANCE(589); - if (lookahead == ',') ADVANCE(635); - if (lookahead == '-') ADVANCE(590); - if (lookahead == '/') ADVANCE(634); - if (lookahead == '0') ADVANCE(709); - if (lookahead == ':') ADVANCE(586); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(464); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); - if (lookahead == '[') ADVANCE(564); - if (lookahead == '\\') ADVANCE(307); - if (lookahead == ']') ADVANCE(565); - if (lookahead == '^') ADVANCE(637); - if (lookahead == '_') ADVANCE(712); - if (lookahead == '`') ADVANCE(645); - if (lookahead == 'e') ADVANCE(722); - if (lookahead == 'i') ADVANCE(721); - if (lookahead == '{') ADVANCE(556); - if (lookahead == '|') ADVANCE(549); - if (lookahead == '}') ADVANCE(633); - if (lookahead == '~') ADVANCE(588); + if (lookahead == '*') ADVANCE(503); + if (lookahead == '+') ADVANCE(643); + if (lookahead == ',') ADVANCE(711); + if (lookahead == '-') ADVANCE(644); + if (lookahead == '/') ADVANCE(509); + if (lookahead == '0') ADVANCE(785); + if (lookahead == ':') ADVANCE(638); + if (lookahead == ';') ADVANCE(449); + if (lookahead == '<') ADVANCE(526); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '>') ADVANCE(532); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '[') ADVANCE(565); + if (lookahead == '\\') ADVANCE(336); + if (lookahead == ']') ADVANCE(566); + if (lookahead == '^') ADVANCE(713); + if (lookahead == '_') ADVANCE(788); + if (lookahead == '`') ADVANCE(718); + if (lookahead == 'e') ADVANCE(798); + if (lookahead == 'i') ADVANCE(797); + if (lookahead == '{') ADVANCE(557); + if (lookahead == '|') ADVANCE(550); + if (lookahead == '}') ADVANCE(689); + if (lookahead == '~') ADVANCE(642); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(404) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0) ADVANCE(724); + lookahead == ' ') SKIP(438) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 405: - if (eof) ADVANCE(408); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(651); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(261); - if (lookahead == '\'') ADVANCE(246); + case 439: + if (eof) ADVANCE(442); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(724); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(285); + if (lookahead == '\'') ADVANCE(266); if (lookahead == '(') ADVANCE(539); if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '0') ADVANCE(618); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '[') ADVANCE(564); - if (lookahead == '\\') ADVANCE(308); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '0') ADVANCE(673); + if (lookahead == ';') ADVANCE(265); + if (lookahead == '<') ADVANCE(525); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '[') ADVANCE(565); + if (lookahead == '\\') ADVANCE(337); if (lookahead == ']' || - lookahead == '}') ADVANCE(603); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '{') ADVANCE(556); + lookahead == '}') ADVANCE(657); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '{') ADVANCE(557); if (lookahead == '|') ADVANCE(548); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(405) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (lookahead != 0) ADVANCE(724); - END_STATE(); - case 406: - if (eof) ADVANCE(408); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(391) - if (lookahead == '\r') SKIP(393) - END_STATE(); - case 407: - if (eof) ADVANCE(408); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(392) - if (lookahead == '\r') SKIP(394) - END_STATE(); - case 408: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 409: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(409); - if (lookahead == '+') ADVANCE(589); - if (lookahead == '-') ADVANCE(590); - if (lookahead == '\\') ADVANCE(310); - if (lookahead == '~') ADVANCE(588); - END_STATE(); - case 410: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(410); - if (lookahead == '-') ADVANCE(506); - if (lookahead == '\\') ADVANCE(268); - END_STATE(); - case 411: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(411); - if (lookahead == '\\') ADVANCE(285); - END_STATE(); - case 412: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(412); - END_STATE(); - case 413: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(413); - if (lookahead == '-') ADVANCE(506); - if (lookahead == '\\') ADVANCE(317); - END_STATE(); - case 414: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(414); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '\\') ADVANCE(322); - END_STATE(); - case 415: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(415); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '\\') ADVANCE(270); - END_STATE(); - case 416: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(416); - if (lookahead == '+') ADVANCE(589); - if (lookahead == '-') ADVANCE(590); - if (lookahead == '\\') ADVANCE(370); - if (lookahead == '~') ADVANCE(588); - END_STATE(); - case 417: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(417); - if (lookahead == '-') ADVANCE(506); - if (lookahead == '\\') ADVANCE(300); - END_STATE(); - case 418: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(418); - if (lookahead == '\\') ADVANCE(286); - END_STATE(); - case 419: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(419); - if (lookahead == '-') ADVANCE(506); - if (lookahead == '\\') ADVANCE(373); - END_STATE(); - case 420: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(420); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '\\') ADVANCE(323); - END_STATE(); - case 421: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(421); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '\\') ADVANCE(271); - END_STATE(); - case 422: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(422); - if (lookahead == '\\') ADVANCE(305); - END_STATE(); - case 423: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(423); - if (lookahead == '-') ADVANCE(506); - if (lookahead == '\\') ADVANCE(318); - END_STATE(); - case 424: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(424); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '\\') ADVANCE(324); - END_STATE(); - case 425: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(425); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '\\') ADVANCE(272); - END_STATE(); - case 426: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(426); - if (lookahead == '\\') ADVANCE(287); - END_STATE(); - case 427: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(427); - if (lookahead == '-') ADVANCE(506); - if (lookahead == '\\') ADVANCE(374); - END_STATE(); - case 428: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(428); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '\\') ADVANCE(325); - END_STATE(); - case 429: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(429); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '\\') ADVANCE(301); - END_STATE(); - case 430: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(430); - if (lookahead == '\\') ADVANCE(288); - END_STATE(); - case 431: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(431); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '\\') ADVANCE(326); - END_STATE(); - case 432: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(432); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '\\') ADVANCE(273); - END_STATE(); - case 433: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(433); - if (lookahead == '\\') ADVANCE(293); - END_STATE(); - case 434: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(434); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '\\') ADVANCE(327); - END_STATE(); - case 435: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(435); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '\\') ADVANCE(274); - END_STATE(); - case 436: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(436); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '\\') ADVANCE(328); - END_STATE(); - case 437: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(437); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '\\') ADVANCE(302); - END_STATE(); - case 438: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(438); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '\\') ADVANCE(329); - END_STATE(); - case 439: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(439); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '\\') ADVANCE(275); + lookahead == ' ') SKIP(439) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 440: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(440); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '\\') ADVANCE(330); + if (eof) ADVANCE(442); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(425) + if (lookahead == '\r') SKIP(427) END_STATE(); case 441: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(441); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '\\') ADVANCE(289); + if (eof) ADVANCE(442); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(426) + if (lookahead == '\r') SKIP(428) END_STATE(); case 442: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(442); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '\\') ADVANCE(336); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 443: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(443); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '\\') ADVANCE(337); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 444: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(444); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '\\') ADVANCE(375); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 445: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(445); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '\\') ADVANCE(339); + ACCEPT_TOKEN(anon_sym_in); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); case 446: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(446); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '\\') ADVANCE(378); + ACCEPT_TOKEN(anon_sym_LPAREN_LPAREN); END_STATE(); case 447: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(447); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '\\') ADVANCE(376); + ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); END_STATE(); case 448: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(448); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '\\') ADVANCE(379); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 449: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(449); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '\\') ADVANCE(377); + ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == '&') ADVANCE(555); + if (lookahead == ';') ADVANCE(554); END_STATE(); case 450: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(450); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '\\') ADVANCE(380); + ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == ';') ADVANCE(553); END_STATE(); case 451: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(451); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '\\') ADVANCE(348); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 452: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(452); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '\\') ADVANCE(352); + ACCEPT_TOKEN(anon_sym_COMMA); + if (lookahead == ',') ADVANCE(707); END_STATE(); case 453: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(453); - if (lookahead == '-') ADVANCE(716); - if (lookahead == '\\') ADVANCE(385); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 454: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(481); + if (lookahead == '\\') ADVANCE(423); + if (lookahead == '~') ADVANCE(570); + if (!sym_word_character_set_2(lookahead)) ADVANCE(800); END_STATE(); case 455: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(480); END_STATE(); case 456: - ACCEPT_TOKEN(anon_sym_in); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(480); + if (lookahead == '~') ADVANCE(569); END_STATE(); case 457: - ACCEPT_TOKEN(anon_sym_LPAREN_LPAREN); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 458: - ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 459: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 460: - ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == '&') ADVANCE(554); - if (lookahead == ';') ADVANCE(553); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 461: - ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == ';') ADVANCE(552); + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 462: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 463: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 464: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(491); - if (lookahead == '\\') ADVANCE(389); - if (lookahead == '~') ADVANCE(569); - if (!sym_word_character_set_2(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 465: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(490); + ACCEPT_TOKEN(anon_sym_DASH_EQ); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 466: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(490); - if (lookahead == '~') ADVANCE(568); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 467: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_STAR_EQ); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 468: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 469: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 470: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 471: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 472: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); case 473: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 474: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 475: - ACCEPT_TOKEN(anon_sym_DASH_EQ); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 476: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 477: - ACCEPT_TOKEN(anon_sym_STAR_EQ); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 478: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 479: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 480: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 481: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 482: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 483: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 484: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 485: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 486: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 487: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 488: - ACCEPT_TOKEN(anon_sym_CARET_EQ); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '-') ADVANCE(576); + if (lookahead == '<') ADVANCE(627); END_STATE(); case 489: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '-') ADVANCE(576); + if (lookahead == '<') ADVANCE(627); + if (lookahead == '=') ADVANCE(474); END_STATE(); case 490: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(474); END_STATE(); case 491: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 492: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(475); END_STATE(); case 493: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 494: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(459); + if (lookahead == '=') ADVANCE(463); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_2(lookahead)) ADVANCE(800); END_STATE(); case 495: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(458); + if (lookahead == '=') ADVANCE(462); END_STATE(); case 496: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 497: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 498: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(575); - if (lookahead == '<') ADVANCE(576); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(461); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '=') ADVANCE(465); + if (lookahead == '\\') ADVANCE(423); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(801); + if (!sym_word_character_set_3(lookahead)) ADVANCE(800); END_STATE(); case 499: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(575); - if (lookahead == '<') ADVANCE(576); - if (lookahead == '=') ADVANCE(484); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(460); + if (lookahead == '=') ADVANCE(464); END_STATE(); case 500: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(484); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(460); + if (lookahead == '=') ADVANCE(464); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(801); END_STATE(); case 501: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '\\') ADVANCE(423); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(801); + if (!sym_word_character_set_4(lookahead)) ADVANCE(800); END_STATE(); case 502: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(485); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 503: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(469); - if (lookahead == '=') ADVANCE(473); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_2(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(521); + if (lookahead == '=') ADVANCE(467); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_2(lookahead)) ADVANCE(800); END_STATE(); case 504: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(468); - if (lookahead == '=') ADVANCE(472); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(523); + if (lookahead == '=') ADVANCE(467); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_2(lookahead)) ADVANCE(800); END_STATE(); case 505: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(520); + if (lookahead == '=') ADVANCE(466); END_STATE(); case 506: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(471); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '=') ADVANCE(475); - if (lookahead == '\\') ADVANCE(389); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(725); - if (!sym_word_character_set_3(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(522); + if (lookahead == '=') ADVANCE(466); END_STATE(); case 507: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(470); - if (lookahead == '=') ADVANCE(474); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 508: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(470); - if (lookahead == '=') ADVANCE(474); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(725); + ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); case 509: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '\\') ADVANCE(389); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(725); - if (!sym_word_character_set_4(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '#') ADVANCE(704); + if (lookahead == '%') ADVANCE(706); + if (lookahead == '/') ADVANCE(702); + if (lookahead == '=') ADVANCE(469); + if (lookahead == '\\') ADVANCE(423); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + (lookahead < '"' || ')' < lookahead) && + (lookahead < ';' || '>' < lookahead) && + (lookahead < '[' || ']' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(800); END_STATE(); case 510: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '#') ADVANCE(704); + if (lookahead == '%') ADVANCE(706); + if (lookahead == '/') ADVANCE(702); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_5(lookahead)) ADVANCE(800); END_STATE(); case 511: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(522); - if (lookahead == '=') ADVANCE(477); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_2(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '#') ADVANCE(703); + if (lookahead == '%') ADVANCE(705); + if (lookahead == '/') ADVANCE(701); END_STATE(); case 512: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(524); - if (lookahead == '=') ADVANCE(477); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_2(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '=') ADVANCE(469); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_2(lookahead)) ADVANCE(800); END_STATE(); case 513: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(521); - if (lookahead == '=') ADVANCE(476); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '=') ADVANCE(468); END_STATE(); case 514: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(523); - if (lookahead == '=') ADVANCE(476); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '%') ADVANCE(700); + if (lookahead == '=') ADVANCE(471); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_6(lookahead)) ADVANCE(800); END_STATE(); case 515: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '%') ADVANCE(700); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_7(lookahead)) ADVANCE(800); END_STATE(); case 516: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(479); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_2(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '%') ADVANCE(699); END_STATE(); case 517: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(478); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(471); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_2(lookahead)) ADVANCE(800); END_STATE(); case 518: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(481); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_2(lookahead)) ADVANCE(724); + if (lookahead == '=') ADVANCE(470); END_STATE(); case 519: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(480); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 520: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 521: ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(473); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_2(lookahead)) ADVANCE(800); END_STATE(); case 522: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(483); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_2(lookahead)) ADVANCE(724); + if (lookahead == '=') ADVANCE(472); END_STATE(); case 523: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(482); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 524: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') ADVANCE(573); END_STATE(); case 525: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(572); + if (lookahead == '&') ADVANCE(573); + if (lookahead == '(') ADVANCE(720); END_STATE(); case 526: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(572); - if (lookahead == '(') ADVANCE(647); + if (lookahead == '&') ADVANCE(573); + if (lookahead == '(') ADVANCE(720); + if (lookahead == '<') ADVANCE(489); + if (lookahead == '=') ADVANCE(484); END_STATE(); case 527: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(572); - if (lookahead == '(') ADVANCE(647); - if (lookahead == '<') ADVANCE(499); - if (lookahead == '=') ADVANCE(494); + if (lookahead == '&') ADVANCE(573); + if (lookahead == '(') ADVANCE(720); + if (lookahead == '<') ADVANCE(488); END_STATE(); case 528: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(572); - if (lookahead == '(') ADVANCE(647); - if (lookahead == '<') ADVANCE(498); + if (lookahead == '&') ADVANCE(573); + if (lookahead == '<') ADVANCE(488); END_STATE(); case 529: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(572); - if (lookahead == '<') ADVANCE(498); + if (lookahead == '(') ADVANCE(720); END_STATE(); case 530: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '(') ADVANCE(647); + if (lookahead == '(') ADVANCE(720); + if (lookahead == '<') ADVANCE(490); + if (lookahead == '=') ADVANCE(484); END_STATE(); case 531: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '(') ADVANCE(647); - if (lookahead == '<') ADVANCE(500); - if (lookahead == '=') ADVANCE(494); + if (lookahead == '<') ADVANCE(490); + if (lookahead == '=') ADVANCE(484); END_STATE(); case 532: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(500); - if (lookahead == '=') ADVANCE(494); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '&') ADVANCE(574); + if (lookahead == '(') ADVANCE(721); + if (lookahead == '=') ADVANCE(485); + if (lookahead == '>') ADVANCE(492); + if (lookahead == '|') ADVANCE(575); END_STATE(); case 533: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(573); - if (lookahead == '(') ADVANCE(648); - if (lookahead == '=') ADVANCE(495); - if (lookahead == '>') ADVANCE(502); - if (lookahead == '|') ADVANCE(574); + if (lookahead == '&') ADVANCE(574); + if (lookahead == '(') ADVANCE(721); + if (lookahead == '>') ADVANCE(491); + if (lookahead == '|') ADVANCE(575); END_STATE(); case 534: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(573); - if (lookahead == '(') ADVANCE(648); - if (lookahead == '>') ADVANCE(501); - if (lookahead == '|') ADVANCE(574); + if (lookahead == '&') ADVANCE(574); + if (lookahead == '>') ADVANCE(491); + if (lookahead == '|') ADVANCE(575); END_STATE(); case 535: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(573); - if (lookahead == '>') ADVANCE(501); - if (lookahead == '|') ADVANCE(574); + if (lookahead == '(') ADVANCE(721); END_STATE(); case 536: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '(') ADVANCE(648); + if (lookahead == '(') ADVANCE(721); + if (lookahead == '=') ADVANCE(485); + if (lookahead == '>') ADVANCE(492); END_STATE(); case 537: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '(') ADVANCE(648); - if (lookahead == '=') ADVANCE(495); - if (lookahead == '>') ADVANCE(502); + if (lookahead == '=') ADVANCE(485); + if (lookahead == '>') ADVANCE(492); END_STATE(); case 538: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(495); - if (lookahead == '>') ADVANCE(502); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 539: ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == '(') ADVANCE(446); END_STATE(); case 540: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 541: ACCEPT_TOKEN(anon_sym_RPAREN); - if (lookahead == ')') ADVANCE(458); + if (lookahead == ')') ADVANCE(447); END_STATE(); case 542: ACCEPT_TOKEN(aux_sym__c_word_token1); @@ -12706,17 +13411,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 544: ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(389); + if (lookahead == '\\') ADVANCE(423); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); - if (!sym_word_character_set_4(lookahead)) ADVANCE(724); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); + if (!sym_word_character_set_4(lookahead)) ADVANCE(800); END_STATE(); case 545: ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 546: ACCEPT_TOKEN(anon_sym_esac); @@ -12724,1897 +13429,2438 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); - if (!sym_word_character_set_4(lookahead)) ADVANCE(724); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (!sym_word_character_set_4(lookahead)) ADVANCE(800); END_STATE(); case 547: ACCEPT_TOKEN(anon_sym_esac); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); case 548: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 549: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(558); - if (lookahead == '=') ADVANCE(489); - if (lookahead == '|') ADVANCE(497); + if (lookahead == '&') ADVANCE(559); END_STATE(); case 550: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(558); - if (lookahead == '|') ADVANCE(497); + if (lookahead == '&') ADVANCE(559); + if (lookahead == '=') ADVANCE(479); + if (lookahead == '|') ADVANCE(487); END_STATE(); case 551: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(489); - if (lookahead == '|') ADVANCE(497); + if (lookahead == '&') ADVANCE(559); + if (lookahead == '|') ADVANCE(487); END_STATE(); case 552: - ACCEPT_TOKEN(anon_sym_SEMI_SEMI); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(479); + if (lookahead == '|') ADVANCE(487); END_STATE(); case 553: ACCEPT_TOKEN(anon_sym_SEMI_SEMI); - if (lookahead == '&') ADVANCE(555); END_STATE(); case 554: - ACCEPT_TOKEN(anon_sym_SEMI_AMP); + ACCEPT_TOKEN(anon_sym_SEMI_SEMI); + if (lookahead == '&') ADVANCE(556); END_STATE(); case 555: - ACCEPT_TOKEN(anon_sym_SEMI_SEMI_AMP); + ACCEPT_TOKEN(anon_sym_SEMI_AMP); END_STATE(); case 556: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_SEMI_SEMI_AMP); END_STATE(); case 557: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 558: - ACCEPT_TOKEN(anon_sym_PIPE_AMP); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 559: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_PIPE_AMP); END_STATE(); case 560: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(493); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_2(lookahead)) ADVANCE(724); END_STATE(); case 561: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(492); + if (lookahead == '=') ADVANCE(483); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_2(lookahead)) ADVANCE(800); END_STATE(); case 562: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + if (lookahead == '=') ADVANCE(482); END_STATE(); case 563: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 564: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(566); END_STATE(); case 565: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') ADVANCE(567); END_STATE(); case 566: - ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 567: - ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); case 568: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); + ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); case 569: ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); END_STATE(); case 570: - ACCEPT_TOKEN(anon_sym_AMP_GT); - if (lookahead == '>') ADVANCE(571); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 571: - ACCEPT_TOKEN(anon_sym_AMP_GT_GT); + ACCEPT_TOKEN(anon_sym_AMP_GT); + if (lookahead == '>') ADVANCE(572); END_STATE(); case 572: - ACCEPT_TOKEN(anon_sym_LT_AMP); + ACCEPT_TOKEN(anon_sym_AMP_GT_GT); END_STATE(); case 573: - ACCEPT_TOKEN(anon_sym_GT_AMP); + ACCEPT_TOKEN(anon_sym_LT_AMP); END_STATE(); case 574: - ACCEPT_TOKEN(anon_sym_GT_PIPE); + ACCEPT_TOKEN(anon_sym_GT_AMP); END_STATE(); case 575: - ACCEPT_TOKEN(anon_sym_LT_LT_DASH); + ACCEPT_TOKEN(anon_sym_GT_PIPE); END_STATE(); case 576: - ACCEPT_TOKEN(anon_sym_LT_LT_LT); + ACCEPT_TOKEN(anon_sym_LT_LT_DASH); END_STATE(); case 577: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(577); + if (lookahead == '+') ADVANCE(643); + if (lookahead == '-') ADVANCE(644); + if (lookahead == '\\') ADVANCE(339); + if (lookahead == '~') ADVANCE(642); END_STATE(); case 578: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(496); - if (lookahead == '=') ADVANCE(486); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(578); + if (lookahead == '-') ADVANCE(498); + if (lookahead == '\\') ADVANCE(292); END_STATE(); case 579: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(496); - if (lookahead == '=') ADVANCE(486); - if (lookahead == '>') ADVANCE(570); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(579); + if (lookahead == '\\') ADVANCE(311); END_STATE(); case 580: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(496); - if (lookahead == '>') ADVANCE(570); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(580); END_STATE(); case 581: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(488); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_2(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(581); + if (lookahead == '-') ADVANCE(498); + if (lookahead == '\\') ADVANCE(346); END_STATE(); case 582: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(487); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(582); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '\\') ADVANCE(350); END_STATE(); case 583: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(583); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '\\') ADVANCE(294); END_STATE(); case 584: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(584); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '\\') ADVANCE(374); END_STATE(); case 585: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(585); + if (lookahead == '+') ADVANCE(643); + if (lookahead == '-') ADVANCE(644); + if (lookahead == '\\') ADVANCE(396); + if (lookahead == '~') ADVANCE(642); END_STATE(); case 586: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '-') ADVANCE(641); - if (lookahead == '?') ADVANCE(640); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(586); + if (lookahead == '-') ADVANCE(498); + if (lookahead == '\\') ADVANCE(329); END_STATE(); case 587: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(587); + if (lookahead == '\\') ADVANCE(312); END_STATE(); case 588: - ACCEPT_TOKEN(aux_sym_unary_expression_token1); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(588); + if (lookahead == '-') ADVANCE(498); + if (lookahead == '\\') ADVANCE(399); END_STATE(); case 589: - ACCEPT_TOKEN(aux_sym_unary_expression_token1); - if (lookahead == '+') ADVANCE(588); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(589); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '\\') ADVANCE(351); END_STATE(); case 590: - ACCEPT_TOKEN(aux_sym_unary_expression_token1); - if (lookahead == '-') ADVANCE(588); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(725); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(590); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '\\') ADVANCE(295); END_STATE(); case 591: - ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN_LPAREN); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(591); + if (lookahead == '\\') ADVANCE(313); END_STATE(); case 592: - ACCEPT_TOKEN(aux_sym_brace_expression_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(592); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(592); + if (lookahead == '-') ADVANCE(498); + if (lookahead == '\\') ADVANCE(418); END_STATE(); case 593: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(593); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '\\') ADVANCE(352); END_STATE(); case 594: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(594); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '\\') ADVANCE(330); END_STATE(); case 595: - ACCEPT_TOKEN(anon_sym_RBRACE2); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(595); + if (lookahead == '\\') ADVANCE(334); END_STATE(); case 596: - ACCEPT_TOKEN(aux_sym_concatenation_token1); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(596); + if (lookahead == '-') ADVANCE(498); + if (lookahead == '\\') ADVANCE(420); END_STATE(); case 597: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(597); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '\\') ADVANCE(353); END_STATE(); case 598: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '\'') ADVANCE(247); - if (lookahead == '(') ADVANCE(643); - if (lookahead == '`') ADVANCE(646); - if (lookahead == '{') ADVANCE(632); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(598); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '\\') ADVANCE(296); END_STATE(); case 599: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(643); - if (lookahead == '`') ADVANCE(646); - if (lookahead == '{') ADVANCE(632); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(599); + if (lookahead == '\\') ADVANCE(314); END_STATE(); case 600: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(642); - if (lookahead == '`') ADVANCE(646); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(600); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '\\') ADVANCE(354); END_STATE(); case 601: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(642); - if (lookahead == '`') ADVANCE(646); - if (lookahead == '{') ADVANCE(632); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(601); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '\\') ADVANCE(297); END_STATE(); case 602: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '{') ADVANCE(632); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(602); + if (lookahead == '\\') ADVANCE(317); END_STATE(); case 603: - ACCEPT_TOKEN(sym__special_character); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(603); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '\\') ADVANCE(355); END_STATE(); case 604: - ACCEPT_TOKEN(sym__special_character); - if (lookahead == ']') ADVANCE(567); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(604); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '\\') ADVANCE(298); END_STATE(); case 605: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(605); + if (lookahead == '\\') ADVANCE(322); END_STATE(); case 606: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(610); - if (lookahead == '\\') ADVANCE(390); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '`') ADVANCE(613); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(606); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '\\') ADVANCE(356); END_STATE(); case 607: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(613); - if (lookahead == '\\') ADVANCE(649); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '`') ADVANCE(607); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(607); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '\\') ADVANCE(331); END_STATE(); case 608: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(612); - if (lookahead == '\\') ADVANCE(390); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '`') ADVANCE(613); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(608); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '\\') ADVANCE(357); END_STATE(); case 609: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(611); - if (lookahead == '\\') ADVANCE(390); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '`') ADVANCE(613); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(609); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '\\') ADVANCE(299); END_STATE(); case 610: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(296); - if (lookahead == '_') ADVANCE(714); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(610); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); - if (lookahead != 0 && - lookahead != '`') ADVANCE(613); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(610); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '\\') ADVANCE(358); END_STATE(); case 611: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '!') ADVANCE(559); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(298); - if (lookahead == '_') ADVANCE(714); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(611); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '`') ADVANCE(613); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(611); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '\\') ADVANCE(300); END_STATE(); case 612: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(607); - if (lookahead == '$') ADVANCE(599); - if (lookahead == '\\') ADVANCE(365); - if (lookahead == '`') ADVANCE(644); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(612); - if (lookahead != 0) ADVANCE(613); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(612); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '\\') ADVANCE(403); END_STATE(); case 613: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\\') ADVANCE(390); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '`') ADVANCE(613); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(613); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '\\') ADVANCE(302); END_STATE(); case 614: - ACCEPT_TOKEN(sym__string_content); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\' && - lookahead != '`') ADVANCE(613); - if (lookahead == '\\') ADVANCE(390); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(614); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '\\') ADVANCE(404); END_STATE(); case 615: - ACCEPT_TOKEN(sym_raw_string); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(615); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '\\') ADVANCE(315); END_STATE(); case 616: - ACCEPT_TOKEN(sym_ansi_c_string); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(616); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '\\') ADVANCE(406); END_STATE(); case 617: - ACCEPT_TOKEN(sym_ansi_c_string); - if (lookahead == '\'') ADVANCE(616); - if (lookahead == '\\') ADVANCE(248); - if (lookahead != 0) ADVANCE(247); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(617); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '\\') ADVANCE(319); END_STATE(); case 618: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(629); - if (lookahead == '\\') ADVANCE(389); - if (lookahead == 'x') ADVANCE(723); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (!sym_word_character_set_5(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(618); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '\\') ADVANCE(401); END_STATE(); case 619: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(629); - if (lookahead == '\\') ADVANCE(389); - if (lookahead == 'x') ADVANCE(656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(621); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); - if (!sym_word_character_set_6(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(619); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '\\') ADVANCE(402); END_STATE(); case 620: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(629); - if (lookahead == '\\') ADVANCE(389); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (!sym_word_character_set_5(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(620); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '\\') ADVANCE(407); END_STATE(); case 621: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(629); - if (lookahead == '\\') ADVANCE(389); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(621); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); - if (!sym_word_character_set_6(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(621); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '\\') ADVANCE(405); END_STATE(); case 622: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(629); - if (lookahead == '\\') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(622); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); - if (!sym_word_character_set_6(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(622); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '\\') ADVANCE(408); END_STATE(); case 623: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(630); - if (lookahead == 'x') ADVANCE(388); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(625); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(623); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '\\') ADVANCE(409); END_STATE(); case 624: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(630); - if (lookahead == 'x') ADVANCE(667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(626); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(624); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '\\') ADVANCE(372); END_STATE(); case 625: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(630); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(625); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(625); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '\\') ADVANCE(376); END_STATE(); case 626: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(630); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(626); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(626); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '\\') ADVANCE(415); END_STATE(); case 627: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '\\') ADVANCE(389); - if (('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(627); - if (!sym_word_character_set_4(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_LT_LT_LT); END_STATE(); case 628: - ACCEPT_TOKEN(aux_sym_number_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(628); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 629: - ACCEPT_TOKEN(aux_sym_number_token2); - if (lookahead == '\\') ADVANCE(389); - if (('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(627); - if (!sym_word_character_set_4(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(486); + if (lookahead == '=') ADVANCE(476); END_STATE(); case 630: - ACCEPT_TOKEN(aux_sym_number_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(628); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(486); + if (lookahead == '=') ADVANCE(476); + if (lookahead == '>') ADVANCE(571); END_STATE(); case 631: - ACCEPT_TOKEN(anon_sym_POUND); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(486); + if (lookahead == '>') ADVANCE(571); END_STATE(); case 632: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(478); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_2(lookahead)) ADVANCE(800); END_STATE(); case 633: - ACCEPT_TOKEN(anon_sym_RBRACE3); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(477); END_STATE(); case 634: - ACCEPT_TOKEN(anon_sym_SLASH2); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '^') ADVANCE(708); END_STATE(); case 635: - ACCEPT_TOKEN(anon_sym_COMMA2); - if (lookahead == ',') ADVANCE(636); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 636: - ACCEPT_TOKEN(anon_sym_COMMA_COMMA); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 637: - ACCEPT_TOKEN(anon_sym_CARET2); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 638: - ACCEPT_TOKEN(anon_sym_CARET2); - if (lookahead == '^') ADVANCE(639); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '+') ADVANCE(695); + if (lookahead == '-') ADVANCE(693); + if (lookahead == '=') ADVANCE(691); + if (lookahead == '?') ADVANCE(697); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_2(lookahead)) ADVANCE(800); END_STATE(); case 639: - ACCEPT_TOKEN(anon_sym_CARET_CARET); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '+') ADVANCE(694); + if (lookahead == '-') ADVANCE(692); + if (lookahead == '=') ADVANCE(690); + if (lookahead == '?') ADVANCE(696); END_STATE(); case 640: - ACCEPT_TOKEN(anon_sym_COLON_QMARK); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '-') ADVANCE(693); + if (lookahead == '?') ADVANCE(697); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 641: - ACCEPT_TOKEN(anon_sym_COLON_DASH); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 642: - ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); + ACCEPT_TOKEN(aux_sym_unary_expression_token1); END_STATE(); case 643: - ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); - if (lookahead == '(') ADVANCE(591); + ACCEPT_TOKEN(aux_sym_unary_expression_token1); + if (lookahead == '+') ADVANCE(642); END_STATE(); case 644: - ACCEPT_TOKEN(anon_sym_BQUOTE); + ACCEPT_TOKEN(aux_sym_unary_expression_token1); + if (lookahead == '-') ADVANCE(642); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(801); END_STATE(); case 645: - ACCEPT_TOKEN(anon_sym_BQUOTE); - if (lookahead == '`') ADVANCE(596); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(263); + ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN_LPAREN); END_STATE(); case 646: - ACCEPT_TOKEN(anon_sym_DOLLAR_BQUOTE); + ACCEPT_TOKEN(aux_sym_brace_expression_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(646); END_STATE(); case 647: - ACCEPT_TOKEN(anon_sym_LT_LPAREN); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 648: - ACCEPT_TOKEN(anon_sym_GT_LPAREN); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 649: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(613); - if (lookahead == '\r') ADVANCE(607); - if (lookahead != 0) ADVANCE(607); + ACCEPT_TOKEN(anon_sym_RBRACE2); END_STATE(); case 650: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(652); - if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r')) ADVANCE(651); + ACCEPT_TOKEN(aux_sym_concatenation_token1); END_STATE(); case 651: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(651); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 652: - ACCEPT_TOKEN(sym__comment_word); - if (lookahead == '\\') ADVANCE(650); - if (!sym_word_character_set_1(lookahead)) ADVANCE(652); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '\'') ADVANCE(267); + if (lookahead == '(') ADVANCE(716); + if (lookahead == '`') ADVANCE(719); + if (lookahead == '{') ADVANCE(688); END_STATE(); case 653: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(389); - if (lookahead == 'a') ADVANCE(654); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(657); - if (!sym_word_character_set_4(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '(') ADVANCE(716); + if (lookahead == '`') ADVANCE(719); + if (lookahead == '{') ADVANCE(688); END_STATE(); case 654: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(389); - if (lookahead == 'c') ADVANCE(544); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); - if (!sym_word_character_set_4(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '(') ADVANCE(715); + if (lookahead == '`') ADVANCE(719); END_STATE(); case 655: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(389); - if (lookahead == 's') ADVANCE(653); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); - if (!sym_word_character_set_4(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '(') ADVANCE(715); + if (lookahead == '`') ADVANCE(719); + if (lookahead == '{') ADVANCE(688); END_STATE(); case 656: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(389); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(621); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); - if (!sym_word_character_set_4(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '{') ADVANCE(688); END_STATE(); case 657: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(389); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); - if (!sym_word_character_set_4(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(sym__special_character); END_STATE(); case 658: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(16); - if (lookahead == 'a') ADVANCE(659); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(662); - if (!sym_word_character_set_4(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(sym__special_character); + if (lookahead == ']') ADVANCE(568); END_STATE(); case 659: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(16); - if (lookahead == 'c') ADVANCE(546); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); - if (!sym_word_character_set_4(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 660: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(16); - if (lookahead == 's') ADVANCE(658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); - if (!sym_word_character_set_4(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\n') ADVANCE(666); + if (lookahead == '\\') ADVANCE(424); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '$' && + lookahead != '`') ADVANCE(668); END_STATE(); case 661: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(622); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); - if (!sym_word_character_set_4(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\n') ADVANCE(668); + if (lookahead == '\\') ADVANCE(722); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '$' && + lookahead != '`') ADVANCE(661); END_STATE(); case 662: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); - if (!sym_word_character_set_4(lookahead)) ADVANCE(724); + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\n') ADVANCE(664); + if (lookahead == '\\') ADVANCE(424); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '$' && + lookahead != '`') ADVANCE(668); END_STATE(); case 663: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'a') ADVANCE(664); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\n') ADVANCE(665); + if (lookahead == '\\') ADVANCE(424); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '$' && + lookahead != '`') ADVANCE(668); END_STATE(); case 664: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'c') ADVANCE(547); - if (('0' <= lookahead && lookahead <= '9') || + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(325); + if (lookahead == '_') ADVANCE(790); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(664); + if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + if (lookahead != 0 && + lookahead != '`') ADVANCE(668); END_STATE(); case 665: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'n') ADVANCE(456); - if (('0' <= lookahead && lookahead <= '9') || + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '!') ADVANCE(560); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(327); + if (lookahead == '_') ADVANCE(790); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(665); + if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '`') ADVANCE(668); END_STATE(); case 666: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 's') ADVANCE(663); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(661); + if (lookahead == '$') ADVANCE(653); + if (lookahead == '(') ADVANCE(667); + if (lookahead == '\\') ADVANCE(390); + if (lookahead == '`') ADVANCE(717); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(666); + if (lookahead != 0) ADVANCE(668); END_STATE(); case 667: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(626); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '(') ADVANCE(446); + if (lookahead == '\\') ADVANCE(424); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '$' && + lookahead != '`') ADVANCE(668); END_STATE(); case 668: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\\') ADVANCE(424); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '$' && + lookahead != '`') ADVANCE(668); END_STATE(); case 669: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(410); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(579); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(512); - if (lookahead == '+') ADVANCE(503); - if (lookahead == '-') ADVANCE(506); - if (lookahead == '/') ADVANCE(516); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(464); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); - if (lookahead == '\\') ADVANCE(268); - if (lookahead == '^') ADVANCE(581); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(549); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + ACCEPT_TOKEN(sym__string_content); if (lookahead != 0 && - lookahead != '(' && - (lookahead < '[' || '}' < lookahead)) ADVANCE(724); + lookahead != '"' && + lookahead != '$' && + lookahead != '\\' && + lookahead != '`') ADVANCE(668); + if (lookahead == '\\') ADVANCE(424); END_STATE(); case 670: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(411); - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(285); - if (lookahead == '_') ADVANCE(714); - if (lookahead == 'e') ADVANCE(666); - if (lookahead == '|') ADVANCE(550); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(66) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ACCEPT_TOKEN(sym_raw_string); END_STATE(); case 671: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(415); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(718); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); - if (lookahead == '\\') ADVANCE(270); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == 'e') ADVANCE(660); + ACCEPT_TOKEN(sym_ansi_c_string); + END_STATE(); + case 672: + ACCEPT_TOKEN(sym_ansi_c_string); + if (lookahead == '\'') ADVANCE(671); + if (lookahead == '\\') ADVANCE(268); + if (lookahead != 0) ADVANCE(267); + END_STATE(); + case 673: + ACCEPT_TOKEN(aux_sym_number_token1); + if (lookahead == '#') ADVANCE(684); + if (lookahead == '\\') ADVANCE(423); + if (lookahead == 'x') ADVANCE(799); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (!sym_word_character_set_8(lookahead)) ADVANCE(800); + END_STATE(); + case 674: + ACCEPT_TOKEN(aux_sym_number_token1); + if (lookahead == '#') ADVANCE(684); + if (lookahead == '\\') ADVANCE(423); + if (lookahead == 'x') ADVANCE(729); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(676); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); + if (!sym_word_character_set_9(lookahead)) ADVANCE(800); + END_STATE(); + case 675: + ACCEPT_TOKEN(aux_sym_number_token1); + if (lookahead == '#') ADVANCE(684); + if (lookahead == '\\') ADVANCE(423); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (!sym_word_character_set_8(lookahead)) ADVANCE(800); + END_STATE(); + case 676: + ACCEPT_TOKEN(aux_sym_number_token1); + if (lookahead == '#') ADVANCE(684); + if (lookahead == '\\') ADVANCE(423); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(676); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); + if (!sym_word_character_set_9(lookahead)) ADVANCE(800); + END_STATE(); + case 677: + ACCEPT_TOKEN(aux_sym_number_token1); + if (lookahead == '#') ADVANCE(684); + if (lookahead == '\\') ADVANCE(16); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (!sym_word_character_set_9(lookahead)) ADVANCE(800); + END_STATE(); + case 678: + ACCEPT_TOKEN(aux_sym_number_token1); + if (lookahead == '#') ADVANCE(685); + if (lookahead == 'x') ADVANCE(422); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(680); + END_STATE(); + case 679: + ACCEPT_TOKEN(aux_sym_number_token1); + if (lookahead == '#') ADVANCE(685); + if (lookahead == 'x') ADVANCE(740); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(681); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + END_STATE(); + case 680: + ACCEPT_TOKEN(aux_sym_number_token1); + if (lookahead == '#') ADVANCE(685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(680); + END_STATE(); + case 681: + ACCEPT_TOKEN(aux_sym_number_token1); + if (lookahead == '#') ADVANCE(685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(681); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + END_STATE(); + case 682: + ACCEPT_TOKEN(aux_sym_number_token1); + if (lookahead == '\\') ADVANCE(423); + if (('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(682); + if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + END_STATE(); + case 683: + ACCEPT_TOKEN(aux_sym_number_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(683); + END_STATE(); + case 684: + ACCEPT_TOKEN(aux_sym_number_token2); + if (lookahead == '\\') ADVANCE(423); + if (('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(682); + if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + END_STATE(); + case 685: + ACCEPT_TOKEN(aux_sym_number_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(683); + END_STATE(); + case 686: + ACCEPT_TOKEN(anon_sym_POUND); + END_STATE(); + case 687: + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == '#') ADVANCE(698); + END_STATE(); + case 688: + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + END_STATE(); + case 689: + ACCEPT_TOKEN(anon_sym_RBRACE3); + END_STATE(); + case 690: + ACCEPT_TOKEN(anon_sym_COLON_EQ); + END_STATE(); + case 691: + ACCEPT_TOKEN(anon_sym_COLON_EQ); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + END_STATE(); + case 692: + ACCEPT_TOKEN(anon_sym_COLON_DASH); + END_STATE(); + case 693: + ACCEPT_TOKEN(anon_sym_COLON_DASH); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + END_STATE(); + case 694: + ACCEPT_TOKEN(anon_sym_COLON_PLUS); + END_STATE(); + case 695: + ACCEPT_TOKEN(anon_sym_COLON_PLUS); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + END_STATE(); + case 696: + ACCEPT_TOKEN(anon_sym_COLON_QMARK); + END_STATE(); + case 697: + ACCEPT_TOKEN(anon_sym_COLON_QMARK); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + END_STATE(); + case 698: + ACCEPT_TOKEN(anon_sym_POUND_POUND); + END_STATE(); + case 699: + ACCEPT_TOKEN(anon_sym_PERCENT_PERCENT); + END_STATE(); + case 700: + ACCEPT_TOKEN(anon_sym_PERCENT_PERCENT); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + END_STATE(); + case 701: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + END_STATE(); + case 702: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + END_STATE(); + case 703: + ACCEPT_TOKEN(anon_sym_SLASH_POUND); + END_STATE(); + case 704: + ACCEPT_TOKEN(anon_sym_SLASH_POUND); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + END_STATE(); + case 705: + ACCEPT_TOKEN(anon_sym_SLASH_PERCENT); + END_STATE(); + case 706: + ACCEPT_TOKEN(anon_sym_SLASH_PERCENT); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + END_STATE(); + case 707: + ACCEPT_TOKEN(anon_sym_COMMA_COMMA); + END_STATE(); + case 708: + ACCEPT_TOKEN(anon_sym_CARET_CARET); + END_STATE(); + case 709: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 710: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + END_STATE(); + case 711: + ACCEPT_TOKEN(anon_sym_COMMA2); + if (lookahead == ',') ADVANCE(712); + END_STATE(); + case 712: + ACCEPT_TOKEN(anon_sym_COMMA_COMMA2); + END_STATE(); + case 713: + ACCEPT_TOKEN(anon_sym_CARET2); + if (lookahead == '^') ADVANCE(714); + END_STATE(); + case 714: + ACCEPT_TOKEN(anon_sym_CARET_CARET2); + END_STATE(); + case 715: + ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); + END_STATE(); + case 716: + ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); + if (lookahead == '(') ADVANCE(645); + END_STATE(); + case 717: + ACCEPT_TOKEN(anon_sym_BQUOTE); + END_STATE(); + case 718: + ACCEPT_TOKEN(anon_sym_BQUOTE); + if (lookahead == '`') ADVANCE(650); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(287); + END_STATE(); + case 719: + ACCEPT_TOKEN(anon_sym_DOLLAR_BQUOTE); + END_STATE(); + case 720: + ACCEPT_TOKEN(anon_sym_LT_LPAREN); + END_STATE(); + case 721: + ACCEPT_TOKEN(anon_sym_GT_LPAREN); + END_STATE(); + case 722: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(668); + if (lookahead == '\r') ADVANCE(661); + if (lookahead != 0) ADVANCE(661); + END_STATE(); + case 723: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(725); + if (lookahead == '\t' || + (11 <= lookahead && lookahead <= '\r')) ADVANCE(724); + END_STATE(); + case 724: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(724); + END_STATE(); + case 725: + ACCEPT_TOKEN(sym__comment_word); + if (lookahead == '\\') ADVANCE(723); + if (!sym_word_character_set_1(lookahead)) ADVANCE(725); + END_STATE(); + case 726: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (lookahead == '\\') ADVANCE(423); + if (lookahead == 'a') ADVANCE(727); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(730); + if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + END_STATE(); + case 727: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (lookahead == '\\') ADVANCE(423); + if (lookahead == 'c') ADVANCE(544); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); + if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + END_STATE(); + case 728: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (lookahead == '\\') ADVANCE(423); + if (lookahead == 's') ADVANCE(726); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); + if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + END_STATE(); + case 729: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (lookahead == '\\') ADVANCE(423); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(676); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); + if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + END_STATE(); + case 730: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (lookahead == '\\') ADVANCE(423); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); + if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + END_STATE(); + case 731: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (lookahead == '\\') ADVANCE(16); + if (lookahead == 'a') ADVANCE(732); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + END_STATE(); + case 732: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (lookahead == '\\') ADVANCE(16); + if (lookahead == 'c') ADVANCE(546); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + END_STATE(); + case 733: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (lookahead == '\\') ADVANCE(16); + if (lookahead == 's') ADVANCE(731); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + END_STATE(); + case 734: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (lookahead == '\\') ADVANCE(16); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + END_STATE(); + case 735: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (lookahead == '\\') ADVANCE(16); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + END_STATE(); + case 736: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (lookahead == 'a') ADVANCE(737); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(741); + END_STATE(); + case 737: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (lookahead == 'c') ADVANCE(547); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + END_STATE(); + case 738: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (lookahead == 'n') ADVANCE(445); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + END_STATE(); + case 739: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (lookahead == 's') ADVANCE(736); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + END_STATE(); + case 740: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(681); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + END_STATE(); + case 741: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + END_STATE(); + case 742: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + if (lookahead == '\n') ADVANCE(578); + if (lookahead == '!') ADVANCE(561); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(517); + if (lookahead == '&') ADVANCE(630); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == ')') ADVANCE(541); + if (lookahead == '*') ADVANCE(504); + if (lookahead == '+') ADVANCE(494); + if (lookahead == '-') ADVANCE(498); + if (lookahead == '/') ADVANCE(512); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(526); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '>') ADVANCE(532); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '\\') ADVANCE(292); + if (lookahead == '^') ADVANCE(632); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); if (lookahead == '|') ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(132) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); + lookahead == ' ') SKIP(12) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - lookahead != '(' && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(724); + (lookahead < '[' || '}' < lookahead)) ADVANCE(800); END_STATE(); - case 672: + case 743: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(417); + if (lookahead == '\n') ADVANCE(579); if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(579); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(512); - if (lookahead == '+') ADVANCE(503); - if (lookahead == '-') ADVANCE(506); - if (lookahead == '/') ADVANCE(516); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ';') ADVANCE(461); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == ';') ADVANCE(449); + if (lookahead == '<') ADVANCE(528); + if (lookahead == '>') ADVANCE(534); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(311); + if (lookahead == '_') ADVANCE(790); + if (lookahead == 'e') ADVANCE(739); + if (lookahead == '|') ADVANCE(551); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(64) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + END_STATE(); + case 744: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + if (lookahead == '\n') ADVANCE(583); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ';') ADVANCE(449); if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(464); + if (lookahead == '=') ADVANCE(794); if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); - if (lookahead == '\\') ADVANCE(300); - if (lookahead == '^') ADVANCE(581); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(549); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '\\') ADVANCE(294); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == 'e') ADVANCE(733); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(134) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); + lookahead == ' ') SKIP(139) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - lookahead != '(' && - (lookahead < '[' || '}' < lookahead)) ADVANCE(724); + lookahead != ')' && + (lookahead < '[' || ']' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(800); END_STATE(); - case 673: + case 745: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(418); - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(286); - if (lookahead == '_') ADVANCE(714); + if (lookahead == '\n') ADVANCE(586); + if (lookahead == '!') ADVANCE(561); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(517); + if (lookahead == '&') ADVANCE(630); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == ')') ADVANCE(540); + if (lookahead == '*') ADVANCE(504); + if (lookahead == '+') ADVANCE(494); + if (lookahead == '-') ADVANCE(498); + if (lookahead == '/') ADVANCE(512); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(526); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '>') ADVANCE(532); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '\\') ADVANCE(329); + if (lookahead == '^') ADVANCE(632); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); if (lookahead == '|') ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(135) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + lookahead == ' ') SKIP(144) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (lookahead != 0 && + (lookahead < '[' || '}' < lookahead)) ADVANCE(800); END_STATE(); - case 674: + case 746: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(421); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ';') ADVANCE(460); + if (lookahead == '\n') ADVANCE(587); + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == ';') ADVANCE(449); if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(718); if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); - if (lookahead == '\\') ADVANCE(271); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(312); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(551); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(145) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + END_STATE(); + case 747: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + if (lookahead == '\n') ADVANCE(590); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ';') ADVANCE(449); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(794); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '\\') ADVANCE(295); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(138) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); + lookahead == ' ') SKIP(148) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - lookahead != '(' && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(724); + (lookahead < '{' || '}' < lookahead)) ADVANCE(800); END_STATE(); - case 675: + case 748: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(422); - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(305); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '\n') ADVANCE(591); + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(528); + if (lookahead == '>') ADVANCE(534); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(313); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(139) + lookahead == ' ') SKIP(149) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); - case 676: + case 749: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(425); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); - if (lookahead == '\\') ADVANCE(272); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == 'e') ADVANCE(660); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '\n') ADVANCE(594); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(794); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(142) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); + lookahead == ' ') SKIP(152) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - lookahead != '(' && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(724); + (lookahead < '{' || '}' < lookahead)) ADVANCE(800); END_STATE(); - case 677: + case 750: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(426); - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '&') ADVANCE(580); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(287); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '\n') ADVANCE(595); + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(528); + if (lookahead == '>') ADVANCE(534); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(334); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(143) + lookahead == ' ') SKIP(153) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); - case 678: + case 751: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(429); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ';') ADVANCE(461); + if (lookahead == '\n') ADVANCE(598); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == ')') ADVANCE(540); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(794); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '\\') ADVANCE(296); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(156) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (lookahead != 0 && + (lookahead < '[' || ']' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(800); + END_STATE(); + case 752: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + if (lookahead == '\n') ADVANCE(599); + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '&') ADVANCE(631); + if (lookahead == ')') ADVANCE(540); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == ';') ADVANCE(450); if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(718); if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); - if (lookahead == '\\') ADVANCE(301); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(314); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(146) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); + lookahead == ' ') SKIP(157) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + END_STATE(); + case 753: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + if (lookahead == '\n') ADVANCE(601); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ';') ADVANCE(449); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '\\') ADVANCE(297); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == 'e') ADVANCE(733); + if (lookahead == '|') ADVANCE(551); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(159) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - lookahead != '(' && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(724); + (lookahead < '{' || '}' < lookahead)) ADVANCE(800); END_STATE(); - case 679: + case 754: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(430); - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(288); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '\n') ADVANCE(602); + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '<') ADVANCE(528); + if (lookahead == '>') ADVANCE(534); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(317); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(147) + lookahead == ' ') SKIP(160) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); - case 680: + case 755: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(432); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(718); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); - if (lookahead == '\\') ADVANCE(273); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '\n') ADVANCE(604); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ';') ADVANCE(449); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '\\') ADVANCE(298); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(149) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); + lookahead == ' ') SKIP(162) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - lookahead != '(' && + lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(724); + (lookahead < '{' || '}' < lookahead)) ADVANCE(800); END_STATE(); - case 681: + case 756: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(433); - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '&') ADVANCE(577); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(293); - if (lookahead == '_') ADVANCE(714); - if (lookahead == 'i') ADVANCE(665); + if (lookahead == '\n') ADVANCE(605); + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '&') ADVANCE(628); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(322); + if (lookahead == '_') ADVANCE(790); + if (lookahead == 'i') ADVANCE(738); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(150) + lookahead == ' ') SKIP(163) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); - case 682: + case 757: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(435); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ';') ADVANCE(460); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); - if (lookahead == '\\') ADVANCE(274); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '\n') ADVANCE(607); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '\\') ADVANCE(331); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(152) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); + lookahead == ' ') SKIP(165) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - lookahead != '(' && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(724); + (lookahead < '{' || '}' < lookahead)) ADVANCE(800); END_STATE(); - case 683: + case 758: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(437); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); + if (lookahead == '\n') ADVANCE(609); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(631); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == ')') ADVANCE(540); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '\\') ADVANCE(299); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(167) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (lookahead != 0 && + (lookahead < '[' || ']' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(800); + END_STATE(); + case 759: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + if (lookahead == '\n') ADVANCE(611); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(794); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '\\') ADVANCE(300); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(169) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (lookahead != 0 && + lookahead != ')' && + (lookahead < ';' || ']' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(800); + END_STATE(); + case 760: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + if (lookahead == '\n') ADVANCE(613); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); if (lookahead == '\\') ADVANCE(302); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(154) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); + lookahead == ' ') SKIP(171) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - lookahead != '(' && lookahead != ')' && + lookahead != ';' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(724); + (lookahead < '{' || '}' < lookahead)) ADVANCE(800); END_STATE(); - case 684: + case 761: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(439); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(580); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); - if (lookahead == '\\') ADVANCE(275); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '\n') ADVANCE(615); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(628); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '>') ADVANCE(271); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '\\') ADVANCE(315); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(156) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); + lookahead == ' ') SKIP(173) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - lookahead != '(' && + lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(724); + (lookahead < '{' || '}' < lookahead)) ADVANCE(800); END_STATE(); - case 685: + case 762: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(441); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(577); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ';') ADVANCE(461); - if (lookahead == '<') ADVANCE(249); - if (lookahead == '>') ADVANCE(250); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); - if (lookahead == '\\') ADVANCE(289); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); + if (lookahead == '\n') ADVANCE(617); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '>') ADVANCE(271); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '\\') ADVANCE(319); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(158) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); + lookahead == ' ') SKIP(175) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - lookahead != '(' && - lookahead != ')' && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(724); + (lookahead < '{' || '}' < lookahead)) ADVANCE(800); END_STATE(); - case 686: + case 763: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(579); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(512); - if (lookahead == '+') ADVANCE(503); - if (lookahead == '-') ADVANCE(506); - if (lookahead == '/') ADVANCE(516); - if (lookahead == '0') ADVANCE(710); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(464); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); - if (lookahead == '\\') ADVANCE(269); - if (lookahead == ']') ADVANCE(565); - if (lookahead == '^') ADVANCE(581); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(549); + if (lookahead == '!') ADVANCE(561); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(517); + if (lookahead == '&') ADVANCE(630); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(504); + if (lookahead == '+') ADVANCE(494); + if (lookahead == '-') ADVANCE(498); + if (lookahead == '/') ADVANCE(512); + if (lookahead == '0') ADVANCE(786); + if (lookahead == '<') ADVANCE(526); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '>') ADVANCE(532); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '\\') ADVANCE(293); + if (lookahead == ']') ADVANCE(566); + if (lookahead == '^') ADVANCE(632); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(172) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); + lookahead == ' ') SKIP(192) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - lookahead != '(' && lookahead != ')' && - (lookahead < ';' || '}' < lookahead)) ADVANCE(724); + (lookahead < ';' || '}' < lookahead)) ADVANCE(800); END_STATE(); - case 687: + case 764: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '%') ADVANCE(520); - if (lookahead == '\'') ADVANCE(246); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '%') ADVANCE(519); + if (lookahead == '\'') ADVANCE(266); if (lookahead == '(') ADVANCE(539); if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == ':') ADVANCE(586); - if (lookahead == ';') ADVANCE(459); - if (lookahead == '<') ADVANCE(530); - if (lookahead == '=') ADVANCE(467); - if (lookahead == '>') ADVANCE(536); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); - if (lookahead == '\\') ADVANCE(283); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == ':') ADVANCE(640); + if (lookahead == ';') ADVANCE(448); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '=') ADVANCE(457); + if (lookahead == '>') ADVANCE(535); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '\\') ADVANCE(309); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); if (lookahead == '|') ADVANCE(548); - if (lookahead == '}') ADVANCE(633); + if (lookahead == '}') ADVANCE(689); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(179) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); + lookahead == ' ') SKIP(200) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && lookahead != '&' && (lookahead < '[' || ']' < lookahead) && - lookahead != '{') ADVANCE(724); + lookahead != '{') ADVANCE(800); END_STATE(); - case 688: + case 765: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(261); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); - if (lookahead == '\\') ADVANCE(284); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(285); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == '<') ADVANCE(525); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '\\') ADVANCE(310); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(180) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); + lookahead == ' ') SKIP(201) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - lookahead != '(' && lookahead != ')' && lookahead != ';' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(724); + (lookahead < '{' || '}' < lookahead)) ADVANCE(800); END_STATE(); - case 689: + case 766: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(244); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(718); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); - if (lookahead == '\\') ADVANCE(278); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(794); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '\\') ADVANCE(301); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(181) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); + lookahead == ' ') SKIP(202) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - lookahead != '(' && lookahead != ')' && (lookahead < ';' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(724); + (lookahead < '{' || '}' < lookahead)) ADVANCE(800); END_STATE(); - case 690: + case 767: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(244); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); - if (lookahead == '\\') ADVANCE(279); - if (lookahead == ']') ADVANCE(565); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '\\') ADVANCE(303); + if (lookahead == ']') ADVANCE(566); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(182) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); + lookahead == ' ') SKIP(203) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - lookahead != '(' && lookahead != ')' && lookahead != ';' && lookahead != '[' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(724); + (lookahead < '{' || '}' < lookahead)) ADVANCE(800); END_STATE(); - case 691: + case 768: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '&') ADVANCE(244); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); - if (lookahead == '\\') ADVANCE(281); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '>') ADVANCE(533); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '\\') ADVANCE(307); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(183) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); + lookahead == ' ') SKIP(204) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - lookahead != '(' && lookahead != ')' && lookahead != ';' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(724); + (lookahead < '{' || '}' < lookahead)) ADVANCE(800); END_STATE(); - case 692: + case 769: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(598); - if (lookahead == '\'') ADVANCE(246); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(539); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '>') ADVANCE(271); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); + if (lookahead == '}') ADVANCE(689); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(205) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '[' || ']' < lookahead) && + lookahead != '{' && + lookahead != '|') ADVANCE(800); + END_STATE(); + case 770: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + if (lookahead == '!') ADVANCE(563); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(652); + if (lookahead == '\'') ADVANCE(266); + if (lookahead == '(') ADVANCE(269); if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '-') ADVANCE(509); - if (lookahead == '0') ADVANCE(710); - if (lookahead == '<') ADVANCE(249); - if (lookahead == '>') ADVANCE(250); - if (lookahead == '?') ADVANCE(584); - if (lookahead == '@') ADVANCE(708); - if (lookahead == '\\') ADVANCE(292); - if (lookahead == '_') ADVANCE(713); - if (lookahead == '`') ADVANCE(644); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '-') ADVANCE(501); + if (lookahead == '0') ADVANCE(786); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '>') ADVANCE(271); + if (lookahead == '?') ADVANCE(636); + if (lookahead == '@') ADVANCE(710); + if (lookahead == '\\') ADVANCE(320); + if (lookahead == '_') ADVANCE(789); + if (lookahead == '`') ADVANCE(717); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(184) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(622); + lookahead == ' ') SKIP(206) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); if (lookahead != 0 && - (lookahead < '&' || '(' < lookahead) && + lookahead != '&' && lookahead != ';' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(724); + (lookahead < '{' || '}' < lookahead)) ADVANCE(800); END_STATE(); - case 693: + case 771: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '&') ADVANCE(578); + if (lookahead == '!') ADVANCE(562); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(629); if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(513); - if (lookahead == '+') ADVANCE(504); - if (lookahead == '-') ADVANCE(508); - if (lookahead == '/') ADVANCE(517); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '<') ADVANCE(532); - if (lookahead == '=') ADVANCE(466); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(277); - if (lookahead == '^') ADVANCE(582); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '*') ADVANCE(505); + if (lookahead == '+') ADVANCE(495); + if (lookahead == '-') ADVANCE(500); + if (lookahead == '/') ADVANCE(513); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(456); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(305); + if (lookahead == '^') ADVANCE(633); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(552); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(194) + lookahead == ' ') SKIP(209) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); - case 694: + case 772: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '&') ADVANCE(578); + if (lookahead == '!') ADVANCE(562); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(629); if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(513); - if (lookahead == '+') ADVANCE(504); - if (lookahead == '-') ADVANCE(508); - if (lookahead == '/') ADVANCE(517); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '<') ADVANCE(532); - if (lookahead == '=') ADVANCE(466); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(306); - if (lookahead == '^') ADVANCE(582); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '*') ADVANCE(505); + if (lookahead == '+') ADVANCE(495); + if (lookahead == '-') ADVANCE(500); + if (lookahead == '/') ADVANCE(513); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(456); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(333); + if (lookahead == '^') ADVANCE(633); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(552); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(195) + lookahead == ' ') SKIP(210) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); - case 695: + case 773: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '&') ADVANCE(578); - if (lookahead == ')') ADVANCE(252); - if (lookahead == '*') ADVANCE(513); - if (lookahead == '+') ADVANCE(504); - if (lookahead == '-') ADVANCE(508); - if (lookahead == '/') ADVANCE(517); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '<') ADVANCE(532); - if (lookahead == '=') ADVANCE(466); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(304); - if (lookahead == '^') ADVANCE(582); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '!') ADVANCE(562); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(629); + if (lookahead == ')') ADVANCE(275); + if (lookahead == '*') ADVANCE(505); + if (lookahead == '+') ADVANCE(495); + if (lookahead == '-') ADVANCE(500); + if (lookahead == '/') ADVANCE(513); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(456); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(335); + if (lookahead == '^') ADVANCE(633); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(552); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(196) + lookahead == ' ') SKIP(211) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); - case 696: + case 774: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '&') ADVANCE(578); - if (lookahead == '*') ADVANCE(513); - if (lookahead == '+') ADVANCE(504); - if (lookahead == '-') ADVANCE(508); - if (lookahead == '/') ADVANCE(517); - if (lookahead == '0') ADVANCE(711); - if (lookahead == ':') ADVANCE(585); - if (lookahead == '<') ADVANCE(532); - if (lookahead == '=') ADVANCE(466); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(280); - if (lookahead == '^') ADVANCE(582); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '!') ADVANCE(562); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(629); + if (lookahead == '*') ADVANCE(505); + if (lookahead == '+') ADVANCE(495); + if (lookahead == '-') ADVANCE(500); + if (lookahead == '/') ADVANCE(513); + if (lookahead == '0') ADVANCE(787); + if (lookahead == ':') ADVANCE(637); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(456); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(306); + if (lookahead == '^') ADVANCE(633); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(552); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(197) + lookahead == ' ') SKIP(212) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); - case 697: + case 775: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '&') ADVANCE(578); - if (lookahead == '*') ADVANCE(513); - if (lookahead == '+') ADVANCE(504); - if (lookahead == '-') ADVANCE(508); - if (lookahead == '/') ADVANCE(517); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '<') ADVANCE(532); - if (lookahead == '=') ADVANCE(466); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(276); - if (lookahead == ']') ADVANCE(565); - if (lookahead == '^') ADVANCE(582); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '!') ADVANCE(562); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(629); + if (lookahead == '*') ADVANCE(505); + if (lookahead == '+') ADVANCE(495); + if (lookahead == '-') ADVANCE(500); + if (lookahead == '/') ADVANCE(513); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(456); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(304); + if (lookahead == ']') ADVANCE(566); + if (lookahead == '^') ADVANCE(633); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(552); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(198) + lookahead == ' ') SKIP(213) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); - case 698: + case 776: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '&') ADVANCE(578); - if (lookahead == '*') ADVANCE(513); - if (lookahead == '+') ADVANCE(504); - if (lookahead == '-') ADVANCE(508); - if (lookahead == '/') ADVANCE(517); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '<') ADVANCE(532); - if (lookahead == '=') ADVANCE(466); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(303); - if (lookahead == ']') ADVANCE(262); - if (lookahead == '^') ADVANCE(582); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '!') ADVANCE(562); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(629); + if (lookahead == '*') ADVANCE(505); + if (lookahead == '+') ADVANCE(495); + if (lookahead == '-') ADVANCE(500); + if (lookahead == '/') ADVANCE(513); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(456); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(332); + if (lookahead == ']') ADVANCE(286); + if (lookahead == '^') ADVANCE(633); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(552); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(199) + lookahead == ' ') SKIP(214) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); - case 699: + case 777: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '&') ADVANCE(578); - if (lookahead == '*') ADVANCE(513); - if (lookahead == '+') ADVANCE(504); - if (lookahead == '-') ADVANCE(508); - if (lookahead == '/') ADVANCE(517); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '<') ADVANCE(532); - if (lookahead == '=') ADVANCE(466); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == '^') ADVANCE(582); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '!') ADVANCE(562); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '%') ADVANCE(518); + if (lookahead == '&') ADVANCE(629); + if (lookahead == '*') ADVANCE(505); + if (lookahead == '+') ADVANCE(495); + if (lookahead == '-') ADVANCE(500); + if (lookahead == '/') ADVANCE(513); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '<') ADVANCE(531); + if (lookahead == '=') ADVANCE(456); + if (lookahead == '>') ADVANCE(537); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(308); + if (lookahead == '^') ADVANCE(633); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(552); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(200) + lookahead == ' ') SKIP(215) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); - case 700: + case 778: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '&') ADVANCE(244); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(290); - if (lookahead == ']') ADVANCE(565); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '<') ADVANCE(528); + if (lookahead == '>') ADVANCE(534); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(318); + if (lookahead == ']') ADVANCE(566); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(210) + lookahead == ' ') SKIP(226) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); - case 701: + case 779: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '&') ADVANCE(244); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(291); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '<') ADVANCE(528); + if (lookahead == '>') ADVANCE(534); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(321); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '|') ADVANCE(551); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(211) + lookahead == ' ') SKIP(227) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); - case 702: + case 780: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(294); - if (lookahead == '_') ADVANCE(714); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(323); + if (lookahead == '_') ADVANCE(790); if (lookahead == '|') ADVANCE(548); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(212) + lookahead == ' ') SKIP(228) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); - case 703: + case 781: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(295); - if (lookahead == '_') ADVANCE(714); - if (lookahead == '}') ADVANCE(633); + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '/') ADVANCE(508); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(324); + if (lookahead == '_') ADVANCE(790); + if (lookahead == '}') ADVANCE(689); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(214) + lookahead == ' ') SKIP(229) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); - case 704: + case 782: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(559); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(297); - if (lookahead == '_') ADVANCE(714); + if (lookahead == '!') ADVANCE(560); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(326); + if (lookahead == '_') ADVANCE(790); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(215) + lookahead == ' ') SKIP(231) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); - case 705: + case 783: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(559); - if (lookahead == '#') ADVANCE(631); - if (lookahead == '$') ADVANCE(597); - if (lookahead == '*') ADVANCE(510); - if (lookahead == '-') ADVANCE(505); - if (lookahead == '0') ADVANCE(711); - if (lookahead == '?') ADVANCE(583); - if (lookahead == '@') ADVANCE(707); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '_') ADVANCE(714); + if (lookahead == '!') ADVANCE(560); + if (lookahead == '#') ADVANCE(686); + if (lookahead == '$') ADVANCE(651); + if (lookahead == '*') ADVANCE(502); + if (lookahead == '-') ADVANCE(497); + if (lookahead == '0') ADVANCE(787); + if (lookahead == '?') ADVANCE(635); + if (lookahead == '@') ADVANCE(709); + if (lookahead == '\\') ADVANCE(328); + if (lookahead == '_') ADVANCE(790); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(217) + lookahead == ' ') SKIP(234) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); - case 706: + case 784: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); if (lookahead == '\\') ADVANCE(15); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - END_STATE(); - case 707: - ACCEPT_TOKEN(anon_sym_AT); - END_STATE(); - case 708: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(784); END_STATE(); - case 709: + case 785: ACCEPT_TOKEN(anon_sym_0); - if (lookahead == '#') ADVANCE(629); - if (lookahead == '\\') ADVANCE(389); - if (lookahead == 'x') ADVANCE(723); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (!sym_word_character_set_5(lookahead)) ADVANCE(724); + if (lookahead == '#') ADVANCE(684); + if (lookahead == '\\') ADVANCE(423); + if (lookahead == 'x') ADVANCE(799); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (!sym_word_character_set_8(lookahead)) ADVANCE(800); END_STATE(); - case 710: + case 786: ACCEPT_TOKEN(anon_sym_0); - if (lookahead == '#') ADVANCE(629); + if (lookahead == '#') ADVANCE(684); if (lookahead == '\\') ADVANCE(16); - if (lookahead == 'x') ADVANCE(661); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(622); + if (lookahead == 'x') ADVANCE(734); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(677); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); - if (!sym_word_character_set_6(lookahead)) ADVANCE(724); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (!sym_word_character_set_9(lookahead)) ADVANCE(800); END_STATE(); - case 711: + case 787: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); - case 712: + case 788: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); - case 713: + case 789: ACCEPT_TOKEN(anon_sym__); if (lookahead == '\\') ADVANCE(16); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(662); - if (!sym_word_character_set_4(lookahead)) ADVANCE(724); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (!sym_word_character_set_4(lookahead)) ADVANCE(800); END_STATE(); - case 714: + case 790: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); - case 715: + case 791: ACCEPT_TOKEN(sym_word); - if (lookahead == '.') ADVANCE(594); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + if (lookahead == '.') ADVANCE(648); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); - case 716: + case 792: ACCEPT_TOKEN(sym_word); - if (lookahead == '0') ADVANCE(618); - if (lookahead == '\\') ADVANCE(389); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(620); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '\\') ADVANCE(423); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(725); - if (!sym_word_character_set_4(lookahead)) ADVANCE(724); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(801); + if (!sym_word_character_set_4(lookahead)) ADVANCE(800); END_STATE(); - case 717: + case 793: ACCEPT_TOKEN(sym_word); - if (lookahead == '=') ADVANCE(493); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_2(lookahead)) ADVANCE(724); + if (lookahead == '=') ADVANCE(483); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_2(lookahead)) ADVANCE(800); END_STATE(); - case 718: + case 794: ACCEPT_TOKEN(sym_word); - if (lookahead == '=') ADVANCE(491); - if (lookahead == '\\') ADVANCE(389); - if (lookahead == '~') ADVANCE(569); - if (!sym_word_character_set_2(lookahead)) ADVANCE(724); + if (lookahead == '=') ADVANCE(481); + if (lookahead == '\\') ADVANCE(423); + if (lookahead == '~') ADVANCE(570); + if (!sym_word_character_set_2(lookahead)) ADVANCE(800); END_STATE(); - case 719: + case 795: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(389); - if (lookahead == 'a') ADVANCE(720); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + if (lookahead == '\\') ADVANCE(423); + if (lookahead == 'a') ADVANCE(796); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); - case 720: + case 796: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(389); + if (lookahead == '\\') ADVANCE(423); if (lookahead == 'c') ADVANCE(545); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); - case 721: + case 797: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(389); - if (lookahead == 'n') ADVANCE(455); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + if (lookahead == '\\') ADVANCE(423); + if (lookahead == 'n') ADVANCE(444); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); - case 722: + case 798: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(389); - if (lookahead == 's') ADVANCE(719); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + if (lookahead == '\\') ADVANCE(423); + if (lookahead == 's') ADVANCE(795); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); - case 723: + case 799: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(389); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(620); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + if (lookahead == '\\') ADVANCE(423); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); - case 724: + case 800: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(389); - if (!sym_word_character_set_1(lookahead)) ADVANCE(724); + if (lookahead == '\\') ADVANCE(423); + if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); - case 725: + case 801: ACCEPT_TOKEN(sym_test_operator); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(725); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(801); END_STATE(); default: return false; @@ -14625,285 +15871,322 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { START_LEXER(); switch (state) { case 0: - if (lookahead == '\\') SKIP(1) - if (lookahead == 'c') ADVANCE(2); - if (lookahead == 'd') ADVANCE(3); - if (lookahead == 'e') ADVANCE(4); - if (lookahead == 'f') ADVANCE(5); - if (lookahead == 'i') ADVANCE(6); - if (lookahead == 'l') ADVANCE(7); - if (lookahead == 'r') ADVANCE(8); - if (lookahead == 's') ADVANCE(9); - if (lookahead == 't') ADVANCE(10); - if (lookahead == 'u') ADVANCE(11); - if (lookahead == 'w') ADVANCE(12); + if (lookahead == 'A') ADVANCE(1); + if (lookahead == 'E') ADVANCE(2); + if (lookahead == 'K') ADVANCE(3); + if (lookahead == 'L') ADVANCE(4); + if (lookahead == 'P') ADVANCE(5); + if (lookahead == 'Q') ADVANCE(6); + if (lookahead == 'U') ADVANCE(7); + if (lookahead == '\\') SKIP(8) + if (lookahead == 'a') ADVANCE(9); + if (lookahead == 'c') ADVANCE(10); + if (lookahead == 'd') ADVANCE(11); + if (lookahead == 'e') ADVANCE(12); + if (lookahead == 'f') ADVANCE(13); + if (lookahead == 'i') ADVANCE(14); + if (lookahead == 'k') ADVANCE(15); + if (lookahead == 'l') ADVANCE(16); + if (lookahead == 'r') ADVANCE(17); + if (lookahead == 's') ADVANCE(18); + if (lookahead == 't') ADVANCE(19); + if (lookahead == 'u') ADVANCE(20); + if (lookahead == 'w') ADVANCE(21); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(0) END_STATE(); case 1: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(0) - if (lookahead == '\r') SKIP(13) + ACCEPT_TOKEN(anon_sym_A); END_STATE(); case 2: - if (lookahead == 'a') ADVANCE(14); + ACCEPT_TOKEN(anon_sym_E); END_STATE(); case 3: - if (lookahead == 'e') ADVANCE(15); - if (lookahead == 'o') ADVANCE(16); + ACCEPT_TOKEN(anon_sym_K); END_STATE(); case 4: - if (lookahead == 'l') ADVANCE(17); - if (lookahead == 'x') ADVANCE(18); + ACCEPT_TOKEN(anon_sym_L); END_STATE(); case 5: - if (lookahead == 'i') ADVANCE(19); - if (lookahead == 'o') ADVANCE(20); - if (lookahead == 'u') ADVANCE(21); + ACCEPT_TOKEN(anon_sym_P); END_STATE(); case 6: - if (lookahead == 'f') ADVANCE(22); + ACCEPT_TOKEN(anon_sym_Q); END_STATE(); case 7: - if (lookahead == 'o') ADVANCE(23); + ACCEPT_TOKEN(anon_sym_U); END_STATE(); case 8: - if (lookahead == 'e') ADVANCE(24); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(0) + if (lookahead == '\r') SKIP(22) END_STATE(); case 9: - if (lookahead == 'e') ADVANCE(25); + ACCEPT_TOKEN(anon_sym_a); END_STATE(); case 10: - if (lookahead == 'h') ADVANCE(26); - if (lookahead == 'y') ADVANCE(27); + if (lookahead == 'a') ADVANCE(23); END_STATE(); case 11: - if (lookahead == 'n') ADVANCE(28); + if (lookahead == 'e') ADVANCE(24); + if (lookahead == 'o') ADVANCE(25); END_STATE(); case 12: - if (lookahead == 'h') ADVANCE(29); + if (lookahead == 'l') ADVANCE(26); + if (lookahead == 'x') ADVANCE(27); END_STATE(); case 13: - if (lookahead == '\n') SKIP(0) + if (lookahead == 'i') ADVANCE(28); + if (lookahead == 'o') ADVANCE(29); + if (lookahead == 'u') ADVANCE(30); END_STATE(); case 14: - if (lookahead == 's') ADVANCE(30); + if (lookahead == 'f') ADVANCE(31); END_STATE(); case 15: - if (lookahead == 'c') ADVANCE(31); + ACCEPT_TOKEN(anon_sym_k); END_STATE(); case 16: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == 'n') ADVANCE(32); + if (lookahead == 'o') ADVANCE(32); END_STATE(); case 17: - if (lookahead == 'i') ADVANCE(33); - if (lookahead == 's') ADVANCE(34); + if (lookahead == 'e') ADVANCE(33); END_STATE(); case 18: - if (lookahead == 'p') ADVANCE(35); + if (lookahead == 'e') ADVANCE(34); END_STATE(); case 19: - ACCEPT_TOKEN(anon_sym_fi); + if (lookahead == 'h') ADVANCE(35); + if (lookahead == 'y') ADVANCE(36); END_STATE(); case 20: - if (lookahead == 'r') ADVANCE(36); + ACCEPT_TOKEN(anon_sym_u); + if (lookahead == 'n') ADVANCE(37); END_STATE(); case 21: - if (lookahead == 'n') ADVANCE(37); + if (lookahead == 'h') ADVANCE(38); END_STATE(); case 22: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == '\n') SKIP(0) END_STATE(); case 23: - if (lookahead == 'c') ADVANCE(38); + if (lookahead == 's') ADVANCE(39); END_STATE(); case 24: - if (lookahead == 'a') ADVANCE(39); + if (lookahead == 'c') ADVANCE(40); END_STATE(); case 25: - if (lookahead == 'l') ADVANCE(40); + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'n') ADVANCE(41); END_STATE(); case 26: - if (lookahead == 'e') ADVANCE(41); + if (lookahead == 'i') ADVANCE(42); + if (lookahead == 's') ADVANCE(43); END_STATE(); case 27: - if (lookahead == 'p') ADVANCE(42); + if (lookahead == 'p') ADVANCE(44); END_STATE(); case 28: - if (lookahead == 's') ADVANCE(43); - if (lookahead == 't') ADVANCE(44); + ACCEPT_TOKEN(anon_sym_fi); END_STATE(); case 29: - if (lookahead == 'i') ADVANCE(45); + if (lookahead == 'r') ADVANCE(45); END_STATE(); case 30: - if (lookahead == 'e') ADVANCE(46); + if (lookahead == 'n') ADVANCE(46); END_STATE(); case 31: - if (lookahead == 'l') ADVANCE(47); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 32: - if (lookahead == 'e') ADVANCE(48); + if (lookahead == 'c') ADVANCE(47); END_STATE(); case 33: - if (lookahead == 'f') ADVANCE(49); + if (lookahead == 'a') ADVANCE(48); END_STATE(); case 34: - if (lookahead == 'e') ADVANCE(50); + if (lookahead == 'l') ADVANCE(49); END_STATE(); case 35: - if (lookahead == 'o') ADVANCE(51); + if (lookahead == 'e') ADVANCE(50); END_STATE(); case 36: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'p') ADVANCE(51); END_STATE(); case 37: - if (lookahead == 'c') ADVANCE(52); + if (lookahead == 's') ADVANCE(52); + if (lookahead == 't') ADVANCE(53); END_STATE(); case 38: - if (lookahead == 'a') ADVANCE(53); + if (lookahead == 'i') ADVANCE(54); END_STATE(); case 39: - if (lookahead == 'd') ADVANCE(54); + if (lookahead == 'e') ADVANCE(55); END_STATE(); case 40: - if (lookahead == 'e') ADVANCE(55); + if (lookahead == 'l') ADVANCE(56); END_STATE(); case 41: - if (lookahead == 'n') ADVANCE(56); + if (lookahead == 'e') ADVANCE(57); END_STATE(); case 42: - if (lookahead == 'e') ADVANCE(57); + if (lookahead == 'f') ADVANCE(58); END_STATE(); case 43: - if (lookahead == 'e') ADVANCE(58); + if (lookahead == 'e') ADVANCE(59); END_STATE(); case 44: - if (lookahead == 'i') ADVANCE(59); + if (lookahead == 'o') ADVANCE(60); END_STATE(); case 45: - if (lookahead == 'l') ADVANCE(60); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 46: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 'c') ADVANCE(61); END_STATE(); case 47: - if (lookahead == 'a') ADVANCE(61); + if (lookahead == 'a') ADVANCE(62); END_STATE(); case 48: - ACCEPT_TOKEN(anon_sym_done); + if (lookahead == 'd') ADVANCE(63); END_STATE(); case 49: - ACCEPT_TOKEN(anon_sym_elif); + if (lookahead == 'e') ADVANCE(64); END_STATE(); case 50: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'n') ADVANCE(65); END_STATE(); case 51: - if (lookahead == 'r') ADVANCE(62); + if (lookahead == 'e') ADVANCE(66); END_STATE(); case 52: - if (lookahead == 't') ADVANCE(63); + if (lookahead == 'e') ADVANCE(67); END_STATE(); case 53: - if (lookahead == 'l') ADVANCE(64); + if (lookahead == 'i') ADVANCE(68); END_STATE(); case 54: - if (lookahead == 'o') ADVANCE(65); + if (lookahead == 'l') ADVANCE(69); END_STATE(); case 55: - if (lookahead == 'c') ADVANCE(66); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 56: - ACCEPT_TOKEN(anon_sym_then); + if (lookahead == 'a') ADVANCE(70); END_STATE(); case 57: - if (lookahead == 's') ADVANCE(67); + ACCEPT_TOKEN(anon_sym_done); END_STATE(); case 58: - if (lookahead == 't') ADVANCE(68); + ACCEPT_TOKEN(anon_sym_elif); END_STATE(); case 59: - if (lookahead == 'l') ADVANCE(69); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 60: - if (lookahead == 'e') ADVANCE(70); + if (lookahead == 'r') ADVANCE(71); END_STATE(); case 61: - if (lookahead == 'r') ADVANCE(71); + if (lookahead == 't') ADVANCE(72); END_STATE(); case 62: - if (lookahead == 't') ADVANCE(72); + if (lookahead == 'l') ADVANCE(73); END_STATE(); case 63: - if (lookahead == 'i') ADVANCE(73); + if (lookahead == 'o') ADVANCE(74); END_STATE(); case 64: - ACCEPT_TOKEN(anon_sym_local); + if (lookahead == 'c') ADVANCE(75); END_STATE(); case 65: - if (lookahead == 'n') ADVANCE(74); + ACCEPT_TOKEN(anon_sym_then); END_STATE(); case 66: - if (lookahead == 't') ADVANCE(75); + if (lookahead == 's') ADVANCE(76); END_STATE(); case 67: - if (lookahead == 'e') ADVANCE(76); + if (lookahead == 't') ADVANCE(77); END_STATE(); case 68: - ACCEPT_TOKEN(anon_sym_unset); - if (lookahead == 'e') ADVANCE(77); + if (lookahead == 'l') ADVANCE(78); END_STATE(); case 69: - ACCEPT_TOKEN(anon_sym_until); + if (lookahead == 'e') ADVANCE(79); END_STATE(); case 70: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'r') ADVANCE(80); END_STATE(); case 71: - if (lookahead == 'e') ADVANCE(78); + if (lookahead == 't') ADVANCE(81); END_STATE(); case 72: - ACCEPT_TOKEN(anon_sym_export); + if (lookahead == 'i') ADVANCE(82); END_STATE(); case 73: - if (lookahead == 'o') ADVANCE(79); + ACCEPT_TOKEN(anon_sym_local); END_STATE(); case 74: - if (lookahead == 'l') ADVANCE(80); + if (lookahead == 'n') ADVANCE(83); END_STATE(); case 75: - ACCEPT_TOKEN(anon_sym_select); + if (lookahead == 't') ADVANCE(84); END_STATE(); case 76: - if (lookahead == 't') ADVANCE(81); + if (lookahead == 'e') ADVANCE(85); END_STATE(); case 77: - if (lookahead == 'n') ADVANCE(82); + ACCEPT_TOKEN(anon_sym_unset); + if (lookahead == 'e') ADVANCE(86); END_STATE(); case 78: - ACCEPT_TOKEN(anon_sym_declare); + ACCEPT_TOKEN(anon_sym_until); END_STATE(); case 79: - if (lookahead == 'n') ADVANCE(83); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 80: - if (lookahead == 'y') ADVANCE(84); + if (lookahead == 'e') ADVANCE(87); END_STATE(); case 81: - ACCEPT_TOKEN(anon_sym_typeset); + ACCEPT_TOKEN(anon_sym_export); END_STATE(); case 82: - if (lookahead == 'v') ADVANCE(85); + if (lookahead == 'o') ADVANCE(88); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_function); + if (lookahead == 'l') ADVANCE(89); END_STATE(); case 84: - ACCEPT_TOKEN(anon_sym_readonly); + ACCEPT_TOKEN(anon_sym_select); END_STATE(); case 85: + if (lookahead == 't') ADVANCE(90); + END_STATE(); + case 86: + if (lookahead == 'n') ADVANCE(91); + END_STATE(); + case 87: + ACCEPT_TOKEN(anon_sym_declare); + END_STATE(); + case 88: + if (lookahead == 'n') ADVANCE(92); + END_STATE(); + case 89: + if (lookahead == 'y') ADVANCE(93); + END_STATE(); + case 90: + ACCEPT_TOKEN(anon_sym_typeset); + END_STATE(); + case 91: + if (lookahead == 'v') ADVANCE(94); + END_STATE(); + case 92: + ACCEPT_TOKEN(anon_sym_function); + END_STATE(); + case 93: + ACCEPT_TOKEN(anon_sym_readonly); + END_STATE(); + case 94: ACCEPT_TOKEN(anon_sym_unsetenv); END_STATE(); default: @@ -14913,4855 +16196,5084 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 405, .external_lex_state = 2}, - [2] = {.lex_state = 186, .external_lex_state = 2}, - [3] = {.lex_state = 186, .external_lex_state = 2}, - [4] = {.lex_state = 186, .external_lex_state = 2}, - [5] = {.lex_state = 186, .external_lex_state = 2}, - [6] = {.lex_state = 186, .external_lex_state = 2}, - [7] = {.lex_state = 186, .external_lex_state = 2}, - [8] = {.lex_state = 186, .external_lex_state = 2}, - [9] = {.lex_state = 186, .external_lex_state = 2}, - [10] = {.lex_state = 5, .external_lex_state = 3}, - [11] = {.lex_state = 186, .external_lex_state = 2}, - [12] = {.lex_state = 186, .external_lex_state = 2}, - [13] = {.lex_state = 5, .external_lex_state = 3}, - [14] = {.lex_state = 187, .external_lex_state = 4}, - [15] = {.lex_state = 133, .external_lex_state = 3}, - [16] = {.lex_state = 187, .external_lex_state = 4}, - [17] = {.lex_state = 187, .external_lex_state = 4}, - [18] = {.lex_state = 187, .external_lex_state = 4}, - [19] = {.lex_state = 405, .external_lex_state = 2}, - [20] = {.lex_state = 405, .external_lex_state = 2}, - [21] = {.lex_state = 405, .external_lex_state = 2}, - [22] = {.lex_state = 405, .external_lex_state = 2}, - [23] = {.lex_state = 405, .external_lex_state = 2}, - [24] = {.lex_state = 405, .external_lex_state = 2}, - [25] = {.lex_state = 405, .external_lex_state = 2}, - [26] = {.lex_state = 405, .external_lex_state = 2}, - [27] = {.lex_state = 189, .external_lex_state = 2}, - [28] = {.lex_state = 189, .external_lex_state = 2}, - [29] = {.lex_state = 189, .external_lex_state = 2}, - [30] = {.lex_state = 189, .external_lex_state = 2}, - [31] = {.lex_state = 189, .external_lex_state = 2}, - [32] = {.lex_state = 189, .external_lex_state = 2}, - [33] = {.lex_state = 189, .external_lex_state = 2}, - [34] = {.lex_state = 189, .external_lex_state = 2}, - [35] = {.lex_state = 189, .external_lex_state = 2}, - [36] = {.lex_state = 189, .external_lex_state = 2}, - [37] = {.lex_state = 189, .external_lex_state = 2}, - [38] = {.lex_state = 189, .external_lex_state = 2}, - [39] = {.lex_state = 405, .external_lex_state = 2}, - [40] = {.lex_state = 405, .external_lex_state = 2}, - [41] = {.lex_state = 405, .external_lex_state = 2}, - [42] = {.lex_state = 173, .external_lex_state = 5}, - [43] = {.lex_state = 405, .external_lex_state = 2}, - [44] = {.lex_state = 405, .external_lex_state = 2}, - [45] = {.lex_state = 405, .external_lex_state = 2}, - [46] = {.lex_state = 405, .external_lex_state = 2}, - [47] = {.lex_state = 405, .external_lex_state = 2}, - [48] = {.lex_state = 405, .external_lex_state = 2}, - [49] = {.lex_state = 405, .external_lex_state = 2}, - [50] = {.lex_state = 405, .external_lex_state = 2}, - [51] = {.lex_state = 405, .external_lex_state = 2}, - [52] = {.lex_state = 405, .external_lex_state = 2}, - [53] = {.lex_state = 405, .external_lex_state = 2}, - [54] = {.lex_state = 405, .external_lex_state = 2}, - [55] = {.lex_state = 405, .external_lex_state = 2}, - [56] = {.lex_state = 405, .external_lex_state = 2}, - [57] = {.lex_state = 405, .external_lex_state = 2}, - [58] = {.lex_state = 405, .external_lex_state = 2}, - [59] = {.lex_state = 405, .external_lex_state = 2}, - [60] = {.lex_state = 405, .external_lex_state = 2}, - [61] = {.lex_state = 405, .external_lex_state = 2}, - [62] = {.lex_state = 405, .external_lex_state = 2}, - [63] = {.lex_state = 405, .external_lex_state = 2}, - [64] = {.lex_state = 405, .external_lex_state = 2}, - [65] = {.lex_state = 405, .external_lex_state = 2}, - [66] = {.lex_state = 405, .external_lex_state = 2}, - [67] = {.lex_state = 405, .external_lex_state = 2}, - [68] = {.lex_state = 405, .external_lex_state = 2}, - [69] = {.lex_state = 405, .external_lex_state = 2}, - [70] = {.lex_state = 405, .external_lex_state = 2}, - [71] = {.lex_state = 405, .external_lex_state = 2}, - [72] = {.lex_state = 190, .external_lex_state = 2}, - [73] = {.lex_state = 190, .external_lex_state = 2}, - [74] = {.lex_state = 405, .external_lex_state = 2}, - [75] = {.lex_state = 405, .external_lex_state = 2}, - [76] = {.lex_state = 405, .external_lex_state = 2}, - [77] = {.lex_state = 405, .external_lex_state = 2}, - [78] = {.lex_state = 405, .external_lex_state = 2}, - [79] = {.lex_state = 405, .external_lex_state = 2}, - [80] = {.lex_state = 405, .external_lex_state = 2}, - [81] = {.lex_state = 405, .external_lex_state = 2}, - [82] = {.lex_state = 405, .external_lex_state = 2}, - [83] = {.lex_state = 405, .external_lex_state = 2}, - [84] = {.lex_state = 405, .external_lex_state = 2}, - [85] = {.lex_state = 190, .external_lex_state = 2}, - [86] = {.lex_state = 405, .external_lex_state = 2}, - [87] = {.lex_state = 405, .external_lex_state = 2}, - [88] = {.lex_state = 405, .external_lex_state = 2}, - [89] = {.lex_state = 405, .external_lex_state = 2}, - [90] = {.lex_state = 405, .external_lex_state = 2}, - [91] = {.lex_state = 405, .external_lex_state = 2}, - [92] = {.lex_state = 190, .external_lex_state = 2}, - [93] = {.lex_state = 405, .external_lex_state = 2}, - [94] = {.lex_state = 405, .external_lex_state = 2}, - [95] = {.lex_state = 405, .external_lex_state = 2}, - [96] = {.lex_state = 405, .external_lex_state = 2}, - [97] = {.lex_state = 405, .external_lex_state = 2}, - [98] = {.lex_state = 405, .external_lex_state = 2}, - [99] = {.lex_state = 405, .external_lex_state = 2}, - [100] = {.lex_state = 405, .external_lex_state = 2}, - [101] = {.lex_state = 405, .external_lex_state = 2}, - [102] = {.lex_state = 190, .external_lex_state = 2}, - [103] = {.lex_state = 405, .external_lex_state = 2}, - [104] = {.lex_state = 405, .external_lex_state = 2}, - [105] = {.lex_state = 405, .external_lex_state = 2}, - [106] = {.lex_state = 405, .external_lex_state = 2}, - [107] = {.lex_state = 405, .external_lex_state = 2}, - [108] = {.lex_state = 405, .external_lex_state = 2}, - [109] = {.lex_state = 405, .external_lex_state = 2}, - [110] = {.lex_state = 405, .external_lex_state = 2}, - [111] = {.lex_state = 405, .external_lex_state = 2}, - [112] = {.lex_state = 405, .external_lex_state = 2}, - [113] = {.lex_state = 405, .external_lex_state = 2}, - [114] = {.lex_state = 405, .external_lex_state = 2}, - [115] = {.lex_state = 190, .external_lex_state = 2}, - [116] = {.lex_state = 405, .external_lex_state = 2}, - [117] = {.lex_state = 405, .external_lex_state = 2}, - [118] = {.lex_state = 405, .external_lex_state = 2}, - [119] = {.lex_state = 405, .external_lex_state = 2}, - [120] = {.lex_state = 190, .external_lex_state = 2}, - [121] = {.lex_state = 405, .external_lex_state = 2}, - [122] = {.lex_state = 405, .external_lex_state = 2}, - [123] = {.lex_state = 405, .external_lex_state = 2}, - [124] = {.lex_state = 405, .external_lex_state = 2}, - [125] = {.lex_state = 405, .external_lex_state = 2}, - [126] = {.lex_state = 405, .external_lex_state = 2}, - [127] = {.lex_state = 405, .external_lex_state = 2}, - [128] = {.lex_state = 405, .external_lex_state = 2}, - [129] = {.lex_state = 405, .external_lex_state = 2}, - [130] = {.lex_state = 405, .external_lex_state = 2}, - [131] = {.lex_state = 405, .external_lex_state = 2}, - [132] = {.lex_state = 405, .external_lex_state = 2}, - [133] = {.lex_state = 405, .external_lex_state = 2}, - [134] = {.lex_state = 405, .external_lex_state = 2}, - [135] = {.lex_state = 405, .external_lex_state = 2}, - [136] = {.lex_state = 405, .external_lex_state = 2}, - [137] = {.lex_state = 405, .external_lex_state = 2}, - [138] = {.lex_state = 405, .external_lex_state = 2}, - [139] = {.lex_state = 405, .external_lex_state = 2}, - [140] = {.lex_state = 405, .external_lex_state = 2}, - [141] = {.lex_state = 405, .external_lex_state = 2}, - [142] = {.lex_state = 405, .external_lex_state = 2}, - [143] = {.lex_state = 405, .external_lex_state = 2}, - [144] = {.lex_state = 405, .external_lex_state = 2}, - [145] = {.lex_state = 405, .external_lex_state = 2}, - [146] = {.lex_state = 405, .external_lex_state = 2}, - [147] = {.lex_state = 405, .external_lex_state = 2}, - [148] = {.lex_state = 405, .external_lex_state = 2}, - [149] = {.lex_state = 405, .external_lex_state = 2}, - [150] = {.lex_state = 405, .external_lex_state = 2}, - [151] = {.lex_state = 405, .external_lex_state = 2}, - [152] = {.lex_state = 405, .external_lex_state = 2}, - [153] = {.lex_state = 405, .external_lex_state = 2}, - [154] = {.lex_state = 190, .external_lex_state = 2}, - [155] = {.lex_state = 405, .external_lex_state = 2}, - [156] = {.lex_state = 405, .external_lex_state = 2}, - [157] = {.lex_state = 405, .external_lex_state = 2}, - [158] = {.lex_state = 405, .external_lex_state = 2}, - [159] = {.lex_state = 405, .external_lex_state = 2}, - [160] = {.lex_state = 405, .external_lex_state = 2}, - [161] = {.lex_state = 405, .external_lex_state = 2}, - [162] = {.lex_state = 405, .external_lex_state = 2}, - [163] = {.lex_state = 405, .external_lex_state = 2}, - [164] = {.lex_state = 405, .external_lex_state = 2}, - [165] = {.lex_state = 405, .external_lex_state = 2}, - [166] = {.lex_state = 405, .external_lex_state = 2}, - [167] = {.lex_state = 405, .external_lex_state = 2}, - [168] = {.lex_state = 405, .external_lex_state = 2}, - [169] = {.lex_state = 405, .external_lex_state = 2}, - [170] = {.lex_state = 405, .external_lex_state = 2}, - [171] = {.lex_state = 405, .external_lex_state = 2}, - [172] = {.lex_state = 405, .external_lex_state = 2}, - [173] = {.lex_state = 405, .external_lex_state = 2}, - [174] = {.lex_state = 405, .external_lex_state = 2}, - [175] = {.lex_state = 405, .external_lex_state = 2}, - [176] = {.lex_state = 405, .external_lex_state = 2}, - [177] = {.lex_state = 405, .external_lex_state = 2}, - [178] = {.lex_state = 405, .external_lex_state = 2}, - [179] = {.lex_state = 405, .external_lex_state = 2}, - [180] = {.lex_state = 405, .external_lex_state = 2}, - [181] = {.lex_state = 405, .external_lex_state = 2}, - [182] = {.lex_state = 405, .external_lex_state = 2}, - [183] = {.lex_state = 405, .external_lex_state = 2}, - [184] = {.lex_state = 405, .external_lex_state = 2}, - [185] = {.lex_state = 405, .external_lex_state = 2}, - [186] = {.lex_state = 405, .external_lex_state = 2}, - [187] = {.lex_state = 405, .external_lex_state = 2}, - [188] = {.lex_state = 405, .external_lex_state = 2}, - [189] = {.lex_state = 405, .external_lex_state = 2}, - [190] = {.lex_state = 405, .external_lex_state = 2}, - [191] = {.lex_state = 405, .external_lex_state = 2}, - [192] = {.lex_state = 405, .external_lex_state = 2}, - [193] = {.lex_state = 190, .external_lex_state = 2}, - [194] = {.lex_state = 405, .external_lex_state = 2}, - [195] = {.lex_state = 405, .external_lex_state = 2}, - [196] = {.lex_state = 405, .external_lex_state = 2}, - [197] = {.lex_state = 405, .external_lex_state = 2}, - [198] = {.lex_state = 405, .external_lex_state = 2}, - [199] = {.lex_state = 405, .external_lex_state = 2}, - [200] = {.lex_state = 405, .external_lex_state = 2}, - [201] = {.lex_state = 405, .external_lex_state = 2}, - [202] = {.lex_state = 405, .external_lex_state = 2}, - [203] = {.lex_state = 405, .external_lex_state = 2}, - [204] = {.lex_state = 405, .external_lex_state = 2}, - [205] = {.lex_state = 405, .external_lex_state = 2}, - [206] = {.lex_state = 405, .external_lex_state = 2}, - [207] = {.lex_state = 405, .external_lex_state = 2}, - [208] = {.lex_state = 405, .external_lex_state = 2}, - [209] = {.lex_state = 405, .external_lex_state = 2}, - [210] = {.lex_state = 405, .external_lex_state = 2}, - [211] = {.lex_state = 405, .external_lex_state = 2}, - [212] = {.lex_state = 405, .external_lex_state = 2}, - [213] = {.lex_state = 405, .external_lex_state = 2}, - [214] = {.lex_state = 405, .external_lex_state = 2}, - [215] = {.lex_state = 405, .external_lex_state = 2}, - [216] = {.lex_state = 405, .external_lex_state = 2}, - [217] = {.lex_state = 405, .external_lex_state = 2}, - [218] = {.lex_state = 405, .external_lex_state = 2}, - [219] = {.lex_state = 405, .external_lex_state = 2}, - [220] = {.lex_state = 405, .external_lex_state = 2}, - [221] = {.lex_state = 405, .external_lex_state = 2}, - [222] = {.lex_state = 405, .external_lex_state = 2}, - [223] = {.lex_state = 405, .external_lex_state = 2}, - [224] = {.lex_state = 405, .external_lex_state = 2}, - [225] = {.lex_state = 405, .external_lex_state = 2}, - [226] = {.lex_state = 405, .external_lex_state = 2}, - [227] = {.lex_state = 405, .external_lex_state = 2}, - [228] = {.lex_state = 405, .external_lex_state = 2}, - [229] = {.lex_state = 405, .external_lex_state = 2}, - [230] = {.lex_state = 405, .external_lex_state = 2}, - [231] = {.lex_state = 405, .external_lex_state = 2}, - [232] = {.lex_state = 405, .external_lex_state = 2}, - [233] = {.lex_state = 405, .external_lex_state = 2}, - [234] = {.lex_state = 405, .external_lex_state = 2}, - [235] = {.lex_state = 405, .external_lex_state = 2}, - [236] = {.lex_state = 405, .external_lex_state = 2}, - [237] = {.lex_state = 405, .external_lex_state = 2}, - [238] = {.lex_state = 405, .external_lex_state = 2}, - [239] = {.lex_state = 405, .external_lex_state = 2}, - [240] = {.lex_state = 405, .external_lex_state = 2}, - [241] = {.lex_state = 405, .external_lex_state = 2}, - [242] = {.lex_state = 405, .external_lex_state = 2}, - [243] = {.lex_state = 405, .external_lex_state = 2}, - [244] = {.lex_state = 405, .external_lex_state = 2}, - [245] = {.lex_state = 405, .external_lex_state = 2}, - [246] = {.lex_state = 405, .external_lex_state = 2}, - [247] = {.lex_state = 405, .external_lex_state = 2}, - [248] = {.lex_state = 405, .external_lex_state = 2}, - [249] = {.lex_state = 405, .external_lex_state = 2}, - [250] = {.lex_state = 405, .external_lex_state = 2}, - [251] = {.lex_state = 405, .external_lex_state = 2}, - [252] = {.lex_state = 405, .external_lex_state = 2}, - [253] = {.lex_state = 405, .external_lex_state = 2}, - [254] = {.lex_state = 405, .external_lex_state = 2}, - [255] = {.lex_state = 405, .external_lex_state = 2}, - [256] = {.lex_state = 405, .external_lex_state = 2}, - [257] = {.lex_state = 405, .external_lex_state = 2}, - [258] = {.lex_state = 405, .external_lex_state = 2}, - [259] = {.lex_state = 405, .external_lex_state = 2}, - [260] = {.lex_state = 405, .external_lex_state = 2}, - [261] = {.lex_state = 405, .external_lex_state = 2}, - [262] = {.lex_state = 405, .external_lex_state = 2}, - [263] = {.lex_state = 405, .external_lex_state = 2}, - [264] = {.lex_state = 405, .external_lex_state = 2}, - [265] = {.lex_state = 405, .external_lex_state = 2}, - [266] = {.lex_state = 405, .external_lex_state = 2}, - [267] = {.lex_state = 405, .external_lex_state = 2}, - [268] = {.lex_state = 405, .external_lex_state = 2}, - [269] = {.lex_state = 405, .external_lex_state = 2}, - [270] = {.lex_state = 405, .external_lex_state = 2}, - [271] = {.lex_state = 405, .external_lex_state = 2}, - [272] = {.lex_state = 405, .external_lex_state = 2}, - [273] = {.lex_state = 405, .external_lex_state = 2}, - [274] = {.lex_state = 405, .external_lex_state = 2}, - [275] = {.lex_state = 405, .external_lex_state = 2}, - [276] = {.lex_state = 405, .external_lex_state = 2}, - [277] = {.lex_state = 405, .external_lex_state = 2}, - [278] = {.lex_state = 405, .external_lex_state = 2}, - [279] = {.lex_state = 405, .external_lex_state = 2}, - [280] = {.lex_state = 405, .external_lex_state = 2}, - [281] = {.lex_state = 405, .external_lex_state = 2}, - [282] = {.lex_state = 405, .external_lex_state = 2}, - [283] = {.lex_state = 405, .external_lex_state = 2}, - [284] = {.lex_state = 405, .external_lex_state = 2}, - [285] = {.lex_state = 405, .external_lex_state = 2}, - [286] = {.lex_state = 405, .external_lex_state = 2}, - [287] = {.lex_state = 405, .external_lex_state = 2}, - [288] = {.lex_state = 405, .external_lex_state = 2}, - [289] = {.lex_state = 405, .external_lex_state = 2}, - [290] = {.lex_state = 405, .external_lex_state = 2}, - [291] = {.lex_state = 405, .external_lex_state = 2}, - [292] = {.lex_state = 405, .external_lex_state = 2}, - [293] = {.lex_state = 405, .external_lex_state = 2}, - [294] = {.lex_state = 405, .external_lex_state = 2}, - [295] = {.lex_state = 405, .external_lex_state = 2}, - [296] = {.lex_state = 405, .external_lex_state = 2}, - [297] = {.lex_state = 405, .external_lex_state = 2}, - [298] = {.lex_state = 405, .external_lex_state = 2}, - [299] = {.lex_state = 405, .external_lex_state = 2}, - [300] = {.lex_state = 405, .external_lex_state = 2}, - [301] = {.lex_state = 405, .external_lex_state = 2}, - [302] = {.lex_state = 405, .external_lex_state = 2}, - [303] = {.lex_state = 405, .external_lex_state = 2}, - [304] = {.lex_state = 405, .external_lex_state = 2}, - [305] = {.lex_state = 405, .external_lex_state = 2}, - [306] = {.lex_state = 405, .external_lex_state = 2}, - [307] = {.lex_state = 405, .external_lex_state = 2}, - [308] = {.lex_state = 405, .external_lex_state = 2}, - [309] = {.lex_state = 405, .external_lex_state = 2}, - [310] = {.lex_state = 405, .external_lex_state = 2}, - [311] = {.lex_state = 405, .external_lex_state = 2}, - [312] = {.lex_state = 405, .external_lex_state = 2}, - [313] = {.lex_state = 405, .external_lex_state = 2}, - [314] = {.lex_state = 405, .external_lex_state = 2}, - [315] = {.lex_state = 405, .external_lex_state = 2}, - [316] = {.lex_state = 405, .external_lex_state = 2}, - [317] = {.lex_state = 405, .external_lex_state = 2}, - [318] = {.lex_state = 405, .external_lex_state = 2}, - [319] = {.lex_state = 405, .external_lex_state = 2}, - [320] = {.lex_state = 405, .external_lex_state = 2}, - [321] = {.lex_state = 405, .external_lex_state = 2}, - [322] = {.lex_state = 405, .external_lex_state = 2}, - [323] = {.lex_state = 405, .external_lex_state = 2}, - [324] = {.lex_state = 405, .external_lex_state = 2}, - [325] = {.lex_state = 405, .external_lex_state = 2}, - [326] = {.lex_state = 405, .external_lex_state = 2}, - [327] = {.lex_state = 405, .external_lex_state = 2}, - [328] = {.lex_state = 405, .external_lex_state = 2}, - [329] = {.lex_state = 405, .external_lex_state = 2}, - [330] = {.lex_state = 405, .external_lex_state = 2}, - [331] = {.lex_state = 405, .external_lex_state = 2}, - [332] = {.lex_state = 405, .external_lex_state = 2}, - [333] = {.lex_state = 405, .external_lex_state = 2}, - [334] = {.lex_state = 174, .external_lex_state = 6}, - [335] = {.lex_state = 177, .external_lex_state = 7}, - [336] = {.lex_state = 177, .external_lex_state = 7}, - [337] = {.lex_state = 178, .external_lex_state = 6}, - [338] = {.lex_state = 177, .external_lex_state = 7}, - [339] = {.lex_state = 175, .external_lex_state = 6}, - [340] = {.lex_state = 177, .external_lex_state = 7}, - [341] = {.lex_state = 177, .external_lex_state = 7}, - [342] = {.lex_state = 177, .external_lex_state = 7}, - [343] = {.lex_state = 176, .external_lex_state = 6}, - [344] = {.lex_state = 174, .external_lex_state = 6}, - [345] = {.lex_state = 12, .external_lex_state = 8}, - [346] = {.lex_state = 12, .external_lex_state = 8}, - [347] = {.lex_state = 174, .external_lex_state = 6}, - [348] = {.lex_state = 134, .external_lex_state = 8}, - [349] = {.lex_state = 134, .external_lex_state = 8}, - [350] = {.lex_state = 108, .external_lex_state = 3}, - [351] = {.lex_state = 172, .external_lex_state = 9}, - [352] = {.lex_state = 172, .external_lex_state = 9}, - [353] = {.lex_state = 108, .external_lex_state = 3}, - [354] = {.lex_state = 108, .external_lex_state = 3}, - [355] = {.lex_state = 108, .external_lex_state = 3}, - [356] = {.lex_state = 108, .external_lex_state = 3}, - [357] = {.lex_state = 136, .external_lex_state = 3}, - [358] = {.lex_state = 108, .external_lex_state = 3}, - [359] = {.lex_state = 108, .external_lex_state = 3}, - [360] = {.lex_state = 108, .external_lex_state = 3}, - [361] = {.lex_state = 108, .external_lex_state = 3}, - [362] = {.lex_state = 108, .external_lex_state = 3}, - [363] = {.lex_state = 136, .external_lex_state = 3}, - [364] = {.lex_state = 136, .external_lex_state = 3}, - [365] = {.lex_state = 136, .external_lex_state = 3}, - [366] = {.lex_state = 108, .external_lex_state = 3}, - [367] = {.lex_state = 108, .external_lex_state = 3}, - [368] = {.lex_state = 108, .external_lex_state = 3}, - [369] = {.lex_state = 136, .external_lex_state = 3}, - [370] = {.lex_state = 108, .external_lex_state = 3}, - [371] = {.lex_state = 108, .external_lex_state = 3}, - [372] = {.lex_state = 108, .external_lex_state = 3}, - [373] = {.lex_state = 108, .external_lex_state = 3}, - [374] = {.lex_state = 108, .external_lex_state = 3}, - [375] = {.lex_state = 108, .external_lex_state = 3}, - [376] = {.lex_state = 108, .external_lex_state = 3}, - [377] = {.lex_state = 136, .external_lex_state = 3}, - [378] = {.lex_state = 108, .external_lex_state = 3}, - [379] = {.lex_state = 108, .external_lex_state = 3}, - [380] = {.lex_state = 108, .external_lex_state = 3}, - [381] = {.lex_state = 108, .external_lex_state = 3}, - [382] = {.lex_state = 108, .external_lex_state = 3}, - [383] = {.lex_state = 108, .external_lex_state = 3}, - [384] = {.lex_state = 136, .external_lex_state = 3}, - [385] = {.lex_state = 140, .external_lex_state = 8}, - [386] = {.lex_state = 136, .external_lex_state = 3}, - [387] = {.lex_state = 136, .external_lex_state = 3}, - [388] = {.lex_state = 136, .external_lex_state = 3}, - [389] = {.lex_state = 136, .external_lex_state = 3}, - [390] = {.lex_state = 136, .external_lex_state = 3}, - [391] = {.lex_state = 136, .external_lex_state = 3}, - [392] = {.lex_state = 140, .external_lex_state = 8}, - [393] = {.lex_state = 136, .external_lex_state = 3}, - [394] = {.lex_state = 136, .external_lex_state = 3}, - [395] = {.lex_state = 140, .external_lex_state = 8}, - [396] = {.lex_state = 136, .external_lex_state = 3}, - [397] = {.lex_state = 136, .external_lex_state = 3}, - [398] = {.lex_state = 136, .external_lex_state = 3}, - [399] = {.lex_state = 136, .external_lex_state = 3}, - [400] = {.lex_state = 136, .external_lex_state = 3}, - [401] = {.lex_state = 136, .external_lex_state = 3}, - [402] = {.lex_state = 136, .external_lex_state = 3}, - [403] = {.lex_state = 136, .external_lex_state = 3}, - [404] = {.lex_state = 136, .external_lex_state = 3}, - [405] = {.lex_state = 140, .external_lex_state = 8}, - [406] = {.lex_state = 144, .external_lex_state = 8}, - [407] = {.lex_state = 140, .external_lex_state = 8}, - [408] = {.lex_state = 140, .external_lex_state = 8}, - [409] = {.lex_state = 144, .external_lex_state = 8}, - [410] = {.lex_state = 192, .external_lex_state = 5}, - [411] = {.lex_state = 192, .external_lex_state = 5}, - [412] = {.lex_state = 144, .external_lex_state = 8}, - [413] = {.lex_state = 192, .external_lex_state = 5}, - [414] = {.lex_state = 192, .external_lex_state = 5}, - [415] = {.lex_state = 192, .external_lex_state = 5}, - [416] = {.lex_state = 192, .external_lex_state = 5}, - [417] = {.lex_state = 144, .external_lex_state = 8}, - [418] = {.lex_state = 192, .external_lex_state = 5}, - [419] = {.lex_state = 192, .external_lex_state = 5}, - [420] = {.lex_state = 192, .external_lex_state = 5}, - [421] = {.lex_state = 192, .external_lex_state = 5}, - [422] = {.lex_state = 192, .external_lex_state = 5}, - [423] = {.lex_state = 192, .external_lex_state = 5}, - [424] = {.lex_state = 192, .external_lex_state = 5}, - [425] = {.lex_state = 192, .external_lex_state = 5}, - [426] = {.lex_state = 192, .external_lex_state = 5}, - [427] = {.lex_state = 192, .external_lex_state = 5}, - [428] = {.lex_state = 192, .external_lex_state = 5}, - [429] = {.lex_state = 192, .external_lex_state = 5}, - [430] = {.lex_state = 192, .external_lex_state = 5}, - [431] = {.lex_state = 192, .external_lex_state = 5}, - [432] = {.lex_state = 192, .external_lex_state = 5}, - [433] = {.lex_state = 192, .external_lex_state = 5}, - [434] = {.lex_state = 192, .external_lex_state = 5}, - [435] = {.lex_state = 192, .external_lex_state = 5}, - [436] = {.lex_state = 193, .external_lex_state = 9}, - [437] = {.lex_state = 193, .external_lex_state = 9}, - [438] = {.lex_state = 193, .external_lex_state = 9}, - [439] = {.lex_state = 193, .external_lex_state = 9}, - [440] = {.lex_state = 188, .external_lex_state = 2}, - [441] = {.lex_state = 188, .external_lex_state = 2}, - [442] = {.lex_state = 188, .external_lex_state = 2}, - [443] = {.lex_state = 188, .external_lex_state = 2}, - [444] = {.lex_state = 129, .external_lex_state = 10}, - [445] = {.lex_state = 129, .external_lex_state = 10}, - [446] = {.lex_state = 129, .external_lex_state = 10}, - [447] = {.lex_state = 137, .external_lex_state = 8}, - [448] = {.lex_state = 137, .external_lex_state = 8}, - [449] = {.lex_state = 141, .external_lex_state = 10}, - [450] = {.lex_state = 137, .external_lex_state = 8}, - [451] = {.lex_state = 137, .external_lex_state = 8}, - [452] = {.lex_state = 141, .external_lex_state = 10}, - [453] = {.lex_state = 137, .external_lex_state = 8}, - [454] = {.lex_state = 141, .external_lex_state = 10}, - [455] = {.lex_state = 396, .external_lex_state = 10}, - [456] = {.lex_state = 396, .external_lex_state = 10}, - [457] = {.lex_state = 148, .external_lex_state = 8}, - [458] = {.lex_state = 148, .external_lex_state = 8}, - [459] = {.lex_state = 396, .external_lex_state = 10}, - [460] = {.lex_state = 396, .external_lex_state = 10}, - [461] = {.lex_state = 396, .external_lex_state = 10}, - [462] = {.lex_state = 148, .external_lex_state = 8}, + [1] = {.lex_state = 439, .external_lex_state = 2}, + [2] = {.lex_state = 194, .external_lex_state = 2}, + [3] = {.lex_state = 194, .external_lex_state = 2}, + [4] = {.lex_state = 194, .external_lex_state = 2}, + [5] = {.lex_state = 194, .external_lex_state = 2}, + [6] = {.lex_state = 194, .external_lex_state = 2}, + [7] = {.lex_state = 194, .external_lex_state = 2}, + [8] = {.lex_state = 5, .external_lex_state = 3}, + [9] = {.lex_state = 194, .external_lex_state = 2}, + [10] = {.lex_state = 194, .external_lex_state = 2}, + [11] = {.lex_state = 5, .external_lex_state = 3}, + [12] = {.lex_state = 194, .external_lex_state = 2}, + [13] = {.lex_state = 143, .external_lex_state = 3}, + [14] = {.lex_state = 195, .external_lex_state = 4}, + [15] = {.lex_state = 195, .external_lex_state = 4}, + [16] = {.lex_state = 195, .external_lex_state = 4}, + [17] = {.lex_state = 439, .external_lex_state = 2}, + [18] = {.lex_state = 439, .external_lex_state = 2}, + [19] = {.lex_state = 439, .external_lex_state = 2}, + [20] = {.lex_state = 439, .external_lex_state = 2}, + [21] = {.lex_state = 439, .external_lex_state = 2}, + [22] = {.lex_state = 439, .external_lex_state = 2}, + [23] = {.lex_state = 197, .external_lex_state = 2}, + [24] = {.lex_state = 197, .external_lex_state = 2}, + [25] = {.lex_state = 197, .external_lex_state = 2}, + [26] = {.lex_state = 197, .external_lex_state = 2}, + [27] = {.lex_state = 197, .external_lex_state = 2}, + [28] = {.lex_state = 197, .external_lex_state = 2}, + [29] = {.lex_state = 197, .external_lex_state = 2}, + [30] = {.lex_state = 197, .external_lex_state = 2}, + [31] = {.lex_state = 197, .external_lex_state = 2}, + [32] = {.lex_state = 197, .external_lex_state = 2}, + [33] = {.lex_state = 197, .external_lex_state = 2}, + [34] = {.lex_state = 197, .external_lex_state = 2}, + [35] = {.lex_state = 439, .external_lex_state = 2}, + [36] = {.lex_state = 439, .external_lex_state = 2}, + [37] = {.lex_state = 439, .external_lex_state = 2}, + [38] = {.lex_state = 186, .external_lex_state = 5}, + [39] = {.lex_state = 439, .external_lex_state = 2}, + [40] = {.lex_state = 439, .external_lex_state = 2}, + [41] = {.lex_state = 439, .external_lex_state = 2}, + [42] = {.lex_state = 439, .external_lex_state = 2}, + [43] = {.lex_state = 439, .external_lex_state = 2}, + [44] = {.lex_state = 439, .external_lex_state = 2}, + [45] = {.lex_state = 439, .external_lex_state = 2}, + [46] = {.lex_state = 439, .external_lex_state = 2}, + [47] = {.lex_state = 439, .external_lex_state = 2}, + [48] = {.lex_state = 439, .external_lex_state = 2}, + [49] = {.lex_state = 439, .external_lex_state = 2}, + [50] = {.lex_state = 439, .external_lex_state = 2}, + [51] = {.lex_state = 439, .external_lex_state = 2}, + [52] = {.lex_state = 439, .external_lex_state = 2}, + [53] = {.lex_state = 439, .external_lex_state = 2}, + [54] = {.lex_state = 439, .external_lex_state = 2}, + [55] = {.lex_state = 439, .external_lex_state = 2}, + [56] = {.lex_state = 439, .external_lex_state = 2}, + [57] = {.lex_state = 439, .external_lex_state = 2}, + [58] = {.lex_state = 439, .external_lex_state = 2}, + [59] = {.lex_state = 439, .external_lex_state = 2}, + [60] = {.lex_state = 439, .external_lex_state = 2}, + [61] = {.lex_state = 439, .external_lex_state = 2}, + [62] = {.lex_state = 439, .external_lex_state = 2}, + [63] = {.lex_state = 439, .external_lex_state = 2}, + [64] = {.lex_state = 439, .external_lex_state = 2}, + [65] = {.lex_state = 439, .external_lex_state = 2}, + [66] = {.lex_state = 439, .external_lex_state = 2}, + [67] = {.lex_state = 439, .external_lex_state = 2}, + [68] = {.lex_state = 439, .external_lex_state = 2}, + [69] = {.lex_state = 439, .external_lex_state = 2}, + [70] = {.lex_state = 439, .external_lex_state = 2}, + [71] = {.lex_state = 439, .external_lex_state = 2}, + [72] = {.lex_state = 439, .external_lex_state = 2}, + [73] = {.lex_state = 439, .external_lex_state = 2}, + [74] = {.lex_state = 439, .external_lex_state = 2}, + [75] = {.lex_state = 439, .external_lex_state = 2}, + [76] = {.lex_state = 439, .external_lex_state = 2}, + [77] = {.lex_state = 439, .external_lex_state = 2}, + [78] = {.lex_state = 198, .external_lex_state = 2}, + [79] = {.lex_state = 439, .external_lex_state = 2}, + [80] = {.lex_state = 439, .external_lex_state = 2}, + [81] = {.lex_state = 439, .external_lex_state = 2}, + [82] = {.lex_state = 439, .external_lex_state = 2}, + [83] = {.lex_state = 439, .external_lex_state = 2}, + [84] = {.lex_state = 439, .external_lex_state = 2}, + [85] = {.lex_state = 439, .external_lex_state = 2}, + [86] = {.lex_state = 439, .external_lex_state = 2}, + [87] = {.lex_state = 439, .external_lex_state = 2}, + [88] = {.lex_state = 439, .external_lex_state = 2}, + [89] = {.lex_state = 439, .external_lex_state = 2}, + [90] = {.lex_state = 439, .external_lex_state = 2}, + [91] = {.lex_state = 439, .external_lex_state = 2}, + [92] = {.lex_state = 439, .external_lex_state = 2}, + [93] = {.lex_state = 439, .external_lex_state = 2}, + [94] = {.lex_state = 198, .external_lex_state = 2}, + [95] = {.lex_state = 439, .external_lex_state = 2}, + [96] = {.lex_state = 439, .external_lex_state = 2}, + [97] = {.lex_state = 439, .external_lex_state = 2}, + [98] = {.lex_state = 198, .external_lex_state = 2}, + [99] = {.lex_state = 439, .external_lex_state = 2}, + [100] = {.lex_state = 439, .external_lex_state = 2}, + [101] = {.lex_state = 439, .external_lex_state = 2}, + [102] = {.lex_state = 439, .external_lex_state = 2}, + [103] = {.lex_state = 439, .external_lex_state = 2}, + [104] = {.lex_state = 439, .external_lex_state = 2}, + [105] = {.lex_state = 439, .external_lex_state = 2}, + [106] = {.lex_state = 439, .external_lex_state = 2}, + [107] = {.lex_state = 439, .external_lex_state = 2}, + [108] = {.lex_state = 439, .external_lex_state = 2}, + [109] = {.lex_state = 439, .external_lex_state = 2}, + [110] = {.lex_state = 439, .external_lex_state = 2}, + [111] = {.lex_state = 439, .external_lex_state = 2}, + [112] = {.lex_state = 439, .external_lex_state = 2}, + [113] = {.lex_state = 439, .external_lex_state = 2}, + [114] = {.lex_state = 439, .external_lex_state = 2}, + [115] = {.lex_state = 439, .external_lex_state = 2}, + [116] = {.lex_state = 439, .external_lex_state = 2}, + [117] = {.lex_state = 439, .external_lex_state = 2}, + [118] = {.lex_state = 439, .external_lex_state = 2}, + [119] = {.lex_state = 439, .external_lex_state = 2}, + [120] = {.lex_state = 439, .external_lex_state = 2}, + [121] = {.lex_state = 439, .external_lex_state = 2}, + [122] = {.lex_state = 439, .external_lex_state = 2}, + [123] = {.lex_state = 439, .external_lex_state = 2}, + [124] = {.lex_state = 439, .external_lex_state = 2}, + [125] = {.lex_state = 439, .external_lex_state = 2}, + [126] = {.lex_state = 439, .external_lex_state = 2}, + [127] = {.lex_state = 439, .external_lex_state = 2}, + [128] = {.lex_state = 439, .external_lex_state = 2}, + [129] = {.lex_state = 439, .external_lex_state = 2}, + [130] = {.lex_state = 439, .external_lex_state = 2}, + [131] = {.lex_state = 439, .external_lex_state = 2}, + [132] = {.lex_state = 439, .external_lex_state = 2}, + [133] = {.lex_state = 439, .external_lex_state = 2}, + [134] = {.lex_state = 439, .external_lex_state = 2}, + [135] = {.lex_state = 439, .external_lex_state = 2}, + [136] = {.lex_state = 439, .external_lex_state = 2}, + [137] = {.lex_state = 439, .external_lex_state = 2}, + [138] = {.lex_state = 439, .external_lex_state = 2}, + [139] = {.lex_state = 439, .external_lex_state = 2}, + [140] = {.lex_state = 439, .external_lex_state = 2}, + [141] = {.lex_state = 439, .external_lex_state = 2}, + [142] = {.lex_state = 198, .external_lex_state = 2}, + [143] = {.lex_state = 198, .external_lex_state = 2}, + [144] = {.lex_state = 439, .external_lex_state = 2}, + [145] = {.lex_state = 439, .external_lex_state = 2}, + [146] = {.lex_state = 439, .external_lex_state = 2}, + [147] = {.lex_state = 439, .external_lex_state = 2}, + [148] = {.lex_state = 439, .external_lex_state = 2}, + [149] = {.lex_state = 439, .external_lex_state = 2}, + [150] = {.lex_state = 439, .external_lex_state = 2}, + [151] = {.lex_state = 439, .external_lex_state = 2}, + [152] = {.lex_state = 439, .external_lex_state = 2}, + [153] = {.lex_state = 439, .external_lex_state = 2}, + [154] = {.lex_state = 439, .external_lex_state = 2}, + [155] = {.lex_state = 439, .external_lex_state = 2}, + [156] = {.lex_state = 439, .external_lex_state = 2}, + [157] = {.lex_state = 439, .external_lex_state = 2}, + [158] = {.lex_state = 439, .external_lex_state = 2}, + [159] = {.lex_state = 439, .external_lex_state = 2}, + [160] = {.lex_state = 439, .external_lex_state = 2}, + [161] = {.lex_state = 439, .external_lex_state = 2}, + [162] = {.lex_state = 439, .external_lex_state = 2}, + [163] = {.lex_state = 439, .external_lex_state = 2}, + [164] = {.lex_state = 439, .external_lex_state = 2}, + [165] = {.lex_state = 439, .external_lex_state = 2}, + [166] = {.lex_state = 439, .external_lex_state = 2}, + [167] = {.lex_state = 439, .external_lex_state = 2}, + [168] = {.lex_state = 439, .external_lex_state = 2}, + [169] = {.lex_state = 439, .external_lex_state = 2}, + [170] = {.lex_state = 439, .external_lex_state = 2}, + [171] = {.lex_state = 439, .external_lex_state = 2}, + [172] = {.lex_state = 439, .external_lex_state = 2}, + [173] = {.lex_state = 439, .external_lex_state = 2}, + [174] = {.lex_state = 439, .external_lex_state = 2}, + [175] = {.lex_state = 439, .external_lex_state = 2}, + [176] = {.lex_state = 439, .external_lex_state = 2}, + [177] = {.lex_state = 439, .external_lex_state = 2}, + [178] = {.lex_state = 439, .external_lex_state = 2}, + [179] = {.lex_state = 439, .external_lex_state = 2}, + [180] = {.lex_state = 439, .external_lex_state = 2}, + [181] = {.lex_state = 439, .external_lex_state = 2}, + [182] = {.lex_state = 439, .external_lex_state = 2}, + [183] = {.lex_state = 439, .external_lex_state = 2}, + [184] = {.lex_state = 439, .external_lex_state = 2}, + [185] = {.lex_state = 439, .external_lex_state = 2}, + [186] = {.lex_state = 439, .external_lex_state = 2}, + [187] = {.lex_state = 439, .external_lex_state = 2}, + [188] = {.lex_state = 439, .external_lex_state = 2}, + [189] = {.lex_state = 439, .external_lex_state = 2}, + [190] = {.lex_state = 439, .external_lex_state = 2}, + [191] = {.lex_state = 439, .external_lex_state = 2}, + [192] = {.lex_state = 439, .external_lex_state = 2}, + [193] = {.lex_state = 439, .external_lex_state = 2}, + [194] = {.lex_state = 439, .external_lex_state = 2}, + [195] = {.lex_state = 439, .external_lex_state = 2}, + [196] = {.lex_state = 439, .external_lex_state = 2}, + [197] = {.lex_state = 439, .external_lex_state = 2}, + [198] = {.lex_state = 439, .external_lex_state = 2}, + [199] = {.lex_state = 439, .external_lex_state = 2}, + [200] = {.lex_state = 439, .external_lex_state = 2}, + [201] = {.lex_state = 198, .external_lex_state = 2}, + [202] = {.lex_state = 439, .external_lex_state = 2}, + [203] = {.lex_state = 439, .external_lex_state = 2}, + [204] = {.lex_state = 439, .external_lex_state = 2}, + [205] = {.lex_state = 439, .external_lex_state = 2}, + [206] = {.lex_state = 439, .external_lex_state = 2}, + [207] = {.lex_state = 439, .external_lex_state = 2}, + [208] = {.lex_state = 439, .external_lex_state = 2}, + [209] = {.lex_state = 439, .external_lex_state = 2}, + [210] = {.lex_state = 439, .external_lex_state = 2}, + [211] = {.lex_state = 439, .external_lex_state = 2}, + [212] = {.lex_state = 439, .external_lex_state = 2}, + [213] = {.lex_state = 439, .external_lex_state = 2}, + [214] = {.lex_state = 439, .external_lex_state = 2}, + [215] = {.lex_state = 439, .external_lex_state = 2}, + [216] = {.lex_state = 439, .external_lex_state = 2}, + [217] = {.lex_state = 439, .external_lex_state = 2}, + [218] = {.lex_state = 439, .external_lex_state = 2}, + [219] = {.lex_state = 439, .external_lex_state = 2}, + [220] = {.lex_state = 439, .external_lex_state = 2}, + [221] = {.lex_state = 439, .external_lex_state = 2}, + [222] = {.lex_state = 439, .external_lex_state = 2}, + [223] = {.lex_state = 439, .external_lex_state = 2}, + [224] = {.lex_state = 439, .external_lex_state = 2}, + [225] = {.lex_state = 439, .external_lex_state = 2}, + [226] = {.lex_state = 439, .external_lex_state = 2}, + [227] = {.lex_state = 439, .external_lex_state = 2}, + [228] = {.lex_state = 439, .external_lex_state = 2}, + [229] = {.lex_state = 439, .external_lex_state = 2}, + [230] = {.lex_state = 439, .external_lex_state = 2}, + [231] = {.lex_state = 198, .external_lex_state = 2}, + [232] = {.lex_state = 439, .external_lex_state = 2}, + [233] = {.lex_state = 439, .external_lex_state = 2}, + [234] = {.lex_state = 439, .external_lex_state = 2}, + [235] = {.lex_state = 439, .external_lex_state = 2}, + [236] = {.lex_state = 439, .external_lex_state = 2}, + [237] = {.lex_state = 439, .external_lex_state = 2}, + [238] = {.lex_state = 439, .external_lex_state = 2}, + [239] = {.lex_state = 439, .external_lex_state = 2}, + [240] = {.lex_state = 439, .external_lex_state = 2}, + [241] = {.lex_state = 439, .external_lex_state = 2}, + [242] = {.lex_state = 439, .external_lex_state = 2}, + [243] = {.lex_state = 439, .external_lex_state = 2}, + [244] = {.lex_state = 439, .external_lex_state = 2}, + [245] = {.lex_state = 439, .external_lex_state = 2}, + [246] = {.lex_state = 439, .external_lex_state = 2}, + [247] = {.lex_state = 439, .external_lex_state = 2}, + [248] = {.lex_state = 439, .external_lex_state = 2}, + [249] = {.lex_state = 439, .external_lex_state = 2}, + [250] = {.lex_state = 439, .external_lex_state = 2}, + [251] = {.lex_state = 439, .external_lex_state = 2}, + [252] = {.lex_state = 439, .external_lex_state = 2}, + [253] = {.lex_state = 439, .external_lex_state = 2}, + [254] = {.lex_state = 439, .external_lex_state = 2}, + [255] = {.lex_state = 439, .external_lex_state = 2}, + [256] = {.lex_state = 439, .external_lex_state = 2}, + [257] = {.lex_state = 439, .external_lex_state = 2}, + [258] = {.lex_state = 439, .external_lex_state = 2}, + [259] = {.lex_state = 439, .external_lex_state = 2}, + [260] = {.lex_state = 439, .external_lex_state = 2}, + [261] = {.lex_state = 439, .external_lex_state = 2}, + [262] = {.lex_state = 439, .external_lex_state = 2}, + [263] = {.lex_state = 439, .external_lex_state = 2}, + [264] = {.lex_state = 439, .external_lex_state = 2}, + [265] = {.lex_state = 439, .external_lex_state = 2}, + [266] = {.lex_state = 439, .external_lex_state = 2}, + [267] = {.lex_state = 439, .external_lex_state = 2}, + [268] = {.lex_state = 439, .external_lex_state = 2}, + [269] = {.lex_state = 439, .external_lex_state = 2}, + [270] = {.lex_state = 439, .external_lex_state = 2}, + [271] = {.lex_state = 439, .external_lex_state = 2}, + [272] = {.lex_state = 439, .external_lex_state = 2}, + [273] = {.lex_state = 439, .external_lex_state = 2}, + [274] = {.lex_state = 439, .external_lex_state = 2}, + [275] = {.lex_state = 439, .external_lex_state = 2}, + [276] = {.lex_state = 439, .external_lex_state = 2}, + [277] = {.lex_state = 439, .external_lex_state = 2}, + [278] = {.lex_state = 439, .external_lex_state = 2}, + [279] = {.lex_state = 439, .external_lex_state = 2}, + [280] = {.lex_state = 439, .external_lex_state = 2}, + [281] = {.lex_state = 439, .external_lex_state = 2}, + [282] = {.lex_state = 439, .external_lex_state = 2}, + [283] = {.lex_state = 439, .external_lex_state = 2}, + [284] = {.lex_state = 439, .external_lex_state = 2}, + [285] = {.lex_state = 439, .external_lex_state = 2}, + [286] = {.lex_state = 439, .external_lex_state = 2}, + [287] = {.lex_state = 439, .external_lex_state = 2}, + [288] = {.lex_state = 439, .external_lex_state = 2}, + [289] = {.lex_state = 439, .external_lex_state = 2}, + [290] = {.lex_state = 439, .external_lex_state = 2}, + [291] = {.lex_state = 439, .external_lex_state = 2}, + [292] = {.lex_state = 439, .external_lex_state = 2}, + [293] = {.lex_state = 439, .external_lex_state = 2}, + [294] = {.lex_state = 439, .external_lex_state = 2}, + [295] = {.lex_state = 439, .external_lex_state = 2}, + [296] = {.lex_state = 439, .external_lex_state = 2}, + [297] = {.lex_state = 439, .external_lex_state = 2}, + [298] = {.lex_state = 439, .external_lex_state = 2}, + [299] = {.lex_state = 439, .external_lex_state = 2}, + [300] = {.lex_state = 439, .external_lex_state = 2}, + [301] = {.lex_state = 439, .external_lex_state = 2}, + [302] = {.lex_state = 439, .external_lex_state = 2}, + [303] = {.lex_state = 439, .external_lex_state = 2}, + [304] = {.lex_state = 439, .external_lex_state = 2}, + [305] = {.lex_state = 439, .external_lex_state = 2}, + [306] = {.lex_state = 439, .external_lex_state = 2}, + [307] = {.lex_state = 439, .external_lex_state = 2}, + [308] = {.lex_state = 439, .external_lex_state = 2}, + [309] = {.lex_state = 439, .external_lex_state = 2}, + [310] = {.lex_state = 439, .external_lex_state = 2}, + [311] = {.lex_state = 439, .external_lex_state = 2}, + [312] = {.lex_state = 439, .external_lex_state = 2}, + [313] = {.lex_state = 439, .external_lex_state = 2}, + [314] = {.lex_state = 439, .external_lex_state = 2}, + [315] = {.lex_state = 439, .external_lex_state = 2}, + [316] = {.lex_state = 439, .external_lex_state = 2}, + [317] = {.lex_state = 439, .external_lex_state = 2}, + [318] = {.lex_state = 439, .external_lex_state = 2}, + [319] = {.lex_state = 439, .external_lex_state = 2}, + [320] = {.lex_state = 439, .external_lex_state = 2}, + [321] = {.lex_state = 439, .external_lex_state = 2}, + [322] = {.lex_state = 187, .external_lex_state = 6}, + [323] = {.lex_state = 190, .external_lex_state = 7}, + [324] = {.lex_state = 190, .external_lex_state = 7}, + [325] = {.lex_state = 190, .external_lex_state = 7}, + [326] = {.lex_state = 187, .external_lex_state = 6}, + [327] = {.lex_state = 189, .external_lex_state = 6}, + [328] = {.lex_state = 190, .external_lex_state = 7}, + [329] = {.lex_state = 190, .external_lex_state = 7}, + [330] = {.lex_state = 191, .external_lex_state = 6}, + [331] = {.lex_state = 190, .external_lex_state = 7}, + [332] = {.lex_state = 188, .external_lex_state = 6}, + [333] = {.lex_state = 187, .external_lex_state = 6}, + [334] = {.lex_state = 12, .external_lex_state = 8}, + [335] = {.lex_state = 12, .external_lex_state = 8}, + [336] = {.lex_state = 144, .external_lex_state = 8}, + [337] = {.lex_state = 144, .external_lex_state = 8}, + [338] = {.lex_state = 109, .external_lex_state = 3}, + [339] = {.lex_state = 192, .external_lex_state = 9}, + [340] = {.lex_state = 192, .external_lex_state = 9}, + [341] = {.lex_state = 109, .external_lex_state = 3}, + [342] = {.lex_state = 109, .external_lex_state = 3}, + [343] = {.lex_state = 109, .external_lex_state = 3}, + [344] = {.lex_state = 109, .external_lex_state = 3}, + [345] = {.lex_state = 109, .external_lex_state = 3}, + [346] = {.lex_state = 109, .external_lex_state = 3}, + [347] = {.lex_state = 109, .external_lex_state = 3}, + [348] = {.lex_state = 146, .external_lex_state = 3}, + [349] = {.lex_state = 109, .external_lex_state = 3}, + [350] = {.lex_state = 109, .external_lex_state = 3}, + [351] = {.lex_state = 109, .external_lex_state = 3}, + [352] = {.lex_state = 109, .external_lex_state = 3}, + [353] = {.lex_state = 109, .external_lex_state = 3}, + [354] = {.lex_state = 109, .external_lex_state = 3}, + [355] = {.lex_state = 146, .external_lex_state = 3}, + [356] = {.lex_state = 109, .external_lex_state = 3}, + [357] = {.lex_state = 109, .external_lex_state = 3}, + [358] = {.lex_state = 109, .external_lex_state = 3}, + [359] = {.lex_state = 146, .external_lex_state = 3}, + [360] = {.lex_state = 146, .external_lex_state = 3}, + [361] = {.lex_state = 109, .external_lex_state = 3}, + [362] = {.lex_state = 146, .external_lex_state = 3}, + [363] = {.lex_state = 146, .external_lex_state = 3}, + [364] = {.lex_state = 109, .external_lex_state = 3}, + [365] = {.lex_state = 109, .external_lex_state = 3}, + [366] = {.lex_state = 109, .external_lex_state = 3}, + [367] = {.lex_state = 109, .external_lex_state = 3}, + [368] = {.lex_state = 109, .external_lex_state = 3}, + [369] = {.lex_state = 109, .external_lex_state = 3}, + [370] = {.lex_state = 109, .external_lex_state = 3}, + [371] = {.lex_state = 109, .external_lex_state = 3}, + [372] = {.lex_state = 109, .external_lex_state = 3}, + [373] = {.lex_state = 109, .external_lex_state = 3}, + [374] = {.lex_state = 146, .external_lex_state = 3}, + [375] = {.lex_state = 146, .external_lex_state = 3}, + [376] = {.lex_state = 146, .external_lex_state = 3}, + [377] = {.lex_state = 150, .external_lex_state = 8}, + [378] = {.lex_state = 146, .external_lex_state = 3}, + [379] = {.lex_state = 150, .external_lex_state = 8}, + [380] = {.lex_state = 146, .external_lex_state = 3}, + [381] = {.lex_state = 146, .external_lex_state = 3}, + [382] = {.lex_state = 146, .external_lex_state = 3}, + [383] = {.lex_state = 146, .external_lex_state = 3}, + [384] = {.lex_state = 146, .external_lex_state = 3}, + [385] = {.lex_state = 146, .external_lex_state = 3}, + [386] = {.lex_state = 146, .external_lex_state = 3}, + [387] = {.lex_state = 146, .external_lex_state = 3}, + [388] = {.lex_state = 146, .external_lex_state = 3}, + [389] = {.lex_state = 146, .external_lex_state = 3}, + [390] = {.lex_state = 146, .external_lex_state = 3}, + [391] = {.lex_state = 146, .external_lex_state = 3}, + [392] = {.lex_state = 146, .external_lex_state = 3}, + [393] = {.lex_state = 146, .external_lex_state = 3}, + [394] = {.lex_state = 146, .external_lex_state = 3}, + [395] = {.lex_state = 150, .external_lex_state = 8}, + [396] = {.lex_state = 146, .external_lex_state = 3}, + [397] = {.lex_state = 150, .external_lex_state = 8}, + [398] = {.lex_state = 154, .external_lex_state = 8}, + [399] = {.lex_state = 154, .external_lex_state = 8}, + [400] = {.lex_state = 150, .external_lex_state = 8}, + [401] = {.lex_state = 207, .external_lex_state = 5}, + [402] = {.lex_state = 150, .external_lex_state = 8}, + [403] = {.lex_state = 207, .external_lex_state = 5}, + [404] = {.lex_state = 207, .external_lex_state = 5}, + [405] = {.lex_state = 154, .external_lex_state = 8}, + [406] = {.lex_state = 207, .external_lex_state = 5}, + [407] = {.lex_state = 207, .external_lex_state = 5}, + [408] = {.lex_state = 207, .external_lex_state = 5}, + [409] = {.lex_state = 154, .external_lex_state = 8}, + [410] = {.lex_state = 207, .external_lex_state = 5}, + [411] = {.lex_state = 207, .external_lex_state = 5}, + [412] = {.lex_state = 207, .external_lex_state = 5}, + [413] = {.lex_state = 207, .external_lex_state = 5}, + [414] = {.lex_state = 207, .external_lex_state = 5}, + [415] = {.lex_state = 207, .external_lex_state = 5}, + [416] = {.lex_state = 207, .external_lex_state = 5}, + [417] = {.lex_state = 207, .external_lex_state = 5}, + [418] = {.lex_state = 207, .external_lex_state = 5}, + [419] = {.lex_state = 207, .external_lex_state = 5}, + [420] = {.lex_state = 207, .external_lex_state = 5}, + [421] = {.lex_state = 207, .external_lex_state = 5}, + [422] = {.lex_state = 207, .external_lex_state = 5}, + [423] = {.lex_state = 207, .external_lex_state = 5}, + [424] = {.lex_state = 207, .external_lex_state = 5}, + [425] = {.lex_state = 207, .external_lex_state = 5}, + [426] = {.lex_state = 207, .external_lex_state = 5}, + [427] = {.lex_state = 207, .external_lex_state = 5}, + [428] = {.lex_state = 207, .external_lex_state = 5}, + [429] = {.lex_state = 207, .external_lex_state = 5}, + [430] = {.lex_state = 236, .external_lex_state = 10}, + [431] = {.lex_state = 208, .external_lex_state = 9}, + [432] = {.lex_state = 208, .external_lex_state = 9}, + [433] = {.lex_state = 208, .external_lex_state = 9}, + [434] = {.lex_state = 208, .external_lex_state = 9}, + [435] = {.lex_state = 196, .external_lex_state = 2}, + [436] = {.lex_state = 196, .external_lex_state = 2}, + [437] = {.lex_state = 196, .external_lex_state = 2}, + [438] = {.lex_state = 196, .external_lex_state = 2}, + [439] = {.lex_state = 135, .external_lex_state = 11}, + [440] = {.lex_state = 135, .external_lex_state = 11}, + [441] = {.lex_state = 135, .external_lex_state = 11}, + [442] = {.lex_state = 147, .external_lex_state = 11}, + [443] = {.lex_state = 151, .external_lex_state = 8}, + [444] = {.lex_state = 147, .external_lex_state = 11}, + [445] = {.lex_state = 147, .external_lex_state = 11}, + [446] = {.lex_state = 151, .external_lex_state = 8}, + [447] = {.lex_state = 151, .external_lex_state = 8}, + [448] = {.lex_state = 151, .external_lex_state = 8}, + [449] = {.lex_state = 151, .external_lex_state = 8}, + [450] = {.lex_state = 155, .external_lex_state = 8}, + [451] = {.lex_state = 155, .external_lex_state = 8}, + [452] = {.lex_state = 155, .external_lex_state = 8}, + [453] = {.lex_state = 155, .external_lex_state = 8}, + [454] = {.lex_state = 431, .external_lex_state = 11}, + [455] = {.lex_state = 155, .external_lex_state = 8}, + [456] = {.lex_state = 431, .external_lex_state = 11}, + [457] = {.lex_state = 431, .external_lex_state = 11}, + [458] = {.lex_state = 431, .external_lex_state = 11}, + [459] = {.lex_state = 431, .external_lex_state = 11}, + [460] = {.lex_state = 431, .external_lex_state = 11}, + [461] = {.lex_state = 139, .external_lex_state = 8}, + [462] = {.lex_state = 139, .external_lex_state = 8}, [463] = {.lex_state = 148, .external_lex_state = 8}, - [464] = {.lex_state = 396, .external_lex_state = 10}, - [465] = {.lex_state = 132, .external_lex_state = 8}, - [466] = {.lex_state = 132, .external_lex_state = 8}, - [467] = {.lex_state = 148, .external_lex_state = 8}, - [468] = {.lex_state = 396, .external_lex_state = 10}, - [469] = {.lex_state = 189, .external_lex_state = 11}, - [470] = {.lex_state = 398, .external_lex_state = 8}, - [471] = {.lex_state = 129, .external_lex_state = 12}, - [472] = {.lex_state = 153, .external_lex_state = 10}, - [473] = {.lex_state = 153, .external_lex_state = 10}, - [474] = {.lex_state = 405, .external_lex_state = 11}, - [475] = {.lex_state = 153, .external_lex_state = 10}, - [476] = {.lex_state = 396, .external_lex_state = 10}, - [477] = {.lex_state = 396, .external_lex_state = 10}, - [478] = {.lex_state = 396, .external_lex_state = 10}, - [479] = {.lex_state = 398, .external_lex_state = 8}, - [480] = {.lex_state = 138, .external_lex_state = 8}, - [481] = {.lex_state = 138, .external_lex_state = 8}, - [482] = {.lex_state = 129, .external_lex_state = 12}, - [483] = {.lex_state = 398, .external_lex_state = 8}, - [484] = {.lex_state = 398, .external_lex_state = 8}, - [485] = {.lex_state = 398, .external_lex_state = 8}, - [486] = {.lex_state = 398, .external_lex_state = 8}, - [487] = {.lex_state = 396, .external_lex_state = 10}, - [488] = {.lex_state = 398, .external_lex_state = 8}, - [489] = {.lex_state = 129, .external_lex_state = 12}, - [490] = {.lex_state = 398, .external_lex_state = 8}, - [491] = {.lex_state = 189, .external_lex_state = 11}, - [492] = {.lex_state = 398, .external_lex_state = 8}, - [493] = {.lex_state = 398, .external_lex_state = 8}, - [494] = {.lex_state = 398, .external_lex_state = 8}, - [495] = {.lex_state = 142, .external_lex_state = 10}, - [496] = {.lex_state = 397, .external_lex_state = 8}, - [497] = {.lex_state = 149, .external_lex_state = 8}, - [498] = {.lex_state = 405, .external_lex_state = 11}, - [499] = {.lex_state = 149, .external_lex_state = 8}, - [500] = {.lex_state = 398, .external_lex_state = 8}, - [501] = {.lex_state = 405, .external_lex_state = 11}, - [502] = {.lex_state = 398, .external_lex_state = 8}, - [503] = {.lex_state = 141, .external_lex_state = 12}, - [504] = {.lex_state = 141, .external_lex_state = 12}, - [505] = {.lex_state = 398, .external_lex_state = 8}, - [506] = {.lex_state = 153, .external_lex_state = 12}, - [507] = {.lex_state = 398, .external_lex_state = 8}, - [508] = {.lex_state = 155, .external_lex_state = 10}, - [509] = {.lex_state = 397, .external_lex_state = 8}, - [510] = {.lex_state = 155, .external_lex_state = 10}, - [511] = {.lex_state = 153, .external_lex_state = 12}, - [512] = {.lex_state = 398, .external_lex_state = 8}, - [513] = {.lex_state = 141, .external_lex_state = 12}, - [514] = {.lex_state = 142, .external_lex_state = 10}, - [515] = {.lex_state = 153, .external_lex_state = 12}, - [516] = {.lex_state = 142, .external_lex_state = 10}, - [517] = {.lex_state = 398, .external_lex_state = 8}, - [518] = {.lex_state = 155, .external_lex_state = 10}, - [519] = {.lex_state = 142, .external_lex_state = 10}, - [520] = {.lex_state = 398, .external_lex_state = 8}, - [521] = {.lex_state = 398, .external_lex_state = 8}, - [522] = {.lex_state = 155, .external_lex_state = 12}, - [523] = {.lex_state = 396, .external_lex_state = 12}, - [524] = {.lex_state = 396, .external_lex_state = 12}, - [525] = {.lex_state = 152, .external_lex_state = 10}, - [526] = {.lex_state = 142, .external_lex_state = 12}, - [527] = {.lex_state = 142, .external_lex_state = 12}, - [528] = {.lex_state = 400, .external_lex_state = 10}, - [529] = {.lex_state = 142, .external_lex_state = 12}, - [530] = {.lex_state = 400, .external_lex_state = 10}, - [531] = {.lex_state = 400, .external_lex_state = 10}, - [532] = {.lex_state = 400, .external_lex_state = 10}, - [533] = {.lex_state = 152, .external_lex_state = 10}, - [534] = {.lex_state = 142, .external_lex_state = 12}, - [535] = {.lex_state = 152, .external_lex_state = 10}, - [536] = {.lex_state = 400, .external_lex_state = 10}, - [537] = {.lex_state = 396, .external_lex_state = 12}, - [538] = {.lex_state = 400, .external_lex_state = 10}, - [539] = {.lex_state = 396, .external_lex_state = 12}, - [540] = {.lex_state = 397, .external_lex_state = 8}, - [541] = {.lex_state = 155, .external_lex_state = 12}, - [542] = {.lex_state = 397, .external_lex_state = 8}, - [543] = {.lex_state = 152, .external_lex_state = 10}, - [544] = {.lex_state = 396, .external_lex_state = 12}, - [545] = {.lex_state = 396, .external_lex_state = 12}, - [546] = {.lex_state = 155, .external_lex_state = 12}, - [547] = {.lex_state = 189, .external_lex_state = 2}, - [548] = {.lex_state = 405, .external_lex_state = 2}, - [549] = {.lex_state = 190, .external_lex_state = 11}, - [550] = {.lex_state = 399, .external_lex_state = 10}, - [551] = {.lex_state = 400, .external_lex_state = 12}, - [552] = {.lex_state = 190, .external_lex_state = 11}, - [553] = {.lex_state = 190, .external_lex_state = 11}, - [554] = {.lex_state = 396, .external_lex_state = 12}, - [555] = {.lex_state = 400, .external_lex_state = 10}, - [556] = {.lex_state = 400, .external_lex_state = 12}, - [557] = {.lex_state = 399, .external_lex_state = 10}, - [558] = {.lex_state = 399, .external_lex_state = 10}, - [559] = {.lex_state = 396, .external_lex_state = 12}, - [560] = {.lex_state = 405, .external_lex_state = 2}, - [561] = {.lex_state = 156, .external_lex_state = 10}, - [562] = {.lex_state = 190, .external_lex_state = 11}, - [563] = {.lex_state = 396, .external_lex_state = 12}, - [564] = {.lex_state = 400, .external_lex_state = 12}, - [565] = {.lex_state = 399, .external_lex_state = 10}, - [566] = {.lex_state = 189, .external_lex_state = 2}, - [567] = {.lex_state = 156, .external_lex_state = 10}, - [568] = {.lex_state = 405, .external_lex_state = 2}, - [569] = {.lex_state = 396, .external_lex_state = 12}, - [570] = {.lex_state = 400, .external_lex_state = 12}, - [571] = {.lex_state = 405, .external_lex_state = 11}, - [572] = {.lex_state = 396, .external_lex_state = 12}, - [573] = {.lex_state = 405, .external_lex_state = 2}, - [574] = {.lex_state = 152, .external_lex_state = 12}, - [575] = {.lex_state = 400, .external_lex_state = 10}, - [576] = {.lex_state = 405, .external_lex_state = 11}, - [577] = {.lex_state = 405, .external_lex_state = 11}, - [578] = {.lex_state = 405, .external_lex_state = 2}, - [579] = {.lex_state = 400, .external_lex_state = 10}, - [580] = {.lex_state = 405, .external_lex_state = 2}, - [581] = {.lex_state = 152, .external_lex_state = 12}, - [582] = {.lex_state = 405, .external_lex_state = 11}, - [583] = {.lex_state = 152, .external_lex_state = 12}, - [584] = {.lex_state = 189, .external_lex_state = 2}, - [585] = {.lex_state = 400, .external_lex_state = 12}, - [586] = {.lex_state = 152, .external_lex_state = 12}, - [587] = {.lex_state = 189, .external_lex_state = 2}, - [588] = {.lex_state = 156, .external_lex_state = 10}, - [589] = {.lex_state = 156, .external_lex_state = 10}, - [590] = {.lex_state = 400, .external_lex_state = 12}, - [591] = {.lex_state = 190, .external_lex_state = 11}, - [592] = {.lex_state = 223, .external_lex_state = 2}, - [593] = {.lex_state = 399, .external_lex_state = 12}, - [594] = {.lex_state = 405, .external_lex_state = 11}, - [595] = {.lex_state = 223, .external_lex_state = 2}, - [596] = {.lex_state = 223, .external_lex_state = 2}, - [597] = {.lex_state = 223, .external_lex_state = 2}, - [598] = {.lex_state = 399, .external_lex_state = 10}, - [599] = {.lex_state = 399, .external_lex_state = 10}, - [600] = {.lex_state = 223, .external_lex_state = 2}, - [601] = {.lex_state = 223, .external_lex_state = 2}, - [602] = {.lex_state = 405, .external_lex_state = 11}, - [603] = {.lex_state = 156, .external_lex_state = 12}, - [604] = {.lex_state = 232, .external_lex_state = 13}, - [605] = {.lex_state = 400, .external_lex_state = 12}, - [606] = {.lex_state = 399, .external_lex_state = 10}, - [607] = {.lex_state = 399, .external_lex_state = 10}, - [608] = {.lex_state = 400, .external_lex_state = 12}, - [609] = {.lex_state = 405, .external_lex_state = 11}, - [610] = {.lex_state = 220, .external_lex_state = 14}, - [611] = {.lex_state = 232, .external_lex_state = 13}, - [612] = {.lex_state = 156, .external_lex_state = 12}, - [613] = {.lex_state = 399, .external_lex_state = 12}, - [614] = {.lex_state = 232, .external_lex_state = 13}, - [615] = {.lex_state = 399, .external_lex_state = 12}, - [616] = {.lex_state = 400, .external_lex_state = 12}, - [617] = {.lex_state = 400, .external_lex_state = 12}, - [618] = {.lex_state = 156, .external_lex_state = 12}, - [619] = {.lex_state = 156, .external_lex_state = 12}, - [620] = {.lex_state = 400, .external_lex_state = 12}, - [621] = {.lex_state = 220, .external_lex_state = 14}, - [622] = {.lex_state = 399, .external_lex_state = 12}, - [623] = {.lex_state = 223, .external_lex_state = 2}, - [624] = {.lex_state = 153, .external_lex_state = 10}, - [625] = {.lex_state = 153, .external_lex_state = 10}, - [626] = {.lex_state = 229, .external_lex_state = 15}, - [627] = {.lex_state = 229, .external_lex_state = 15}, - [628] = {.lex_state = 153, .external_lex_state = 10}, - [629] = {.lex_state = 229, .external_lex_state = 15}, - [630] = {.lex_state = 399, .external_lex_state = 12}, - [631] = {.lex_state = 229, .external_lex_state = 15}, - [632] = {.lex_state = 399, .external_lex_state = 12}, - [633] = {.lex_state = 399, .external_lex_state = 12}, - [634] = {.lex_state = 399, .external_lex_state = 12}, - [635] = {.lex_state = 229, .external_lex_state = 15}, - [636] = {.lex_state = 153, .external_lex_state = 10}, - [637] = {.lex_state = 405, .external_lex_state = 2}, - [638] = {.lex_state = 190, .external_lex_state = 2}, - [639] = {.lex_state = 198, .external_lex_state = 16}, - [640] = {.lex_state = 190, .external_lex_state = 2}, - [641] = {.lex_state = 155, .external_lex_state = 10}, - [642] = {.lex_state = 405, .external_lex_state = 2}, - [643] = {.lex_state = 155, .external_lex_state = 10}, - [644] = {.lex_state = 155, .external_lex_state = 10}, - [645] = {.lex_state = 190, .external_lex_state = 2}, - [646] = {.lex_state = 190, .external_lex_state = 2}, - [647] = {.lex_state = 194, .external_lex_state = 17}, - [648] = {.lex_state = 405, .external_lex_state = 2}, - [649] = {.lex_state = 155, .external_lex_state = 10}, - [650] = {.lex_state = 405, .external_lex_state = 2}, - [651] = {.lex_state = 194, .external_lex_state = 17}, - [652] = {.lex_state = 181, .external_lex_state = 15}, - [653] = {.lex_state = 181, .external_lex_state = 15}, - [654] = {.lex_state = 230, .external_lex_state = 18}, - [655] = {.lex_state = 198, .external_lex_state = 16}, - [656] = {.lex_state = 230, .external_lex_state = 18}, - [657] = {.lex_state = 190, .external_lex_state = 2}, - [658] = {.lex_state = 230, .external_lex_state = 18}, - [659] = {.lex_state = 405, .external_lex_state = 2}, - [660] = {.lex_state = 190, .external_lex_state = 2}, - [661] = {.lex_state = 159, .external_lex_state = 3}, - [662] = {.lex_state = 182, .external_lex_state = 18}, - [663] = {.lex_state = 405, .external_lex_state = 2}, - [664] = {.lex_state = 196, .external_lex_state = 17}, - [665] = {.lex_state = 400, .external_lex_state = 10}, - [666] = {.lex_state = 159, .external_lex_state = 3}, - [667] = {.lex_state = 159, .external_lex_state = 3}, - [668] = {.lex_state = 197, .external_lex_state = 17}, - [669] = {.lex_state = 405, .external_lex_state = 2}, - [670] = {.lex_state = 197, .external_lex_state = 17}, - [671] = {.lex_state = 159, .external_lex_state = 3}, - [672] = {.lex_state = 230, .external_lex_state = 19}, - [673] = {.lex_state = 159, .external_lex_state = 3}, - [674] = {.lex_state = 159, .external_lex_state = 3}, - [675] = {.lex_state = 232, .external_lex_state = 20}, - [676] = {.lex_state = 159, .external_lex_state = 3}, - [677] = {.lex_state = 232, .external_lex_state = 20}, - [678] = {.lex_state = 405, .external_lex_state = 2}, - [679] = {.lex_state = 159, .external_lex_state = 3}, - [680] = {.lex_state = 400, .external_lex_state = 10}, - [681] = {.lex_state = 230, .external_lex_state = 19}, - [682] = {.lex_state = 400, .external_lex_state = 10}, - [683] = {.lex_state = 400, .external_lex_state = 10}, - [684] = {.lex_state = 159, .external_lex_state = 3}, - [685] = {.lex_state = 400, .external_lex_state = 10}, - [686] = {.lex_state = 400, .external_lex_state = 10}, - [687] = {.lex_state = 159, .external_lex_state = 3}, - [688] = {.lex_state = 159, .external_lex_state = 3}, - [689] = {.lex_state = 195, .external_lex_state = 17}, - [690] = {.lex_state = 195, .external_lex_state = 17}, - [691] = {.lex_state = 199, .external_lex_state = 17}, - [692] = {.lex_state = 400, .external_lex_state = 10}, - [693] = {.lex_state = 199, .external_lex_state = 17}, - [694] = {.lex_state = 232, .external_lex_state = 20}, - [695] = {.lex_state = 405, .external_lex_state = 2}, - [696] = {.lex_state = 198, .external_lex_state = 21}, - [697] = {.lex_state = 198, .external_lex_state = 21}, - [698] = {.lex_state = 405, .external_lex_state = 2}, - [699] = {.lex_state = 160, .external_lex_state = 3}, - [700] = {.lex_state = 226, .external_lex_state = 13}, - [701] = {.lex_state = 405, .external_lex_state = 2}, - [702] = {.lex_state = 226, .external_lex_state = 13}, - [703] = {.lex_state = 230, .external_lex_state = 19}, - [704] = {.lex_state = 226, .external_lex_state = 13}, - [705] = {.lex_state = 182, .external_lex_state = 18}, - [706] = {.lex_state = 400, .external_lex_state = 10}, - [707] = {.lex_state = 196, .external_lex_state = 17}, - [708] = {.lex_state = 159, .external_lex_state = 3}, - [709] = {.lex_state = 161, .external_lex_state = 22}, - [710] = {.lex_state = 400, .external_lex_state = 10}, - [711] = {.lex_state = 159, .external_lex_state = 3}, - [712] = {.lex_state = 159, .external_lex_state = 3}, - [713] = {.lex_state = 161, .external_lex_state = 22}, - [714] = {.lex_state = 400, .external_lex_state = 10}, - [715] = {.lex_state = 226, .external_lex_state = 20}, - [716] = {.lex_state = 159, .external_lex_state = 3}, - [717] = {.lex_state = 401, .external_lex_state = 3}, - [718] = {.lex_state = 400, .external_lex_state = 10}, - [719] = {.lex_state = 226, .external_lex_state = 20}, - [720] = {.lex_state = 226, .external_lex_state = 20}, - [721] = {.lex_state = 400, .external_lex_state = 10}, - [722] = {.lex_state = 161, .external_lex_state = 22}, - [723] = {.lex_state = 159, .external_lex_state = 3}, - [724] = {.lex_state = 161, .external_lex_state = 22}, - [725] = {.lex_state = 160, .external_lex_state = 3}, - [726] = {.lex_state = 183, .external_lex_state = 13}, - [727] = {.lex_state = 183, .external_lex_state = 13}, - [728] = {.lex_state = 160, .external_lex_state = 3}, - [729] = {.lex_state = 400, .external_lex_state = 10}, - [730] = {.lex_state = 400, .external_lex_state = 10}, - [731] = {.lex_state = 159, .external_lex_state = 3}, - [732] = {.lex_state = 160, .external_lex_state = 3}, - [733] = {.lex_state = 400, .external_lex_state = 10}, - [734] = {.lex_state = 161, .external_lex_state = 22}, - [735] = {.lex_state = 400, .external_lex_state = 10}, - [736] = {.lex_state = 400, .external_lex_state = 10}, - [737] = {.lex_state = 160, .external_lex_state = 3}, - [738] = {.lex_state = 400, .external_lex_state = 10}, - [739] = {.lex_state = 159, .external_lex_state = 3}, - [740] = {.lex_state = 159, .external_lex_state = 3}, - [741] = {.lex_state = 400, .external_lex_state = 10}, - [742] = {.lex_state = 161, .external_lex_state = 22}, - [743] = {.lex_state = 182, .external_lex_state = 19}, - [744] = {.lex_state = 159, .external_lex_state = 3}, - [745] = {.lex_state = 182, .external_lex_state = 19}, - [746] = {.lex_state = 160, .external_lex_state = 3}, - [747] = {.lex_state = 160, .external_lex_state = 3}, - [748] = {.lex_state = 160, .external_lex_state = 3}, - [749] = {.lex_state = 159, .external_lex_state = 3}, - [750] = {.lex_state = 400, .external_lex_state = 10}, - [751] = {.lex_state = 221, .external_lex_state = 23}, - [752] = {.lex_state = 161, .external_lex_state = 22}, - [753] = {.lex_state = 161, .external_lex_state = 22}, - [754] = {.lex_state = 401, .external_lex_state = 3}, - [755] = {.lex_state = 160, .external_lex_state = 3}, - [756] = {.lex_state = 159, .external_lex_state = 3}, - [757] = {.lex_state = 183, .external_lex_state = 13}, - [758] = {.lex_state = 183, .external_lex_state = 13}, - [759] = {.lex_state = 159, .external_lex_state = 3}, - [760] = {.lex_state = 159, .external_lex_state = 3}, - [761] = {.lex_state = 200, .external_lex_state = 17}, - [762] = {.lex_state = 400, .external_lex_state = 10}, - [763] = {.lex_state = 159, .external_lex_state = 3}, - [764] = {.lex_state = 160, .external_lex_state = 3}, - [765] = {.lex_state = 159, .external_lex_state = 3}, - [766] = {.lex_state = 159, .external_lex_state = 3}, - [767] = {.lex_state = 159, .external_lex_state = 3}, - [768] = {.lex_state = 200, .external_lex_state = 17}, - [769] = {.lex_state = 400, .external_lex_state = 10}, - [770] = {.lex_state = 221, .external_lex_state = 23}, - [771] = {.lex_state = 400, .external_lex_state = 10}, - [772] = {.lex_state = 160, .external_lex_state = 3}, - [773] = {.lex_state = 159, .external_lex_state = 3}, - [774] = {.lex_state = 163, .external_lex_state = 22}, - [775] = {.lex_state = 401, .external_lex_state = 3}, - [776] = {.lex_state = 401, .external_lex_state = 3}, - [777] = {.lex_state = 161, .external_lex_state = 22}, - [778] = {.lex_state = 161, .external_lex_state = 22}, - [779] = {.lex_state = 401, .external_lex_state = 3}, - [780] = {.lex_state = 401, .external_lex_state = 3}, - [781] = {.lex_state = 401, .external_lex_state = 3}, - [782] = {.lex_state = 163, .external_lex_state = 22}, - [783] = {.lex_state = 161, .external_lex_state = 22}, - [784] = {.lex_state = 161, .external_lex_state = 22}, - [785] = {.lex_state = 221, .external_lex_state = 14}, - [786] = {.lex_state = 163, .external_lex_state = 22}, - [787] = {.lex_state = 163, .external_lex_state = 22}, - [788] = {.lex_state = 161, .external_lex_state = 22}, - [789] = {.lex_state = 221, .external_lex_state = 14}, - [790] = {.lex_state = 221, .external_lex_state = 14}, - [791] = {.lex_state = 221, .external_lex_state = 14}, - [792] = {.lex_state = 221, .external_lex_state = 14}, - [793] = {.lex_state = 137, .external_lex_state = 8}, - [794] = {.lex_state = 164, .external_lex_state = 22}, - [795] = {.lex_state = 164, .external_lex_state = 22}, - [796] = {.lex_state = 221, .external_lex_state = 14}, - [797] = {.lex_state = 221, .external_lex_state = 14}, - [798] = {.lex_state = 401, .external_lex_state = 3}, - [799] = {.lex_state = 401, .external_lex_state = 3}, - [800] = {.lex_state = 401, .external_lex_state = 3}, - [801] = {.lex_state = 163, .external_lex_state = 22}, - [802] = {.lex_state = 221, .external_lex_state = 14}, - [803] = {.lex_state = 161, .external_lex_state = 24}, - [804] = {.lex_state = 183, .external_lex_state = 20}, - [805] = {.lex_state = 183, .external_lex_state = 20}, - [806] = {.lex_state = 221, .external_lex_state = 14}, - [807] = {.lex_state = 137, .external_lex_state = 8}, - [808] = {.lex_state = 161, .external_lex_state = 24}, - [809] = {.lex_state = 401, .external_lex_state = 3}, - [810] = {.lex_state = 401, .external_lex_state = 3}, - [811] = {.lex_state = 401, .external_lex_state = 3}, - [812] = {.lex_state = 137, .external_lex_state = 8}, - [813] = {.lex_state = 161, .external_lex_state = 24}, - [814] = {.lex_state = 160, .external_lex_state = 3}, - [815] = {.lex_state = 160, .external_lex_state = 3}, - [816] = {.lex_state = 160, .external_lex_state = 3}, - [817] = {.lex_state = 160, .external_lex_state = 3}, - [818] = {.lex_state = 160, .external_lex_state = 3}, - [819] = {.lex_state = 161, .external_lex_state = 22}, - [820] = {.lex_state = 161, .external_lex_state = 24}, - [821] = {.lex_state = 161, .external_lex_state = 24}, - [822] = {.lex_state = 160, .external_lex_state = 3}, - [823] = {.lex_state = 137, .external_lex_state = 8}, - [824] = {.lex_state = 401, .external_lex_state = 3}, - [825] = {.lex_state = 164, .external_lex_state = 22}, - [826] = {.lex_state = 183, .external_lex_state = 20}, - [827] = {.lex_state = 161, .external_lex_state = 22}, - [828] = {.lex_state = 161, .external_lex_state = 22}, - [829] = {.lex_state = 183, .external_lex_state = 20}, - [830] = {.lex_state = 401, .external_lex_state = 3}, - [831] = {.lex_state = 401, .external_lex_state = 3}, - [832] = {.lex_state = 161, .external_lex_state = 24}, - [833] = {.lex_state = 160, .external_lex_state = 3}, - [834] = {.lex_state = 401, .external_lex_state = 3}, - [835] = {.lex_state = 160, .external_lex_state = 3}, - [836] = {.lex_state = 160, .external_lex_state = 3}, - [837] = {.lex_state = 401, .external_lex_state = 3}, - [838] = {.lex_state = 164, .external_lex_state = 22}, - [839] = {.lex_state = 160, .external_lex_state = 3}, - [840] = {.lex_state = 164, .external_lex_state = 22}, - [841] = {.lex_state = 164, .external_lex_state = 22}, - [842] = {.lex_state = 160, .external_lex_state = 3}, - [843] = {.lex_state = 160, .external_lex_state = 3}, - [844] = {.lex_state = 163, .external_lex_state = 22}, - [845] = {.lex_state = 160, .external_lex_state = 3}, - [846] = {.lex_state = 163, .external_lex_state = 22}, - [847] = {.lex_state = 161, .external_lex_state = 22}, - [848] = {.lex_state = 160, .external_lex_state = 3}, - [849] = {.lex_state = 161, .external_lex_state = 22}, - [850] = {.lex_state = 160, .external_lex_state = 3}, - [851] = {.lex_state = 163, .external_lex_state = 22}, - [852] = {.lex_state = 401, .external_lex_state = 3}, - [853] = {.lex_state = 161, .external_lex_state = 22}, - [854] = {.lex_state = 160, .external_lex_state = 3}, - [855] = {.lex_state = 160, .external_lex_state = 3}, - [856] = {.lex_state = 164, .external_lex_state = 22}, - [857] = {.lex_state = 161, .external_lex_state = 22}, - [858] = {.lex_state = 161, .external_lex_state = 22}, - [859] = {.lex_state = 401, .external_lex_state = 3}, - [860] = {.lex_state = 164, .external_lex_state = 22}, - [861] = {.lex_state = 161, .external_lex_state = 22}, - [862] = {.lex_state = 161, .external_lex_state = 22}, - [863] = {.lex_state = 161, .external_lex_state = 22}, - [864] = {.lex_state = 401, .external_lex_state = 3}, - [865] = {.lex_state = 401, .external_lex_state = 3}, - [866] = {.lex_state = 401, .external_lex_state = 3}, - [867] = {.lex_state = 401, .external_lex_state = 3}, - [868] = {.lex_state = 161, .external_lex_state = 22}, - [869] = {.lex_state = 161, .external_lex_state = 22}, - [870] = {.lex_state = 160, .external_lex_state = 3}, - [871] = {.lex_state = 401, .external_lex_state = 3}, - [872] = {.lex_state = 164, .external_lex_state = 22}, - [873] = {.lex_state = 401, .external_lex_state = 3}, - [874] = {.lex_state = 163, .external_lex_state = 22}, - [875] = {.lex_state = 163, .external_lex_state = 22}, - [876] = {.lex_state = 163, .external_lex_state = 22}, - [877] = {.lex_state = 163, .external_lex_state = 22}, - [878] = {.lex_state = 163, .external_lex_state = 22}, - [879] = {.lex_state = 137, .external_lex_state = 8}, - [880] = {.lex_state = 401, .external_lex_state = 3}, - [881] = {.lex_state = 401, .external_lex_state = 3}, - [882] = {.lex_state = 401, .external_lex_state = 3}, - [883] = {.lex_state = 401, .external_lex_state = 3}, - [884] = {.lex_state = 401, .external_lex_state = 3}, - [885] = {.lex_state = 401, .external_lex_state = 3}, - [886] = {.lex_state = 224, .external_lex_state = 2}, - [887] = {.lex_state = 163, .external_lex_state = 22}, - [888] = {.lex_state = 163, .external_lex_state = 22}, - [889] = {.lex_state = 401, .external_lex_state = 3}, - [890] = {.lex_state = 161, .external_lex_state = 24}, - [891] = {.lex_state = 165, .external_lex_state = 22}, - [892] = {.lex_state = 163, .external_lex_state = 22}, - [893] = {.lex_state = 165, .external_lex_state = 22}, - [894] = {.lex_state = 224, .external_lex_state = 2}, - [895] = {.lex_state = 163, .external_lex_state = 22}, - [896] = {.lex_state = 148, .external_lex_state = 8}, - [897] = {.lex_state = 401, .external_lex_state = 3}, - [898] = {.lex_state = 161, .external_lex_state = 24}, - [899] = {.lex_state = 401, .external_lex_state = 3}, - [900] = {.lex_state = 163, .external_lex_state = 22}, - [901] = {.lex_state = 163, .external_lex_state = 22}, - [902] = {.lex_state = 165, .external_lex_state = 22}, - [903] = {.lex_state = 165, .external_lex_state = 22}, - [904] = {.lex_state = 163, .external_lex_state = 24}, - [905] = {.lex_state = 401, .external_lex_state = 3}, - [906] = {.lex_state = 161, .external_lex_state = 24}, - [907] = {.lex_state = 164, .external_lex_state = 24}, - [908] = {.lex_state = 163, .external_lex_state = 22}, - [909] = {.lex_state = 164, .external_lex_state = 24}, - [910] = {.lex_state = 161, .external_lex_state = 24}, - [911] = {.lex_state = 221, .external_lex_state = 14}, - [912] = {.lex_state = 401, .external_lex_state = 3}, - [913] = {.lex_state = 401, .external_lex_state = 3}, - [914] = {.lex_state = 161, .external_lex_state = 24}, - [915] = {.lex_state = 401, .external_lex_state = 3}, - [916] = {.lex_state = 401, .external_lex_state = 3}, - [917] = {.lex_state = 163, .external_lex_state = 22}, - [918] = {.lex_state = 401, .external_lex_state = 3}, - [919] = {.lex_state = 401, .external_lex_state = 3}, - [920] = {.lex_state = 401, .external_lex_state = 3}, - [921] = {.lex_state = 401, .external_lex_state = 3}, - [922] = {.lex_state = 401, .external_lex_state = 3}, - [923] = {.lex_state = 401, .external_lex_state = 3}, - [924] = {.lex_state = 401, .external_lex_state = 3}, - [925] = {.lex_state = 401, .external_lex_state = 3}, - [926] = {.lex_state = 401, .external_lex_state = 3}, - [927] = {.lex_state = 401, .external_lex_state = 3}, - [928] = {.lex_state = 401, .external_lex_state = 3}, - [929] = {.lex_state = 401, .external_lex_state = 3}, - [930] = {.lex_state = 164, .external_lex_state = 22}, - [931] = {.lex_state = 163, .external_lex_state = 24}, - [932] = {.lex_state = 163, .external_lex_state = 24}, - [933] = {.lex_state = 163, .external_lex_state = 24}, - [934] = {.lex_state = 148, .external_lex_state = 8}, - [935] = {.lex_state = 161, .external_lex_state = 24}, - [936] = {.lex_state = 402, .external_lex_state = 22}, - [937] = {.lex_state = 164, .external_lex_state = 22}, - [938] = {.lex_state = 165, .external_lex_state = 22}, - [939] = {.lex_state = 163, .external_lex_state = 22}, - [940] = {.lex_state = 402, .external_lex_state = 22}, - [941] = {.lex_state = 402, .external_lex_state = 22}, - [942] = {.lex_state = 401, .external_lex_state = 3}, - [943] = {.lex_state = 401, .external_lex_state = 3}, - [944] = {.lex_state = 165, .external_lex_state = 22}, - [945] = {.lex_state = 137, .external_lex_state = 8}, - [946] = {.lex_state = 161, .external_lex_state = 24}, - [947] = {.lex_state = 129, .external_lex_state = 10}, - [948] = {.lex_state = 401, .external_lex_state = 3}, - [949] = {.lex_state = 148, .external_lex_state = 8}, - [950] = {.lex_state = 401, .external_lex_state = 3}, - [951] = {.lex_state = 164, .external_lex_state = 22}, - [952] = {.lex_state = 401, .external_lex_state = 3}, - [953] = {.lex_state = 401, .external_lex_state = 3}, - [954] = {.lex_state = 164, .external_lex_state = 22}, - [955] = {.lex_state = 402, .external_lex_state = 22}, - [956] = {.lex_state = 165, .external_lex_state = 22}, - [957] = {.lex_state = 402, .external_lex_state = 22}, - [958] = {.lex_state = 402, .external_lex_state = 22}, - [959] = {.lex_state = 402, .external_lex_state = 22}, - [960] = {.lex_state = 401, .external_lex_state = 3}, - [961] = {.lex_state = 224, .external_lex_state = 2}, - [962] = {.lex_state = 401, .external_lex_state = 3}, - [963] = {.lex_state = 402, .external_lex_state = 22}, - [964] = {.lex_state = 224, .external_lex_state = 2}, - [965] = {.lex_state = 161, .external_lex_state = 24}, - [966] = {.lex_state = 161, .external_lex_state = 24}, - [967] = {.lex_state = 164, .external_lex_state = 22}, - [968] = {.lex_state = 401, .external_lex_state = 3}, - [969] = {.lex_state = 148, .external_lex_state = 8}, - [970] = {.lex_state = 164, .external_lex_state = 22}, - [971] = {.lex_state = 401, .external_lex_state = 3}, - [972] = {.lex_state = 161, .external_lex_state = 24}, - [973] = {.lex_state = 401, .external_lex_state = 3}, - [974] = {.lex_state = 161, .external_lex_state = 24}, - [975] = {.lex_state = 224, .external_lex_state = 2}, - [976] = {.lex_state = 401, .external_lex_state = 3}, - [977] = {.lex_state = 161, .external_lex_state = 24}, - [978] = {.lex_state = 224, .external_lex_state = 2}, - [979] = {.lex_state = 161, .external_lex_state = 24}, - [980] = {.lex_state = 164, .external_lex_state = 22}, - [981] = {.lex_state = 161, .external_lex_state = 24}, - [982] = {.lex_state = 163, .external_lex_state = 22}, - [983] = {.lex_state = 164, .external_lex_state = 22}, - [984] = {.lex_state = 164, .external_lex_state = 22}, - [985] = {.lex_state = 164, .external_lex_state = 22}, - [986] = {.lex_state = 161, .external_lex_state = 24}, - [987] = {.lex_state = 402, .external_lex_state = 22}, - [988] = {.lex_state = 401, .external_lex_state = 3}, - [989] = {.lex_state = 402, .external_lex_state = 22}, - [990] = {.lex_state = 164, .external_lex_state = 22}, - [991] = {.lex_state = 164, .external_lex_state = 22}, - [992] = {.lex_state = 401, .external_lex_state = 3}, - [993] = {.lex_state = 161, .external_lex_state = 24}, - [994] = {.lex_state = 164, .external_lex_state = 22}, - [995] = {.lex_state = 163, .external_lex_state = 22}, - [996] = {.lex_state = 137, .external_lex_state = 8}, - [997] = {.lex_state = 164, .external_lex_state = 22}, - [998] = {.lex_state = 161, .external_lex_state = 24}, - [999] = {.lex_state = 165, .external_lex_state = 22}, - [1000] = {.lex_state = 164, .external_lex_state = 22}, - [1001] = {.lex_state = 401, .external_lex_state = 3}, - [1002] = {.lex_state = 163, .external_lex_state = 22}, - [1003] = {.lex_state = 402, .external_lex_state = 22}, - [1004] = {.lex_state = 164, .external_lex_state = 24}, - [1005] = {.lex_state = 163, .external_lex_state = 24}, - [1006] = {.lex_state = 129, .external_lex_state = 10}, - [1007] = {.lex_state = 164, .external_lex_state = 24}, - [1008] = {.lex_state = 401, .external_lex_state = 3}, - [1009] = {.lex_state = 129, .external_lex_state = 10}, - [1010] = {.lex_state = 164, .external_lex_state = 24}, - [1011] = {.lex_state = 164, .external_lex_state = 22}, - [1012] = {.lex_state = 401, .external_lex_state = 3}, - [1013] = {.lex_state = 402, .external_lex_state = 22}, - [1014] = {.lex_state = 402, .external_lex_state = 22}, - [1015] = {.lex_state = 402, .external_lex_state = 22}, - [1016] = {.lex_state = 161, .external_lex_state = 24}, - [1017] = {.lex_state = 164, .external_lex_state = 24}, - [1018] = {.lex_state = 163, .external_lex_state = 24}, - [1019] = {.lex_state = 402, .external_lex_state = 22}, - [1020] = {.lex_state = 137, .external_lex_state = 8}, - [1021] = {.lex_state = 164, .external_lex_state = 22}, - [1022] = {.lex_state = 402, .external_lex_state = 22}, - [1023] = {.lex_state = 224, .external_lex_state = 2}, - [1024] = {.lex_state = 163, .external_lex_state = 22}, - [1025] = {.lex_state = 165, .external_lex_state = 22}, - [1026] = {.lex_state = 164, .external_lex_state = 24}, - [1027] = {.lex_state = 402, .external_lex_state = 22}, - [1028] = {.lex_state = 164, .external_lex_state = 24}, - [1029] = {.lex_state = 402, .external_lex_state = 22}, - [1030] = {.lex_state = 402, .external_lex_state = 22}, - [1031] = {.lex_state = 402, .external_lex_state = 22}, - [1032] = {.lex_state = 402, .external_lex_state = 22}, - [1033] = {.lex_state = 165, .external_lex_state = 22}, - [1034] = {.lex_state = 163, .external_lex_state = 24}, - [1035] = {.lex_state = 402, .external_lex_state = 22}, - [1036] = {.lex_state = 402, .external_lex_state = 22}, - [1037] = {.lex_state = 163, .external_lex_state = 24}, - [1038] = {.lex_state = 398, .external_lex_state = 8}, - [1039] = {.lex_state = 163, .external_lex_state = 24}, - [1040] = {.lex_state = 402, .external_lex_state = 22}, - [1041] = {.lex_state = 163, .external_lex_state = 24}, - [1042] = {.lex_state = 402, .external_lex_state = 22}, - [1043] = {.lex_state = 403, .external_lex_state = 22}, - [1044] = {.lex_state = 402, .external_lex_state = 22}, - [1045] = {.lex_state = 165, .external_lex_state = 24}, - [1046] = {.lex_state = 402, .external_lex_state = 22}, - [1047] = {.lex_state = 402, .external_lex_state = 22}, - [1048] = {.lex_state = 402, .external_lex_state = 22}, - [1049] = {.lex_state = 165, .external_lex_state = 24}, - [1050] = {.lex_state = 141, .external_lex_state = 10}, - [1051] = {.lex_state = 165, .external_lex_state = 24}, - [1052] = {.lex_state = 402, .external_lex_state = 22}, - [1053] = {.lex_state = 163, .external_lex_state = 24}, - [1054] = {.lex_state = 402, .external_lex_state = 22}, - [1055] = {.lex_state = 402, .external_lex_state = 24}, - [1056] = {.lex_state = 163, .external_lex_state = 24}, - [1057] = {.lex_state = 165, .external_lex_state = 22}, - [1058] = {.lex_state = 402, .external_lex_state = 24}, - [1059] = {.lex_state = 402, .external_lex_state = 24}, - [1060] = {.lex_state = 129, .external_lex_state = 10}, - [1061] = {.lex_state = 402, .external_lex_state = 24}, - [1062] = {.lex_state = 129, .external_lex_state = 12}, - [1063] = {.lex_state = 402, .external_lex_state = 22}, - [1064] = {.lex_state = 163, .external_lex_state = 24}, - [1065] = {.lex_state = 402, .external_lex_state = 22}, - [1066] = {.lex_state = 165, .external_lex_state = 22}, - [1067] = {.lex_state = 164, .external_lex_state = 24}, - [1068] = {.lex_state = 165, .external_lex_state = 22}, - [1069] = {.lex_state = 163, .external_lex_state = 24}, - [1070] = {.lex_state = 164, .external_lex_state = 24}, - [1071] = {.lex_state = 163, .external_lex_state = 24}, - [1072] = {.lex_state = 164, .external_lex_state = 24}, - [1073] = {.lex_state = 163, .external_lex_state = 24}, - [1074] = {.lex_state = 165, .external_lex_state = 24}, - [1075] = {.lex_state = 402, .external_lex_state = 22}, - [1076] = {.lex_state = 403, .external_lex_state = 22}, - [1077] = {.lex_state = 403, .external_lex_state = 22}, - [1078] = {.lex_state = 165, .external_lex_state = 22}, - [1079] = {.lex_state = 165, .external_lex_state = 22}, - [1080] = {.lex_state = 164, .external_lex_state = 24}, - [1081] = {.lex_state = 164, .external_lex_state = 24}, - [1082] = {.lex_state = 165, .external_lex_state = 22}, - [1083] = {.lex_state = 165, .external_lex_state = 22}, - [1084] = {.lex_state = 164, .external_lex_state = 24}, - [1085] = {.lex_state = 165, .external_lex_state = 22}, - [1086] = {.lex_state = 165, .external_lex_state = 22}, - [1087] = {.lex_state = 403, .external_lex_state = 22}, - [1088] = {.lex_state = 403, .external_lex_state = 22}, - [1089] = {.lex_state = 165, .external_lex_state = 22}, - [1090] = {.lex_state = 403, .external_lex_state = 22}, - [1091] = {.lex_state = 164, .external_lex_state = 24}, - [1092] = {.lex_state = 163, .external_lex_state = 24}, - [1093] = {.lex_state = 163, .external_lex_state = 24}, - [1094] = {.lex_state = 403, .external_lex_state = 22}, - [1095] = {.lex_state = 164, .external_lex_state = 24}, - [1096] = {.lex_state = 164, .external_lex_state = 24}, - [1097] = {.lex_state = 164, .external_lex_state = 24}, - [1098] = {.lex_state = 164, .external_lex_state = 24}, - [1099] = {.lex_state = 164, .external_lex_state = 24}, - [1100] = {.lex_state = 164, .external_lex_state = 24}, - [1101] = {.lex_state = 129, .external_lex_state = 12}, - [1102] = {.lex_state = 402, .external_lex_state = 22}, - [1103] = {.lex_state = 164, .external_lex_state = 24}, - [1104] = {.lex_state = 164, .external_lex_state = 24}, - [1105] = {.lex_state = 153, .external_lex_state = 10}, - [1106] = {.lex_state = 398, .external_lex_state = 8}, - [1107] = {.lex_state = 164, .external_lex_state = 24}, - [1108] = {.lex_state = 402, .external_lex_state = 22}, - [1109] = {.lex_state = 402, .external_lex_state = 24}, - [1110] = {.lex_state = 148, .external_lex_state = 8}, - [1111] = {.lex_state = 402, .external_lex_state = 24}, - [1112] = {.lex_state = 163, .external_lex_state = 24}, - [1113] = {.lex_state = 403, .external_lex_state = 22}, - [1114] = {.lex_state = 403, .external_lex_state = 22}, - [1115] = {.lex_state = 398, .external_lex_state = 8}, - [1116] = {.lex_state = 402, .external_lex_state = 22}, - [1117] = {.lex_state = 402, .external_lex_state = 22}, - [1118] = {.lex_state = 402, .external_lex_state = 22}, - [1119] = {.lex_state = 402, .external_lex_state = 22}, - [1120] = {.lex_state = 153, .external_lex_state = 10}, - [1121] = {.lex_state = 402, .external_lex_state = 24}, - [1122] = {.lex_state = 402, .external_lex_state = 24}, - [1123] = {.lex_state = 402, .external_lex_state = 22}, - [1124] = {.lex_state = 129, .external_lex_state = 10}, - [1125] = {.lex_state = 402, .external_lex_state = 22}, - [1126] = {.lex_state = 163, .external_lex_state = 24}, - [1127] = {.lex_state = 165, .external_lex_state = 22}, - [1128] = {.lex_state = 148, .external_lex_state = 8}, - [1129] = {.lex_state = 141, .external_lex_state = 10}, - [1130] = {.lex_state = 163, .external_lex_state = 24}, - [1131] = {.lex_state = 402, .external_lex_state = 22}, - [1132] = {.lex_state = 153, .external_lex_state = 10}, - [1133] = {.lex_state = 403, .external_lex_state = 22}, - [1134] = {.lex_state = 402, .external_lex_state = 22}, - [1135] = {.lex_state = 163, .external_lex_state = 24}, - [1136] = {.lex_state = 402, .external_lex_state = 22}, - [1137] = {.lex_state = 398, .external_lex_state = 8}, - [1138] = {.lex_state = 398, .external_lex_state = 8}, - [1139] = {.lex_state = 402, .external_lex_state = 22}, - [1140] = {.lex_state = 402, .external_lex_state = 22}, - [1141] = {.lex_state = 402, .external_lex_state = 22}, - [1142] = {.lex_state = 402, .external_lex_state = 24}, - [1143] = {.lex_state = 402, .external_lex_state = 24}, - [1144] = {.lex_state = 148, .external_lex_state = 8}, - [1145] = {.lex_state = 403, .external_lex_state = 22}, - [1146] = {.lex_state = 402, .external_lex_state = 22}, - [1147] = {.lex_state = 402, .external_lex_state = 22}, - [1148] = {.lex_state = 402, .external_lex_state = 22}, - [1149] = {.lex_state = 403, .external_lex_state = 22}, - [1150] = {.lex_state = 403, .external_lex_state = 22}, - [1151] = {.lex_state = 402, .external_lex_state = 22}, - [1152] = {.lex_state = 165, .external_lex_state = 22}, - [1153] = {.lex_state = 402, .external_lex_state = 24}, - [1154] = {.lex_state = 165, .external_lex_state = 22}, - [1155] = {.lex_state = 402, .external_lex_state = 22}, - [1156] = {.lex_state = 402, .external_lex_state = 22}, - [1157] = {.lex_state = 402, .external_lex_state = 24}, - [1158] = {.lex_state = 402, .external_lex_state = 22}, - [1159] = {.lex_state = 129, .external_lex_state = 10}, - [1160] = {.lex_state = 141, .external_lex_state = 10}, - [1161] = {.lex_state = 402, .external_lex_state = 22}, - [1162] = {.lex_state = 165, .external_lex_state = 22}, - [1163] = {.lex_state = 129, .external_lex_state = 10}, - [1164] = {.lex_state = 402, .external_lex_state = 22}, - [1165] = {.lex_state = 165, .external_lex_state = 22}, - [1166] = {.lex_state = 398, .external_lex_state = 8}, - [1167] = {.lex_state = 165, .external_lex_state = 22}, - [1168] = {.lex_state = 402, .external_lex_state = 22}, - [1169] = {.lex_state = 403, .external_lex_state = 22}, - [1170] = {.lex_state = 148, .external_lex_state = 8}, - [1171] = {.lex_state = 163, .external_lex_state = 24}, - [1172] = {.lex_state = 398, .external_lex_state = 8}, - [1173] = {.lex_state = 403, .external_lex_state = 22}, - [1174] = {.lex_state = 403, .external_lex_state = 22}, - [1175] = {.lex_state = 163, .external_lex_state = 24}, - [1176] = {.lex_state = 165, .external_lex_state = 24}, - [1177] = {.lex_state = 165, .external_lex_state = 24}, - [1178] = {.lex_state = 398, .external_lex_state = 8}, - [1179] = {.lex_state = 402, .external_lex_state = 22}, - [1180] = {.lex_state = 153, .external_lex_state = 10}, - [1181] = {.lex_state = 396, .external_lex_state = 10}, - [1182] = {.lex_state = 403, .external_lex_state = 24}, - [1183] = {.lex_state = 403, .external_lex_state = 24}, - [1184] = {.lex_state = 403, .external_lex_state = 24}, - [1185] = {.lex_state = 403, .external_lex_state = 24}, - [1186] = {.lex_state = 141, .external_lex_state = 10}, - [1187] = {.lex_state = 402, .external_lex_state = 24}, - [1188] = {.lex_state = 402, .external_lex_state = 24}, - [1189] = {.lex_state = 403, .external_lex_state = 22}, - [1190] = {.lex_state = 141, .external_lex_state = 10}, - [1191] = {.lex_state = 402, .external_lex_state = 24}, - [1192] = {.lex_state = 402, .external_lex_state = 24}, - [1193] = {.lex_state = 402, .external_lex_state = 24}, - [1194] = {.lex_state = 403, .external_lex_state = 22}, - [1195] = {.lex_state = 403, .external_lex_state = 22}, - [1196] = {.lex_state = 403, .external_lex_state = 22}, - [1197] = {.lex_state = 398, .external_lex_state = 8}, - [1198] = {.lex_state = 402, .external_lex_state = 24}, - [1199] = {.lex_state = 402, .external_lex_state = 24}, - [1200] = {.lex_state = 402, .external_lex_state = 24}, - [1201] = {.lex_state = 402, .external_lex_state = 24}, - [1202] = {.lex_state = 403, .external_lex_state = 22}, - [1203] = {.lex_state = 403, .external_lex_state = 22}, - [1204] = {.lex_state = 402, .external_lex_state = 24}, - [1205] = {.lex_state = 403, .external_lex_state = 24}, - [1206] = {.lex_state = 403, .external_lex_state = 24}, - [1207] = {.lex_state = 141, .external_lex_state = 10}, - [1208] = {.lex_state = 403, .external_lex_state = 24}, - [1209] = {.lex_state = 226, .external_lex_state = 13}, - [1210] = {.lex_state = 403, .external_lex_state = 24}, - [1211] = {.lex_state = 403, .external_lex_state = 24}, - [1212] = {.lex_state = 402, .external_lex_state = 24}, - [1213] = {.lex_state = 402, .external_lex_state = 24}, - [1214] = {.lex_state = 153, .external_lex_state = 10}, - [1215] = {.lex_state = 402, .external_lex_state = 24}, - [1216] = {.lex_state = 403, .external_lex_state = 24}, - [1217] = {.lex_state = 402, .external_lex_state = 24}, - [1218] = {.lex_state = 402, .external_lex_state = 24}, - [1219] = {.lex_state = 155, .external_lex_state = 10}, - [1220] = {.lex_state = 402, .external_lex_state = 24}, - [1221] = {.lex_state = 396, .external_lex_state = 10}, - [1222] = {.lex_state = 155, .external_lex_state = 10}, - [1223] = {.lex_state = 402, .external_lex_state = 24}, - [1224] = {.lex_state = 141, .external_lex_state = 12}, - [1225] = {.lex_state = 403, .external_lex_state = 22}, - [1226] = {.lex_state = 403, .external_lex_state = 22}, - [1227] = {.lex_state = 398, .external_lex_state = 8}, - [1228] = {.lex_state = 398, .external_lex_state = 8}, - [1229] = {.lex_state = 403, .external_lex_state = 22}, - [1230] = {.lex_state = 402, .external_lex_state = 24}, - [1231] = {.lex_state = 403, .external_lex_state = 22}, - [1232] = {.lex_state = 403, .external_lex_state = 22}, - [1233] = {.lex_state = 403, .external_lex_state = 22}, - [1234] = {.lex_state = 403, .external_lex_state = 22}, - [1235] = {.lex_state = 402, .external_lex_state = 24}, - [1236] = {.lex_state = 402, .external_lex_state = 24}, - [1237] = {.lex_state = 398, .external_lex_state = 8}, - [1238] = {.lex_state = 403, .external_lex_state = 22}, - [1239] = {.lex_state = 403, .external_lex_state = 22}, - [1240] = {.lex_state = 403, .external_lex_state = 22}, - [1241] = {.lex_state = 398, .external_lex_state = 8}, - [1242] = {.lex_state = 403, .external_lex_state = 22}, - [1243] = {.lex_state = 403, .external_lex_state = 22}, - [1244] = {.lex_state = 402, .external_lex_state = 24}, - [1245] = {.lex_state = 403, .external_lex_state = 22}, - [1246] = {.lex_state = 403, .external_lex_state = 22}, - [1247] = {.lex_state = 153, .external_lex_state = 12}, - [1248] = {.lex_state = 403, .external_lex_state = 22}, - [1249] = {.lex_state = 403, .external_lex_state = 22}, - [1250] = {.lex_state = 226, .external_lex_state = 13}, - [1251] = {.lex_state = 403, .external_lex_state = 22}, - [1252] = {.lex_state = 403, .external_lex_state = 22}, - [1253] = {.lex_state = 226, .external_lex_state = 13}, - [1254] = {.lex_state = 153, .external_lex_state = 10}, - [1255] = {.lex_state = 153, .external_lex_state = 10}, - [1256] = {.lex_state = 398, .external_lex_state = 8}, - [1257] = {.lex_state = 403, .external_lex_state = 22}, - [1258] = {.lex_state = 403, .external_lex_state = 22}, - [1259] = {.lex_state = 403, .external_lex_state = 22}, - [1260] = {.lex_state = 129, .external_lex_state = 12}, - [1261] = {.lex_state = 403, .external_lex_state = 22}, - [1262] = {.lex_state = 403, .external_lex_state = 22}, - [1263] = {.lex_state = 396, .external_lex_state = 10}, - [1264] = {.lex_state = 403, .external_lex_state = 22}, - [1265] = {.lex_state = 396, .external_lex_state = 10}, - [1266] = {.lex_state = 398, .external_lex_state = 8}, - [1267] = {.lex_state = 153, .external_lex_state = 12}, - [1268] = {.lex_state = 398, .external_lex_state = 8}, - [1269] = {.lex_state = 403, .external_lex_state = 22}, - [1270] = {.lex_state = 403, .external_lex_state = 22}, - [1271] = {.lex_state = 203, .external_lex_state = 25}, - [1272] = {.lex_state = 165, .external_lex_state = 24}, - [1273] = {.lex_state = 155, .external_lex_state = 10}, - [1274] = {.lex_state = 402, .external_lex_state = 24}, - [1275] = {.lex_state = 402, .external_lex_state = 24}, - [1276] = {.lex_state = 403, .external_lex_state = 22}, - [1277] = {.lex_state = 403, .external_lex_state = 22}, - [1278] = {.lex_state = 403, .external_lex_state = 22}, - [1279] = {.lex_state = 165, .external_lex_state = 24}, - [1280] = {.lex_state = 165, .external_lex_state = 24}, - [1281] = {.lex_state = 403, .external_lex_state = 22}, - [1282] = {.lex_state = 165, .external_lex_state = 24}, - [1283] = {.lex_state = 165, .external_lex_state = 24}, - [1284] = {.lex_state = 403, .external_lex_state = 22}, - [1285] = {.lex_state = 141, .external_lex_state = 10}, - [1286] = {.lex_state = 165, .external_lex_state = 24}, - [1287] = {.lex_state = 153, .external_lex_state = 10}, - [1288] = {.lex_state = 403, .external_lex_state = 22}, - [1289] = {.lex_state = 141, .external_lex_state = 12}, - [1290] = {.lex_state = 165, .external_lex_state = 24}, - [1291] = {.lex_state = 165, .external_lex_state = 24}, - [1292] = {.lex_state = 165, .external_lex_state = 24}, - [1293] = {.lex_state = 403, .external_lex_state = 22}, - [1294] = {.lex_state = 165, .external_lex_state = 24}, - [1295] = {.lex_state = 165, .external_lex_state = 24}, - [1296] = {.lex_state = 403, .external_lex_state = 22}, - [1297] = {.lex_state = 165, .external_lex_state = 24}, - [1298] = {.lex_state = 165, .external_lex_state = 24}, - [1299] = {.lex_state = 165, .external_lex_state = 24}, - [1300] = {.lex_state = 165, .external_lex_state = 24}, - [1301] = {.lex_state = 165, .external_lex_state = 24}, - [1302] = {.lex_state = 153, .external_lex_state = 10}, - [1303] = {.lex_state = 165, .external_lex_state = 24}, - [1304] = {.lex_state = 403, .external_lex_state = 22}, - [1305] = {.lex_state = 403, .external_lex_state = 22}, - [1306] = {.lex_state = 165, .external_lex_state = 24}, - [1307] = {.lex_state = 403, .external_lex_state = 22}, - [1308] = {.lex_state = 402, .external_lex_state = 24}, - [1309] = {.lex_state = 396, .external_lex_state = 10}, - [1310] = {.lex_state = 402, .external_lex_state = 24}, - [1311] = {.lex_state = 402, .external_lex_state = 24}, - [1312] = {.lex_state = 402, .external_lex_state = 24}, - [1313] = {.lex_state = 402, .external_lex_state = 24}, - [1314] = {.lex_state = 402, .external_lex_state = 24}, - [1315] = {.lex_state = 402, .external_lex_state = 24}, - [1316] = {.lex_state = 402, .external_lex_state = 24}, - [1317] = {.lex_state = 402, .external_lex_state = 24}, - [1318] = {.lex_state = 402, .external_lex_state = 24}, - [1319] = {.lex_state = 402, .external_lex_state = 24}, - [1320] = {.lex_state = 402, .external_lex_state = 24}, - [1321] = {.lex_state = 402, .external_lex_state = 24}, - [1322] = {.lex_state = 402, .external_lex_state = 24}, - [1323] = {.lex_state = 402, .external_lex_state = 24}, - [1324] = {.lex_state = 402, .external_lex_state = 24}, - [1325] = {.lex_state = 403, .external_lex_state = 24}, - [1326] = {.lex_state = 403, .external_lex_state = 24}, - [1327] = {.lex_state = 202, .external_lex_state = 25}, - [1328] = {.lex_state = 396, .external_lex_state = 10}, - [1329] = {.lex_state = 402, .external_lex_state = 24}, - [1330] = {.lex_state = 402, .external_lex_state = 24}, - [1331] = {.lex_state = 202, .external_lex_state = 25}, - [1332] = {.lex_state = 202, .external_lex_state = 25}, - [1333] = {.lex_state = 403, .external_lex_state = 24}, - [1334] = {.lex_state = 403, .external_lex_state = 24}, - [1335] = {.lex_state = 403, .external_lex_state = 24}, - [1336] = {.lex_state = 403, .external_lex_state = 24}, - [1337] = {.lex_state = 403, .external_lex_state = 24}, - [1338] = {.lex_state = 155, .external_lex_state = 10}, - [1339] = {.lex_state = 403, .external_lex_state = 24}, - [1340] = {.lex_state = 155, .external_lex_state = 12}, - [1341] = {.lex_state = 202, .external_lex_state = 25}, - [1342] = {.lex_state = 202, .external_lex_state = 25}, - [1343] = {.lex_state = 202, .external_lex_state = 25}, - [1344] = {.lex_state = 403, .external_lex_state = 24}, - [1345] = {.lex_state = 202, .external_lex_state = 25}, - [1346] = {.lex_state = 203, .external_lex_state = 25}, - [1347] = {.lex_state = 202, .external_lex_state = 25}, - [1348] = {.lex_state = 202, .external_lex_state = 25}, - [1349] = {.lex_state = 202, .external_lex_state = 25}, - [1350] = {.lex_state = 396, .external_lex_state = 12}, - [1351] = {.lex_state = 403, .external_lex_state = 24}, - [1352] = {.lex_state = 403, .external_lex_state = 24}, - [1353] = {.lex_state = 403, .external_lex_state = 24}, - [1354] = {.lex_state = 403, .external_lex_state = 24}, - [1355] = {.lex_state = 400, .external_lex_state = 10}, - [1356] = {.lex_state = 403, .external_lex_state = 24}, - [1357] = {.lex_state = 202, .external_lex_state = 25}, - [1358] = {.lex_state = 403, .external_lex_state = 24}, - [1359] = {.lex_state = 202, .external_lex_state = 25}, - [1360] = {.lex_state = 403, .external_lex_state = 24}, - [1361] = {.lex_state = 202, .external_lex_state = 25}, - [1362] = {.lex_state = 396, .external_lex_state = 12}, - [1363] = {.lex_state = 403, .external_lex_state = 24}, - [1364] = {.lex_state = 179, .external_lex_state = 14}, - [1365] = {.lex_state = 155, .external_lex_state = 10}, - [1366] = {.lex_state = 179, .external_lex_state = 14}, - [1367] = {.lex_state = 403, .external_lex_state = 24}, - [1368] = {.lex_state = 403, .external_lex_state = 24}, - [1369] = {.lex_state = 155, .external_lex_state = 10}, - [1370] = {.lex_state = 203, .external_lex_state = 25}, - [1371] = {.lex_state = 403, .external_lex_state = 24}, - [1372] = {.lex_state = 400, .external_lex_state = 10}, - [1373] = {.lex_state = 400, .external_lex_state = 10}, - [1374] = {.lex_state = 403, .external_lex_state = 24}, - [1375] = {.lex_state = 155, .external_lex_state = 10}, - [1376] = {.lex_state = 403, .external_lex_state = 24}, - [1377] = {.lex_state = 400, .external_lex_state = 10}, - [1378] = {.lex_state = 403, .external_lex_state = 24}, - [1379] = {.lex_state = 396, .external_lex_state = 10}, - [1380] = {.lex_state = 400, .external_lex_state = 10}, - [1381] = {.lex_state = 396, .external_lex_state = 10}, - [1382] = {.lex_state = 403, .external_lex_state = 24}, - [1383] = {.lex_state = 403, .external_lex_state = 24}, - [1384] = {.lex_state = 396, .external_lex_state = 10}, - [1385] = {.lex_state = 396, .external_lex_state = 12}, - [1386] = {.lex_state = 227, .external_lex_state = 26}, - [1387] = {.lex_state = 403, .external_lex_state = 24}, - [1388] = {.lex_state = 153, .external_lex_state = 12}, - [1389] = {.lex_state = 403, .external_lex_state = 24}, - [1390] = {.lex_state = 203, .external_lex_state = 25}, - [1391] = {.lex_state = 203, .external_lex_state = 25}, - [1392] = {.lex_state = 155, .external_lex_state = 10}, - [1393] = {.lex_state = 403, .external_lex_state = 24}, - [1394] = {.lex_state = 203, .external_lex_state = 25}, - [1395] = {.lex_state = 403, .external_lex_state = 24}, - [1396] = {.lex_state = 403, .external_lex_state = 24}, - [1397] = {.lex_state = 396, .external_lex_state = 10}, - [1398] = {.lex_state = 403, .external_lex_state = 24}, - [1399] = {.lex_state = 203, .external_lex_state = 25}, - [1400] = {.lex_state = 141, .external_lex_state = 12}, - [1401] = {.lex_state = 155, .external_lex_state = 12}, - [1402] = {.lex_state = 396, .external_lex_state = 10}, - [1403] = {.lex_state = 202, .external_lex_state = 25}, - [1404] = {.lex_state = 202, .external_lex_state = 25}, - [1405] = {.lex_state = 155, .external_lex_state = 10}, - [1406] = {.lex_state = 400, .external_lex_state = 10}, - [1407] = {.lex_state = 206, .external_lex_state = 16}, - [1408] = {.lex_state = 403, .external_lex_state = 24}, - [1409] = {.lex_state = 396, .external_lex_state = 10}, - [1410] = {.lex_state = 403, .external_lex_state = 24}, - [1411] = {.lex_state = 403, .external_lex_state = 24}, - [1412] = {.lex_state = 403, .external_lex_state = 24}, - [1413] = {.lex_state = 403, .external_lex_state = 24}, - [1414] = {.lex_state = 396, .external_lex_state = 12}, - [1415] = {.lex_state = 396, .external_lex_state = 10}, - [1416] = {.lex_state = 403, .external_lex_state = 24}, - [1417] = {.lex_state = 205, .external_lex_state = 25}, - [1418] = {.lex_state = 202, .external_lex_state = 25}, - [1419] = {.lex_state = 403, .external_lex_state = 24}, - [1420] = {.lex_state = 202, .external_lex_state = 25}, - [1421] = {.lex_state = 396, .external_lex_state = 10}, - [1422] = {.lex_state = 202, .external_lex_state = 25}, - [1423] = {.lex_state = 202, .external_lex_state = 25}, - [1424] = {.lex_state = 403, .external_lex_state = 24}, - [1425] = {.lex_state = 206, .external_lex_state = 16}, - [1426] = {.lex_state = 403, .external_lex_state = 24}, - [1427] = {.lex_state = 403, .external_lex_state = 24}, - [1428] = {.lex_state = 202, .external_lex_state = 25}, - [1429] = {.lex_state = 403, .external_lex_state = 24}, - [1430] = {.lex_state = 403, .external_lex_state = 24}, - [1431] = {.lex_state = 227, .external_lex_state = 26}, - [1432] = {.lex_state = 400, .external_lex_state = 10}, - [1433] = {.lex_state = 400, .external_lex_state = 10}, - [1434] = {.lex_state = 400, .external_lex_state = 10}, - [1435] = {.lex_state = 400, .external_lex_state = 10}, - [1436] = {.lex_state = 206, .external_lex_state = 16}, - [1437] = {.lex_state = 400, .external_lex_state = 10}, - [1438] = {.lex_state = 202, .external_lex_state = 25}, - [1439] = {.lex_state = 206, .external_lex_state = 16}, - [1440] = {.lex_state = 202, .external_lex_state = 25}, - [1441] = {.lex_state = 400, .external_lex_state = 10}, - [1442] = {.lex_state = 202, .external_lex_state = 25}, - [1443] = {.lex_state = 400, .external_lex_state = 10}, - [1444] = {.lex_state = 227, .external_lex_state = 26}, - [1445] = {.lex_state = 203, .external_lex_state = 25}, - [1446] = {.lex_state = 400, .external_lex_state = 10}, - [1447] = {.lex_state = 400, .external_lex_state = 10}, - [1448] = {.lex_state = 205, .external_lex_state = 17}, - [1449] = {.lex_state = 400, .external_lex_state = 10}, - [1450] = {.lex_state = 206, .external_lex_state = 16}, - [1451] = {.lex_state = 400, .external_lex_state = 10}, - [1452] = {.lex_state = 206, .external_lex_state = 16}, - [1453] = {.lex_state = 203, .external_lex_state = 25}, - [1454] = {.lex_state = 400, .external_lex_state = 10}, - [1455] = {.lex_state = 206, .external_lex_state = 16}, - [1456] = {.lex_state = 206, .external_lex_state = 16}, - [1457] = {.lex_state = 400, .external_lex_state = 10}, - [1458] = {.lex_state = 400, .external_lex_state = 10}, - [1459] = {.lex_state = 400, .external_lex_state = 10}, - [1460] = {.lex_state = 224, .external_lex_state = 2}, - [1461] = {.lex_state = 205, .external_lex_state = 17}, - [1462] = {.lex_state = 203, .external_lex_state = 17}, - [1463] = {.lex_state = 400, .external_lex_state = 10}, - [1464] = {.lex_state = 400, .external_lex_state = 10}, - [1465] = {.lex_state = 400, .external_lex_state = 12}, - [1466] = {.lex_state = 206, .external_lex_state = 16}, - [1467] = {.lex_state = 400, .external_lex_state = 10}, - [1468] = {.lex_state = 203, .external_lex_state = 17}, - [1469] = {.lex_state = 400, .external_lex_state = 10}, - [1470] = {.lex_state = 224, .external_lex_state = 2}, - [1471] = {.lex_state = 396, .external_lex_state = 12}, - [1472] = {.lex_state = 400, .external_lex_state = 10}, - [1473] = {.lex_state = 400, .external_lex_state = 10}, - [1474] = {.lex_state = 206, .external_lex_state = 16}, - [1475] = {.lex_state = 206, .external_lex_state = 16}, - [1476] = {.lex_state = 206, .external_lex_state = 16}, - [1477] = {.lex_state = 201, .external_lex_state = 17}, - [1478] = {.lex_state = 201, .external_lex_state = 17}, - [1479] = {.lex_state = 201, .external_lex_state = 17}, - [1480] = {.lex_state = 206, .external_lex_state = 16}, - [1481] = {.lex_state = 400, .external_lex_state = 12}, - [1482] = {.lex_state = 400, .external_lex_state = 10}, - [1483] = {.lex_state = 400, .external_lex_state = 10}, - [1484] = {.lex_state = 400, .external_lex_state = 10}, - [1485] = {.lex_state = 400, .external_lex_state = 10}, - [1486] = {.lex_state = 400, .external_lex_state = 10}, - [1487] = {.lex_state = 400, .external_lex_state = 10}, - [1488] = {.lex_state = 400, .external_lex_state = 10}, - [1489] = {.lex_state = 202, .external_lex_state = 25}, - [1490] = {.lex_state = 400, .external_lex_state = 10}, - [1491] = {.lex_state = 203, .external_lex_state = 25}, - [1492] = {.lex_state = 396, .external_lex_state = 12}, - [1493] = {.lex_state = 203, .external_lex_state = 25}, - [1494] = {.lex_state = 400, .external_lex_state = 10}, - [1495] = {.lex_state = 400, .external_lex_state = 10}, - [1496] = {.lex_state = 203, .external_lex_state = 25}, - [1497] = {.lex_state = 203, .external_lex_state = 25}, - [1498] = {.lex_state = 203, .external_lex_state = 25}, - [1499] = {.lex_state = 400, .external_lex_state = 12}, - [1500] = {.lex_state = 203, .external_lex_state = 25}, - [1501] = {.lex_state = 203, .external_lex_state = 25}, - [1502] = {.lex_state = 400, .external_lex_state = 10}, - [1503] = {.lex_state = 400, .external_lex_state = 10}, - [1504] = {.lex_state = 400, .external_lex_state = 10}, - [1505] = {.lex_state = 400, .external_lex_state = 10}, - [1506] = {.lex_state = 400, .external_lex_state = 10}, - [1507] = {.lex_state = 400, .external_lex_state = 10}, - [1508] = {.lex_state = 400, .external_lex_state = 10}, - [1509] = {.lex_state = 227, .external_lex_state = 26}, - [1510] = {.lex_state = 400, .external_lex_state = 10}, - [1511] = {.lex_state = 203, .external_lex_state = 25}, - [1512] = {.lex_state = 400, .external_lex_state = 10}, - [1513] = {.lex_state = 203, .external_lex_state = 25}, - [1514] = {.lex_state = 400, .external_lex_state = 10}, - [1515] = {.lex_state = 400, .external_lex_state = 10}, - [1516] = {.lex_state = 203, .external_lex_state = 25}, - [1517] = {.lex_state = 203, .external_lex_state = 25}, - [1518] = {.lex_state = 203, .external_lex_state = 25}, - [1519] = {.lex_state = 400, .external_lex_state = 10}, - [1520] = {.lex_state = 400, .external_lex_state = 10}, - [1521] = {.lex_state = 400, .external_lex_state = 10}, - [1522] = {.lex_state = 206, .external_lex_state = 16}, - [1523] = {.lex_state = 155, .external_lex_state = 12}, - [1524] = {.lex_state = 400, .external_lex_state = 10}, - [1525] = {.lex_state = 203, .external_lex_state = 25}, - [1526] = {.lex_state = 400, .external_lex_state = 10}, - [1527] = {.lex_state = 400, .external_lex_state = 10}, - [1528] = {.lex_state = 400, .external_lex_state = 10}, - [1529] = {.lex_state = 400, .external_lex_state = 10}, - [1530] = {.lex_state = 400, .external_lex_state = 10}, - [1531] = {.lex_state = 400, .external_lex_state = 10}, - [1532] = {.lex_state = 201, .external_lex_state = 17}, - [1533] = {.lex_state = 206, .external_lex_state = 16}, - [1534] = {.lex_state = 400, .external_lex_state = 10}, - [1535] = {.lex_state = 203, .external_lex_state = 25}, - [1536] = {.lex_state = 203, .external_lex_state = 25}, - [1537] = {.lex_state = 206, .external_lex_state = 16}, - [1538] = {.lex_state = 203, .external_lex_state = 25}, - [1539] = {.lex_state = 203, .external_lex_state = 25}, - [1540] = {.lex_state = 400, .external_lex_state = 12}, - [1541] = {.lex_state = 227, .external_lex_state = 26}, - [1542] = {.lex_state = 202, .external_lex_state = 25}, - [1543] = {.lex_state = 203, .external_lex_state = 25}, - [1544] = {.lex_state = 400, .external_lex_state = 10}, - [1545] = {.lex_state = 202, .external_lex_state = 25}, - [1546] = {.lex_state = 227, .external_lex_state = 26}, - [1547] = {.lex_state = 224, .external_lex_state = 2}, - [1548] = {.lex_state = 400, .external_lex_state = 10}, - [1549] = {.lex_state = 203, .external_lex_state = 25}, - [1550] = {.lex_state = 400, .external_lex_state = 10}, - [1551] = {.lex_state = 206, .external_lex_state = 16}, - [1552] = {.lex_state = 206, .external_lex_state = 16}, - [1553] = {.lex_state = 400, .external_lex_state = 10}, - [1554] = {.lex_state = 400, .external_lex_state = 10}, - [1555] = {.lex_state = 227, .external_lex_state = 26}, - [1556] = {.lex_state = 400, .external_lex_state = 10}, - [1557] = {.lex_state = 201, .external_lex_state = 17}, - [1558] = {.lex_state = 400, .external_lex_state = 10}, - [1559] = {.lex_state = 206, .external_lex_state = 16}, - [1560] = {.lex_state = 227, .external_lex_state = 26}, - [1561] = {.lex_state = 227, .external_lex_state = 26}, - [1562] = {.lex_state = 400, .external_lex_state = 10}, - [1563] = {.lex_state = 400, .external_lex_state = 10}, - [1564] = {.lex_state = 400, .external_lex_state = 10}, - [1565] = {.lex_state = 203, .external_lex_state = 25}, - [1566] = {.lex_state = 400, .external_lex_state = 10}, - [1567] = {.lex_state = 400, .external_lex_state = 10}, - [1568] = {.lex_state = 203, .external_lex_state = 25}, - [1569] = {.lex_state = 227, .external_lex_state = 26}, - [1570] = {.lex_state = 227, .external_lex_state = 26}, - [1571] = {.lex_state = 203, .external_lex_state = 25}, - [1572] = {.lex_state = 203, .external_lex_state = 25}, - [1573] = {.lex_state = 400, .external_lex_state = 10}, - [1574] = {.lex_state = 400, .external_lex_state = 10}, - [1575] = {.lex_state = 168, .external_lex_state = 27}, - [1576] = {.lex_state = 206, .external_lex_state = 16}, - [1577] = {.lex_state = 206, .external_lex_state = 16}, - [1578] = {.lex_state = 191, .external_lex_state = 28}, - [1579] = {.lex_state = 400, .external_lex_state = 10}, - [1580] = {.lex_state = 168, .external_lex_state = 27}, - [1581] = {.lex_state = 206, .external_lex_state = 16}, - [1582] = {.lex_state = 206, .external_lex_state = 21}, - [1583] = {.lex_state = 227, .external_lex_state = 26}, - [1584] = {.lex_state = 206, .external_lex_state = 21}, - [1585] = {.lex_state = 227, .external_lex_state = 26}, - [1586] = {.lex_state = 227, .external_lex_state = 26}, - [1587] = {.lex_state = 400, .external_lex_state = 10}, - [1588] = {.lex_state = 231, .external_lex_state = 29}, - [1589] = {.lex_state = 231, .external_lex_state = 29}, - [1590] = {.lex_state = 227, .external_lex_state = 26}, - [1591] = {.lex_state = 191, .external_lex_state = 28}, - [1592] = {.lex_state = 206, .external_lex_state = 16}, - [1593] = {.lex_state = 168, .external_lex_state = 27}, - [1594] = {.lex_state = 191, .external_lex_state = 28}, - [1595] = {.lex_state = 168, .external_lex_state = 27}, - [1596] = {.lex_state = 206, .external_lex_state = 16}, - [1597] = {.lex_state = 191, .external_lex_state = 28}, - [1598] = {.lex_state = 203, .external_lex_state = 25}, - [1599] = {.lex_state = 191, .external_lex_state = 28}, - [1600] = {.lex_state = 203, .external_lex_state = 25}, - [1601] = {.lex_state = 227, .external_lex_state = 26}, - [1602] = {.lex_state = 400, .external_lex_state = 12}, - [1603] = {.lex_state = 233, .external_lex_state = 30}, - [1604] = {.lex_state = 227, .external_lex_state = 26}, - [1605] = {.lex_state = 168, .external_lex_state = 27}, - [1606] = {.lex_state = 168, .external_lex_state = 27}, - [1607] = {.lex_state = 233, .external_lex_state = 30}, - [1608] = {.lex_state = 206, .external_lex_state = 16}, - [1609] = {.lex_state = 206, .external_lex_state = 16}, - [1610] = {.lex_state = 227, .external_lex_state = 26}, - [1611] = {.lex_state = 168, .external_lex_state = 27}, - [1612] = {.lex_state = 191, .external_lex_state = 28}, - [1613] = {.lex_state = 206, .external_lex_state = 16}, - [1614] = {.lex_state = 168, .external_lex_state = 27}, - [1615] = {.lex_state = 206, .external_lex_state = 16}, - [1616] = {.lex_state = 231, .external_lex_state = 29}, - [1617] = {.lex_state = 227, .external_lex_state = 26}, - [1618] = {.lex_state = 227, .external_lex_state = 26}, - [1619] = {.lex_state = 203, .external_lex_state = 25}, - [1620] = {.lex_state = 203, .external_lex_state = 25}, - [1621] = {.lex_state = 233, .external_lex_state = 30}, - [1622] = {.lex_state = 227, .external_lex_state = 26}, - [1623] = {.lex_state = 227, .external_lex_state = 26}, - [1624] = {.lex_state = 191, .external_lex_state = 28}, - [1625] = {.lex_state = 227, .external_lex_state = 26}, - [1626] = {.lex_state = 206, .external_lex_state = 16}, - [1627] = {.lex_state = 206, .external_lex_state = 16}, - [1628] = {.lex_state = 233, .external_lex_state = 30}, - [1629] = {.lex_state = 168, .external_lex_state = 27}, - [1630] = {.lex_state = 227, .external_lex_state = 26}, - [1631] = {.lex_state = 400, .external_lex_state = 12}, - [1632] = {.lex_state = 206, .external_lex_state = 16}, - [1633] = {.lex_state = 168, .external_lex_state = 27}, - [1634] = {.lex_state = 168, .external_lex_state = 27}, - [1635] = {.lex_state = 231, .external_lex_state = 29}, - [1636] = {.lex_state = 206, .external_lex_state = 16}, - [1637] = {.lex_state = 191, .external_lex_state = 28}, - [1638] = {.lex_state = 203, .external_lex_state = 25}, - [1639] = {.lex_state = 227, .external_lex_state = 26}, - [1640] = {.lex_state = 227, .external_lex_state = 26}, - [1641] = {.lex_state = 206, .external_lex_state = 16}, - [1642] = {.lex_state = 168, .external_lex_state = 27}, - [1643] = {.lex_state = 206, .external_lex_state = 16}, - [1644] = {.lex_state = 206, .external_lex_state = 16}, - [1645] = {.lex_state = 231, .external_lex_state = 29}, - [1646] = {.lex_state = 168, .external_lex_state = 27}, - [1647] = {.lex_state = 168, .external_lex_state = 27}, - [1648] = {.lex_state = 203, .external_lex_state = 25}, - [1649] = {.lex_state = 180, .external_lex_state = 2}, - [1650] = {.lex_state = 233, .external_lex_state = 30}, - [1651] = {.lex_state = 227, .external_lex_state = 26}, - [1652] = {.lex_state = 233, .external_lex_state = 30}, - [1653] = {.lex_state = 206, .external_lex_state = 16}, - [1654] = {.lex_state = 203, .external_lex_state = 17}, - [1655] = {.lex_state = 180, .external_lex_state = 2}, - [1656] = {.lex_state = 206, .external_lex_state = 16}, - [1657] = {.lex_state = 206, .external_lex_state = 16}, - [1658] = {.lex_state = 205, .external_lex_state = 17}, - [1659] = {.lex_state = 233, .external_lex_state = 30}, - [1660] = {.lex_state = 202, .external_lex_state = 17}, - [1661] = {.lex_state = 227, .external_lex_state = 26}, - [1662] = {.lex_state = 203, .external_lex_state = 25}, - [1663] = {.lex_state = 227, .external_lex_state = 26}, - [1664] = {.lex_state = 168, .external_lex_state = 27}, - [1665] = {.lex_state = 233, .external_lex_state = 30}, - [1666] = {.lex_state = 168, .external_lex_state = 27}, - [1667] = {.lex_state = 202, .external_lex_state = 17}, - [1668] = {.lex_state = 231, .external_lex_state = 29}, - [1669] = {.lex_state = 191, .external_lex_state = 31}, - [1670] = {.lex_state = 206, .external_lex_state = 16}, - [1671] = {.lex_state = 191, .external_lex_state = 31}, - [1672] = {.lex_state = 191, .external_lex_state = 31}, - [1673] = {.lex_state = 206, .external_lex_state = 16}, - [1674] = {.lex_state = 203, .external_lex_state = 17}, - [1675] = {.lex_state = 203, .external_lex_state = 17}, - [1676] = {.lex_state = 231, .external_lex_state = 32}, - [1677] = {.lex_state = 228, .external_lex_state = 30}, - [1678] = {.lex_state = 228, .external_lex_state = 30}, - [1679] = {.lex_state = 228, .external_lex_state = 30}, - [1680] = {.lex_state = 203, .external_lex_state = 17}, - [1681] = {.lex_state = 203, .external_lex_state = 17}, - [1682] = {.lex_state = 231, .external_lex_state = 32}, - [1683] = {.lex_state = 231, .external_lex_state = 32}, - [1684] = {.lex_state = 231, .external_lex_state = 32}, - [1685] = {.lex_state = 229, .external_lex_state = 15}, - [1686] = {.lex_state = 228, .external_lex_state = 30}, - [1687] = {.lex_state = 191, .external_lex_state = 31}, - [1688] = {.lex_state = 228, .external_lex_state = 30}, - [1689] = {.lex_state = 228, .external_lex_state = 30}, - [1690] = {.lex_state = 202, .external_lex_state = 25}, - [1691] = {.lex_state = 233, .external_lex_state = 33}, - [1692] = {.lex_state = 191, .external_lex_state = 31}, - [1693] = {.lex_state = 233, .external_lex_state = 33}, - [1694] = {.lex_state = 231, .external_lex_state = 29}, - [1695] = {.lex_state = 202, .external_lex_state = 25}, - [1696] = {.lex_state = 191, .external_lex_state = 31}, - [1697] = {.lex_state = 203, .external_lex_state = 17}, - [1698] = {.lex_state = 206, .external_lex_state = 16}, - [1699] = {.lex_state = 191, .external_lex_state = 31}, - [1700] = {.lex_state = 206, .external_lex_state = 16}, - [1701] = {.lex_state = 231, .external_lex_state = 29}, - [1702] = {.lex_state = 231, .external_lex_state = 29}, - [1703] = {.lex_state = 203, .external_lex_state = 17}, - [1704] = {.lex_state = 203, .external_lex_state = 17}, - [1705] = {.lex_state = 191, .external_lex_state = 31}, - [1706] = {.lex_state = 203, .external_lex_state = 17}, - [1707] = {.lex_state = 202, .external_lex_state = 25}, - [1708] = {.lex_state = 202, .external_lex_state = 25}, - [1709] = {.lex_state = 203, .external_lex_state = 17}, - [1710] = {.lex_state = 231, .external_lex_state = 29}, - [1711] = {.lex_state = 203, .external_lex_state = 17}, - [1712] = {.lex_state = 203, .external_lex_state = 17}, - [1713] = {.lex_state = 191, .external_lex_state = 31}, - [1714] = {.lex_state = 191, .external_lex_state = 31}, - [1715] = {.lex_state = 191, .external_lex_state = 31}, - [1716] = {.lex_state = 191, .external_lex_state = 31}, - [1717] = {.lex_state = 231, .external_lex_state = 29}, - [1718] = {.lex_state = 191, .external_lex_state = 31}, - [1719] = {.lex_state = 191, .external_lex_state = 31}, - [1720] = {.lex_state = 191, .external_lex_state = 31}, - [1721] = {.lex_state = 229, .external_lex_state = 15}, - [1722] = {.lex_state = 229, .external_lex_state = 15}, - [1723] = {.lex_state = 191, .external_lex_state = 31}, - [1724] = {.lex_state = 231, .external_lex_state = 29}, - [1725] = {.lex_state = 220, .external_lex_state = 34}, - [1726] = {.lex_state = 220, .external_lex_state = 34}, - [1727] = {.lex_state = 191, .external_lex_state = 31}, - [1728] = {.lex_state = 191, .external_lex_state = 31}, - [1729] = {.lex_state = 191, .external_lex_state = 31}, - [1730] = {.lex_state = 231, .external_lex_state = 29}, - [1731] = {.lex_state = 191, .external_lex_state = 31}, - [1732] = {.lex_state = 191, .external_lex_state = 31}, - [1733] = {.lex_state = 191, .external_lex_state = 31}, - [1734] = {.lex_state = 191, .external_lex_state = 31}, - [1735] = {.lex_state = 231, .external_lex_state = 29}, - [1736] = {.lex_state = 191, .external_lex_state = 31}, - [1737] = {.lex_state = 191, .external_lex_state = 31}, - [1738] = {.lex_state = 206, .external_lex_state = 16}, - [1739] = {.lex_state = 203, .external_lex_state = 17}, - [1740] = {.lex_state = 206, .external_lex_state = 16}, - [1741] = {.lex_state = 203, .external_lex_state = 17}, - [1742] = {.lex_state = 206, .external_lex_state = 16}, - [1743] = {.lex_state = 231, .external_lex_state = 29}, - [1744] = {.lex_state = 191, .external_lex_state = 31}, - [1745] = {.lex_state = 203, .external_lex_state = 17}, - [1746] = {.lex_state = 191, .external_lex_state = 31}, - [1747] = {.lex_state = 191, .external_lex_state = 31}, - [1748] = {.lex_state = 220, .external_lex_state = 34}, - [1749] = {.lex_state = 231, .external_lex_state = 29}, - [1750] = {.lex_state = 191, .external_lex_state = 31}, - [1751] = {.lex_state = 191, .external_lex_state = 31}, - [1752] = {.lex_state = 233, .external_lex_state = 30}, - [1753] = {.lex_state = 191, .external_lex_state = 31}, - [1754] = {.lex_state = 220, .external_lex_state = 34}, - [1755] = {.lex_state = 66, .external_lex_state = 35}, - [1756] = {.lex_state = 231, .external_lex_state = 29}, - [1757] = {.lex_state = 66, .external_lex_state = 35}, - [1758] = {.lex_state = 203, .external_lex_state = 17}, - [1759] = {.lex_state = 191, .external_lex_state = 31}, - [1760] = {.lex_state = 191, .external_lex_state = 31}, - [1761] = {.lex_state = 233, .external_lex_state = 30}, - [1762] = {.lex_state = 233, .external_lex_state = 30}, - [1763] = {.lex_state = 228, .external_lex_state = 30}, - [1764] = {.lex_state = 228, .external_lex_state = 30}, - [1765] = {.lex_state = 206, .external_lex_state = 16}, - [1766] = {.lex_state = 203, .external_lex_state = 17}, - [1767] = {.lex_state = 191, .external_lex_state = 31}, - [1768] = {.lex_state = 203, .external_lex_state = 17}, - [1769] = {.lex_state = 203, .external_lex_state = 17}, - [1770] = {.lex_state = 233, .external_lex_state = 30}, - [1771] = {.lex_state = 202, .external_lex_state = 17}, - [1772] = {.lex_state = 191, .external_lex_state = 31}, - [1773] = {.lex_state = 191, .external_lex_state = 31}, - [1774] = {.lex_state = 203, .external_lex_state = 17}, - [1775] = {.lex_state = 233, .external_lex_state = 30}, - [1776] = {.lex_state = 233, .external_lex_state = 33}, - [1777] = {.lex_state = 203, .external_lex_state = 17}, - [1778] = {.lex_state = 231, .external_lex_state = 29}, - [1779] = {.lex_state = 231, .external_lex_state = 29}, - [1780] = {.lex_state = 203, .external_lex_state = 17}, - [1781] = {.lex_state = 233, .external_lex_state = 33}, - [1782] = {.lex_state = 233, .external_lex_state = 30}, - [1783] = {.lex_state = 233, .external_lex_state = 33}, - [1784] = {.lex_state = 203, .external_lex_state = 17}, - [1785] = {.lex_state = 231, .external_lex_state = 29}, - [1786] = {.lex_state = 231, .external_lex_state = 32}, - [1787] = {.lex_state = 231, .external_lex_state = 32}, - [1788] = {.lex_state = 233, .external_lex_state = 30}, - [1789] = {.lex_state = 203, .external_lex_state = 17}, - [1790] = {.lex_state = 191, .external_lex_state = 31}, - [1791] = {.lex_state = 191, .external_lex_state = 31}, - [1792] = {.lex_state = 233, .external_lex_state = 33}, - [1793] = {.lex_state = 233, .external_lex_state = 30}, - [1794] = {.lex_state = 191, .external_lex_state = 31}, - [1795] = {.lex_state = 231, .external_lex_state = 29}, - [1796] = {.lex_state = 231, .external_lex_state = 29}, - [1797] = {.lex_state = 231, .external_lex_state = 29}, - [1798] = {.lex_state = 206, .external_lex_state = 16}, - [1799] = {.lex_state = 233, .external_lex_state = 30}, - [1800] = {.lex_state = 233, .external_lex_state = 30}, - [1801] = {.lex_state = 191, .external_lex_state = 31}, - [1802] = {.lex_state = 231, .external_lex_state = 29}, - [1803] = {.lex_state = 233, .external_lex_state = 30}, - [1804] = {.lex_state = 203, .external_lex_state = 17}, - [1805] = {.lex_state = 233, .external_lex_state = 30}, - [1806] = {.lex_state = 233, .external_lex_state = 30}, - [1807] = {.lex_state = 233, .external_lex_state = 30}, - [1808] = {.lex_state = 191, .external_lex_state = 31}, - [1809] = {.lex_state = 191, .external_lex_state = 31}, - [1810] = {.lex_state = 191, .external_lex_state = 31}, - [1811] = {.lex_state = 206, .external_lex_state = 16}, - [1812] = {.lex_state = 233, .external_lex_state = 30}, - [1813] = {.lex_state = 191, .external_lex_state = 31}, - [1814] = {.lex_state = 206, .external_lex_state = 21}, - [1815] = {.lex_state = 191, .external_lex_state = 31}, - [1816] = {.lex_state = 229, .external_lex_state = 15}, - [1817] = {.lex_state = 191, .external_lex_state = 31}, - [1818] = {.lex_state = 191, .external_lex_state = 31}, - [1819] = {.lex_state = 233, .external_lex_state = 30}, - [1820] = {.lex_state = 191, .external_lex_state = 31}, - [1821] = {.lex_state = 191, .external_lex_state = 31}, - [1822] = {.lex_state = 203, .external_lex_state = 17}, - [1823] = {.lex_state = 191, .external_lex_state = 31}, - [1824] = {.lex_state = 191, .external_lex_state = 31}, - [1825] = {.lex_state = 206, .external_lex_state = 16}, - [1826] = {.lex_state = 233, .external_lex_state = 30}, - [1827] = {.lex_state = 233, .external_lex_state = 30}, - [1828] = {.lex_state = 206, .external_lex_state = 21}, - [1829] = {.lex_state = 203, .external_lex_state = 17}, - [1830] = {.lex_state = 202, .external_lex_state = 17}, - [1831] = {.lex_state = 203, .external_lex_state = 17}, - [1832] = {.lex_state = 231, .external_lex_state = 32}, - [1833] = {.lex_state = 233, .external_lex_state = 33}, - [1834] = {.lex_state = 231, .external_lex_state = 32}, - [1835] = {.lex_state = 233, .external_lex_state = 33}, - [1836] = {.lex_state = 202, .external_lex_state = 17}, - [1837] = {.lex_state = 228, .external_lex_state = 30}, - [1838] = {.lex_state = 228, .external_lex_state = 30}, - [1839] = {.lex_state = 231, .external_lex_state = 32}, - [1840] = {.lex_state = 233, .external_lex_state = 33}, - [1841] = {.lex_state = 233, .external_lex_state = 33}, - [1842] = {.lex_state = 229, .external_lex_state = 15}, - [1843] = {.lex_state = 203, .external_lex_state = 17}, - [1844] = {.lex_state = 233, .external_lex_state = 33}, - [1845] = {.lex_state = 203, .external_lex_state = 17}, - [1846] = {.lex_state = 203, .external_lex_state = 17}, - [1847] = {.lex_state = 202, .external_lex_state = 17}, - [1848] = {.lex_state = 231, .external_lex_state = 32}, - [1849] = {.lex_state = 202, .external_lex_state = 17}, - [1850] = {.lex_state = 231, .external_lex_state = 32}, - [1851] = {.lex_state = 233, .external_lex_state = 33}, - [1852] = {.lex_state = 203, .external_lex_state = 17}, - [1853] = {.lex_state = 203, .external_lex_state = 17}, - [1854] = {.lex_state = 231, .external_lex_state = 32}, - [1855] = {.lex_state = 231, .external_lex_state = 32}, - [1856] = {.lex_state = 233, .external_lex_state = 33}, - [1857] = {.lex_state = 228, .external_lex_state = 30}, - [1858] = {.lex_state = 203, .external_lex_state = 17}, - [1859] = {.lex_state = 203, .external_lex_state = 17}, - [1860] = {.lex_state = 231, .external_lex_state = 32}, - [1861] = {.lex_state = 233, .external_lex_state = 33}, - [1862] = {.lex_state = 233, .external_lex_state = 33}, - [1863] = {.lex_state = 233, .external_lex_state = 33}, - [1864] = {.lex_state = 203, .external_lex_state = 17}, - [1865] = {.lex_state = 202, .external_lex_state = 17}, - [1866] = {.lex_state = 203, .external_lex_state = 17}, - [1867] = {.lex_state = 233, .external_lex_state = 33}, - [1868] = {.lex_state = 233, .external_lex_state = 33}, - [1869] = {.lex_state = 233, .external_lex_state = 33}, - [1870] = {.lex_state = 228, .external_lex_state = 30}, - [1871] = {.lex_state = 229, .external_lex_state = 15}, - [1872] = {.lex_state = 202, .external_lex_state = 17}, - [1873] = {.lex_state = 203, .external_lex_state = 17}, - [1874] = {.lex_state = 233, .external_lex_state = 33}, - [1875] = {.lex_state = 203, .external_lex_state = 17}, - [1876] = {.lex_state = 220, .external_lex_state = 14}, - [1877] = {.lex_state = 203, .external_lex_state = 17}, - [1878] = {.lex_state = 230, .external_lex_state = 18}, - [1879] = {.lex_state = 233, .external_lex_state = 33}, - [1880] = {.lex_state = 233, .external_lex_state = 33}, - [1881] = {.lex_state = 233, .external_lex_state = 33}, - [1882] = {.lex_state = 203, .external_lex_state = 17}, - [1883] = {.lex_state = 202, .external_lex_state = 17}, - [1884] = {.lex_state = 220, .external_lex_state = 14}, - [1885] = {.lex_state = 206, .external_lex_state = 21}, - [1886] = {.lex_state = 233, .external_lex_state = 33}, - [1887] = {.lex_state = 203, .external_lex_state = 17}, - [1888] = {.lex_state = 202, .external_lex_state = 17}, - [1889] = {.lex_state = 202, .external_lex_state = 17}, - [1890] = {.lex_state = 206, .external_lex_state = 21}, - [1891] = {.lex_state = 203, .external_lex_state = 17}, - [1892] = {.lex_state = 231, .external_lex_state = 32}, - [1893] = {.lex_state = 232, .external_lex_state = 13}, - [1894] = {.lex_state = 202, .external_lex_state = 17}, - [1895] = {.lex_state = 202, .external_lex_state = 17}, - [1896] = {.lex_state = 202, .external_lex_state = 17}, - [1897] = {.lex_state = 203, .external_lex_state = 17}, - [1898] = {.lex_state = 206, .external_lex_state = 21}, - [1899] = {.lex_state = 202, .external_lex_state = 17}, - [1900] = {.lex_state = 202, .external_lex_state = 17}, - [1901] = {.lex_state = 203, .external_lex_state = 17}, - [1902] = {.lex_state = 203, .external_lex_state = 17}, - [1903] = {.lex_state = 203, .external_lex_state = 17}, - [1904] = {.lex_state = 228, .external_lex_state = 30}, - [1905] = {.lex_state = 230, .external_lex_state = 18}, - [1906] = {.lex_state = 228, .external_lex_state = 30}, - [1907] = {.lex_state = 202, .external_lex_state = 17}, - [1908] = {.lex_state = 232, .external_lex_state = 13}, - [1909] = {.lex_state = 203, .external_lex_state = 17}, - [1910] = {.lex_state = 203, .external_lex_state = 17}, - [1911] = {.lex_state = 202, .external_lex_state = 17}, - [1912] = {.lex_state = 203, .external_lex_state = 17}, - [1913] = {.lex_state = 202, .external_lex_state = 17}, - [1914] = {.lex_state = 202, .external_lex_state = 17}, - [1915] = {.lex_state = 203, .external_lex_state = 17}, - [1916] = {.lex_state = 203, .external_lex_state = 17}, - [1917] = {.lex_state = 203, .external_lex_state = 17}, - [1918] = {.lex_state = 202, .external_lex_state = 17}, - [1919] = {.lex_state = 202, .external_lex_state = 17}, - [1920] = {.lex_state = 228, .external_lex_state = 30}, - [1921] = {.lex_state = 203, .external_lex_state = 17}, - [1922] = {.lex_state = 203, .external_lex_state = 17}, - [1923] = {.lex_state = 203, .external_lex_state = 17}, - [1924] = {.lex_state = 202, .external_lex_state = 17}, - [1925] = {.lex_state = 202, .external_lex_state = 17}, - [1926] = {.lex_state = 206, .external_lex_state = 21}, - [1927] = {.lex_state = 203, .external_lex_state = 17}, - [1928] = {.lex_state = 206, .external_lex_state = 21}, - [1929] = {.lex_state = 203, .external_lex_state = 17}, - [1930] = {.lex_state = 203, .external_lex_state = 17}, - [1931] = {.lex_state = 135, .external_lex_state = 35}, - [1932] = {.lex_state = 135, .external_lex_state = 35}, - [1933] = {.lex_state = 228, .external_lex_state = 30}, - [1934] = {.lex_state = 228, .external_lex_state = 30}, - [1935] = {.lex_state = 202, .external_lex_state = 17}, - [1936] = {.lex_state = 203, .external_lex_state = 17}, - [1937] = {.lex_state = 203, .external_lex_state = 17}, - [1938] = {.lex_state = 203, .external_lex_state = 17}, - [1939] = {.lex_state = 203, .external_lex_state = 17}, - [1940] = {.lex_state = 66, .external_lex_state = 36}, - [1941] = {.lex_state = 66, .external_lex_state = 36}, - [1942] = {.lex_state = 202, .external_lex_state = 17}, - [1943] = {.lex_state = 203, .external_lex_state = 17}, - [1944] = {.lex_state = 220, .external_lex_state = 14}, - [1945] = {.lex_state = 220, .external_lex_state = 14}, - [1946] = {.lex_state = 231, .external_lex_state = 32}, - [1947] = {.lex_state = 203, .external_lex_state = 17}, - [1948] = {.lex_state = 203, .external_lex_state = 17}, - [1949] = {.lex_state = 203, .external_lex_state = 17}, - [1950] = {.lex_state = 203, .external_lex_state = 17}, - [1951] = {.lex_state = 203, .external_lex_state = 17}, - [1952] = {.lex_state = 203, .external_lex_state = 17}, - [1953] = {.lex_state = 203, .external_lex_state = 17}, - [1954] = {.lex_state = 203, .external_lex_state = 17}, - [1955] = {.lex_state = 203, .external_lex_state = 17}, - [1956] = {.lex_state = 203, .external_lex_state = 17}, - [1957] = {.lex_state = 228, .external_lex_state = 33}, - [1958] = {.lex_state = 228, .external_lex_state = 33}, - [1959] = {.lex_state = 220, .external_lex_state = 14}, - [1960] = {.lex_state = 203, .external_lex_state = 17}, - [1961] = {.lex_state = 228, .external_lex_state = 30}, - [1962] = {.lex_state = 203, .external_lex_state = 17}, - [1963] = {.lex_state = 203, .external_lex_state = 17}, - [1964] = {.lex_state = 220, .external_lex_state = 14}, - [1965] = {.lex_state = 203, .external_lex_state = 17}, - [1966] = {.lex_state = 203, .external_lex_state = 17}, - [1967] = {.lex_state = 203, .external_lex_state = 17}, - [1968] = {.lex_state = 203, .external_lex_state = 17}, - [1969] = {.lex_state = 203, .external_lex_state = 17}, - [1970] = {.lex_state = 203, .external_lex_state = 17}, - [1971] = {.lex_state = 228, .external_lex_state = 30}, - [1972] = {.lex_state = 203, .external_lex_state = 17}, - [1973] = {.lex_state = 203, .external_lex_state = 17}, - [1974] = {.lex_state = 203, .external_lex_state = 17}, - [1975] = {.lex_state = 228, .external_lex_state = 30}, - [1976] = {.lex_state = 203, .external_lex_state = 17}, - [1977] = {.lex_state = 229, .external_lex_state = 15}, - [1978] = {.lex_state = 202, .external_lex_state = 17}, - [1979] = {.lex_state = 203, .external_lex_state = 17}, - [1980] = {.lex_state = 231, .external_lex_state = 32}, - [1981] = {.lex_state = 203, .external_lex_state = 17}, - [1982] = {.lex_state = 203, .external_lex_state = 17}, - [1983] = {.lex_state = 228, .external_lex_state = 30}, - [1984] = {.lex_state = 228, .external_lex_state = 30}, - [1985] = {.lex_state = 202, .external_lex_state = 17}, - [1986] = {.lex_state = 228, .external_lex_state = 30}, - [1987] = {.lex_state = 228, .external_lex_state = 30}, - [1988] = {.lex_state = 203, .external_lex_state = 17}, - [1989] = {.lex_state = 231, .external_lex_state = 32}, - [1990] = {.lex_state = 231, .external_lex_state = 32}, - [1991] = {.lex_state = 202, .external_lex_state = 17}, - [1992] = {.lex_state = 228, .external_lex_state = 30}, - [1993] = {.lex_state = 202, .external_lex_state = 17}, - [1994] = {.lex_state = 202, .external_lex_state = 17}, - [1995] = {.lex_state = 202, .external_lex_state = 17}, - [1996] = {.lex_state = 231, .external_lex_state = 32}, - [1997] = {.lex_state = 229, .external_lex_state = 15}, - [1998] = {.lex_state = 231, .external_lex_state = 32}, - [1999] = {.lex_state = 202, .external_lex_state = 17}, - [2000] = {.lex_state = 228, .external_lex_state = 30}, - [2001] = {.lex_state = 231, .external_lex_state = 32}, - [2002] = {.lex_state = 231, .external_lex_state = 32}, - [2003] = {.lex_state = 202, .external_lex_state = 17}, - [2004] = {.lex_state = 202, .external_lex_state = 17}, - [2005] = {.lex_state = 203, .external_lex_state = 17}, - [2006] = {.lex_state = 231, .external_lex_state = 32}, - [2007] = {.lex_state = 202, .external_lex_state = 17}, - [2008] = {.lex_state = 202, .external_lex_state = 17}, - [2009] = {.lex_state = 202, .external_lex_state = 17}, - [2010] = {.lex_state = 202, .external_lex_state = 17}, - [2011] = {.lex_state = 206, .external_lex_state = 21}, - [2012] = {.lex_state = 206, .external_lex_state = 21}, - [2013] = {.lex_state = 203, .external_lex_state = 17}, - [2014] = {.lex_state = 206, .external_lex_state = 21}, - [2015] = {.lex_state = 202, .external_lex_state = 17}, - [2016] = {.lex_state = 232, .external_lex_state = 13}, - [2017] = {.lex_state = 203, .external_lex_state = 17}, - [2018] = {.lex_state = 203, .external_lex_state = 17}, - [2019] = {.lex_state = 202, .external_lex_state = 17}, - [2020] = {.lex_state = 206, .external_lex_state = 21}, - [2021] = {.lex_state = 228, .external_lex_state = 33}, - [2022] = {.lex_state = 228, .external_lex_state = 33}, - [2023] = {.lex_state = 203, .external_lex_state = 17}, - [2024] = {.lex_state = 206, .external_lex_state = 21}, - [2025] = {.lex_state = 228, .external_lex_state = 33}, - [2026] = {.lex_state = 206, .external_lex_state = 21}, - [2027] = {.lex_state = 228, .external_lex_state = 33}, - [2028] = {.lex_state = 202, .external_lex_state = 17}, - [2029] = {.lex_state = 228, .external_lex_state = 33}, - [2030] = {.lex_state = 232, .external_lex_state = 13}, - [2031] = {.lex_state = 230, .external_lex_state = 18}, - [2032] = {.lex_state = 228, .external_lex_state = 33}, - [2033] = {.lex_state = 228, .external_lex_state = 33}, - [2034] = {.lex_state = 226, .external_lex_state = 13}, - [2035] = {.lex_state = 226, .external_lex_state = 13}, - [2036] = {.lex_state = 228, .external_lex_state = 33}, - [2037] = {.lex_state = 228, .external_lex_state = 33}, - [2038] = {.lex_state = 228, .external_lex_state = 33}, - [2039] = {.lex_state = 203, .external_lex_state = 17}, - [2040] = {.lex_state = 228, .external_lex_state = 33}, - [2041] = {.lex_state = 228, .external_lex_state = 33}, - [2042] = {.lex_state = 228, .external_lex_state = 33}, - [2043] = {.lex_state = 228, .external_lex_state = 33}, - [2044] = {.lex_state = 203, .external_lex_state = 17}, - [2045] = {.lex_state = 232, .external_lex_state = 20}, - [2046] = {.lex_state = 230, .external_lex_state = 19}, - [2047] = {.lex_state = 228, .external_lex_state = 33}, - [2048] = {.lex_state = 232, .external_lex_state = 13}, - [2049] = {.lex_state = 203, .external_lex_state = 17}, - [2050] = {.lex_state = 230, .external_lex_state = 18}, - [2051] = {.lex_state = 230, .external_lex_state = 19}, - [2052] = {.lex_state = 395, .external_lex_state = 35}, - [2053] = {.lex_state = 226, .external_lex_state = 13}, - [2054] = {.lex_state = 395, .external_lex_state = 35}, - [2055] = {.lex_state = 135, .external_lex_state = 36}, - [2056] = {.lex_state = 232, .external_lex_state = 20}, - [2057] = {.lex_state = 228, .external_lex_state = 33}, - [2058] = {.lex_state = 228, .external_lex_state = 33}, - [2059] = {.lex_state = 203, .external_lex_state = 17}, - [2060] = {.lex_state = 228, .external_lex_state = 33}, - [2061] = {.lex_state = 228, .external_lex_state = 33}, - [2062] = {.lex_state = 228, .external_lex_state = 33}, - [2063] = {.lex_state = 228, .external_lex_state = 33}, - [2064] = {.lex_state = 143, .external_lex_state = 35}, - [2065] = {.lex_state = 143, .external_lex_state = 35}, - [2066] = {.lex_state = 228, .external_lex_state = 33}, - [2067] = {.lex_state = 135, .external_lex_state = 36}, - [2068] = {.lex_state = 232, .external_lex_state = 13}, - [2069] = {.lex_state = 147, .external_lex_state = 35}, - [2070] = {.lex_state = 147, .external_lex_state = 35}, - [2071] = {.lex_state = 232, .external_lex_state = 13}, - [2072] = {.lex_state = 234, .external_lex_state = 37}, - [2073] = {.lex_state = 234, .external_lex_state = 37}, - [2074] = {.lex_state = 234, .external_lex_state = 37}, - [2075] = {.lex_state = 226, .external_lex_state = 20}, - [2076] = {.lex_state = 234, .external_lex_state = 37}, - [2077] = {.lex_state = 395, .external_lex_state = 35}, - [2078] = {.lex_state = 395, .external_lex_state = 35}, - [2079] = {.lex_state = 73, .external_lex_state = 38}, - [2080] = {.lex_state = 395, .external_lex_state = 36}, - [2081] = {.lex_state = 395, .external_lex_state = 36}, - [2082] = {.lex_state = 230, .external_lex_state = 19}, - [2083] = {.lex_state = 234, .external_lex_state = 37}, - [2084] = {.lex_state = 234, .external_lex_state = 37}, - [2085] = {.lex_state = 234, .external_lex_state = 37}, - [2086] = {.lex_state = 226, .external_lex_state = 13}, - [2087] = {.lex_state = 234, .external_lex_state = 37}, - [2088] = {.lex_state = 234, .external_lex_state = 37}, - [2089] = {.lex_state = 226, .external_lex_state = 13}, - [2090] = {.lex_state = 222, .external_lex_state = 34}, - [2091] = {.lex_state = 232, .external_lex_state = 20}, - [2092] = {.lex_state = 147, .external_lex_state = 36}, - [2093] = {.lex_state = 234, .external_lex_state = 37}, - [2094] = {.lex_state = 143, .external_lex_state = 36}, - [2095] = {.lex_state = 234, .external_lex_state = 37}, - [2096] = {.lex_state = 234, .external_lex_state = 37}, - [2097] = {.lex_state = 234, .external_lex_state = 37}, - [2098] = {.lex_state = 222, .external_lex_state = 34}, - [2099] = {.lex_state = 143, .external_lex_state = 36}, - [2100] = {.lex_state = 222, .external_lex_state = 34}, - [2101] = {.lex_state = 147, .external_lex_state = 36}, - [2102] = {.lex_state = 226, .external_lex_state = 13}, - [2103] = {.lex_state = 226, .external_lex_state = 13}, - [2104] = {.lex_state = 222, .external_lex_state = 34}, - [2105] = {.lex_state = 226, .external_lex_state = 13}, - [2106] = {.lex_state = 222, .external_lex_state = 34}, - [2107] = {.lex_state = 226, .external_lex_state = 13}, - [2108] = {.lex_state = 226, .external_lex_state = 20}, - [2109] = {.lex_state = 222, .external_lex_state = 34}, - [2110] = {.lex_state = 234, .external_lex_state = 37}, - [2111] = {.lex_state = 234, .external_lex_state = 37}, - [2112] = {.lex_state = 234, .external_lex_state = 37}, - [2113] = {.lex_state = 73, .external_lex_state = 38}, - [2114] = {.lex_state = 73, .external_lex_state = 38}, - [2115] = {.lex_state = 222, .external_lex_state = 34}, - [2116] = {.lex_state = 73, .external_lex_state = 38}, - [2117] = {.lex_state = 222, .external_lex_state = 34}, - [2118] = {.lex_state = 222, .external_lex_state = 34}, - [2119] = {.lex_state = 226, .external_lex_state = 37}, - [2120] = {.lex_state = 226, .external_lex_state = 20}, - [2121] = {.lex_state = 73, .external_lex_state = 38}, - [2122] = {.lex_state = 73, .external_lex_state = 38}, - [2123] = {.lex_state = 226, .external_lex_state = 37}, - [2124] = {.lex_state = 222, .external_lex_state = 34}, - [2125] = {.lex_state = 226, .external_lex_state = 37}, - [2126] = {.lex_state = 222, .external_lex_state = 34}, - [2127] = {.lex_state = 169, .external_lex_state = 39}, - [2128] = {.lex_state = 226, .external_lex_state = 37}, - [2129] = {.lex_state = 226, .external_lex_state = 37}, - [2130] = {.lex_state = 222, .external_lex_state = 34}, - [2131] = {.lex_state = 226, .external_lex_state = 37}, - [2132] = {.lex_state = 226, .external_lex_state = 37}, - [2133] = {.lex_state = 226, .external_lex_state = 37}, - [2134] = {.lex_state = 226, .external_lex_state = 37}, - [2135] = {.lex_state = 222, .external_lex_state = 34}, - [2136] = {.lex_state = 169, .external_lex_state = 39}, - [2137] = {.lex_state = 73, .external_lex_state = 38}, - [2138] = {.lex_state = 73, .external_lex_state = 38}, - [2139] = {.lex_state = 73, .external_lex_state = 38}, - [2140] = {.lex_state = 73, .external_lex_state = 38}, - [2141] = {.lex_state = 169, .external_lex_state = 39}, - [2142] = {.lex_state = 73, .external_lex_state = 38}, - [2143] = {.lex_state = 73, .external_lex_state = 38}, - [2144] = {.lex_state = 226, .external_lex_state = 37}, - [2145] = {.lex_state = 226, .external_lex_state = 37}, - [2146] = {.lex_state = 226, .external_lex_state = 37}, - [2147] = {.lex_state = 222, .external_lex_state = 34}, - [2148] = {.lex_state = 226, .external_lex_state = 37}, - [2149] = {.lex_state = 73, .external_lex_state = 38}, - [2150] = {.lex_state = 222, .external_lex_state = 34}, - [2151] = {.lex_state = 226, .external_lex_state = 37}, - [2152] = {.lex_state = 226, .external_lex_state = 37}, - [2153] = {.lex_state = 226, .external_lex_state = 37}, - [2154] = {.lex_state = 169, .external_lex_state = 39}, - [2155] = {.lex_state = 73, .external_lex_state = 38}, - [2156] = {.lex_state = 226, .external_lex_state = 37}, - [2157] = {.lex_state = 226, .external_lex_state = 37}, - [2158] = {.lex_state = 226, .external_lex_state = 37}, - [2159] = {.lex_state = 226, .external_lex_state = 37}, - [2160] = {.lex_state = 226, .external_lex_state = 37}, - [2161] = {.lex_state = 395, .external_lex_state = 36}, - [2162] = {.lex_state = 226, .external_lex_state = 37}, - [2163] = {.lex_state = 395, .external_lex_state = 36}, - [2164] = {.lex_state = 226, .external_lex_state = 37}, - [2165] = {.lex_state = 169, .external_lex_state = 39}, - [2166] = {.lex_state = 222, .external_lex_state = 34}, - [2167] = {.lex_state = 73, .external_lex_state = 38}, - [2168] = {.lex_state = 222, .external_lex_state = 34}, - [2169] = {.lex_state = 73, .external_lex_state = 38}, - [2170] = {.lex_state = 222, .external_lex_state = 34}, - [2171] = {.lex_state = 73, .external_lex_state = 38}, - [2172] = {.lex_state = 222, .external_lex_state = 34}, - [2173] = {.lex_state = 222, .external_lex_state = 34}, - [2174] = {.lex_state = 73, .external_lex_state = 38}, - [2175] = {.lex_state = 73, .external_lex_state = 38}, - [2176] = {.lex_state = 222, .external_lex_state = 34}, - [2177] = {.lex_state = 222, .external_lex_state = 34}, - [2178] = {.lex_state = 222, .external_lex_state = 34}, - [2179] = {.lex_state = 222, .external_lex_state = 34}, - [2180] = {.lex_state = 226, .external_lex_state = 37}, - [2181] = {.lex_state = 237, .external_lex_state = 40}, - [2182] = {.lex_state = 226, .external_lex_state = 37}, - [2183] = {.lex_state = 237, .external_lex_state = 40}, - [2184] = {.lex_state = 209, .external_lex_state = 17}, - [2185] = {.lex_state = 237, .external_lex_state = 40}, - [2186] = {.lex_state = 237, .external_lex_state = 40}, - [2187] = {.lex_state = 221, .external_lex_state = 14}, - [2188] = {.lex_state = 237, .external_lex_state = 40}, - [2189] = {.lex_state = 237, .external_lex_state = 40}, - [2190] = {.lex_state = 158, .external_lex_state = 39}, - [2191] = {.lex_state = 158, .external_lex_state = 39}, - [2192] = {.lex_state = 237, .external_lex_state = 40}, - [2193] = {.lex_state = 207, .external_lex_state = 17}, - [2194] = {.lex_state = 237, .external_lex_state = 40}, - [2195] = {.lex_state = 237, .external_lex_state = 40}, - [2196] = {.lex_state = 237, .external_lex_state = 40}, - [2197] = {.lex_state = 237, .external_lex_state = 40}, - [2198] = {.lex_state = 221, .external_lex_state = 14}, - [2199] = {.lex_state = 237, .external_lex_state = 40}, - [2200] = {.lex_state = 237, .external_lex_state = 40}, - [2201] = {.lex_state = 237, .external_lex_state = 40}, - [2202] = {.lex_state = 237, .external_lex_state = 40}, - [2203] = {.lex_state = 237, .external_lex_state = 40}, - [2204] = {.lex_state = 237, .external_lex_state = 40}, - [2205] = {.lex_state = 237, .external_lex_state = 40}, - [2206] = {.lex_state = 237, .external_lex_state = 40}, - [2207] = {.lex_state = 237, .external_lex_state = 40}, - [2208] = {.lex_state = 209, .external_lex_state = 17}, - [2209] = {.lex_state = 221, .external_lex_state = 14}, - [2210] = {.lex_state = 207, .external_lex_state = 17}, - [2211] = {.lex_state = 209, .external_lex_state = 17}, - [2212] = {.lex_state = 207, .external_lex_state = 17}, - [2213] = {.lex_state = 209, .external_lex_state = 17}, - [2214] = {.lex_state = 209, .external_lex_state = 17}, - [2215] = {.lex_state = 209, .external_lex_state = 17}, - [2216] = {.lex_state = 209, .external_lex_state = 17}, - [2217] = {.lex_state = 224, .external_lex_state = 2}, - [2218] = {.lex_state = 207, .external_lex_state = 17}, - [2219] = {.lex_state = 209, .external_lex_state = 17}, - [2220] = {.lex_state = 221, .external_lex_state = 14}, - [2221] = {.lex_state = 209, .external_lex_state = 17}, - [2222] = {.lex_state = 209, .external_lex_state = 17}, - [2223] = {.lex_state = 207, .external_lex_state = 17}, - [2224] = {.lex_state = 207, .external_lex_state = 17}, - [2225] = {.lex_state = 207, .external_lex_state = 17}, - [2226] = {.lex_state = 207, .external_lex_state = 17}, - [2227] = {.lex_state = 207, .external_lex_state = 17}, - [2228] = {.lex_state = 207, .external_lex_state = 17}, - [2229] = {.lex_state = 209, .external_lex_state = 17}, - [2230] = {.lex_state = 209, .external_lex_state = 17}, - [2231] = {.lex_state = 207, .external_lex_state = 17}, - [2232] = {.lex_state = 209, .external_lex_state = 17}, - [2233] = {.lex_state = 207, .external_lex_state = 17}, - [2234] = {.lex_state = 207, .external_lex_state = 17}, - [2235] = {.lex_state = 209, .external_lex_state = 17}, - [2236] = {.lex_state = 209, .external_lex_state = 17}, - [2237] = {.lex_state = 221, .external_lex_state = 14}, - [2238] = {.lex_state = 207, .external_lex_state = 17}, - [2239] = {.lex_state = 209, .external_lex_state = 17}, - [2240] = {.lex_state = 207, .external_lex_state = 17}, - [2241] = {.lex_state = 209, .external_lex_state = 17}, - [2242] = {.lex_state = 207, .external_lex_state = 17}, - [2243] = {.lex_state = 207, .external_lex_state = 17}, - [2244] = {.lex_state = 209, .external_lex_state = 17}, - [2245] = {.lex_state = 207, .external_lex_state = 17}, - [2246] = {.lex_state = 207, .external_lex_state = 17}, - [2247] = {.lex_state = 209, .external_lex_state = 17}, - [2248] = {.lex_state = 210, .external_lex_state = 41}, - [2249] = {.lex_state = 226, .external_lex_state = 31}, - [2250] = {.lex_state = 226, .external_lex_state = 31}, - [2251] = {.lex_state = 226, .external_lex_state = 31}, - [2252] = {.lex_state = 226, .external_lex_state = 31}, - [2253] = {.lex_state = 226, .external_lex_state = 31}, - [2254] = {.lex_state = 226, .external_lex_state = 31}, - [2255] = {.lex_state = 226, .external_lex_state = 31}, - [2256] = {.lex_state = 226, .external_lex_state = 31}, - [2257] = {.lex_state = 226, .external_lex_state = 31}, - [2258] = {.lex_state = 226, .external_lex_state = 31}, - [2259] = {.lex_state = 226, .external_lex_state = 31}, - [2260] = {.lex_state = 226, .external_lex_state = 31}, - [2261] = {.lex_state = 225, .external_lex_state = 42}, - [2262] = {.lex_state = 211, .external_lex_state = 43}, - [2263] = {.lex_state = 226, .external_lex_state = 31}, - [2264] = {.lex_state = 226, .external_lex_state = 31}, - [2265] = {.lex_state = 225, .external_lex_state = 42}, - [2266] = {.lex_state = 226, .external_lex_state = 31}, - [2267] = {.lex_state = 211, .external_lex_state = 43}, - [2268] = {.lex_state = 210, .external_lex_state = 41}, - [2269] = {.lex_state = 226, .external_lex_state = 31}, - [2270] = {.lex_state = 226, .external_lex_state = 31}, - [2271] = {.lex_state = 226, .external_lex_state = 31}, - [2272] = {.lex_state = 225, .external_lex_state = 42}, - [2273] = {.lex_state = 226, .external_lex_state = 31}, - [2274] = {.lex_state = 225, .external_lex_state = 42}, - [2275] = {.lex_state = 226, .external_lex_state = 31}, - [2276] = {.lex_state = 226, .external_lex_state = 31}, - [2277] = {.lex_state = 226, .external_lex_state = 31}, - [2278] = {.lex_state = 226, .external_lex_state = 31}, - [2279] = {.lex_state = 225, .external_lex_state = 42}, - [2280] = {.lex_state = 226, .external_lex_state = 31}, - [2281] = {.lex_state = 226, .external_lex_state = 31}, - [2282] = {.lex_state = 226, .external_lex_state = 31}, - [2283] = {.lex_state = 225, .external_lex_state = 42}, - [2284] = {.lex_state = 226, .external_lex_state = 31}, - [2285] = {.lex_state = 226, .external_lex_state = 31}, - [2286] = {.lex_state = 225, .external_lex_state = 42}, - [2287] = {.lex_state = 226, .external_lex_state = 31}, - [2288] = {.lex_state = 225, .external_lex_state = 42}, - [2289] = {.lex_state = 226, .external_lex_state = 31}, - [2290] = {.lex_state = 226, .external_lex_state = 31}, - [2291] = {.lex_state = 226, .external_lex_state = 31}, - [2292] = {.lex_state = 225, .external_lex_state = 42}, - [2293] = {.lex_state = 226, .external_lex_state = 28}, - [2294] = {.lex_state = 211, .external_lex_state = 44}, - [2295] = {.lex_state = 225, .external_lex_state = 42}, - [2296] = {.lex_state = 226, .external_lex_state = 28}, - [2297] = {.lex_state = 211, .external_lex_state = 44}, - [2298] = {.lex_state = 74, .external_lex_state = 45}, - [2299] = {.lex_state = 74, .external_lex_state = 45}, - [2300] = {.lex_state = 225, .external_lex_state = 42}, - [2301] = {.lex_state = 226, .external_lex_state = 31}, - [2302] = {.lex_state = 225, .external_lex_state = 42}, - [2303] = {.lex_state = 226, .external_lex_state = 31}, - [2304] = {.lex_state = 235, .external_lex_state = 14}, - [2305] = {.lex_state = 226, .external_lex_state = 37}, - [2306] = {.lex_state = 226, .external_lex_state = 31}, - [2307] = {.lex_state = 226, .external_lex_state = 31}, - [2308] = {.lex_state = 226, .external_lex_state = 31}, - [2309] = {.lex_state = 225, .external_lex_state = 42}, - [2310] = {.lex_state = 74, .external_lex_state = 45}, - [2311] = {.lex_state = 226, .external_lex_state = 28}, - [2312] = {.lex_state = 226, .external_lex_state = 37}, - [2313] = {.lex_state = 226, .external_lex_state = 31}, - [2314] = {.lex_state = 226, .external_lex_state = 28}, - [2315] = {.lex_state = 226, .external_lex_state = 31}, - [2316] = {.lex_state = 225, .external_lex_state = 42}, - [2317] = {.lex_state = 225, .external_lex_state = 42}, - [2318] = {.lex_state = 226, .external_lex_state = 31}, - [2319] = {.lex_state = 225, .external_lex_state = 42}, - [2320] = {.lex_state = 226, .external_lex_state = 31}, - [2321] = {.lex_state = 226, .external_lex_state = 31}, - [2322] = {.lex_state = 226, .external_lex_state = 31}, - [2323] = {.lex_state = 226, .external_lex_state = 31}, - [2324] = {.lex_state = 225, .external_lex_state = 42}, - [2325] = {.lex_state = 226, .external_lex_state = 31}, - [2326] = {.lex_state = 226, .external_lex_state = 31}, - [2327] = {.lex_state = 226, .external_lex_state = 28}, - [2328] = {.lex_state = 226, .external_lex_state = 31}, - [2329] = {.lex_state = 226, .external_lex_state = 28}, - [2330] = {.lex_state = 225, .external_lex_state = 42}, - [2331] = {.lex_state = 225, .external_lex_state = 42}, - [2332] = {.lex_state = 226, .external_lex_state = 31}, - [2333] = {.lex_state = 225, .external_lex_state = 42}, - [2334] = {.lex_state = 226, .external_lex_state = 31}, - [2335] = {.lex_state = 226, .external_lex_state = 31}, - [2336] = {.lex_state = 226, .external_lex_state = 31}, - [2337] = {.lex_state = 226, .external_lex_state = 31}, - [2338] = {.lex_state = 226, .external_lex_state = 31}, - [2339] = {.lex_state = 226, .external_lex_state = 31}, - [2340] = {.lex_state = 226, .external_lex_state = 31}, - [2341] = {.lex_state = 184, .external_lex_state = 31}, - [2342] = {.lex_state = 226, .external_lex_state = 31}, - [2343] = {.lex_state = 226, .external_lex_state = 31}, - [2344] = {.lex_state = 225, .external_lex_state = 42}, - [2345] = {.lex_state = 226, .external_lex_state = 31}, - [2346] = {.lex_state = 226, .external_lex_state = 31}, - [2347] = {.lex_state = 226, .external_lex_state = 31}, - [2348] = {.lex_state = 225, .external_lex_state = 42}, - [2349] = {.lex_state = 226, .external_lex_state = 31}, - [2350] = {.lex_state = 226, .external_lex_state = 37}, - [2351] = {.lex_state = 74, .external_lex_state = 45}, - [2352] = {.lex_state = 226, .external_lex_state = 31}, - [2353] = {.lex_state = 184, .external_lex_state = 31}, - [2354] = {.lex_state = 226, .external_lex_state = 31}, - [2355] = {.lex_state = 225, .external_lex_state = 42}, - [2356] = {.lex_state = 226, .external_lex_state = 31}, - [2357] = {.lex_state = 226, .external_lex_state = 31}, - [2358] = {.lex_state = 225, .external_lex_state = 42}, - [2359] = {.lex_state = 226, .external_lex_state = 31}, - [2360] = {.lex_state = 225, .external_lex_state = 42}, - [2361] = {.lex_state = 226, .external_lex_state = 31}, - [2362] = {.lex_state = 225, .external_lex_state = 42}, - [2363] = {.lex_state = 226, .external_lex_state = 31}, - [2364] = {.lex_state = 226, .external_lex_state = 31}, - [2365] = {.lex_state = 226, .external_lex_state = 31}, - [2366] = {.lex_state = 238, .external_lex_state = 46}, - [2367] = {.lex_state = 224, .external_lex_state = 2}, - [2368] = {.lex_state = 238, .external_lex_state = 46}, - [2369] = {.lex_state = 226, .external_lex_state = 31}, - [2370] = {.lex_state = 226, .external_lex_state = 31}, - [2371] = {.lex_state = 238, .external_lex_state = 46}, - [2372] = {.lex_state = 238, .external_lex_state = 46}, - [2373] = {.lex_state = 226, .external_lex_state = 31}, - [2374] = {.lex_state = 226, .external_lex_state = 31}, - [2375] = {.lex_state = 226, .external_lex_state = 31}, - [2376] = {.lex_state = 226, .external_lex_state = 31}, - [2377] = {.lex_state = 226, .external_lex_state = 31}, - [2378] = {.lex_state = 74, .external_lex_state = 45}, - [2379] = {.lex_state = 74, .external_lex_state = 45}, - [2380] = {.lex_state = 74, .external_lex_state = 45}, - [2381] = {.lex_state = 226, .external_lex_state = 31}, - [2382] = {.lex_state = 238, .external_lex_state = 46}, - [2383] = {.lex_state = 226, .external_lex_state = 31}, - [2384] = {.lex_state = 238, .external_lex_state = 46}, - [2385] = {.lex_state = 226, .external_lex_state = 31}, - [2386] = {.lex_state = 226, .external_lex_state = 31}, - [2387] = {.lex_state = 226, .external_lex_state = 31}, - [2388] = {.lex_state = 226, .external_lex_state = 31}, - [2389] = {.lex_state = 226, .external_lex_state = 31}, - [2390] = {.lex_state = 76, .external_lex_state = 47}, - [2391] = {.lex_state = 226, .external_lex_state = 31}, - [2392] = {.lex_state = 224, .external_lex_state = 2}, - [2393] = {.lex_state = 226, .external_lex_state = 31}, - [2394] = {.lex_state = 224, .external_lex_state = 2}, - [2395] = {.lex_state = 226, .external_lex_state = 31}, - [2396] = {.lex_state = 238, .external_lex_state = 46}, - [2397] = {.lex_state = 238, .external_lex_state = 46}, - [2398] = {.lex_state = 226, .external_lex_state = 31}, - [2399] = {.lex_state = 237, .external_lex_state = 31}, - [2400] = {.lex_state = 237, .external_lex_state = 31}, - [2401] = {.lex_state = 237, .external_lex_state = 31}, - [2402] = {.lex_state = 237, .external_lex_state = 31}, - [2403] = {.lex_state = 237, .external_lex_state = 31}, - [2404] = {.lex_state = 76, .external_lex_state = 47}, - [2405] = {.lex_state = 237, .external_lex_state = 31}, - [2406] = {.lex_state = 237, .external_lex_state = 31}, - [2407] = {.lex_state = 237, .external_lex_state = 31}, - [2408] = {.lex_state = 237, .external_lex_state = 31}, - [2409] = {.lex_state = 237, .external_lex_state = 31}, - [2410] = {.lex_state = 237, .external_lex_state = 31}, - [2411] = {.lex_state = 237, .external_lex_state = 31}, - [2412] = {.lex_state = 237, .external_lex_state = 31}, - [2413] = {.lex_state = 237, .external_lex_state = 31}, - [2414] = {.lex_state = 237, .external_lex_state = 31}, - [2415] = {.lex_state = 237, .external_lex_state = 31}, - [2416] = {.lex_state = 237, .external_lex_state = 31}, - [2417] = {.lex_state = 76, .external_lex_state = 36}, - [2418] = {.lex_state = 237, .external_lex_state = 31}, - [2419] = {.lex_state = 237, .external_lex_state = 31}, - [2420] = {.lex_state = 237, .external_lex_state = 31}, - [2421] = {.lex_state = 237, .external_lex_state = 31}, - [2422] = {.lex_state = 237, .external_lex_state = 31}, - [2423] = {.lex_state = 237, .external_lex_state = 31}, - [2424] = {.lex_state = 237, .external_lex_state = 31}, - [2425] = {.lex_state = 237, .external_lex_state = 31}, - [2426] = {.lex_state = 237, .external_lex_state = 31}, - [2427] = {.lex_state = 237, .external_lex_state = 31}, - [2428] = {.lex_state = 237, .external_lex_state = 31}, - [2429] = {.lex_state = 237, .external_lex_state = 31}, - [2430] = {.lex_state = 237, .external_lex_state = 31}, - [2431] = {.lex_state = 237, .external_lex_state = 31}, - [2432] = {.lex_state = 237, .external_lex_state = 31}, - [2433] = {.lex_state = 237, .external_lex_state = 31}, - [2434] = {.lex_state = 237, .external_lex_state = 31}, - [2435] = {.lex_state = 237, .external_lex_state = 31}, - [2436] = {.lex_state = 224, .external_lex_state = 2}, - [2437] = {.lex_state = 237, .external_lex_state = 31}, - [2438] = {.lex_state = 237, .external_lex_state = 31}, - [2439] = {.lex_state = 237, .external_lex_state = 31}, - [2440] = {.lex_state = 237, .external_lex_state = 31}, - [2441] = {.lex_state = 237, .external_lex_state = 31}, - [2442] = {.lex_state = 237, .external_lex_state = 31}, - [2443] = {.lex_state = 237, .external_lex_state = 31}, - [2444] = {.lex_state = 237, .external_lex_state = 31}, - [2445] = {.lex_state = 237, .external_lex_state = 31}, - [2446] = {.lex_state = 237, .external_lex_state = 31}, - [2447] = {.lex_state = 237, .external_lex_state = 31}, - [2448] = {.lex_state = 237, .external_lex_state = 31}, - [2449] = {.lex_state = 237, .external_lex_state = 31}, - [2450] = {.lex_state = 76, .external_lex_state = 36}, - [2451] = {.lex_state = 237, .external_lex_state = 31}, - [2452] = {.lex_state = 237, .external_lex_state = 31}, - [2453] = {.lex_state = 237, .external_lex_state = 31}, - [2454] = {.lex_state = 76, .external_lex_state = 47}, - [2455] = {.lex_state = 237, .external_lex_state = 31}, - [2456] = {.lex_state = 237, .external_lex_state = 31}, - [2457] = {.lex_state = 76, .external_lex_state = 35}, - [2458] = {.lex_state = 237, .external_lex_state = 31}, - [2459] = {.lex_state = 237, .external_lex_state = 31}, - [2460] = {.lex_state = 237, .external_lex_state = 31}, - [2461] = {.lex_state = 237, .external_lex_state = 31}, - [2462] = {.lex_state = 237, .external_lex_state = 31}, - [2463] = {.lex_state = 237, .external_lex_state = 31}, - [2464] = {.lex_state = 237, .external_lex_state = 31}, - [2465] = {.lex_state = 76, .external_lex_state = 36}, - [2466] = {.lex_state = 237, .external_lex_state = 31}, - [2467] = {.lex_state = 237, .external_lex_state = 31}, - [2468] = {.lex_state = 237, .external_lex_state = 31}, - [2469] = {.lex_state = 237, .external_lex_state = 31}, - [2470] = {.lex_state = 237, .external_lex_state = 31}, - [2471] = {.lex_state = 237, .external_lex_state = 31}, - [2472] = {.lex_state = 237, .external_lex_state = 31}, - [2473] = {.lex_state = 237, .external_lex_state = 31}, - [2474] = {.lex_state = 237, .external_lex_state = 31}, - [2475] = {.lex_state = 237, .external_lex_state = 31}, - [2476] = {.lex_state = 237, .external_lex_state = 31}, - [2477] = {.lex_state = 237, .external_lex_state = 31}, - [2478] = {.lex_state = 237, .external_lex_state = 31}, - [2479] = {.lex_state = 237, .external_lex_state = 31}, - [2480] = {.lex_state = 237, .external_lex_state = 31}, - [2481] = {.lex_state = 237, .external_lex_state = 31}, - [2482] = {.lex_state = 237, .external_lex_state = 31}, - [2483] = {.lex_state = 237, .external_lex_state = 31}, - [2484] = {.lex_state = 237, .external_lex_state = 31}, - [2485] = {.lex_state = 237, .external_lex_state = 31}, - [2486] = {.lex_state = 237, .external_lex_state = 31}, - [2487] = {.lex_state = 237, .external_lex_state = 31}, - [2488] = {.lex_state = 237, .external_lex_state = 31}, - [2489] = {.lex_state = 237, .external_lex_state = 31}, - [2490] = {.lex_state = 224, .external_lex_state = 2}, - [2491] = {.lex_state = 237, .external_lex_state = 31}, - [2492] = {.lex_state = 237, .external_lex_state = 31}, - [2493] = {.lex_state = 237, .external_lex_state = 31}, - [2494] = {.lex_state = 237, .external_lex_state = 31}, - [2495] = {.lex_state = 237, .external_lex_state = 31}, - [2496] = {.lex_state = 237, .external_lex_state = 31}, - [2497] = {.lex_state = 237, .external_lex_state = 31}, - [2498] = {.lex_state = 237, .external_lex_state = 31}, - [2499] = {.lex_state = 237, .external_lex_state = 31}, - [2500] = {.lex_state = 237, .external_lex_state = 31}, - [2501] = {.lex_state = 237, .external_lex_state = 31}, - [2502] = {.lex_state = 76, .external_lex_state = 48}, - [2503] = {.lex_state = 76, .external_lex_state = 36}, - [2504] = {.lex_state = 237, .external_lex_state = 31}, - [2505] = {.lex_state = 237, .external_lex_state = 31}, - [2506] = {.lex_state = 237, .external_lex_state = 31}, - [2507] = {.lex_state = 76, .external_lex_state = 47}, - [2508] = {.lex_state = 237, .external_lex_state = 31}, - [2509] = {.lex_state = 76, .external_lex_state = 47}, - [2510] = {.lex_state = 76, .external_lex_state = 35}, - [2511] = {.lex_state = 237, .external_lex_state = 31}, - [2512] = {.lex_state = 237, .external_lex_state = 31}, - [2513] = {.lex_state = 237, .external_lex_state = 31}, - [2514] = {.lex_state = 237, .external_lex_state = 31}, - [2515] = {.lex_state = 237, .external_lex_state = 31}, - [2516] = {.lex_state = 237, .external_lex_state = 31}, - [2517] = {.lex_state = 76, .external_lex_state = 47}, - [2518] = {.lex_state = 237, .external_lex_state = 31}, - [2519] = {.lex_state = 237, .external_lex_state = 31}, - [2520] = {.lex_state = 237, .external_lex_state = 31}, - [2521] = {.lex_state = 237, .external_lex_state = 31}, - [2522] = {.lex_state = 237, .external_lex_state = 31}, - [2523] = {.lex_state = 237, .external_lex_state = 31}, - [2524] = {.lex_state = 237, .external_lex_state = 31}, - [2525] = {.lex_state = 237, .external_lex_state = 31}, - [2526] = {.lex_state = 237, .external_lex_state = 31}, - [2527] = {.lex_state = 237, .external_lex_state = 31}, - [2528] = {.lex_state = 237, .external_lex_state = 31}, - [2529] = {.lex_state = 237, .external_lex_state = 31}, - [2530] = {.lex_state = 237, .external_lex_state = 31}, - [2531] = {.lex_state = 237, .external_lex_state = 31}, - [2532] = {.lex_state = 237, .external_lex_state = 31}, - [2533] = {.lex_state = 237, .external_lex_state = 31}, - [2534] = {.lex_state = 76, .external_lex_state = 36}, - [2535] = {.lex_state = 237, .external_lex_state = 31}, - [2536] = {.lex_state = 237, .external_lex_state = 31}, - [2537] = {.lex_state = 237, .external_lex_state = 31}, - [2538] = {.lex_state = 237, .external_lex_state = 31}, - [2539] = {.lex_state = 76, .external_lex_state = 47}, - [2540] = {.lex_state = 237, .external_lex_state = 31}, - [2541] = {.lex_state = 237, .external_lex_state = 31}, - [2542] = {.lex_state = 237, .external_lex_state = 31}, - [2543] = {.lex_state = 237, .external_lex_state = 31}, - [2544] = {.lex_state = 237, .external_lex_state = 31}, - [2545] = {.lex_state = 237, .external_lex_state = 31}, - [2546] = {.lex_state = 237, .external_lex_state = 31}, - [2547] = {.lex_state = 237, .external_lex_state = 31}, - [2548] = {.lex_state = 237, .external_lex_state = 31}, - [2549] = {.lex_state = 237, .external_lex_state = 31}, - [2550] = {.lex_state = 237, .external_lex_state = 31}, - [2551] = {.lex_state = 237, .external_lex_state = 31}, - [2552] = {.lex_state = 237, .external_lex_state = 31}, - [2553] = {.lex_state = 224, .external_lex_state = 2}, - [2554] = {.lex_state = 237, .external_lex_state = 31}, - [2555] = {.lex_state = 237, .external_lex_state = 31}, - [2556] = {.lex_state = 237, .external_lex_state = 31}, - [2557] = {.lex_state = 237, .external_lex_state = 31}, - [2558] = {.lex_state = 237, .external_lex_state = 31}, - [2559] = {.lex_state = 76, .external_lex_state = 36}, - [2560] = {.lex_state = 237, .external_lex_state = 31}, - [2561] = {.lex_state = 237, .external_lex_state = 31}, - [2562] = {.lex_state = 237, .external_lex_state = 31}, - [2563] = {.lex_state = 237, .external_lex_state = 31}, - [2564] = {.lex_state = 237, .external_lex_state = 31}, - [2565] = {.lex_state = 237, .external_lex_state = 31}, - [2566] = {.lex_state = 237, .external_lex_state = 31}, - [2567] = {.lex_state = 237, .external_lex_state = 31}, - [2568] = {.lex_state = 237, .external_lex_state = 31}, - [2569] = {.lex_state = 237, .external_lex_state = 31}, - [2570] = {.lex_state = 224, .external_lex_state = 2}, - [2571] = {.lex_state = 237, .external_lex_state = 31}, - [2572] = {.lex_state = 237, .external_lex_state = 31}, - [2573] = {.lex_state = 237, .external_lex_state = 31}, - [2574] = {.lex_state = 237, .external_lex_state = 31}, - [2575] = {.lex_state = 237, .external_lex_state = 31}, - [2576] = {.lex_state = 237, .external_lex_state = 31}, - [2577] = {.lex_state = 237, .external_lex_state = 31}, - [2578] = {.lex_state = 237, .external_lex_state = 31}, - [2579] = {.lex_state = 237, .external_lex_state = 31}, - [2580] = {.lex_state = 237, .external_lex_state = 31}, - [2581] = {.lex_state = 237, .external_lex_state = 31}, - [2582] = {.lex_state = 237, .external_lex_state = 31}, - [2583] = {.lex_state = 237, .external_lex_state = 31}, - [2584] = {.lex_state = 237, .external_lex_state = 31}, - [2585] = {.lex_state = 237, .external_lex_state = 31}, - [2586] = {.lex_state = 237, .external_lex_state = 31}, - [2587] = {.lex_state = 237, .external_lex_state = 31}, - [2588] = {.lex_state = 237, .external_lex_state = 31}, - [2589] = {.lex_state = 237, .external_lex_state = 31}, - [2590] = {.lex_state = 237, .external_lex_state = 31}, - [2591] = {.lex_state = 237, .external_lex_state = 31}, - [2592] = {.lex_state = 237, .external_lex_state = 31}, - [2593] = {.lex_state = 237, .external_lex_state = 31}, - [2594] = {.lex_state = 237, .external_lex_state = 31}, - [2595] = {.lex_state = 237, .external_lex_state = 31}, - [2596] = {.lex_state = 237, .external_lex_state = 31}, - [2597] = {.lex_state = 76, .external_lex_state = 47}, - [2598] = {.lex_state = 76, .external_lex_state = 48}, - [2599] = {.lex_state = 76, .external_lex_state = 36}, - [2600] = {.lex_state = 76, .external_lex_state = 47}, - [2601] = {.lex_state = 76, .external_lex_state = 47}, - [2602] = {.lex_state = 76, .external_lex_state = 48}, - [2603] = {.lex_state = 76, .external_lex_state = 36}, - [2604] = {.lex_state = 76, .external_lex_state = 36}, - [2605] = {.lex_state = 76, .external_lex_state = 35}, - [2606] = {.lex_state = 76, .external_lex_state = 47}, - [2607] = {.lex_state = 76, .external_lex_state = 47}, - [2608] = {.lex_state = 76, .external_lex_state = 48}, - [2609] = {.lex_state = 76, .external_lex_state = 48}, - [2610] = {.lex_state = 76, .external_lex_state = 36}, - [2611] = {.lex_state = 76, .external_lex_state = 48}, - [2612] = {.lex_state = 76, .external_lex_state = 47}, - [2613] = {.lex_state = 76, .external_lex_state = 47}, - [2614] = {.lex_state = 76, .external_lex_state = 47}, - [2615] = {.lex_state = 76, .external_lex_state = 47}, - [2616] = {.lex_state = 391, .external_lex_state = 47}, - [2617] = {.lex_state = 76, .external_lex_state = 35}, - [2618] = {.lex_state = 76, .external_lex_state = 47}, - [2619] = {.lex_state = 76, .external_lex_state = 47}, - [2620] = {.lex_state = 76, .external_lex_state = 47}, - [2621] = {.lex_state = 76, .external_lex_state = 47}, - [2622] = {.lex_state = 76, .external_lex_state = 47}, - [2623] = {.lex_state = 76, .external_lex_state = 47}, - [2624] = {.lex_state = 76, .external_lex_state = 47}, - [2625] = {.lex_state = 76, .external_lex_state = 36}, - [2626] = {.lex_state = 391, .external_lex_state = 47}, - [2627] = {.lex_state = 76, .external_lex_state = 47}, - [2628] = {.lex_state = 76, .external_lex_state = 35}, - [2629] = {.lex_state = 76, .external_lex_state = 35}, - [2630] = {.lex_state = 76, .external_lex_state = 36}, - [2631] = {.lex_state = 76, .external_lex_state = 47}, - [2632] = {.lex_state = 76, .external_lex_state = 48}, - [2633] = {.lex_state = 76, .external_lex_state = 47}, - [2634] = {.lex_state = 76, .external_lex_state = 47}, - [2635] = {.lex_state = 391, .external_lex_state = 47}, - [2636] = {.lex_state = 76, .external_lex_state = 48}, - [2637] = {.lex_state = 76, .external_lex_state = 48}, - [2638] = {.lex_state = 391, .external_lex_state = 47}, - [2639] = {.lex_state = 76, .external_lex_state = 47}, - [2640] = {.lex_state = 76, .external_lex_state = 47}, - [2641] = {.lex_state = 391, .external_lex_state = 47}, - [2642] = {.lex_state = 236}, - [2643] = {.lex_state = 391, .external_lex_state = 47}, - [2644] = {.lex_state = 75, .external_lex_state = 35}, - [2645] = {.lex_state = 391, .external_lex_state = 47}, - [2646] = {.lex_state = 76, .external_lex_state = 48}, - [2647] = {.lex_state = 391, .external_lex_state = 36}, - [2648] = {.lex_state = 391, .external_lex_state = 47}, - [2649] = {.lex_state = 236}, - [2650] = {.lex_state = 75, .external_lex_state = 36}, - [2651] = {.lex_state = 391, .external_lex_state = 47}, - [2652] = {.lex_state = 76, .external_lex_state = 48}, - [2653] = {.lex_state = 391, .external_lex_state = 47}, - [2654] = {.lex_state = 75, .external_lex_state = 36}, - [2655] = {.lex_state = 76, .external_lex_state = 48}, - [2656] = {.lex_state = 75, .external_lex_state = 35}, - [2657] = {.lex_state = 76, .external_lex_state = 48}, - [2658] = {.lex_state = 76, .external_lex_state = 48}, - [2659] = {.lex_state = 391, .external_lex_state = 36}, - [2660] = {.lex_state = 391, .external_lex_state = 47}, - [2661] = {.lex_state = 391, .external_lex_state = 36}, - [2662] = {.lex_state = 391, .external_lex_state = 47}, - [2663] = {.lex_state = 391, .external_lex_state = 35}, - [2664] = {.lex_state = 76, .external_lex_state = 48}, - [2665] = {.lex_state = 76, .external_lex_state = 48}, - [2666] = {.lex_state = 76, .external_lex_state = 48}, - [2667] = {.lex_state = 391, .external_lex_state = 36}, - [2668] = {.lex_state = 391, .external_lex_state = 36}, - [2669] = {.lex_state = 76, .external_lex_state = 48}, - [2670] = {.lex_state = 391, .external_lex_state = 36}, - [2671] = {.lex_state = 76, .external_lex_state = 48}, - [2672] = {.lex_state = 391, .external_lex_state = 48}, - [2673] = {.lex_state = 76, .external_lex_state = 48}, - [2674] = {.lex_state = 391, .external_lex_state = 47}, - [2675] = {.lex_state = 76, .external_lex_state = 48}, - [2676] = {.lex_state = 76, .external_lex_state = 36}, - [2677] = {.lex_state = 76, .external_lex_state = 48}, - [2678] = {.lex_state = 236}, - [2679] = {.lex_state = 76, .external_lex_state = 48}, - [2680] = {.lex_state = 391, .external_lex_state = 48}, - [2681] = {.lex_state = 76, .external_lex_state = 48}, - [2682] = {.lex_state = 391, .external_lex_state = 36}, - [2683] = {.lex_state = 391, .external_lex_state = 47}, - [2684] = {.lex_state = 75, .external_lex_state = 36}, - [2685] = {.lex_state = 391, .external_lex_state = 36}, - [2686] = {.lex_state = 75, .external_lex_state = 35}, - [2687] = {.lex_state = 391, .external_lex_state = 47}, - [2688] = {.lex_state = 391, .external_lex_state = 36}, - [2689] = {.lex_state = 391, .external_lex_state = 47}, - [2690] = {.lex_state = 391, .external_lex_state = 47}, - [2691] = {.lex_state = 391, .external_lex_state = 36}, - [2692] = {.lex_state = 76, .external_lex_state = 36}, - [2693] = {.lex_state = 391, .external_lex_state = 48}, - [2694] = {.lex_state = 76, .external_lex_state = 48}, - [2695] = {.lex_state = 391, .external_lex_state = 47}, - [2696] = {.lex_state = 391, .external_lex_state = 47}, - [2697] = {.lex_state = 75, .external_lex_state = 36}, - [2698] = {.lex_state = 391, .external_lex_state = 35}, - [2699] = {.lex_state = 75, .external_lex_state = 36}, - [2700] = {.lex_state = 391, .external_lex_state = 47}, - [2701] = {.lex_state = 391, .external_lex_state = 47}, - [2702] = {.lex_state = 391, .external_lex_state = 48}, - [2703] = {.lex_state = 391, .external_lex_state = 47}, - [2704] = {.lex_state = 391, .external_lex_state = 47}, - [2705] = {.lex_state = 391, .external_lex_state = 47}, - [2706] = {.lex_state = 391, .external_lex_state = 36}, - [2707] = {.lex_state = 391, .external_lex_state = 35}, - [2708] = {.lex_state = 391, .external_lex_state = 47}, - [2709] = {.lex_state = 75, .external_lex_state = 36}, - [2710] = {.lex_state = 391, .external_lex_state = 47}, - [2711] = {.lex_state = 75, .external_lex_state = 35}, - [2712] = {.lex_state = 236}, - [2713] = {.lex_state = 391, .external_lex_state = 47}, - [2714] = {.lex_state = 391, .external_lex_state = 36}, - [2715] = {.lex_state = 391, .external_lex_state = 47}, - [2716] = {.lex_state = 76, .external_lex_state = 48}, - [2717] = {.lex_state = 391, .external_lex_state = 47}, - [2718] = {.lex_state = 76, .external_lex_state = 36}, - [2719] = {.lex_state = 236}, - [2720] = {.lex_state = 76, .external_lex_state = 48}, - [2721] = {.lex_state = 391, .external_lex_state = 47}, - [2722] = {.lex_state = 391, .external_lex_state = 47}, - [2723] = {.lex_state = 76, .external_lex_state = 35}, - [2724] = {.lex_state = 391, .external_lex_state = 47}, - [2725] = {.lex_state = 76, .external_lex_state = 48}, - [2726] = {.lex_state = 76, .external_lex_state = 36}, - [2727] = {.lex_state = 391, .external_lex_state = 47}, - [2728] = {.lex_state = 76, .external_lex_state = 48}, - [2729] = {.lex_state = 76, .external_lex_state = 36}, - [2730] = {.lex_state = 236}, - [2731] = {.lex_state = 76, .external_lex_state = 48}, - [2732] = {.lex_state = 391, .external_lex_state = 35}, - [2733] = {.lex_state = 391, .external_lex_state = 47}, - [2734] = {.lex_state = 391, .external_lex_state = 47}, - [2735] = {.lex_state = 236}, - [2736] = {.lex_state = 236}, - [2737] = {.lex_state = 236}, - [2738] = {.lex_state = 391, .external_lex_state = 47}, - [2739] = {.lex_state = 76, .external_lex_state = 48}, - [2740] = {.lex_state = 76, .external_lex_state = 48}, - [2741] = {.lex_state = 76, .external_lex_state = 48}, - [2742] = {.lex_state = 391, .external_lex_state = 48}, - [2743] = {.lex_state = 391, .external_lex_state = 48}, - [2744] = {.lex_state = 391, .external_lex_state = 47}, - [2745] = {.lex_state = 391, .external_lex_state = 36}, - [2746] = {.lex_state = 391, .external_lex_state = 47}, - [2747] = {.lex_state = 391, .external_lex_state = 48}, - [2748] = {.lex_state = 391, .external_lex_state = 47}, - [2749] = {.lex_state = 391, .external_lex_state = 47}, - [2750] = {.lex_state = 170, .external_lex_state = 49}, - [2751] = {.lex_state = 391, .external_lex_state = 48}, - [2752] = {.lex_state = 391, .external_lex_state = 47}, - [2753] = {.lex_state = 391, .external_lex_state = 48}, - [2754] = {.lex_state = 391, .external_lex_state = 48}, - [2755] = {.lex_state = 236}, - [2756] = {.lex_state = 391, .external_lex_state = 47}, - [2757] = {.lex_state = 391, .external_lex_state = 36}, - [2758] = {.lex_state = 391, .external_lex_state = 47}, - [2759] = {.lex_state = 236}, - [2760] = {.lex_state = 391, .external_lex_state = 48}, - [2761] = {.lex_state = 391, .external_lex_state = 47}, - [2762] = {.lex_state = 391, .external_lex_state = 47}, - [2763] = {.lex_state = 236}, - [2764] = {.lex_state = 236}, - [2765] = {.lex_state = 391, .external_lex_state = 47}, - [2766] = {.lex_state = 391, .external_lex_state = 47}, - [2767] = {.lex_state = 76, .external_lex_state = 36}, - [2768] = {.lex_state = 391, .external_lex_state = 48}, - [2769] = {.lex_state = 391, .external_lex_state = 47}, - [2770] = {.lex_state = 76, .external_lex_state = 36}, - [2771] = {.lex_state = 76, .external_lex_state = 36}, - [2772] = {.lex_state = 391, .external_lex_state = 47}, - [2773] = {.lex_state = 391, .external_lex_state = 47}, - [2774] = {.lex_state = 391, .external_lex_state = 47}, - [2775] = {.lex_state = 391, .external_lex_state = 35}, - [2776] = {.lex_state = 391, .external_lex_state = 48}, - [2777] = {.lex_state = 391, .external_lex_state = 36}, - [2778] = {.lex_state = 391, .external_lex_state = 48}, - [2779] = {.lex_state = 236}, - [2780] = {.lex_state = 391, .external_lex_state = 48}, - [2781] = {.lex_state = 76, .external_lex_state = 36}, - [2782] = {.lex_state = 391, .external_lex_state = 48}, - [2783] = {.lex_state = 391, .external_lex_state = 47}, - [2784] = {.lex_state = 391, .external_lex_state = 47}, - [2785] = {.lex_state = 391, .external_lex_state = 36}, - [2786] = {.lex_state = 391, .external_lex_state = 36}, - [2787] = {.lex_state = 391, .external_lex_state = 36}, - [2788] = {.lex_state = 391, .external_lex_state = 48}, - [2789] = {.lex_state = 391, .external_lex_state = 36}, - [2790] = {.lex_state = 75, .external_lex_state = 36}, - [2791] = {.lex_state = 391, .external_lex_state = 48}, - [2792] = {.lex_state = 236}, - [2793] = {.lex_state = 391, .external_lex_state = 48}, - [2794] = {.lex_state = 391, .external_lex_state = 47}, - [2795] = {.lex_state = 391, .external_lex_state = 48}, - [2796] = {.lex_state = 170, .external_lex_state = 49}, - [2797] = {.lex_state = 391, .external_lex_state = 48}, - [2798] = {.lex_state = 391, .external_lex_state = 48}, - [2799] = {.lex_state = 391, .external_lex_state = 36}, - [2800] = {.lex_state = 391, .external_lex_state = 36}, - [2801] = {.lex_state = 170, .external_lex_state = 49}, - [2802] = {.lex_state = 76, .external_lex_state = 35}, - [2803] = {.lex_state = 236}, - [2804] = {.lex_state = 236}, - [2805] = {.lex_state = 391, .external_lex_state = 48}, - [2806] = {.lex_state = 391, .external_lex_state = 48}, - [2807] = {.lex_state = 391, .external_lex_state = 36}, - [2808] = {.lex_state = 391, .external_lex_state = 48}, - [2809] = {.lex_state = 391, .external_lex_state = 35}, - [2810] = {.lex_state = 391, .external_lex_state = 48}, - [2811] = {.lex_state = 236}, - [2812] = {.lex_state = 391, .external_lex_state = 48}, - [2813] = {.lex_state = 170, .external_lex_state = 49}, - [2814] = {.lex_state = 391, .external_lex_state = 36}, - [2815] = {.lex_state = 76, .external_lex_state = 35}, - [2816] = {.lex_state = 391, .external_lex_state = 48}, - [2817] = {.lex_state = 76, .external_lex_state = 36}, - [2818] = {.lex_state = 391, .external_lex_state = 48}, - [2819] = {.lex_state = 391, .external_lex_state = 48}, - [2820] = {.lex_state = 170, .external_lex_state = 49}, - [2821] = {.lex_state = 391, .external_lex_state = 48}, - [2822] = {.lex_state = 391, .external_lex_state = 35}, - [2823] = {.lex_state = 391, .external_lex_state = 48}, - [2824] = {.lex_state = 391, .external_lex_state = 47}, - [2825] = {.lex_state = 391, .external_lex_state = 48}, - [2826] = {.lex_state = 391, .external_lex_state = 48}, - [2827] = {.lex_state = 391, .external_lex_state = 48}, - [2828] = {.lex_state = 76, .external_lex_state = 36}, - [2829] = {.lex_state = 75, .external_lex_state = 36}, - [2830] = {.lex_state = 391, .external_lex_state = 47}, - [2831] = {.lex_state = 391, .external_lex_state = 36}, - [2832] = {.lex_state = 391, .external_lex_state = 48}, - [2833] = {.lex_state = 391, .external_lex_state = 48}, - [2834] = {.lex_state = 170, .external_lex_state = 49}, - [2835] = {.lex_state = 391, .external_lex_state = 35}, - [2836] = {.lex_state = 76, .external_lex_state = 35}, - [2837] = {.lex_state = 391, .external_lex_state = 36}, - [2838] = {.lex_state = 391, .external_lex_state = 48}, - [2839] = {.lex_state = 75, .external_lex_state = 35}, - [2840] = {.lex_state = 391, .external_lex_state = 48}, + [464] = {.lex_state = 432, .external_lex_state = 8}, + [465] = {.lex_state = 135, .external_lex_state = 12}, + [466] = {.lex_state = 135, .external_lex_state = 12}, + [467] = {.lex_state = 432, .external_lex_state = 8}, + [468] = {.lex_state = 164, .external_lex_state = 11}, + [469] = {.lex_state = 164, .external_lex_state = 11}, + [470] = {.lex_state = 432, .external_lex_state = 8}, + [471] = {.lex_state = 164, .external_lex_state = 11}, + [472] = {.lex_state = 432, .external_lex_state = 8}, + [473] = {.lex_state = 432, .external_lex_state = 8}, + [474] = {.lex_state = 432, .external_lex_state = 8}, + [475] = {.lex_state = 432, .external_lex_state = 8}, + [476] = {.lex_state = 432, .external_lex_state = 8}, + [477] = {.lex_state = 431, .external_lex_state = 11}, + [478] = {.lex_state = 148, .external_lex_state = 8}, + [479] = {.lex_state = 431, .external_lex_state = 11}, + [480] = {.lex_state = 431, .external_lex_state = 11}, + [481] = {.lex_state = 432, .external_lex_state = 8}, + [482] = {.lex_state = 431, .external_lex_state = 11}, + [483] = {.lex_state = 431, .external_lex_state = 11}, + [484] = {.lex_state = 432, .external_lex_state = 8}, + [485] = {.lex_state = 135, .external_lex_state = 12}, + [486] = {.lex_state = 164, .external_lex_state = 12}, + [487] = {.lex_state = 429, .external_lex_state = 8}, + [488] = {.lex_state = 432, .external_lex_state = 8}, + [489] = {.lex_state = 166, .external_lex_state = 11}, + [490] = {.lex_state = 156, .external_lex_state = 8}, + [491] = {.lex_state = 432, .external_lex_state = 8}, + [492] = {.lex_state = 432, .external_lex_state = 8}, + [493] = {.lex_state = 159, .external_lex_state = 11}, + [494] = {.lex_state = 432, .external_lex_state = 8}, + [495] = {.lex_state = 432, .external_lex_state = 8}, + [496] = {.lex_state = 147, .external_lex_state = 12}, + [497] = {.lex_state = 166, .external_lex_state = 11}, + [498] = {.lex_state = 159, .external_lex_state = 11}, + [499] = {.lex_state = 156, .external_lex_state = 8}, + [500] = {.lex_state = 166, .external_lex_state = 11}, + [501] = {.lex_state = 159, .external_lex_state = 11}, + [502] = {.lex_state = 147, .external_lex_state = 12}, + [503] = {.lex_state = 432, .external_lex_state = 8}, + [504] = {.lex_state = 147, .external_lex_state = 12}, + [505] = {.lex_state = 432, .external_lex_state = 8}, + [506] = {.lex_state = 432, .external_lex_state = 8}, + [507] = {.lex_state = 164, .external_lex_state = 12}, + [508] = {.lex_state = 159, .external_lex_state = 11}, + [509] = {.lex_state = 432, .external_lex_state = 8}, + [510] = {.lex_state = 164, .external_lex_state = 12}, + [511] = {.lex_state = 429, .external_lex_state = 8}, + [512] = {.lex_state = 431, .external_lex_state = 12}, + [513] = {.lex_state = 431, .external_lex_state = 12}, + [514] = {.lex_state = 431, .external_lex_state = 12}, + [515] = {.lex_state = 162, .external_lex_state = 11}, + [516] = {.lex_state = 162, .external_lex_state = 11}, + [517] = {.lex_state = 434, .external_lex_state = 11}, + [518] = {.lex_state = 434, .external_lex_state = 11}, + [519] = {.lex_state = 434, .external_lex_state = 11}, + [520] = {.lex_state = 434, .external_lex_state = 11}, + [521] = {.lex_state = 166, .external_lex_state = 12}, + [522] = {.lex_state = 166, .external_lex_state = 12}, + [523] = {.lex_state = 434, .external_lex_state = 11}, + [524] = {.lex_state = 159, .external_lex_state = 12}, + [525] = {.lex_state = 159, .external_lex_state = 12}, + [526] = {.lex_state = 166, .external_lex_state = 12}, + [527] = {.lex_state = 431, .external_lex_state = 12}, + [528] = {.lex_state = 162, .external_lex_state = 11}, + [529] = {.lex_state = 429, .external_lex_state = 8}, + [530] = {.lex_state = 434, .external_lex_state = 11}, + [531] = {.lex_state = 159, .external_lex_state = 12}, + [532] = {.lex_state = 431, .external_lex_state = 12}, + [533] = {.lex_state = 429, .external_lex_state = 8}, + [534] = {.lex_state = 159, .external_lex_state = 12}, + [535] = {.lex_state = 162, .external_lex_state = 11}, + [536] = {.lex_state = 431, .external_lex_state = 12}, + [537] = {.lex_state = 162, .external_lex_state = 12}, + [538] = {.lex_state = 147, .external_lex_state = 11}, + [539] = {.lex_state = 431, .external_lex_state = 12}, + [540] = {.lex_state = 439, .external_lex_state = 2}, + [541] = {.lex_state = 434, .external_lex_state = 12}, + [542] = {.lex_state = 434, .external_lex_state = 11}, + [543] = {.lex_state = 431, .external_lex_state = 12}, + [544] = {.lex_state = 433, .external_lex_state = 11}, + [545] = {.lex_state = 434, .external_lex_state = 12}, + [546] = {.lex_state = 433, .external_lex_state = 11}, + [547] = {.lex_state = 431, .external_lex_state = 12}, + [548] = {.lex_state = 439, .external_lex_state = 2}, + [549] = {.lex_state = 431, .external_lex_state = 12}, + [550] = {.lex_state = 434, .external_lex_state = 11}, + [551] = {.lex_state = 197, .external_lex_state = 2}, + [552] = {.lex_state = 162, .external_lex_state = 12}, + [553] = {.lex_state = 434, .external_lex_state = 11}, + [554] = {.lex_state = 433, .external_lex_state = 11}, + [555] = {.lex_state = 434, .external_lex_state = 12}, + [556] = {.lex_state = 433, .external_lex_state = 11}, + [557] = {.lex_state = 147, .external_lex_state = 11}, + [558] = {.lex_state = 434, .external_lex_state = 12}, + [559] = {.lex_state = 431, .external_lex_state = 12}, + [560] = {.lex_state = 197, .external_lex_state = 2}, + [561] = {.lex_state = 147, .external_lex_state = 11}, + [562] = {.lex_state = 162, .external_lex_state = 12}, + [563] = {.lex_state = 167, .external_lex_state = 11}, + [564] = {.lex_state = 162, .external_lex_state = 12}, + [565] = {.lex_state = 167, .external_lex_state = 11}, + [566] = {.lex_state = 439, .external_lex_state = 2}, + [567] = {.lex_state = 434, .external_lex_state = 12}, + [568] = {.lex_state = 434, .external_lex_state = 12}, + [569] = {.lex_state = 167, .external_lex_state = 11}, + [570] = {.lex_state = 167, .external_lex_state = 11}, + [571] = {.lex_state = 167, .external_lex_state = 12}, + [572] = {.lex_state = 433, .external_lex_state = 11}, + [573] = {.lex_state = 434, .external_lex_state = 12}, + [574] = {.lex_state = 433, .external_lex_state = 12}, + [575] = {.lex_state = 433, .external_lex_state = 12}, + [576] = {.lex_state = 237, .external_lex_state = 2}, + [577] = {.lex_state = 237, .external_lex_state = 2}, + [578] = {.lex_state = 237, .external_lex_state = 2}, + [579] = {.lex_state = 237, .external_lex_state = 2}, + [580] = {.lex_state = 237, .external_lex_state = 2}, + [581] = {.lex_state = 246, .external_lex_state = 13}, + [582] = {.lex_state = 237, .external_lex_state = 2}, + [583] = {.lex_state = 246, .external_lex_state = 13}, + [584] = {.lex_state = 167, .external_lex_state = 12}, + [585] = {.lex_state = 167, .external_lex_state = 12}, + [586] = {.lex_state = 433, .external_lex_state = 12}, + [587] = {.lex_state = 237, .external_lex_state = 2}, + [588] = {.lex_state = 155, .external_lex_state = 8}, + [589] = {.lex_state = 433, .external_lex_state = 12}, + [590] = {.lex_state = 155, .external_lex_state = 8}, + [591] = {.lex_state = 167, .external_lex_state = 12}, + [592] = {.lex_state = 433, .external_lex_state = 11}, + [593] = {.lex_state = 433, .external_lex_state = 11}, + [594] = {.lex_state = 434, .external_lex_state = 12}, + [595] = {.lex_state = 433, .external_lex_state = 11}, + [596] = {.lex_state = 155, .external_lex_state = 8}, + [597] = {.lex_state = 155, .external_lex_state = 8}, + [598] = {.lex_state = 434, .external_lex_state = 12}, + [599] = {.lex_state = 237, .external_lex_state = 2}, + [600] = {.lex_state = 434, .external_lex_state = 12}, + [601] = {.lex_state = 434, .external_lex_state = 12}, + [602] = {.lex_state = 155, .external_lex_state = 8}, + [603] = {.lex_state = 246, .external_lex_state = 13}, + [604] = {.lex_state = 243, .external_lex_state = 14}, + [605] = {.lex_state = 252, .external_lex_state = 10}, + [606] = {.lex_state = 433, .external_lex_state = 12}, + [607] = {.lex_state = 433, .external_lex_state = 12}, + [608] = {.lex_state = 164, .external_lex_state = 11}, + [609] = {.lex_state = 243, .external_lex_state = 14}, + [610] = {.lex_state = 164, .external_lex_state = 11}, + [611] = {.lex_state = 243, .external_lex_state = 14}, + [612] = {.lex_state = 243, .external_lex_state = 14}, + [613] = {.lex_state = 164, .external_lex_state = 11}, + [614] = {.lex_state = 433, .external_lex_state = 12}, + [615] = {.lex_state = 243, .external_lex_state = 14}, + [616] = {.lex_state = 164, .external_lex_state = 11}, + [617] = {.lex_state = 169, .external_lex_state = 8}, + [618] = {.lex_state = 169, .external_lex_state = 8}, + [619] = {.lex_state = 433, .external_lex_state = 12}, + [620] = {.lex_state = 244, .external_lex_state = 15}, + [621] = {.lex_state = 198, .external_lex_state = 2}, + [622] = {.lex_state = 166, .external_lex_state = 11}, + [623] = {.lex_state = 439, .external_lex_state = 2}, + [624] = {.lex_state = 166, .external_lex_state = 11}, + [625] = {.lex_state = 166, .external_lex_state = 11}, + [626] = {.lex_state = 166, .external_lex_state = 11}, + [627] = {.lex_state = 244, .external_lex_state = 15}, + [628] = {.lex_state = 198, .external_lex_state = 2}, + [629] = {.lex_state = 147, .external_lex_state = 12}, + [630] = {.lex_state = 198, .external_lex_state = 2}, + [631] = {.lex_state = 166, .external_lex_state = 11}, + [632] = {.lex_state = 166, .external_lex_state = 11}, + [633] = {.lex_state = 198, .external_lex_state = 2}, + [634] = {.lex_state = 147, .external_lex_state = 12}, + [635] = {.lex_state = 439, .external_lex_state = 2}, + [636] = {.lex_state = 147, .external_lex_state = 12}, + [637] = {.lex_state = 439, .external_lex_state = 2}, + [638] = {.lex_state = 170, .external_lex_state = 3}, + [639] = {.lex_state = 166, .external_lex_state = 11}, + [640] = {.lex_state = 202, .external_lex_state = 14}, + [641] = {.lex_state = 202, .external_lex_state = 14}, + [642] = {.lex_state = 244, .external_lex_state = 15}, + [643] = {.lex_state = 171, .external_lex_state = 11}, + [644] = {.lex_state = 434, .external_lex_state = 11}, + [645] = {.lex_state = 246, .external_lex_state = 16}, + [646] = {.lex_state = 439, .external_lex_state = 2}, + [647] = {.lex_state = 166, .external_lex_state = 12}, + [648] = {.lex_state = 434, .external_lex_state = 11}, + [649] = {.lex_state = 166, .external_lex_state = 12}, + [650] = {.lex_state = 246, .external_lex_state = 16}, + [651] = {.lex_state = 203, .external_lex_state = 15}, + [652] = {.lex_state = 439, .external_lex_state = 2}, + [653] = {.lex_state = 434, .external_lex_state = 11}, + [654] = {.lex_state = 171, .external_lex_state = 11}, + [655] = {.lex_state = 203, .external_lex_state = 15}, + [656] = {.lex_state = 434, .external_lex_state = 11}, + [657] = {.lex_state = 172, .external_lex_state = 3}, + [658] = {.lex_state = 171, .external_lex_state = 11}, + [659] = {.lex_state = 246, .external_lex_state = 16}, + [660] = {.lex_state = 439, .external_lex_state = 2}, + [661] = {.lex_state = 171, .external_lex_state = 11}, + [662] = {.lex_state = 434, .external_lex_state = 11}, + [663] = {.lex_state = 434, .external_lex_state = 11}, + [664] = {.lex_state = 240, .external_lex_state = 13}, + [665] = {.lex_state = 170, .external_lex_state = 3}, + [666] = {.lex_state = 170, .external_lex_state = 3}, + [667] = {.lex_state = 213, .external_lex_state = 17}, + [668] = {.lex_state = 213, .external_lex_state = 17}, + [669] = {.lex_state = 244, .external_lex_state = 18}, + [670] = {.lex_state = 240, .external_lex_state = 13}, + [671] = {.lex_state = 240, .external_lex_state = 13}, + [672] = {.lex_state = 166, .external_lex_state = 12}, + [673] = {.lex_state = 170, .external_lex_state = 3}, + [674] = {.lex_state = 434, .external_lex_state = 11}, + [675] = {.lex_state = 170, .external_lex_state = 3}, + [676] = {.lex_state = 434, .external_lex_state = 11}, + [677] = {.lex_state = 209, .external_lex_state = 19}, + [678] = {.lex_state = 170, .external_lex_state = 3}, + [679] = {.lex_state = 170, .external_lex_state = 3}, + [680] = {.lex_state = 170, .external_lex_state = 3}, + [681] = {.lex_state = 170, .external_lex_state = 3}, + [682] = {.lex_state = 244, .external_lex_state = 18}, + [683] = {.lex_state = 209, .external_lex_state = 19}, + [684] = {.lex_state = 170, .external_lex_state = 3}, + [685] = {.lex_state = 244, .external_lex_state = 18}, + [686] = {.lex_state = 170, .external_lex_state = 3}, + [687] = {.lex_state = 210, .external_lex_state = 19}, + [688] = {.lex_state = 172, .external_lex_state = 3}, + [689] = {.lex_state = 203, .external_lex_state = 18}, + [690] = {.lex_state = 214, .external_lex_state = 19}, + [691] = {.lex_state = 170, .external_lex_state = 3}, + [692] = {.lex_state = 435, .external_lex_state = 3}, + [693] = {.lex_state = 170, .external_lex_state = 3}, + [694] = {.lex_state = 170, .external_lex_state = 3}, + [695] = {.lex_state = 170, .external_lex_state = 3}, + [696] = {.lex_state = 212, .external_lex_state = 19}, + [697] = {.lex_state = 212, .external_lex_state = 19}, + [698] = {.lex_state = 170, .external_lex_state = 3}, + [699] = {.lex_state = 170, .external_lex_state = 3}, + [700] = {.lex_state = 170, .external_lex_state = 3}, + [701] = {.lex_state = 434, .external_lex_state = 11}, + [702] = {.lex_state = 170, .external_lex_state = 3}, + [703] = {.lex_state = 434, .external_lex_state = 11}, + [704] = {.lex_state = 170, .external_lex_state = 3}, + [705] = {.lex_state = 170, .external_lex_state = 3}, + [706] = {.lex_state = 253, .external_lex_state = 20}, + [707] = {.lex_state = 176, .external_lex_state = 21}, + [708] = {.lex_state = 176, .external_lex_state = 21}, + [709] = {.lex_state = 434, .external_lex_state = 11}, + [710] = {.lex_state = 176, .external_lex_state = 21}, + [711] = {.lex_state = 170, .external_lex_state = 3}, + [712] = {.lex_state = 170, .external_lex_state = 3}, + [713] = {.lex_state = 170, .external_lex_state = 3}, + [714] = {.lex_state = 170, .external_lex_state = 3}, + [715] = {.lex_state = 214, .external_lex_state = 19}, + [716] = {.lex_state = 170, .external_lex_state = 3}, + [717] = {.lex_state = 170, .external_lex_state = 3}, + [718] = {.lex_state = 170, .external_lex_state = 3}, + [719] = {.lex_state = 211, .external_lex_state = 19}, + [720] = {.lex_state = 170, .external_lex_state = 3}, + [721] = {.lex_state = 170, .external_lex_state = 3}, + [722] = {.lex_state = 211, .external_lex_state = 19}, + [723] = {.lex_state = 170, .external_lex_state = 3}, + [724] = {.lex_state = 176, .external_lex_state = 21}, + [725] = {.lex_state = 172, .external_lex_state = 3}, + [726] = {.lex_state = 203, .external_lex_state = 18}, + [727] = {.lex_state = 176, .external_lex_state = 21}, + [728] = {.lex_state = 172, .external_lex_state = 3}, + [729] = {.lex_state = 172, .external_lex_state = 3}, + [730] = {.lex_state = 176, .external_lex_state = 21}, + [731] = {.lex_state = 172, .external_lex_state = 3}, + [732] = {.lex_state = 434, .external_lex_state = 11}, + [733] = {.lex_state = 172, .external_lex_state = 3}, + [734] = {.lex_state = 172, .external_lex_state = 3}, + [735] = {.lex_state = 210, .external_lex_state = 19}, + [736] = {.lex_state = 213, .external_lex_state = 22}, + [737] = {.lex_state = 213, .external_lex_state = 22}, + [738] = {.lex_state = 204, .external_lex_state = 13}, + [739] = {.lex_state = 172, .external_lex_state = 3}, + [740] = {.lex_state = 240, .external_lex_state = 16}, + [741] = {.lex_state = 204, .external_lex_state = 13}, + [742] = {.lex_state = 434, .external_lex_state = 11}, + [743] = {.lex_state = 434, .external_lex_state = 11}, + [744] = {.lex_state = 171, .external_lex_state = 12}, + [745] = {.lex_state = 171, .external_lex_state = 12}, + [746] = {.lex_state = 240, .external_lex_state = 16}, + [747] = {.lex_state = 176, .external_lex_state = 21}, + [748] = {.lex_state = 176, .external_lex_state = 21}, + [749] = {.lex_state = 171, .external_lex_state = 12}, + [750] = {.lex_state = 171, .external_lex_state = 12}, + [751] = {.lex_state = 435, .external_lex_state = 3}, + [752] = {.lex_state = 240, .external_lex_state = 16}, + [753] = {.lex_state = 434, .external_lex_state = 11}, + [754] = {.lex_state = 434, .external_lex_state = 11}, + [755] = {.lex_state = 434, .external_lex_state = 11}, + [756] = {.lex_state = 434, .external_lex_state = 11}, + [757] = {.lex_state = 172, .external_lex_state = 3}, + [758] = {.lex_state = 172, .external_lex_state = 3}, + [759] = {.lex_state = 434, .external_lex_state = 11}, + [760] = {.lex_state = 204, .external_lex_state = 13}, + [761] = {.lex_state = 204, .external_lex_state = 13}, + [762] = {.lex_state = 253, .external_lex_state = 20}, + [763] = {.lex_state = 434, .external_lex_state = 11}, + [764] = {.lex_state = 434, .external_lex_state = 11}, + [765] = {.lex_state = 434, .external_lex_state = 11}, + [766] = {.lex_state = 176, .external_lex_state = 21}, + [767] = {.lex_state = 177, .external_lex_state = 21}, + [768] = {.lex_state = 435, .external_lex_state = 3}, + [769] = {.lex_state = 435, .external_lex_state = 3}, + [770] = {.lex_state = 177, .external_lex_state = 21}, + [771] = {.lex_state = 177, .external_lex_state = 21}, + [772] = {.lex_state = 177, .external_lex_state = 21}, + [773] = {.lex_state = 435, .external_lex_state = 3}, + [774] = {.lex_state = 435, .external_lex_state = 3}, + [775] = {.lex_state = 176, .external_lex_state = 21}, + [776] = {.lex_state = 435, .external_lex_state = 3}, + [777] = {.lex_state = 435, .external_lex_state = 3}, + [778] = {.lex_state = 435, .external_lex_state = 3}, + [779] = {.lex_state = 178, .external_lex_state = 21}, + [780] = {.lex_state = 178, .external_lex_state = 21}, + [781] = {.lex_state = 435, .external_lex_state = 3}, + [782] = {.lex_state = 253, .external_lex_state = 10}, + [783] = {.lex_state = 253, .external_lex_state = 10}, + [784] = {.lex_state = 178, .external_lex_state = 21}, + [785] = {.lex_state = 178, .external_lex_state = 21}, + [786] = {.lex_state = 177, .external_lex_state = 21}, + [787] = {.lex_state = 177, .external_lex_state = 21}, + [788] = {.lex_state = 435, .external_lex_state = 3}, + [789] = {.lex_state = 176, .external_lex_state = 21}, + [790] = {.lex_state = 435, .external_lex_state = 3}, + [791] = {.lex_state = 204, .external_lex_state = 16}, + [792] = {.lex_state = 151, .external_lex_state = 8}, + [793] = {.lex_state = 204, .external_lex_state = 16}, + [794] = {.lex_state = 435, .external_lex_state = 3}, + [795] = {.lex_state = 435, .external_lex_state = 3}, + [796] = {.lex_state = 151, .external_lex_state = 8}, + [797] = {.lex_state = 178, .external_lex_state = 21}, + [798] = {.lex_state = 178, .external_lex_state = 21}, + [799] = {.lex_state = 178, .external_lex_state = 21}, + [800] = {.lex_state = 435, .external_lex_state = 3}, + [801] = {.lex_state = 435, .external_lex_state = 3}, + [802] = {.lex_state = 176, .external_lex_state = 21}, + [803] = {.lex_state = 176, .external_lex_state = 21}, + [804] = {.lex_state = 176, .external_lex_state = 21}, + [805] = {.lex_state = 176, .external_lex_state = 21}, + [806] = {.lex_state = 176, .external_lex_state = 21}, + [807] = {.lex_state = 176, .external_lex_state = 23}, + [808] = {.lex_state = 176, .external_lex_state = 23}, + [809] = {.lex_state = 151, .external_lex_state = 8}, + [810] = {.lex_state = 176, .external_lex_state = 23}, + [811] = {.lex_state = 178, .external_lex_state = 21}, + [812] = {.lex_state = 176, .external_lex_state = 21}, + [813] = {.lex_state = 435, .external_lex_state = 3}, + [814] = {.lex_state = 435, .external_lex_state = 3}, + [815] = {.lex_state = 176, .external_lex_state = 21}, + [816] = {.lex_state = 176, .external_lex_state = 23}, + [817] = {.lex_state = 176, .external_lex_state = 23}, + [818] = {.lex_state = 176, .external_lex_state = 23}, + [819] = {.lex_state = 172, .external_lex_state = 3}, + [820] = {.lex_state = 176, .external_lex_state = 21}, + [821] = {.lex_state = 172, .external_lex_state = 3}, + [822] = {.lex_state = 172, .external_lex_state = 3}, + [823] = {.lex_state = 176, .external_lex_state = 21}, + [824] = {.lex_state = 253, .external_lex_state = 10}, + [825] = {.lex_state = 172, .external_lex_state = 3}, + [826] = {.lex_state = 176, .external_lex_state = 21}, + [827] = {.lex_state = 172, .external_lex_state = 3}, + [828] = {.lex_state = 435, .external_lex_state = 3}, + [829] = {.lex_state = 435, .external_lex_state = 3}, + [830] = {.lex_state = 172, .external_lex_state = 3}, + [831] = {.lex_state = 151, .external_lex_state = 8}, + [832] = {.lex_state = 176, .external_lex_state = 21}, + [833] = {.lex_state = 176, .external_lex_state = 21}, + [834] = {.lex_state = 172, .external_lex_state = 3}, + [835] = {.lex_state = 176, .external_lex_state = 21}, + [836] = {.lex_state = 177, .external_lex_state = 21}, + [837] = {.lex_state = 172, .external_lex_state = 3}, + [838] = {.lex_state = 176, .external_lex_state = 21}, + [839] = {.lex_state = 172, .external_lex_state = 3}, + [840] = {.lex_state = 176, .external_lex_state = 21}, + [841] = {.lex_state = 176, .external_lex_state = 21}, + [842] = {.lex_state = 172, .external_lex_state = 3}, + [843] = {.lex_state = 176, .external_lex_state = 21}, + [844] = {.lex_state = 177, .external_lex_state = 21}, + [845] = {.lex_state = 172, .external_lex_state = 3}, + [846] = {.lex_state = 435, .external_lex_state = 3}, + [847] = {.lex_state = 172, .external_lex_state = 3}, + [848] = {.lex_state = 172, .external_lex_state = 3}, + [849] = {.lex_state = 172, .external_lex_state = 3}, + [850] = {.lex_state = 172, .external_lex_state = 3}, + [851] = {.lex_state = 172, .external_lex_state = 3}, + [852] = {.lex_state = 172, .external_lex_state = 3}, + [853] = {.lex_state = 172, .external_lex_state = 3}, + [854] = {.lex_state = 172, .external_lex_state = 3}, + [855] = {.lex_state = 435, .external_lex_state = 3}, + [856] = {.lex_state = 435, .external_lex_state = 3}, + [857] = {.lex_state = 215, .external_lex_state = 19}, + [858] = {.lex_state = 215, .external_lex_state = 19}, + [859] = {.lex_state = 172, .external_lex_state = 3}, + [860] = {.lex_state = 253, .external_lex_state = 10}, + [861] = {.lex_state = 253, .external_lex_state = 10}, + [862] = {.lex_state = 204, .external_lex_state = 16}, + [863] = {.lex_state = 204, .external_lex_state = 16}, + [864] = {.lex_state = 253, .external_lex_state = 10}, + [865] = {.lex_state = 253, .external_lex_state = 10}, + [866] = {.lex_state = 253, .external_lex_state = 10}, + [867] = {.lex_state = 435, .external_lex_state = 3}, + [868] = {.lex_state = 253, .external_lex_state = 10}, + [869] = {.lex_state = 253, .external_lex_state = 10}, + [870] = {.lex_state = 178, .external_lex_state = 21}, + [871] = {.lex_state = 177, .external_lex_state = 21}, + [872] = {.lex_state = 151, .external_lex_state = 8}, + [873] = {.lex_state = 178, .external_lex_state = 21}, + [874] = {.lex_state = 178, .external_lex_state = 21}, + [875] = {.lex_state = 178, .external_lex_state = 21}, + [876] = {.lex_state = 178, .external_lex_state = 21}, + [877] = {.lex_state = 178, .external_lex_state = 21}, + [878] = {.lex_state = 176, .external_lex_state = 23}, + [879] = {.lex_state = 178, .external_lex_state = 21}, + [880] = {.lex_state = 176, .external_lex_state = 23}, + [881] = {.lex_state = 176, .external_lex_state = 23}, + [882] = {.lex_state = 436, .external_lex_state = 21}, + [883] = {.lex_state = 436, .external_lex_state = 21}, + [884] = {.lex_state = 176, .external_lex_state = 23}, + [885] = {.lex_state = 178, .external_lex_state = 21}, + [886] = {.lex_state = 435, .external_lex_state = 3}, + [887] = {.lex_state = 176, .external_lex_state = 23}, + [888] = {.lex_state = 436, .external_lex_state = 21}, + [889] = {.lex_state = 178, .external_lex_state = 23}, + [890] = {.lex_state = 436, .external_lex_state = 21}, + [891] = {.lex_state = 178, .external_lex_state = 23}, + [892] = {.lex_state = 436, .external_lex_state = 21}, + [893] = {.lex_state = 436, .external_lex_state = 21}, + [894] = {.lex_state = 238, .external_lex_state = 2}, + [895] = {.lex_state = 436, .external_lex_state = 21}, + [896] = {.lex_state = 238, .external_lex_state = 2}, + [897] = {.lex_state = 178, .external_lex_state = 23}, + [898] = {.lex_state = 436, .external_lex_state = 21}, + [899] = {.lex_state = 238, .external_lex_state = 2}, + [900] = {.lex_state = 135, .external_lex_state = 11}, + [901] = {.lex_state = 178, .external_lex_state = 21}, + [902] = {.lex_state = 436, .external_lex_state = 21}, + [903] = {.lex_state = 436, .external_lex_state = 21}, + [904] = {.lex_state = 135, .external_lex_state = 11}, + [905] = {.lex_state = 176, .external_lex_state = 23}, + [906] = {.lex_state = 178, .external_lex_state = 21}, + [907] = {.lex_state = 155, .external_lex_state = 8}, + [908] = {.lex_state = 238, .external_lex_state = 2}, + [909] = {.lex_state = 176, .external_lex_state = 23}, + [910] = {.lex_state = 178, .external_lex_state = 21}, + [911] = {.lex_state = 436, .external_lex_state = 21}, + [912] = {.lex_state = 436, .external_lex_state = 21}, + [913] = {.lex_state = 178, .external_lex_state = 23}, + [914] = {.lex_state = 178, .external_lex_state = 23}, + [915] = {.lex_state = 180, .external_lex_state = 21}, + [916] = {.lex_state = 178, .external_lex_state = 23}, + [917] = {.lex_state = 176, .external_lex_state = 23}, + [918] = {.lex_state = 178, .external_lex_state = 21}, + [919] = {.lex_state = 180, .external_lex_state = 21}, + [920] = {.lex_state = 176, .external_lex_state = 23}, + [921] = {.lex_state = 178, .external_lex_state = 21}, + [922] = {.lex_state = 178, .external_lex_state = 21}, + [923] = {.lex_state = 176, .external_lex_state = 23}, + [924] = {.lex_state = 155, .external_lex_state = 8}, + [925] = {.lex_state = 435, .external_lex_state = 3}, + [926] = {.lex_state = 435, .external_lex_state = 3}, + [927] = {.lex_state = 178, .external_lex_state = 21}, + [928] = {.lex_state = 435, .external_lex_state = 3}, + [929] = {.lex_state = 178, .external_lex_state = 21}, + [930] = {.lex_state = 435, .external_lex_state = 3}, + [931] = {.lex_state = 435, .external_lex_state = 3}, + [932] = {.lex_state = 435, .external_lex_state = 3}, + [933] = {.lex_state = 177, .external_lex_state = 23}, + [934] = {.lex_state = 435, .external_lex_state = 3}, + [935] = {.lex_state = 435, .external_lex_state = 3}, + [936] = {.lex_state = 177, .external_lex_state = 23}, + [937] = {.lex_state = 180, .external_lex_state = 21}, + [938] = {.lex_state = 435, .external_lex_state = 3}, + [939] = {.lex_state = 180, .external_lex_state = 21}, + [940] = {.lex_state = 155, .external_lex_state = 8}, + [941] = {.lex_state = 238, .external_lex_state = 2}, + [942] = {.lex_state = 180, .external_lex_state = 21}, + [943] = {.lex_state = 180, .external_lex_state = 21}, + [944] = {.lex_state = 435, .external_lex_state = 3}, + [945] = {.lex_state = 435, .external_lex_state = 3}, + [946] = {.lex_state = 435, .external_lex_state = 3}, + [947] = {.lex_state = 435, .external_lex_state = 3}, + [948] = {.lex_state = 180, .external_lex_state = 21}, + [949] = {.lex_state = 238, .external_lex_state = 2}, + [950] = {.lex_state = 151, .external_lex_state = 8}, + [951] = {.lex_state = 435, .external_lex_state = 3}, + [952] = {.lex_state = 435, .external_lex_state = 3}, + [953] = {.lex_state = 177, .external_lex_state = 21}, + [954] = {.lex_state = 177, .external_lex_state = 21}, + [955] = {.lex_state = 435, .external_lex_state = 3}, + [956] = {.lex_state = 176, .external_lex_state = 23}, + [957] = {.lex_state = 238, .external_lex_state = 2}, + [958] = {.lex_state = 435, .external_lex_state = 3}, + [959] = {.lex_state = 435, .external_lex_state = 3}, + [960] = {.lex_state = 177, .external_lex_state = 21}, + [961] = {.lex_state = 176, .external_lex_state = 23}, + [962] = {.lex_state = 178, .external_lex_state = 21}, + [963] = {.lex_state = 436, .external_lex_state = 21}, + [964] = {.lex_state = 436, .external_lex_state = 21}, + [965] = {.lex_state = 155, .external_lex_state = 8}, + [966] = {.lex_state = 177, .external_lex_state = 21}, + [967] = {.lex_state = 177, .external_lex_state = 21}, + [968] = {.lex_state = 435, .external_lex_state = 3}, + [969] = {.lex_state = 435, .external_lex_state = 3}, + [970] = {.lex_state = 177, .external_lex_state = 21}, + [971] = {.lex_state = 177, .external_lex_state = 21}, + [972] = {.lex_state = 435, .external_lex_state = 3}, + [973] = {.lex_state = 178, .external_lex_state = 21}, + [974] = {.lex_state = 151, .external_lex_state = 8}, + [975] = {.lex_state = 435, .external_lex_state = 3}, + [976] = {.lex_state = 435, .external_lex_state = 3}, + [977] = {.lex_state = 435, .external_lex_state = 3}, + [978] = {.lex_state = 435, .external_lex_state = 3}, + [979] = {.lex_state = 178, .external_lex_state = 21}, + [980] = {.lex_state = 435, .external_lex_state = 3}, + [981] = {.lex_state = 176, .external_lex_state = 23}, + [982] = {.lex_state = 177, .external_lex_state = 21}, + [983] = {.lex_state = 177, .external_lex_state = 21}, + [984] = {.lex_state = 176, .external_lex_state = 23}, + [985] = {.lex_state = 177, .external_lex_state = 21}, + [986] = {.lex_state = 178, .external_lex_state = 21}, + [987] = {.lex_state = 177, .external_lex_state = 21}, + [988] = {.lex_state = 435, .external_lex_state = 3}, + [989] = {.lex_state = 176, .external_lex_state = 23}, + [990] = {.lex_state = 176, .external_lex_state = 23}, + [991] = {.lex_state = 435, .external_lex_state = 3}, + [992] = {.lex_state = 177, .external_lex_state = 23}, + [993] = {.lex_state = 177, .external_lex_state = 23}, + [994] = {.lex_state = 177, .external_lex_state = 21}, + [995] = {.lex_state = 435, .external_lex_state = 3}, + [996] = {.lex_state = 135, .external_lex_state = 11}, + [997] = {.lex_state = 177, .external_lex_state = 21}, + [998] = {.lex_state = 177, .external_lex_state = 21}, + [999] = {.lex_state = 436, .external_lex_state = 21}, + [1000] = {.lex_state = 436, .external_lex_state = 21}, + [1001] = {.lex_state = 177, .external_lex_state = 21}, + [1002] = {.lex_state = 238, .external_lex_state = 2}, + [1003] = {.lex_state = 151, .external_lex_state = 8}, + [1004] = {.lex_state = 177, .external_lex_state = 23}, + [1005] = {.lex_state = 435, .external_lex_state = 3}, + [1006] = {.lex_state = 435, .external_lex_state = 3}, + [1007] = {.lex_state = 435, .external_lex_state = 3}, + [1008] = {.lex_state = 435, .external_lex_state = 3}, + [1009] = {.lex_state = 435, .external_lex_state = 3}, + [1010] = {.lex_state = 435, .external_lex_state = 3}, + [1011] = {.lex_state = 435, .external_lex_state = 3}, + [1012] = {.lex_state = 435, .external_lex_state = 3}, + [1013] = {.lex_state = 180, .external_lex_state = 21}, + [1014] = {.lex_state = 176, .external_lex_state = 23}, + [1015] = {.lex_state = 435, .external_lex_state = 3}, + [1016] = {.lex_state = 177, .external_lex_state = 21}, + [1017] = {.lex_state = 176, .external_lex_state = 23}, + [1018] = {.lex_state = 176, .external_lex_state = 23}, + [1019] = {.lex_state = 177, .external_lex_state = 21}, + [1020] = {.lex_state = 176, .external_lex_state = 23}, + [1021] = {.lex_state = 435, .external_lex_state = 3}, + [1022] = {.lex_state = 435, .external_lex_state = 3}, + [1023] = {.lex_state = 435, .external_lex_state = 3}, + [1024] = {.lex_state = 435, .external_lex_state = 3}, + [1025] = {.lex_state = 177, .external_lex_state = 23}, + [1026] = {.lex_state = 253, .external_lex_state = 10}, + [1027] = {.lex_state = 177, .external_lex_state = 21}, + [1028] = {.lex_state = 177, .external_lex_state = 21}, + [1029] = {.lex_state = 435, .external_lex_state = 3}, + [1030] = {.lex_state = 435, .external_lex_state = 3}, + [1031] = {.lex_state = 435, .external_lex_state = 3}, + [1032] = {.lex_state = 435, .external_lex_state = 3}, + [1033] = {.lex_state = 435, .external_lex_state = 3}, + [1034] = {.lex_state = 435, .external_lex_state = 3}, + [1035] = {.lex_state = 177, .external_lex_state = 23}, + [1036] = {.lex_state = 135, .external_lex_state = 11}, + [1037] = {.lex_state = 180, .external_lex_state = 23}, + [1038] = {.lex_state = 178, .external_lex_state = 23}, + [1039] = {.lex_state = 178, .external_lex_state = 23}, + [1040] = {.lex_state = 436, .external_lex_state = 21}, + [1041] = {.lex_state = 436, .external_lex_state = 21}, + [1042] = {.lex_state = 178, .external_lex_state = 23}, + [1043] = {.lex_state = 436, .external_lex_state = 21}, + [1044] = {.lex_state = 166, .external_lex_state = 11}, + [1045] = {.lex_state = 180, .external_lex_state = 21}, + [1046] = {.lex_state = 178, .external_lex_state = 23}, + [1047] = {.lex_state = 178, .external_lex_state = 23}, + [1048] = {.lex_state = 436, .external_lex_state = 21}, + [1049] = {.lex_state = 147, .external_lex_state = 11}, + [1050] = {.lex_state = 177, .external_lex_state = 23}, + [1051] = {.lex_state = 436, .external_lex_state = 21}, + [1052] = {.lex_state = 180, .external_lex_state = 21}, + [1053] = {.lex_state = 436, .external_lex_state = 21}, + [1054] = {.lex_state = 178, .external_lex_state = 23}, + [1055] = {.lex_state = 178, .external_lex_state = 23}, + [1056] = {.lex_state = 177, .external_lex_state = 23}, + [1057] = {.lex_state = 180, .external_lex_state = 21}, + [1058] = {.lex_state = 178, .external_lex_state = 23}, + [1059] = {.lex_state = 432, .external_lex_state = 8}, + [1060] = {.lex_state = 436, .external_lex_state = 21}, + [1061] = {.lex_state = 432, .external_lex_state = 8}, + [1062] = {.lex_state = 178, .external_lex_state = 23}, + [1063] = {.lex_state = 436, .external_lex_state = 21}, + [1064] = {.lex_state = 180, .external_lex_state = 23}, + [1065] = {.lex_state = 436, .external_lex_state = 21}, + [1066] = {.lex_state = 436, .external_lex_state = 21}, + [1067] = {.lex_state = 180, .external_lex_state = 23}, + [1068] = {.lex_state = 164, .external_lex_state = 11}, + [1069] = {.lex_state = 177, .external_lex_state = 23}, + [1070] = {.lex_state = 180, .external_lex_state = 21}, + [1071] = {.lex_state = 178, .external_lex_state = 23}, + [1072] = {.lex_state = 437, .external_lex_state = 21}, + [1073] = {.lex_state = 437, .external_lex_state = 21}, + [1074] = {.lex_state = 437, .external_lex_state = 21}, + [1075] = {.lex_state = 177, .external_lex_state = 23}, + [1076] = {.lex_state = 436, .external_lex_state = 21}, + [1077] = {.lex_state = 178, .external_lex_state = 23}, + [1078] = {.lex_state = 436, .external_lex_state = 23}, + [1079] = {.lex_state = 432, .external_lex_state = 8}, + [1080] = {.lex_state = 436, .external_lex_state = 23}, + [1081] = {.lex_state = 180, .external_lex_state = 23}, + [1082] = {.lex_state = 180, .external_lex_state = 21}, + [1083] = {.lex_state = 177, .external_lex_state = 23}, + [1084] = {.lex_state = 436, .external_lex_state = 21}, + [1085] = {.lex_state = 180, .external_lex_state = 21}, + [1086] = {.lex_state = 177, .external_lex_state = 23}, + [1087] = {.lex_state = 180, .external_lex_state = 21}, + [1088] = {.lex_state = 180, .external_lex_state = 21}, + [1089] = {.lex_state = 177, .external_lex_state = 23}, + [1090] = {.lex_state = 166, .external_lex_state = 11}, + [1091] = {.lex_state = 436, .external_lex_state = 23}, + [1092] = {.lex_state = 180, .external_lex_state = 21}, + [1093] = {.lex_state = 180, .external_lex_state = 21}, + [1094] = {.lex_state = 178, .external_lex_state = 23}, + [1095] = {.lex_state = 436, .external_lex_state = 21}, + [1096] = {.lex_state = 432, .external_lex_state = 8}, + [1097] = {.lex_state = 177, .external_lex_state = 23}, + [1098] = {.lex_state = 436, .external_lex_state = 21}, + [1099] = {.lex_state = 177, .external_lex_state = 23}, + [1100] = {.lex_state = 180, .external_lex_state = 21}, + [1101] = {.lex_state = 436, .external_lex_state = 23}, + [1102] = {.lex_state = 436, .external_lex_state = 23}, + [1103] = {.lex_state = 135, .external_lex_state = 12}, + [1104] = {.lex_state = 432, .external_lex_state = 8}, + [1105] = {.lex_state = 177, .external_lex_state = 23}, + [1106] = {.lex_state = 436, .external_lex_state = 21}, + [1107] = {.lex_state = 177, .external_lex_state = 23}, + [1108] = {.lex_state = 178, .external_lex_state = 23}, + [1109] = {.lex_state = 436, .external_lex_state = 21}, + [1110] = {.lex_state = 436, .external_lex_state = 23}, + [1111] = {.lex_state = 436, .external_lex_state = 21}, + [1112] = {.lex_state = 177, .external_lex_state = 23}, + [1113] = {.lex_state = 180, .external_lex_state = 21}, + [1114] = {.lex_state = 180, .external_lex_state = 21}, + [1115] = {.lex_state = 180, .external_lex_state = 21}, + [1116] = {.lex_state = 436, .external_lex_state = 21}, + [1117] = {.lex_state = 436, .external_lex_state = 21}, + [1118] = {.lex_state = 177, .external_lex_state = 23}, + [1119] = {.lex_state = 180, .external_lex_state = 21}, + [1120] = {.lex_state = 436, .external_lex_state = 21}, + [1121] = {.lex_state = 177, .external_lex_state = 23}, + [1122] = {.lex_state = 437, .external_lex_state = 21}, + [1123] = {.lex_state = 177, .external_lex_state = 23}, + [1124] = {.lex_state = 437, .external_lex_state = 21}, + [1125] = {.lex_state = 437, .external_lex_state = 21}, + [1126] = {.lex_state = 437, .external_lex_state = 21}, + [1127] = {.lex_state = 437, .external_lex_state = 21}, + [1128] = {.lex_state = 437, .external_lex_state = 21}, + [1129] = {.lex_state = 437, .external_lex_state = 21}, + [1130] = {.lex_state = 164, .external_lex_state = 11}, + [1131] = {.lex_state = 437, .external_lex_state = 21}, + [1132] = {.lex_state = 155, .external_lex_state = 8}, + [1133] = {.lex_state = 178, .external_lex_state = 23}, + [1134] = {.lex_state = 178, .external_lex_state = 23}, + [1135] = {.lex_state = 436, .external_lex_state = 23}, + [1136] = {.lex_state = 436, .external_lex_state = 23}, + [1137] = {.lex_state = 135, .external_lex_state = 11}, + [1138] = {.lex_state = 177, .external_lex_state = 23}, + [1139] = {.lex_state = 432, .external_lex_state = 8}, + [1140] = {.lex_state = 164, .external_lex_state = 11}, + [1141] = {.lex_state = 177, .external_lex_state = 23}, + [1142] = {.lex_state = 177, .external_lex_state = 23}, + [1143] = {.lex_state = 177, .external_lex_state = 23}, + [1144] = {.lex_state = 436, .external_lex_state = 21}, + [1145] = {.lex_state = 437, .external_lex_state = 21}, + [1146] = {.lex_state = 155, .external_lex_state = 8}, + [1147] = {.lex_state = 437, .external_lex_state = 21}, + [1148] = {.lex_state = 180, .external_lex_state = 21}, + [1149] = {.lex_state = 135, .external_lex_state = 12}, + [1150] = {.lex_state = 436, .external_lex_state = 21}, + [1151] = {.lex_state = 436, .external_lex_state = 21}, + [1152] = {.lex_state = 178, .external_lex_state = 23}, + [1153] = {.lex_state = 436, .external_lex_state = 21}, + [1154] = {.lex_state = 432, .external_lex_state = 8}, + [1155] = {.lex_state = 436, .external_lex_state = 21}, + [1156] = {.lex_state = 436, .external_lex_state = 23}, + [1157] = {.lex_state = 436, .external_lex_state = 21}, + [1158] = {.lex_state = 178, .external_lex_state = 23}, + [1159] = {.lex_state = 436, .external_lex_state = 23}, + [1160] = {.lex_state = 178, .external_lex_state = 23}, + [1161] = {.lex_state = 436, .external_lex_state = 21}, + [1162] = {.lex_state = 436, .external_lex_state = 21}, + [1163] = {.lex_state = 436, .external_lex_state = 21}, + [1164] = {.lex_state = 436, .external_lex_state = 21}, + [1165] = {.lex_state = 436, .external_lex_state = 23}, + [1166] = {.lex_state = 437, .external_lex_state = 21}, + [1167] = {.lex_state = 436, .external_lex_state = 21}, + [1168] = {.lex_state = 436, .external_lex_state = 21}, + [1169] = {.lex_state = 437, .external_lex_state = 21}, + [1170] = {.lex_state = 436, .external_lex_state = 21}, + [1171] = {.lex_state = 436, .external_lex_state = 21}, + [1172] = {.lex_state = 180, .external_lex_state = 21}, + [1173] = {.lex_state = 436, .external_lex_state = 21}, + [1174] = {.lex_state = 436, .external_lex_state = 21}, + [1175] = {.lex_state = 436, .external_lex_state = 21}, + [1176] = {.lex_state = 436, .external_lex_state = 21}, + [1177] = {.lex_state = 178, .external_lex_state = 23}, + [1178] = {.lex_state = 180, .external_lex_state = 23}, + [1179] = {.lex_state = 180, .external_lex_state = 23}, + [1180] = {.lex_state = 436, .external_lex_state = 21}, + [1181] = {.lex_state = 436, .external_lex_state = 21}, + [1182] = {.lex_state = 436, .external_lex_state = 21}, + [1183] = {.lex_state = 155, .external_lex_state = 8}, + [1184] = {.lex_state = 166, .external_lex_state = 11}, + [1185] = {.lex_state = 436, .external_lex_state = 23}, + [1186] = {.lex_state = 432, .external_lex_state = 8}, + [1187] = {.lex_state = 436, .external_lex_state = 21}, + [1188] = {.lex_state = 436, .external_lex_state = 21}, + [1189] = {.lex_state = 436, .external_lex_state = 21}, + [1190] = {.lex_state = 180, .external_lex_state = 21}, + [1191] = {.lex_state = 178, .external_lex_state = 23}, + [1192] = {.lex_state = 147, .external_lex_state = 11}, + [1193] = {.lex_state = 147, .external_lex_state = 11}, + [1194] = {.lex_state = 135, .external_lex_state = 11}, + [1195] = {.lex_state = 436, .external_lex_state = 21}, + [1196] = {.lex_state = 436, .external_lex_state = 21}, + [1197] = {.lex_state = 436, .external_lex_state = 21}, + [1198] = {.lex_state = 180, .external_lex_state = 21}, + [1199] = {.lex_state = 135, .external_lex_state = 11}, + [1200] = {.lex_state = 155, .external_lex_state = 8}, + [1201] = {.lex_state = 180, .external_lex_state = 21}, + [1202] = {.lex_state = 437, .external_lex_state = 21}, + [1203] = {.lex_state = 437, .external_lex_state = 21}, + [1204] = {.lex_state = 166, .external_lex_state = 11}, + [1205] = {.lex_state = 437, .external_lex_state = 21}, + [1206] = {.lex_state = 437, .external_lex_state = 21}, + [1207] = {.lex_state = 437, .external_lex_state = 21}, + [1208] = {.lex_state = 437, .external_lex_state = 21}, + [1209] = {.lex_state = 436, .external_lex_state = 23}, + [1210] = {.lex_state = 437, .external_lex_state = 21}, + [1211] = {.lex_state = 437, .external_lex_state = 21}, + [1212] = {.lex_state = 437, .external_lex_state = 23}, + [1213] = {.lex_state = 437, .external_lex_state = 23}, + [1214] = {.lex_state = 436, .external_lex_state = 23}, + [1215] = {.lex_state = 437, .external_lex_state = 21}, + [1216] = {.lex_state = 164, .external_lex_state = 11}, + [1217] = {.lex_state = 437, .external_lex_state = 21}, + [1218] = {.lex_state = 437, .external_lex_state = 21}, + [1219] = {.lex_state = 436, .external_lex_state = 23}, + [1220] = {.lex_state = 436, .external_lex_state = 23}, + [1221] = {.lex_state = 437, .external_lex_state = 21}, + [1222] = {.lex_state = 147, .external_lex_state = 11}, + [1223] = {.lex_state = 436, .external_lex_state = 23}, + [1224] = {.lex_state = 436, .external_lex_state = 23}, + [1225] = {.lex_state = 437, .external_lex_state = 21}, + [1226] = {.lex_state = 147, .external_lex_state = 12}, + [1227] = {.lex_state = 437, .external_lex_state = 21}, + [1228] = {.lex_state = 437, .external_lex_state = 21}, + [1229] = {.lex_state = 436, .external_lex_state = 23}, + [1230] = {.lex_state = 436, .external_lex_state = 23}, + [1231] = {.lex_state = 436, .external_lex_state = 23}, + [1232] = {.lex_state = 436, .external_lex_state = 23}, + [1233] = {.lex_state = 437, .external_lex_state = 21}, + [1234] = {.lex_state = 437, .external_lex_state = 21}, + [1235] = {.lex_state = 436, .external_lex_state = 23}, + [1236] = {.lex_state = 436, .external_lex_state = 23}, + [1237] = {.lex_state = 437, .external_lex_state = 21}, + [1238] = {.lex_state = 437, .external_lex_state = 21}, + [1239] = {.lex_state = 436, .external_lex_state = 23}, + [1240] = {.lex_state = 166, .external_lex_state = 11}, + [1241] = {.lex_state = 437, .external_lex_state = 21}, + [1242] = {.lex_state = 436, .external_lex_state = 23}, + [1243] = {.lex_state = 437, .external_lex_state = 21}, + [1244] = {.lex_state = 437, .external_lex_state = 21}, + [1245] = {.lex_state = 437, .external_lex_state = 21}, + [1246] = {.lex_state = 436, .external_lex_state = 23}, + [1247] = {.lex_state = 437, .external_lex_state = 21}, + [1248] = {.lex_state = 164, .external_lex_state = 12}, + [1249] = {.lex_state = 437, .external_lex_state = 21}, + [1250] = {.lex_state = 436, .external_lex_state = 23}, + [1251] = {.lex_state = 436, .external_lex_state = 23}, + [1252] = {.lex_state = 436, .external_lex_state = 23}, + [1253] = {.lex_state = 436, .external_lex_state = 23}, + [1254] = {.lex_state = 164, .external_lex_state = 12}, + [1255] = {.lex_state = 147, .external_lex_state = 11}, + [1256] = {.lex_state = 437, .external_lex_state = 21}, + [1257] = {.lex_state = 437, .external_lex_state = 21}, + [1258] = {.lex_state = 147, .external_lex_state = 11}, + [1259] = {.lex_state = 436, .external_lex_state = 23}, + [1260] = {.lex_state = 436, .external_lex_state = 23}, + [1261] = {.lex_state = 164, .external_lex_state = 11}, + [1262] = {.lex_state = 164, .external_lex_state = 11}, + [1263] = {.lex_state = 436, .external_lex_state = 23}, + [1264] = {.lex_state = 436, .external_lex_state = 23}, + [1265] = {.lex_state = 432, .external_lex_state = 8}, + [1266] = {.lex_state = 436, .external_lex_state = 23}, + [1267] = {.lex_state = 436, .external_lex_state = 23}, + [1268] = {.lex_state = 431, .external_lex_state = 11}, + [1269] = {.lex_state = 180, .external_lex_state = 23}, + [1270] = {.lex_state = 437, .external_lex_state = 21}, + [1271] = {.lex_state = 180, .external_lex_state = 23}, + [1272] = {.lex_state = 437, .external_lex_state = 21}, + [1273] = {.lex_state = 180, .external_lex_state = 23}, + [1274] = {.lex_state = 135, .external_lex_state = 12}, + [1275] = {.lex_state = 432, .external_lex_state = 8}, + [1276] = {.lex_state = 437, .external_lex_state = 21}, + [1277] = {.lex_state = 180, .external_lex_state = 23}, + [1278] = {.lex_state = 432, .external_lex_state = 8}, + [1279] = {.lex_state = 180, .external_lex_state = 23}, + [1280] = {.lex_state = 437, .external_lex_state = 21}, + [1281] = {.lex_state = 437, .external_lex_state = 23}, + [1282] = {.lex_state = 432, .external_lex_state = 8}, + [1283] = {.lex_state = 172, .external_lex_state = 3}, + [1284] = {.lex_state = 437, .external_lex_state = 21}, + [1285] = {.lex_state = 180, .external_lex_state = 23}, + [1286] = {.lex_state = 180, .external_lex_state = 23}, + [1287] = {.lex_state = 437, .external_lex_state = 21}, + [1288] = {.lex_state = 437, .external_lex_state = 21}, + [1289] = {.lex_state = 431, .external_lex_state = 11}, + [1290] = {.lex_state = 180, .external_lex_state = 23}, + [1291] = {.lex_state = 164, .external_lex_state = 11}, + [1292] = {.lex_state = 437, .external_lex_state = 21}, + [1293] = {.lex_state = 437, .external_lex_state = 21}, + [1294] = {.lex_state = 180, .external_lex_state = 23}, + [1295] = {.lex_state = 431, .external_lex_state = 11}, + [1296] = {.lex_state = 437, .external_lex_state = 21}, + [1297] = {.lex_state = 437, .external_lex_state = 21}, + [1298] = {.lex_state = 437, .external_lex_state = 21}, + [1299] = {.lex_state = 164, .external_lex_state = 11}, + [1300] = {.lex_state = 437, .external_lex_state = 21}, + [1301] = {.lex_state = 180, .external_lex_state = 23}, + [1302] = {.lex_state = 437, .external_lex_state = 21}, + [1303] = {.lex_state = 437, .external_lex_state = 23}, + [1304] = {.lex_state = 436, .external_lex_state = 23}, + [1305] = {.lex_state = 436, .external_lex_state = 23}, + [1306] = {.lex_state = 436, .external_lex_state = 23}, + [1307] = {.lex_state = 436, .external_lex_state = 23}, + [1308] = {.lex_state = 436, .external_lex_state = 23}, + [1309] = {.lex_state = 436, .external_lex_state = 23}, + [1310] = {.lex_state = 437, .external_lex_state = 23}, + [1311] = {.lex_state = 437, .external_lex_state = 23}, + [1312] = {.lex_state = 436, .external_lex_state = 23}, + [1313] = {.lex_state = 436, .external_lex_state = 23}, + [1314] = {.lex_state = 436, .external_lex_state = 23}, + [1315] = {.lex_state = 180, .external_lex_state = 23}, + [1316] = {.lex_state = 436, .external_lex_state = 23}, + [1317] = {.lex_state = 436, .external_lex_state = 23}, + [1318] = {.lex_state = 436, .external_lex_state = 23}, + [1319] = {.lex_state = 436, .external_lex_state = 23}, + [1320] = {.lex_state = 436, .external_lex_state = 23}, + [1321] = {.lex_state = 437, .external_lex_state = 21}, + [1322] = {.lex_state = 240, .external_lex_state = 13}, + [1323] = {.lex_state = 436, .external_lex_state = 23}, + [1324] = {.lex_state = 240, .external_lex_state = 13}, + [1325] = {.lex_state = 436, .external_lex_state = 23}, + [1326] = {.lex_state = 436, .external_lex_state = 23}, + [1327] = {.lex_state = 436, .external_lex_state = 23}, + [1328] = {.lex_state = 240, .external_lex_state = 13}, + [1329] = {.lex_state = 180, .external_lex_state = 23}, + [1330] = {.lex_state = 437, .external_lex_state = 21}, + [1331] = {.lex_state = 436, .external_lex_state = 23}, + [1332] = {.lex_state = 437, .external_lex_state = 21}, + [1333] = {.lex_state = 436, .external_lex_state = 23}, + [1334] = {.lex_state = 437, .external_lex_state = 23}, + [1335] = {.lex_state = 180, .external_lex_state = 23}, + [1336] = {.lex_state = 431, .external_lex_state = 11}, + [1337] = {.lex_state = 437, .external_lex_state = 23}, + [1338] = {.lex_state = 180, .external_lex_state = 23}, + [1339] = {.lex_state = 437, .external_lex_state = 23}, + [1340] = {.lex_state = 437, .external_lex_state = 21}, + [1341] = {.lex_state = 432, .external_lex_state = 8}, + [1342] = {.lex_state = 432, .external_lex_state = 8}, + [1343] = {.lex_state = 180, .external_lex_state = 23}, + [1344] = {.lex_state = 437, .external_lex_state = 21}, + [1345] = {.lex_state = 166, .external_lex_state = 11}, + [1346] = {.lex_state = 180, .external_lex_state = 23}, + [1347] = {.lex_state = 164, .external_lex_state = 11}, + [1348] = {.lex_state = 431, .external_lex_state = 11}, + [1349] = {.lex_state = 180, .external_lex_state = 23}, + [1350] = {.lex_state = 147, .external_lex_state = 12}, + [1351] = {.lex_state = 180, .external_lex_state = 23}, + [1352] = {.lex_state = 432, .external_lex_state = 8}, + [1353] = {.lex_state = 437, .external_lex_state = 23}, + [1354] = {.lex_state = 437, .external_lex_state = 23}, + [1355] = {.lex_state = 437, .external_lex_state = 21}, + [1356] = {.lex_state = 437, .external_lex_state = 23}, + [1357] = {.lex_state = 147, .external_lex_state = 11}, + [1358] = {.lex_state = 432, .external_lex_state = 8}, + [1359] = {.lex_state = 180, .external_lex_state = 23}, + [1360] = {.lex_state = 437, .external_lex_state = 21}, + [1361] = {.lex_state = 431, .external_lex_state = 11}, + [1362] = {.lex_state = 180, .external_lex_state = 23}, + [1363] = {.lex_state = 437, .external_lex_state = 23}, + [1364] = {.lex_state = 437, .external_lex_state = 23}, + [1365] = {.lex_state = 166, .external_lex_state = 11}, + [1366] = {.lex_state = 172, .external_lex_state = 3}, + [1367] = {.lex_state = 431, .external_lex_state = 11}, + [1368] = {.lex_state = 166, .external_lex_state = 11}, + [1369] = {.lex_state = 172, .external_lex_state = 3}, + [1370] = {.lex_state = 434, .external_lex_state = 11}, + [1371] = {.lex_state = 431, .external_lex_state = 11}, + [1372] = {.lex_state = 431, .external_lex_state = 12}, + [1373] = {.lex_state = 434, .external_lex_state = 11}, + [1374] = {.lex_state = 431, .external_lex_state = 11}, + [1375] = {.lex_state = 437, .external_lex_state = 23}, + [1376] = {.lex_state = 431, .external_lex_state = 11}, + [1377] = {.lex_state = 172, .external_lex_state = 3}, + [1378] = {.lex_state = 172, .external_lex_state = 3}, + [1379] = {.lex_state = 437, .external_lex_state = 23}, + [1380] = {.lex_state = 218, .external_lex_state = 24}, + [1381] = {.lex_state = 437, .external_lex_state = 23}, + [1382] = {.lex_state = 172, .external_lex_state = 3}, + [1383] = {.lex_state = 437, .external_lex_state = 23}, + [1384] = {.lex_state = 437, .external_lex_state = 23}, + [1385] = {.lex_state = 431, .external_lex_state = 11}, + [1386] = {.lex_state = 166, .external_lex_state = 12}, + [1387] = {.lex_state = 241, .external_lex_state = 25}, + [1388] = {.lex_state = 166, .external_lex_state = 11}, + [1389] = {.lex_state = 166, .external_lex_state = 11}, + [1390] = {.lex_state = 431, .external_lex_state = 12}, + [1391] = {.lex_state = 437, .external_lex_state = 23}, + [1392] = {.lex_state = 172, .external_lex_state = 3}, + [1393] = {.lex_state = 172, .external_lex_state = 3}, + [1394] = {.lex_state = 431, .external_lex_state = 11}, + [1395] = {.lex_state = 437, .external_lex_state = 23}, + [1396] = {.lex_state = 437, .external_lex_state = 23}, + [1397] = {.lex_state = 172, .external_lex_state = 3}, + [1398] = {.lex_state = 437, .external_lex_state = 23}, + [1399] = {.lex_state = 437, .external_lex_state = 23}, + [1400] = {.lex_state = 437, .external_lex_state = 23}, + [1401] = {.lex_state = 437, .external_lex_state = 23}, + [1402] = {.lex_state = 437, .external_lex_state = 23}, + [1403] = {.lex_state = 437, .external_lex_state = 23}, + [1404] = {.lex_state = 431, .external_lex_state = 12}, + [1405] = {.lex_state = 437, .external_lex_state = 23}, + [1406] = {.lex_state = 437, .external_lex_state = 23}, + [1407] = {.lex_state = 172, .external_lex_state = 3}, + [1408] = {.lex_state = 166, .external_lex_state = 11}, + [1409] = {.lex_state = 437, .external_lex_state = 23}, + [1410] = {.lex_state = 437, .external_lex_state = 23}, + [1411] = {.lex_state = 437, .external_lex_state = 23}, + [1412] = {.lex_state = 437, .external_lex_state = 23}, + [1413] = {.lex_state = 200, .external_lex_state = 10}, + [1414] = {.lex_state = 200, .external_lex_state = 10}, + [1415] = {.lex_state = 166, .external_lex_state = 12}, + [1416] = {.lex_state = 217, .external_lex_state = 24}, + [1417] = {.lex_state = 437, .external_lex_state = 23}, + [1418] = {.lex_state = 437, .external_lex_state = 23}, + [1419] = {.lex_state = 434, .external_lex_state = 11}, + [1420] = {.lex_state = 437, .external_lex_state = 23}, + [1421] = {.lex_state = 431, .external_lex_state = 12}, + [1422] = {.lex_state = 437, .external_lex_state = 23}, + [1423] = {.lex_state = 147, .external_lex_state = 12}, + [1424] = {.lex_state = 164, .external_lex_state = 12}, + [1425] = {.lex_state = 437, .external_lex_state = 23}, + [1426] = {.lex_state = 437, .external_lex_state = 23}, + [1427] = {.lex_state = 437, .external_lex_state = 23}, + [1428] = {.lex_state = 437, .external_lex_state = 23}, + [1429] = {.lex_state = 437, .external_lex_state = 23}, + [1430] = {.lex_state = 437, .external_lex_state = 23}, + [1431] = {.lex_state = 437, .external_lex_state = 23}, + [1432] = {.lex_state = 431, .external_lex_state = 11}, + [1433] = {.lex_state = 437, .external_lex_state = 23}, + [1434] = {.lex_state = 431, .external_lex_state = 11}, + [1435] = {.lex_state = 437, .external_lex_state = 23}, + [1436] = {.lex_state = 437, .external_lex_state = 23}, + [1437] = {.lex_state = 437, .external_lex_state = 23}, + [1438] = {.lex_state = 434, .external_lex_state = 11}, + [1439] = {.lex_state = 437, .external_lex_state = 23}, + [1440] = {.lex_state = 437, .external_lex_state = 23}, + [1441] = {.lex_state = 437, .external_lex_state = 23}, + [1442] = {.lex_state = 437, .external_lex_state = 23}, + [1443] = {.lex_state = 434, .external_lex_state = 11}, + [1444] = {.lex_state = 437, .external_lex_state = 23}, + [1445] = {.lex_state = 437, .external_lex_state = 23}, + [1446] = {.lex_state = 434, .external_lex_state = 11}, + [1447] = {.lex_state = 166, .external_lex_state = 11}, + [1448] = {.lex_state = 437, .external_lex_state = 23}, + [1449] = {.lex_state = 437, .external_lex_state = 23}, + [1450] = {.lex_state = 434, .external_lex_state = 11}, + [1451] = {.lex_state = 434, .external_lex_state = 11}, + [1452] = {.lex_state = 434, .external_lex_state = 11}, + [1453] = {.lex_state = 434, .external_lex_state = 11}, + [1454] = {.lex_state = 434, .external_lex_state = 11}, + [1455] = {.lex_state = 434, .external_lex_state = 11}, + [1456] = {.lex_state = 434, .external_lex_state = 11}, + [1457] = {.lex_state = 434, .external_lex_state = 11}, + [1458] = {.lex_state = 218, .external_lex_state = 24}, + [1459] = {.lex_state = 241, .external_lex_state = 25}, + [1460] = {.lex_state = 241, .external_lex_state = 25}, + [1461] = {.lex_state = 434, .external_lex_state = 11}, + [1462] = {.lex_state = 434, .external_lex_state = 11}, + [1463] = {.lex_state = 238, .external_lex_state = 2}, + [1464] = {.lex_state = 434, .external_lex_state = 11}, + [1465] = {.lex_state = 434, .external_lex_state = 12}, + [1466] = {.lex_state = 434, .external_lex_state = 11}, + [1467] = {.lex_state = 238, .external_lex_state = 2}, + [1468] = {.lex_state = 431, .external_lex_state = 12}, + [1469] = {.lex_state = 434, .external_lex_state = 11}, + [1470] = {.lex_state = 218, .external_lex_state = 24}, + [1471] = {.lex_state = 241, .external_lex_state = 25}, + [1472] = {.lex_state = 223, .external_lex_state = 17}, + [1473] = {.lex_state = 217, .external_lex_state = 24}, + [1474] = {.lex_state = 434, .external_lex_state = 11}, + [1475] = {.lex_state = 241, .external_lex_state = 25}, + [1476] = {.lex_state = 434, .external_lex_state = 11}, + [1477] = {.lex_state = 434, .external_lex_state = 11}, + [1478] = {.lex_state = 434, .external_lex_state = 11}, + [1479] = {.lex_state = 434, .external_lex_state = 11}, + [1480] = {.lex_state = 217, .external_lex_state = 24}, + [1481] = {.lex_state = 434, .external_lex_state = 11}, + [1482] = {.lex_state = 217, .external_lex_state = 24}, + [1483] = {.lex_state = 434, .external_lex_state = 11}, + [1484] = {.lex_state = 434, .external_lex_state = 11}, + [1485] = {.lex_state = 217, .external_lex_state = 24}, + [1486] = {.lex_state = 166, .external_lex_state = 12}, + [1487] = {.lex_state = 434, .external_lex_state = 11}, + [1488] = {.lex_state = 217, .external_lex_state = 24}, + [1489] = {.lex_state = 434, .external_lex_state = 11}, + [1490] = {.lex_state = 434, .external_lex_state = 11}, + [1491] = {.lex_state = 217, .external_lex_state = 24}, + [1492] = {.lex_state = 434, .external_lex_state = 11}, + [1493] = {.lex_state = 434, .external_lex_state = 11}, + [1494] = {.lex_state = 434, .external_lex_state = 11}, + [1495] = {.lex_state = 434, .external_lex_state = 11}, + [1496] = {.lex_state = 434, .external_lex_state = 12}, + [1497] = {.lex_state = 218, .external_lex_state = 24}, + [1498] = {.lex_state = 434, .external_lex_state = 11}, + [1499] = {.lex_state = 434, .external_lex_state = 11}, + [1500] = {.lex_state = 434, .external_lex_state = 11}, + [1501] = {.lex_state = 434, .external_lex_state = 11}, + [1502] = {.lex_state = 431, .external_lex_state = 12}, + [1503] = {.lex_state = 434, .external_lex_state = 11}, + [1504] = {.lex_state = 217, .external_lex_state = 24}, + [1505] = {.lex_state = 217, .external_lex_state = 24}, + [1506] = {.lex_state = 217, .external_lex_state = 24}, + [1507] = {.lex_state = 177, .external_lex_state = 21}, + [1508] = {.lex_state = 434, .external_lex_state = 11}, + [1509] = {.lex_state = 434, .external_lex_state = 11}, + [1510] = {.lex_state = 434, .external_lex_state = 11}, + [1511] = {.lex_state = 217, .external_lex_state = 24}, + [1512] = {.lex_state = 434, .external_lex_state = 11}, + [1513] = {.lex_state = 220, .external_lex_state = 24}, + [1514] = {.lex_state = 434, .external_lex_state = 11}, + [1515] = {.lex_state = 177, .external_lex_state = 21}, + [1516] = {.lex_state = 434, .external_lex_state = 11}, + [1517] = {.lex_state = 177, .external_lex_state = 21}, + [1518] = {.lex_state = 241, .external_lex_state = 25}, + [1519] = {.lex_state = 434, .external_lex_state = 12}, + [1520] = {.lex_state = 238, .external_lex_state = 2}, + [1521] = {.lex_state = 241, .external_lex_state = 25}, + [1522] = {.lex_state = 217, .external_lex_state = 24}, + [1523] = {.lex_state = 434, .external_lex_state = 11}, + [1524] = {.lex_state = 241, .external_lex_state = 25}, + [1525] = {.lex_state = 241, .external_lex_state = 25}, + [1526] = {.lex_state = 434, .external_lex_state = 11}, + [1527] = {.lex_state = 223, .external_lex_state = 17}, + [1528] = {.lex_state = 217, .external_lex_state = 24}, + [1529] = {.lex_state = 434, .external_lex_state = 11}, + [1530] = {.lex_state = 177, .external_lex_state = 21}, + [1531] = {.lex_state = 434, .external_lex_state = 11}, + [1532] = {.lex_state = 217, .external_lex_state = 24}, + [1533] = {.lex_state = 177, .external_lex_state = 21}, + [1534] = {.lex_state = 434, .external_lex_state = 11}, + [1535] = {.lex_state = 434, .external_lex_state = 11}, + [1536] = {.lex_state = 434, .external_lex_state = 11}, + [1537] = {.lex_state = 217, .external_lex_state = 24}, + [1538] = {.lex_state = 434, .external_lex_state = 11}, + [1539] = {.lex_state = 241, .external_lex_state = 25}, + [1540] = {.lex_state = 434, .external_lex_state = 11}, + [1541] = {.lex_state = 434, .external_lex_state = 11}, + [1542] = {.lex_state = 217, .external_lex_state = 24}, + [1543] = {.lex_state = 434, .external_lex_state = 11}, + [1544] = {.lex_state = 241, .external_lex_state = 25}, + [1545] = {.lex_state = 217, .external_lex_state = 24}, + [1546] = {.lex_state = 218, .external_lex_state = 24}, + [1547] = {.lex_state = 218, .external_lex_state = 24}, + [1548] = {.lex_state = 434, .external_lex_state = 11}, + [1549] = {.lex_state = 434, .external_lex_state = 11}, + [1550] = {.lex_state = 434, .external_lex_state = 11}, + [1551] = {.lex_state = 217, .external_lex_state = 24}, + [1552] = {.lex_state = 434, .external_lex_state = 11}, + [1553] = {.lex_state = 434, .external_lex_state = 11}, + [1554] = {.lex_state = 434, .external_lex_state = 11}, + [1555] = {.lex_state = 434, .external_lex_state = 12}, + [1556] = {.lex_state = 434, .external_lex_state = 11}, + [1557] = {.lex_state = 218, .external_lex_state = 24}, + [1558] = {.lex_state = 217, .external_lex_state = 24}, + [1559] = {.lex_state = 434, .external_lex_state = 11}, + [1560] = {.lex_state = 434, .external_lex_state = 11}, + [1561] = {.lex_state = 217, .external_lex_state = 24}, + [1562] = {.lex_state = 434, .external_lex_state = 11}, + [1563] = {.lex_state = 434, .external_lex_state = 11}, + [1564] = {.lex_state = 434, .external_lex_state = 11}, + [1565] = {.lex_state = 177, .external_lex_state = 21}, + [1566] = {.lex_state = 217, .external_lex_state = 24}, + [1567] = {.lex_state = 434, .external_lex_state = 11}, + [1568] = {.lex_state = 434, .external_lex_state = 11}, + [1569] = {.lex_state = 217, .external_lex_state = 24}, + [1570] = {.lex_state = 434, .external_lex_state = 11}, + [1571] = {.lex_state = 434, .external_lex_state = 11}, + [1572] = {.lex_state = 177, .external_lex_state = 21}, + [1573] = {.lex_state = 177, .external_lex_state = 23}, + [1574] = {.lex_state = 199, .external_lex_state = 26}, + [1575] = {.lex_state = 218, .external_lex_state = 24}, + [1576] = {.lex_state = 180, .external_lex_state = 21}, + [1577] = {.lex_state = 180, .external_lex_state = 21}, + [1578] = {.lex_state = 180, .external_lex_state = 21}, + [1579] = {.lex_state = 180, .external_lex_state = 21}, + [1580] = {.lex_state = 180, .external_lex_state = 21}, + [1581] = {.lex_state = 247, .external_lex_state = 27}, + [1582] = {.lex_state = 247, .external_lex_state = 27}, + [1583] = {.lex_state = 218, .external_lex_state = 24}, + [1584] = {.lex_state = 223, .external_lex_state = 17}, + [1585] = {.lex_state = 223, .external_lex_state = 17}, + [1586] = {.lex_state = 220, .external_lex_state = 19}, + [1587] = {.lex_state = 223, .external_lex_state = 17}, + [1588] = {.lex_state = 247, .external_lex_state = 27}, + [1589] = {.lex_state = 247, .external_lex_state = 27}, + [1590] = {.lex_state = 216, .external_lex_state = 19}, + [1591] = {.lex_state = 434, .external_lex_state = 12}, + [1592] = {.lex_state = 199, .external_lex_state = 26}, + [1593] = {.lex_state = 217, .external_lex_state = 24}, + [1594] = {.lex_state = 223, .external_lex_state = 17}, + [1595] = {.lex_state = 223, .external_lex_state = 17}, + [1596] = {.lex_state = 177, .external_lex_state = 23}, + [1597] = {.lex_state = 177, .external_lex_state = 23}, + [1598] = {.lex_state = 218, .external_lex_state = 19}, + [1599] = {.lex_state = 217, .external_lex_state = 24}, + [1600] = {.lex_state = 223, .external_lex_state = 17}, + [1601] = {.lex_state = 218, .external_lex_state = 24}, + [1602] = {.lex_state = 223, .external_lex_state = 17}, + [1603] = {.lex_state = 223, .external_lex_state = 17}, + [1604] = {.lex_state = 223, .external_lex_state = 17}, + [1605] = {.lex_state = 218, .external_lex_state = 24}, + [1606] = {.lex_state = 218, .external_lex_state = 24}, + [1607] = {.lex_state = 218, .external_lex_state = 24}, + [1608] = {.lex_state = 182, .external_lex_state = 28}, + [1609] = {.lex_state = 182, .external_lex_state = 28}, + [1610] = {.lex_state = 218, .external_lex_state = 24}, + [1611] = {.lex_state = 218, .external_lex_state = 24}, + [1612] = {.lex_state = 217, .external_lex_state = 24}, + [1613] = {.lex_state = 199, .external_lex_state = 26}, + [1614] = {.lex_state = 218, .external_lex_state = 24}, + [1615] = {.lex_state = 199, .external_lex_state = 26}, + [1616] = {.lex_state = 218, .external_lex_state = 24}, + [1617] = {.lex_state = 218, .external_lex_state = 24}, + [1618] = {.lex_state = 434, .external_lex_state = 11}, + [1619] = {.lex_state = 217, .external_lex_state = 24}, + [1620] = {.lex_state = 245, .external_lex_state = 29}, + [1621] = {.lex_state = 182, .external_lex_state = 28}, + [1622] = {.lex_state = 245, .external_lex_state = 29}, + [1623] = {.lex_state = 216, .external_lex_state = 19}, + [1624] = {.lex_state = 241, .external_lex_state = 25}, + [1625] = {.lex_state = 218, .external_lex_state = 24}, + [1626] = {.lex_state = 217, .external_lex_state = 24}, + [1627] = {.lex_state = 182, .external_lex_state = 28}, + [1628] = {.lex_state = 216, .external_lex_state = 19}, + [1629] = {.lex_state = 216, .external_lex_state = 19}, + [1630] = {.lex_state = 217, .external_lex_state = 24}, + [1631] = {.lex_state = 241, .external_lex_state = 25}, + [1632] = {.lex_state = 241, .external_lex_state = 25}, + [1633] = {.lex_state = 216, .external_lex_state = 19}, + [1634] = {.lex_state = 218, .external_lex_state = 24}, + [1635] = {.lex_state = 223, .external_lex_state = 17}, + [1636] = {.lex_state = 218, .external_lex_state = 19}, + [1637] = {.lex_state = 218, .external_lex_state = 24}, + [1638] = {.lex_state = 434, .external_lex_state = 12}, + [1639] = {.lex_state = 241, .external_lex_state = 25}, + [1640] = {.lex_state = 216, .external_lex_state = 19}, + [1641] = {.lex_state = 223, .external_lex_state = 17}, + [1642] = {.lex_state = 199, .external_lex_state = 26}, + [1643] = {.lex_state = 199, .external_lex_state = 26}, + [1644] = {.lex_state = 241, .external_lex_state = 25}, + [1645] = {.lex_state = 241, .external_lex_state = 25}, + [1646] = {.lex_state = 241, .external_lex_state = 25}, + [1647] = {.lex_state = 241, .external_lex_state = 25}, + [1648] = {.lex_state = 223, .external_lex_state = 17}, + [1649] = {.lex_state = 218, .external_lex_state = 24}, + [1650] = {.lex_state = 182, .external_lex_state = 28}, + [1651] = {.lex_state = 223, .external_lex_state = 17}, + [1652] = {.lex_state = 182, .external_lex_state = 28}, + [1653] = {.lex_state = 218, .external_lex_state = 24}, + [1654] = {.lex_state = 241, .external_lex_state = 25}, + [1655] = {.lex_state = 223, .external_lex_state = 17}, + [1656] = {.lex_state = 177, .external_lex_state = 23}, + [1657] = {.lex_state = 223, .external_lex_state = 17}, + [1658] = {.lex_state = 218, .external_lex_state = 24}, + [1659] = {.lex_state = 241, .external_lex_state = 25}, + [1660] = {.lex_state = 180, .external_lex_state = 21}, + [1661] = {.lex_state = 218, .external_lex_state = 24}, + [1662] = {.lex_state = 180, .external_lex_state = 21}, + [1663] = {.lex_state = 218, .external_lex_state = 24}, + [1664] = {.lex_state = 220, .external_lex_state = 19}, + [1665] = {.lex_state = 434, .external_lex_state = 11}, + [1666] = {.lex_state = 241, .external_lex_state = 25}, + [1667] = {.lex_state = 241, .external_lex_state = 25}, + [1668] = {.lex_state = 218, .external_lex_state = 24}, + [1669] = {.lex_state = 241, .external_lex_state = 25}, + [1670] = {.lex_state = 241, .external_lex_state = 25}, + [1671] = {.lex_state = 218, .external_lex_state = 24}, + [1672] = {.lex_state = 241, .external_lex_state = 25}, + [1673] = {.lex_state = 199, .external_lex_state = 26}, + [1674] = {.lex_state = 241, .external_lex_state = 25}, + [1675] = {.lex_state = 218, .external_lex_state = 24}, + [1676] = {.lex_state = 241, .external_lex_state = 25}, + [1677] = {.lex_state = 218, .external_lex_state = 24}, + [1678] = {.lex_state = 218, .external_lex_state = 24}, + [1679] = {.lex_state = 241, .external_lex_state = 25}, + [1680] = {.lex_state = 241, .external_lex_state = 25}, + [1681] = {.lex_state = 241, .external_lex_state = 25}, + [1682] = {.lex_state = 218, .external_lex_state = 24}, + [1683] = {.lex_state = 245, .external_lex_state = 29}, + [1684] = {.lex_state = 199, .external_lex_state = 26}, + [1685] = {.lex_state = 218, .external_lex_state = 24}, + [1686] = {.lex_state = 182, .external_lex_state = 28}, + [1687] = {.lex_state = 177, .external_lex_state = 23}, + [1688] = {.lex_state = 218, .external_lex_state = 24}, + [1689] = {.lex_state = 218, .external_lex_state = 24}, + [1690] = {.lex_state = 218, .external_lex_state = 24}, + [1691] = {.lex_state = 218, .external_lex_state = 24}, + [1692] = {.lex_state = 245, .external_lex_state = 29}, + [1693] = {.lex_state = 247, .external_lex_state = 27}, + [1694] = {.lex_state = 245, .external_lex_state = 29}, + [1695] = {.lex_state = 247, .external_lex_state = 27}, + [1696] = {.lex_state = 247, .external_lex_state = 27}, + [1697] = {.lex_state = 247, .external_lex_state = 27}, + [1698] = {.lex_state = 223, .external_lex_state = 17}, + [1699] = {.lex_state = 223, .external_lex_state = 17}, + [1700] = {.lex_state = 182, .external_lex_state = 28}, + [1701] = {.lex_state = 182, .external_lex_state = 28}, + [1702] = {.lex_state = 182, .external_lex_state = 28}, + [1703] = {.lex_state = 245, .external_lex_state = 29}, + [1704] = {.lex_state = 182, .external_lex_state = 28}, + [1705] = {.lex_state = 182, .external_lex_state = 28}, + [1706] = {.lex_state = 218, .external_lex_state = 24}, + [1707] = {.lex_state = 201, .external_lex_state = 2}, + [1708] = {.lex_state = 201, .external_lex_state = 2}, + [1709] = {.lex_state = 199, .external_lex_state = 30}, + [1710] = {.lex_state = 218, .external_lex_state = 24}, + [1711] = {.lex_state = 218, .external_lex_state = 24}, + [1712] = {.lex_state = 245, .external_lex_state = 29}, + [1713] = {.lex_state = 223, .external_lex_state = 17}, + [1714] = {.lex_state = 199, .external_lex_state = 30}, + [1715] = {.lex_state = 218, .external_lex_state = 19}, + [1716] = {.lex_state = 218, .external_lex_state = 19}, + [1717] = {.lex_state = 199, .external_lex_state = 30}, + [1718] = {.lex_state = 218, .external_lex_state = 19}, + [1719] = {.lex_state = 218, .external_lex_state = 19}, + [1720] = {.lex_state = 245, .external_lex_state = 29}, + [1721] = {.lex_state = 245, .external_lex_state = 29}, + [1722] = {.lex_state = 218, .external_lex_state = 19}, + [1723] = {.lex_state = 218, .external_lex_state = 19}, + [1724] = {.lex_state = 218, .external_lex_state = 19}, + [1725] = {.lex_state = 199, .external_lex_state = 30}, + [1726] = {.lex_state = 218, .external_lex_state = 19}, + [1727] = {.lex_state = 245, .external_lex_state = 29}, + [1728] = {.lex_state = 245, .external_lex_state = 29}, + [1729] = {.lex_state = 245, .external_lex_state = 31}, + [1730] = {.lex_state = 218, .external_lex_state = 19}, + [1731] = {.lex_state = 243, .external_lex_state = 14}, + [1732] = {.lex_state = 218, .external_lex_state = 19}, + [1733] = {.lex_state = 245, .external_lex_state = 29}, + [1734] = {.lex_state = 218, .external_lex_state = 19}, + [1735] = {.lex_state = 199, .external_lex_state = 30}, + [1736] = {.lex_state = 218, .external_lex_state = 19}, + [1737] = {.lex_state = 218, .external_lex_state = 19}, + [1738] = {.lex_state = 245, .external_lex_state = 29}, + [1739] = {.lex_state = 218, .external_lex_state = 19}, + [1740] = {.lex_state = 199, .external_lex_state = 30}, + [1741] = {.lex_state = 199, .external_lex_state = 30}, + [1742] = {.lex_state = 199, .external_lex_state = 30}, + [1743] = {.lex_state = 218, .external_lex_state = 19}, + [1744] = {.lex_state = 218, .external_lex_state = 19}, + [1745] = {.lex_state = 242, .external_lex_state = 27}, + [1746] = {.lex_state = 245, .external_lex_state = 29}, + [1747] = {.lex_state = 199, .external_lex_state = 30}, + [1748] = {.lex_state = 245, .external_lex_state = 29}, + [1749] = {.lex_state = 218, .external_lex_state = 19}, + [1750] = {.lex_state = 218, .external_lex_state = 19}, + [1751] = {.lex_state = 218, .external_lex_state = 19}, + [1752] = {.lex_state = 199, .external_lex_state = 30}, + [1753] = {.lex_state = 199, .external_lex_state = 30}, + [1754] = {.lex_state = 199, .external_lex_state = 30}, + [1755] = {.lex_state = 218, .external_lex_state = 19}, + [1756] = {.lex_state = 247, .external_lex_state = 32}, + [1757] = {.lex_state = 247, .external_lex_state = 27}, + [1758] = {.lex_state = 247, .external_lex_state = 32}, + [1759] = {.lex_state = 218, .external_lex_state = 19}, + [1760] = {.lex_state = 218, .external_lex_state = 19}, + [1761] = {.lex_state = 199, .external_lex_state = 30}, + [1762] = {.lex_state = 218, .external_lex_state = 19}, + [1763] = {.lex_state = 245, .external_lex_state = 31}, + [1764] = {.lex_state = 199, .external_lex_state = 30}, + [1765] = {.lex_state = 243, .external_lex_state = 14}, + [1766] = {.lex_state = 247, .external_lex_state = 27}, + [1767] = {.lex_state = 247, .external_lex_state = 27}, + [1768] = {.lex_state = 218, .external_lex_state = 19}, + [1769] = {.lex_state = 199, .external_lex_state = 30}, + [1770] = {.lex_state = 245, .external_lex_state = 31}, + [1771] = {.lex_state = 242, .external_lex_state = 27}, + [1772] = {.lex_state = 242, .external_lex_state = 27}, + [1773] = {.lex_state = 245, .external_lex_state = 31}, + [1774] = {.lex_state = 199, .external_lex_state = 30}, + [1775] = {.lex_state = 218, .external_lex_state = 19}, + [1776] = {.lex_state = 247, .external_lex_state = 27}, + [1777] = {.lex_state = 218, .external_lex_state = 19}, + [1778] = {.lex_state = 245, .external_lex_state = 31}, + [1779] = {.lex_state = 199, .external_lex_state = 30}, + [1780] = {.lex_state = 245, .external_lex_state = 31}, + [1781] = {.lex_state = 218, .external_lex_state = 19}, + [1782] = {.lex_state = 247, .external_lex_state = 27}, + [1783] = {.lex_state = 247, .external_lex_state = 32}, + [1784] = {.lex_state = 245, .external_lex_state = 29}, + [1785] = {.lex_state = 199, .external_lex_state = 30}, + [1786] = {.lex_state = 199, .external_lex_state = 30}, + [1787] = {.lex_state = 199, .external_lex_state = 30}, + [1788] = {.lex_state = 247, .external_lex_state = 32}, + [1789] = {.lex_state = 247, .external_lex_state = 27}, + [1790] = {.lex_state = 247, .external_lex_state = 32}, + [1791] = {.lex_state = 245, .external_lex_state = 29}, + [1792] = {.lex_state = 245, .external_lex_state = 29}, + [1793] = {.lex_state = 180, .external_lex_state = 23}, + [1794] = {.lex_state = 218, .external_lex_state = 19}, + [1795] = {.lex_state = 247, .external_lex_state = 27}, + [1796] = {.lex_state = 223, .external_lex_state = 17}, + [1797] = {.lex_state = 180, .external_lex_state = 23}, + [1798] = {.lex_state = 199, .external_lex_state = 30}, + [1799] = {.lex_state = 247, .external_lex_state = 32}, + [1800] = {.lex_state = 247, .external_lex_state = 27}, + [1801] = {.lex_state = 199, .external_lex_state = 30}, + [1802] = {.lex_state = 218, .external_lex_state = 19}, + [1803] = {.lex_state = 199, .external_lex_state = 30}, + [1804] = {.lex_state = 245, .external_lex_state = 29}, + [1805] = {.lex_state = 245, .external_lex_state = 29}, + [1806] = {.lex_state = 199, .external_lex_state = 30}, + [1807] = {.lex_state = 247, .external_lex_state = 27}, + [1808] = {.lex_state = 199, .external_lex_state = 30}, + [1809] = {.lex_state = 247, .external_lex_state = 27}, + [1810] = {.lex_state = 223, .external_lex_state = 17}, + [1811] = {.lex_state = 199, .external_lex_state = 30}, + [1812] = {.lex_state = 242, .external_lex_state = 27}, + [1813] = {.lex_state = 223, .external_lex_state = 17}, + [1814] = {.lex_state = 199, .external_lex_state = 30}, + [1815] = {.lex_state = 245, .external_lex_state = 29}, + [1816] = {.lex_state = 245, .external_lex_state = 29}, + [1817] = {.lex_state = 199, .external_lex_state = 30}, + [1818] = {.lex_state = 218, .external_lex_state = 19}, + [1819] = {.lex_state = 199, .external_lex_state = 30}, + [1820] = {.lex_state = 218, .external_lex_state = 19}, + [1821] = {.lex_state = 218, .external_lex_state = 19}, + [1822] = {.lex_state = 245, .external_lex_state = 29}, + [1823] = {.lex_state = 218, .external_lex_state = 19}, + [1824] = {.lex_state = 223, .external_lex_state = 22}, + [1825] = {.lex_state = 218, .external_lex_state = 19}, + [1826] = {.lex_state = 243, .external_lex_state = 14}, + [1827] = {.lex_state = 242, .external_lex_state = 27}, + [1828] = {.lex_state = 223, .external_lex_state = 17}, + [1829] = {.lex_state = 218, .external_lex_state = 19}, + [1830] = {.lex_state = 242, .external_lex_state = 27}, + [1831] = {.lex_state = 217, .external_lex_state = 19}, + [1832] = {.lex_state = 245, .external_lex_state = 29}, + [1833] = {.lex_state = 245, .external_lex_state = 29}, + [1834] = {.lex_state = 223, .external_lex_state = 17}, + [1835] = {.lex_state = 218, .external_lex_state = 19}, + [1836] = {.lex_state = 199, .external_lex_state = 30}, + [1837] = {.lex_state = 218, .external_lex_state = 19}, + [1838] = {.lex_state = 218, .external_lex_state = 19}, + [1839] = {.lex_state = 218, .external_lex_state = 19}, + [1840] = {.lex_state = 199, .external_lex_state = 30}, + [1841] = {.lex_state = 245, .external_lex_state = 29}, + [1842] = {.lex_state = 223, .external_lex_state = 17}, + [1843] = {.lex_state = 218, .external_lex_state = 19}, + [1844] = {.lex_state = 247, .external_lex_state = 27}, + [1845] = {.lex_state = 223, .external_lex_state = 17}, + [1846] = {.lex_state = 218, .external_lex_state = 19}, + [1847] = {.lex_state = 199, .external_lex_state = 30}, + [1848] = {.lex_state = 218, .external_lex_state = 19}, + [1849] = {.lex_state = 223, .external_lex_state = 17}, + [1850] = {.lex_state = 218, .external_lex_state = 19}, + [1851] = {.lex_state = 247, .external_lex_state = 27}, + [1852] = {.lex_state = 223, .external_lex_state = 17}, + [1853] = {.lex_state = 223, .external_lex_state = 17}, + [1854] = {.lex_state = 243, .external_lex_state = 14}, + [1855] = {.lex_state = 199, .external_lex_state = 30}, + [1856] = {.lex_state = 223, .external_lex_state = 17}, + [1857] = {.lex_state = 223, .external_lex_state = 17}, + [1858] = {.lex_state = 199, .external_lex_state = 30}, + [1859] = {.lex_state = 199, .external_lex_state = 30}, + [1860] = {.lex_state = 199, .external_lex_state = 30}, + [1861] = {.lex_state = 218, .external_lex_state = 19}, + [1862] = {.lex_state = 218, .external_lex_state = 19}, + [1863] = {.lex_state = 218, .external_lex_state = 19}, + [1864] = {.lex_state = 247, .external_lex_state = 27}, + [1865] = {.lex_state = 247, .external_lex_state = 27}, + [1866] = {.lex_state = 218, .external_lex_state = 19}, + [1867] = {.lex_state = 218, .external_lex_state = 19}, + [1868] = {.lex_state = 199, .external_lex_state = 30}, + [1869] = {.lex_state = 218, .external_lex_state = 19}, + [1870] = {.lex_state = 199, .external_lex_state = 30}, + [1871] = {.lex_state = 218, .external_lex_state = 19}, + [1872] = {.lex_state = 218, .external_lex_state = 19}, + [1873] = {.lex_state = 218, .external_lex_state = 19}, + [1874] = {.lex_state = 218, .external_lex_state = 19}, + [1875] = {.lex_state = 247, .external_lex_state = 27}, + [1876] = {.lex_state = 247, .external_lex_state = 27}, + [1877] = {.lex_state = 223, .external_lex_state = 17}, + [1878] = {.lex_state = 180, .external_lex_state = 23}, + [1879] = {.lex_state = 218, .external_lex_state = 19}, + [1880] = {.lex_state = 180, .external_lex_state = 23}, + [1881] = {.lex_state = 223, .external_lex_state = 17}, + [1882] = {.lex_state = 247, .external_lex_state = 27}, + [1883] = {.lex_state = 220, .external_lex_state = 19}, + [1884] = {.lex_state = 199, .external_lex_state = 30}, + [1885] = {.lex_state = 223, .external_lex_state = 17}, + [1886] = {.lex_state = 218, .external_lex_state = 19}, + [1887] = {.lex_state = 218, .external_lex_state = 19}, + [1888] = {.lex_state = 199, .external_lex_state = 30}, + [1889] = {.lex_state = 199, .external_lex_state = 30}, + [1890] = {.lex_state = 223, .external_lex_state = 17}, + [1891] = {.lex_state = 242, .external_lex_state = 27}, + [1892] = {.lex_state = 247, .external_lex_state = 27}, + [1893] = {.lex_state = 247, .external_lex_state = 27}, + [1894] = {.lex_state = 242, .external_lex_state = 27}, + [1895] = {.lex_state = 199, .external_lex_state = 30}, + [1896] = {.lex_state = 218, .external_lex_state = 19}, + [1897] = {.lex_state = 218, .external_lex_state = 19}, + [1898] = {.lex_state = 199, .external_lex_state = 30}, + [1899] = {.lex_state = 218, .external_lex_state = 19}, + [1900] = {.lex_state = 223, .external_lex_state = 17}, + [1901] = {.lex_state = 247, .external_lex_state = 27}, + [1902] = {.lex_state = 218, .external_lex_state = 19}, + [1903] = {.lex_state = 223, .external_lex_state = 17}, + [1904] = {.lex_state = 218, .external_lex_state = 19}, + [1905] = {.lex_state = 218, .external_lex_state = 19}, + [1906] = {.lex_state = 199, .external_lex_state = 30}, + [1907] = {.lex_state = 223, .external_lex_state = 17}, + [1908] = {.lex_state = 218, .external_lex_state = 19}, + [1909] = {.lex_state = 218, .external_lex_state = 19}, + [1910] = {.lex_state = 217, .external_lex_state = 19}, + [1911] = {.lex_state = 218, .external_lex_state = 19}, + [1912] = {.lex_state = 199, .external_lex_state = 30}, + [1913] = {.lex_state = 199, .external_lex_state = 30}, + [1914] = {.lex_state = 199, .external_lex_state = 30}, + [1915] = {.lex_state = 218, .external_lex_state = 19}, + [1916] = {.lex_state = 218, .external_lex_state = 19}, + [1917] = {.lex_state = 199, .external_lex_state = 30}, + [1918] = {.lex_state = 180, .external_lex_state = 23}, + [1919] = {.lex_state = 199, .external_lex_state = 30}, + [1920] = {.lex_state = 223, .external_lex_state = 17}, + [1921] = {.lex_state = 218, .external_lex_state = 19}, + [1922] = {.lex_state = 199, .external_lex_state = 30}, + [1923] = {.lex_state = 223, .external_lex_state = 22}, + [1924] = {.lex_state = 218, .external_lex_state = 19}, + [1925] = {.lex_state = 218, .external_lex_state = 19}, + [1926] = {.lex_state = 218, .external_lex_state = 24}, + [1927] = {.lex_state = 218, .external_lex_state = 19}, + [1928] = {.lex_state = 245, .external_lex_state = 31}, + [1929] = {.lex_state = 223, .external_lex_state = 17}, + [1930] = {.lex_state = 247, .external_lex_state = 32}, + [1931] = {.lex_state = 242, .external_lex_state = 32}, + [1932] = {.lex_state = 242, .external_lex_state = 32}, + [1933] = {.lex_state = 245, .external_lex_state = 31}, + [1934] = {.lex_state = 245, .external_lex_state = 31}, + [1935] = {.lex_state = 242, .external_lex_state = 32}, + [1936] = {.lex_state = 247, .external_lex_state = 32}, + [1937] = {.lex_state = 247, .external_lex_state = 32}, + [1938] = {.lex_state = 245, .external_lex_state = 31}, + [1939] = {.lex_state = 245, .external_lex_state = 31}, + [1940] = {.lex_state = 247, .external_lex_state = 32}, + [1941] = {.lex_state = 218, .external_lex_state = 19}, + [1942] = {.lex_state = 242, .external_lex_state = 27}, + [1943] = {.lex_state = 245, .external_lex_state = 31}, + [1944] = {.lex_state = 245, .external_lex_state = 31}, + [1945] = {.lex_state = 218, .external_lex_state = 19}, + [1946] = {.lex_state = 245, .external_lex_state = 31}, + [1947] = {.lex_state = 245, .external_lex_state = 31}, + [1948] = {.lex_state = 218, .external_lex_state = 19}, + [1949] = {.lex_state = 242, .external_lex_state = 27}, + [1950] = {.lex_state = 242, .external_lex_state = 27}, + [1951] = {.lex_state = 242, .external_lex_state = 32}, + [1952] = {.lex_state = 242, .external_lex_state = 27}, + [1953] = {.lex_state = 245, .external_lex_state = 31}, + [1954] = {.lex_state = 218, .external_lex_state = 19}, + [1955] = {.lex_state = 242, .external_lex_state = 27}, + [1956] = {.lex_state = 242, .external_lex_state = 27}, + [1957] = {.lex_state = 245, .external_lex_state = 31}, + [1958] = {.lex_state = 242, .external_lex_state = 27}, + [1959] = {.lex_state = 242, .external_lex_state = 27}, + [1960] = {.lex_state = 247, .external_lex_state = 32}, + [1961] = {.lex_state = 217, .external_lex_state = 24}, + [1962] = {.lex_state = 217, .external_lex_state = 24}, + [1963] = {.lex_state = 247, .external_lex_state = 32}, + [1964] = {.lex_state = 247, .external_lex_state = 32}, + [1965] = {.lex_state = 217, .external_lex_state = 24}, + [1966] = {.lex_state = 242, .external_lex_state = 27}, + [1967] = {.lex_state = 223, .external_lex_state = 17}, + [1968] = {.lex_state = 244, .external_lex_state = 15}, + [1969] = {.lex_state = 242, .external_lex_state = 27}, + [1970] = {.lex_state = 243, .external_lex_state = 14}, + [1971] = {.lex_state = 245, .external_lex_state = 31}, + [1972] = {.lex_state = 221, .external_lex_state = 19}, + [1973] = {.lex_state = 223, .external_lex_state = 17}, + [1974] = {.lex_state = 223, .external_lex_state = 17}, + [1975] = {.lex_state = 245, .external_lex_state = 31}, + [1976] = {.lex_state = 246, .external_lex_state = 13}, + [1977] = {.lex_state = 245, .external_lex_state = 31}, + [1978] = {.lex_state = 223, .external_lex_state = 17}, + [1979] = {.lex_state = 242, .external_lex_state = 27}, + [1980] = {.lex_state = 142, .external_lex_state = 33}, + [1981] = {.lex_state = 245, .external_lex_state = 31}, + [1982] = {.lex_state = 223, .external_lex_state = 17}, + [1983] = {.lex_state = 244, .external_lex_state = 15}, + [1984] = {.lex_state = 242, .external_lex_state = 27}, + [1985] = {.lex_state = 218, .external_lex_state = 19}, + [1986] = {.lex_state = 246, .external_lex_state = 13}, + [1987] = {.lex_state = 245, .external_lex_state = 31}, + [1988] = {.lex_state = 242, .external_lex_state = 27}, + [1989] = {.lex_state = 218, .external_lex_state = 19}, + [1990] = {.lex_state = 218, .external_lex_state = 19}, + [1991] = {.lex_state = 243, .external_lex_state = 14}, + [1992] = {.lex_state = 245, .external_lex_state = 31}, + [1993] = {.lex_state = 246, .external_lex_state = 13}, + [1994] = {.lex_state = 242, .external_lex_state = 27}, + [1995] = {.lex_state = 247, .external_lex_state = 32}, + [1996] = {.lex_state = 247, .external_lex_state = 32}, + [1997] = {.lex_state = 64, .external_lex_state = 34}, + [1998] = {.lex_state = 245, .external_lex_state = 31}, + [1999] = {.lex_state = 245, .external_lex_state = 31}, + [2000] = {.lex_state = 242, .external_lex_state = 27}, + [2001] = {.lex_state = 64, .external_lex_state = 34}, + [2002] = {.lex_state = 245, .external_lex_state = 31}, + [2003] = {.lex_state = 223, .external_lex_state = 17}, + [2004] = {.lex_state = 223, .external_lex_state = 17}, + [2005] = {.lex_state = 247, .external_lex_state = 32}, + [2006] = {.lex_state = 242, .external_lex_state = 27}, + [2007] = {.lex_state = 247, .external_lex_state = 32}, + [2008] = {.lex_state = 247, .external_lex_state = 32}, + [2009] = {.lex_state = 217, .external_lex_state = 19}, + [2010] = {.lex_state = 247, .external_lex_state = 32}, + [2011] = {.lex_state = 247, .external_lex_state = 32}, + [2012] = {.lex_state = 242, .external_lex_state = 27}, + [2013] = {.lex_state = 247, .external_lex_state = 32}, + [2014] = {.lex_state = 243, .external_lex_state = 14}, + [2015] = {.lex_state = 242, .external_lex_state = 27}, + [2016] = {.lex_state = 247, .external_lex_state = 32}, + [2017] = {.lex_state = 242, .external_lex_state = 27}, + [2018] = {.lex_state = 247, .external_lex_state = 32}, + [2019] = {.lex_state = 223, .external_lex_state = 22}, + [2020] = {.lex_state = 242, .external_lex_state = 32}, + [2021] = {.lex_state = 242, .external_lex_state = 32}, + [2022] = {.lex_state = 247, .external_lex_state = 32}, + [2023] = {.lex_state = 217, .external_lex_state = 24}, + [2024] = {.lex_state = 247, .external_lex_state = 32}, + [2025] = {.lex_state = 252, .external_lex_state = 35}, + [2026] = {.lex_state = 223, .external_lex_state = 17}, + [2027] = {.lex_state = 252, .external_lex_state = 35}, + [2028] = {.lex_state = 223, .external_lex_state = 17}, + [2029] = {.lex_state = 243, .external_lex_state = 14}, + [2030] = {.lex_state = 252, .external_lex_state = 35}, + [2031] = {.lex_state = 247, .external_lex_state = 32}, + [2032] = {.lex_state = 242, .external_lex_state = 27}, + [2033] = {.lex_state = 252, .external_lex_state = 35}, + [2034] = {.lex_state = 223, .external_lex_state = 17}, + [2035] = {.lex_state = 246, .external_lex_state = 13}, + [2036] = {.lex_state = 217, .external_lex_state = 19}, + [2037] = {.lex_state = 218, .external_lex_state = 19}, + [2038] = {.lex_state = 218, .external_lex_state = 19}, + [2039] = {.lex_state = 242, .external_lex_state = 32}, + [2040] = {.lex_state = 217, .external_lex_state = 19}, + [2041] = {.lex_state = 218, .external_lex_state = 19}, + [2042] = {.lex_state = 217, .external_lex_state = 19}, + [2043] = {.lex_state = 242, .external_lex_state = 32}, + [2044] = {.lex_state = 252, .external_lex_state = 10}, + [2045] = {.lex_state = 218, .external_lex_state = 19}, + [2046] = {.lex_state = 252, .external_lex_state = 10}, + [2047] = {.lex_state = 242, .external_lex_state = 32}, + [2048] = {.lex_state = 242, .external_lex_state = 32}, + [2049] = {.lex_state = 242, .external_lex_state = 32}, + [2050] = {.lex_state = 217, .external_lex_state = 19}, + [2051] = {.lex_state = 217, .external_lex_state = 19}, + [2052] = {.lex_state = 217, .external_lex_state = 19}, + [2053] = {.lex_state = 240, .external_lex_state = 13}, + [2054] = {.lex_state = 218, .external_lex_state = 19}, + [2055] = {.lex_state = 252, .external_lex_state = 10}, + [2056] = {.lex_state = 217, .external_lex_state = 19}, + [2057] = {.lex_state = 218, .external_lex_state = 19}, + [2058] = {.lex_state = 217, .external_lex_state = 19}, + [2059] = {.lex_state = 217, .external_lex_state = 19}, + [2060] = {.lex_state = 218, .external_lex_state = 19}, + [2061] = {.lex_state = 217, .external_lex_state = 19}, + [2062] = {.lex_state = 218, .external_lex_state = 19}, + [2063] = {.lex_state = 217, .external_lex_state = 19}, + [2064] = {.lex_state = 217, .external_lex_state = 19}, + [2065] = {.lex_state = 223, .external_lex_state = 22}, + [2066] = {.lex_state = 217, .external_lex_state = 19}, + [2067] = {.lex_state = 218, .external_lex_state = 19}, + [2068] = {.lex_state = 252, .external_lex_state = 10}, + [2069] = {.lex_state = 244, .external_lex_state = 18}, + [2070] = {.lex_state = 242, .external_lex_state = 32}, + [2071] = {.lex_state = 223, .external_lex_state = 22}, + [2072] = {.lex_state = 217, .external_lex_state = 19}, + [2073] = {.lex_state = 223, .external_lex_state = 22}, + [2074] = {.lex_state = 223, .external_lex_state = 22}, + [2075] = {.lex_state = 217, .external_lex_state = 19}, + [2076] = {.lex_state = 246, .external_lex_state = 13}, + [2077] = {.lex_state = 242, .external_lex_state = 32}, + [2078] = {.lex_state = 252, .external_lex_state = 10}, + [2079] = {.lex_state = 218, .external_lex_state = 19}, + [2080] = {.lex_state = 217, .external_lex_state = 19}, + [2081] = {.lex_state = 246, .external_lex_state = 16}, + [2082] = {.lex_state = 242, .external_lex_state = 32}, + [2083] = {.lex_state = 242, .external_lex_state = 32}, + [2084] = {.lex_state = 242, .external_lex_state = 32}, + [2085] = {.lex_state = 217, .external_lex_state = 19}, + [2086] = {.lex_state = 217, .external_lex_state = 19}, + [2087] = {.lex_state = 217, .external_lex_state = 19}, + [2088] = {.lex_state = 217, .external_lex_state = 19}, + [2089] = {.lex_state = 64, .external_lex_state = 36}, + [2090] = {.lex_state = 64, .external_lex_state = 36}, + [2091] = {.lex_state = 217, .external_lex_state = 19}, + [2092] = {.lex_state = 218, .external_lex_state = 19}, + [2093] = {.lex_state = 223, .external_lex_state = 22}, + [2094] = {.lex_state = 244, .external_lex_state = 18}, + [2095] = {.lex_state = 223, .external_lex_state = 22}, + [2096] = {.lex_state = 223, .external_lex_state = 22}, + [2097] = {.lex_state = 223, .external_lex_state = 22}, + [2098] = {.lex_state = 217, .external_lex_state = 19}, + [2099] = {.lex_state = 217, .external_lex_state = 19}, + [2100] = {.lex_state = 217, .external_lex_state = 19}, + [2101] = {.lex_state = 242, .external_lex_state = 32}, + [2102] = {.lex_state = 218, .external_lex_state = 19}, + [2103] = {.lex_state = 242, .external_lex_state = 32}, + [2104] = {.lex_state = 217, .external_lex_state = 19}, + [2105] = {.lex_state = 244, .external_lex_state = 15}, + [2106] = {.lex_state = 218, .external_lex_state = 19}, + [2107] = {.lex_state = 218, .external_lex_state = 19}, + [2108] = {.lex_state = 242, .external_lex_state = 32}, + [2109] = {.lex_state = 145, .external_lex_state = 34}, + [2110] = {.lex_state = 217, .external_lex_state = 19}, + [2111] = {.lex_state = 223, .external_lex_state = 22}, + [2112] = {.lex_state = 218, .external_lex_state = 19}, + [2113] = {.lex_state = 217, .external_lex_state = 19}, + [2114] = {.lex_state = 246, .external_lex_state = 13}, + [2115] = {.lex_state = 252, .external_lex_state = 10}, + [2116] = {.lex_state = 217, .external_lex_state = 19}, + [2117] = {.lex_state = 217, .external_lex_state = 19}, + [2118] = {.lex_state = 246, .external_lex_state = 16}, + [2119] = {.lex_state = 217, .external_lex_state = 19}, + [2120] = {.lex_state = 218, .external_lex_state = 19}, + [2121] = {.lex_state = 145, .external_lex_state = 34}, + [2122] = {.lex_state = 217, .external_lex_state = 19}, + [2123] = {.lex_state = 244, .external_lex_state = 15}, + [2124] = {.lex_state = 246, .external_lex_state = 13}, + [2125] = {.lex_state = 217, .external_lex_state = 19}, + [2126] = {.lex_state = 242, .external_lex_state = 32}, + [2127] = {.lex_state = 242, .external_lex_state = 32}, + [2128] = {.lex_state = 218, .external_lex_state = 19}, + [2129] = {.lex_state = 217, .external_lex_state = 19}, + [2130] = {.lex_state = 217, .external_lex_state = 19}, + [2131] = {.lex_state = 217, .external_lex_state = 19}, + [2132] = {.lex_state = 217, .external_lex_state = 19}, + [2133] = {.lex_state = 217, .external_lex_state = 19}, + [2134] = {.lex_state = 240, .external_lex_state = 13}, + [2135] = {.lex_state = 218, .external_lex_state = 19}, + [2136] = {.lex_state = 242, .external_lex_state = 32}, + [2137] = {.lex_state = 217, .external_lex_state = 19}, + [2138] = {.lex_state = 242, .external_lex_state = 32}, + [2139] = {.lex_state = 218, .external_lex_state = 19}, + [2140] = {.lex_state = 223, .external_lex_state = 22}, + [2141] = {.lex_state = 242, .external_lex_state = 32}, + [2142] = {.lex_state = 240, .external_lex_state = 13}, + [2143] = {.lex_state = 223, .external_lex_state = 22}, + [2144] = {.lex_state = 217, .external_lex_state = 19}, + [2145] = {.lex_state = 217, .external_lex_state = 19}, + [2146] = {.lex_state = 242, .external_lex_state = 32}, + [2147] = {.lex_state = 242, .external_lex_state = 32}, + [2148] = {.lex_state = 250, .external_lex_state = 37}, + [2149] = {.lex_state = 218, .external_lex_state = 19}, + [2150] = {.lex_state = 240, .external_lex_state = 13}, + [2151] = {.lex_state = 149, .external_lex_state = 34}, + [2152] = {.lex_state = 250, .external_lex_state = 37}, + [2153] = {.lex_state = 250, .external_lex_state = 37}, + [2154] = {.lex_state = 240, .external_lex_state = 13}, + [2155] = {.lex_state = 254, .external_lex_state = 35}, + [2156] = {.lex_state = 240, .external_lex_state = 16}, + [2157] = {.lex_state = 250, .external_lex_state = 37}, + [2158] = {.lex_state = 250, .external_lex_state = 37}, + [2159] = {.lex_state = 430, .external_lex_state = 34}, + [2160] = {.lex_state = 254, .external_lex_state = 35}, + [2161] = {.lex_state = 157, .external_lex_state = 34}, + [2162] = {.lex_state = 145, .external_lex_state = 36}, + [2163] = {.lex_state = 218, .external_lex_state = 19}, + [2164] = {.lex_state = 430, .external_lex_state = 34}, + [2165] = {.lex_state = 250, .external_lex_state = 37}, + [2166] = {.lex_state = 149, .external_lex_state = 34}, + [2167] = {.lex_state = 145, .external_lex_state = 36}, + [2168] = {.lex_state = 250, .external_lex_state = 37}, + [2169] = {.lex_state = 240, .external_lex_state = 13}, + [2170] = {.lex_state = 240, .external_lex_state = 13}, + [2171] = {.lex_state = 250, .external_lex_state = 37}, + [2172] = {.lex_state = 246, .external_lex_state = 16}, + [2173] = {.lex_state = 254, .external_lex_state = 35}, + [2174] = {.lex_state = 250, .external_lex_state = 37}, + [2175] = {.lex_state = 240, .external_lex_state = 13}, + [2176] = {.lex_state = 244, .external_lex_state = 18}, + [2177] = {.lex_state = 240, .external_lex_state = 13}, + [2178] = {.lex_state = 240, .external_lex_state = 16}, + [2179] = {.lex_state = 254, .external_lex_state = 35}, + [2180] = {.lex_state = 254, .external_lex_state = 35}, + [2181] = {.lex_state = 218, .external_lex_state = 19}, + [2182] = {.lex_state = 250, .external_lex_state = 37}, + [2183] = {.lex_state = 250, .external_lex_state = 37}, + [2184] = {.lex_state = 250, .external_lex_state = 37}, + [2185] = {.lex_state = 254, .external_lex_state = 35}, + [2186] = {.lex_state = 157, .external_lex_state = 34}, + [2187] = {.lex_state = 218, .external_lex_state = 19}, + [2188] = {.lex_state = 254, .external_lex_state = 35}, + [2189] = {.lex_state = 254, .external_lex_state = 35}, + [2190] = {.lex_state = 240, .external_lex_state = 37}, + [2191] = {.lex_state = 240, .external_lex_state = 37}, + [2192] = {.lex_state = 183, .external_lex_state = 38}, + [2193] = {.lex_state = 240, .external_lex_state = 37}, + [2194] = {.lex_state = 254, .external_lex_state = 35}, + [2195] = {.lex_state = 240, .external_lex_state = 37}, + [2196] = {.lex_state = 183, .external_lex_state = 38}, + [2197] = {.lex_state = 254, .external_lex_state = 35}, + [2198] = {.lex_state = 430, .external_lex_state = 34}, + [2199] = {.lex_state = 430, .external_lex_state = 34}, + [2200] = {.lex_state = 254, .external_lex_state = 35}, + [2201] = {.lex_state = 72, .external_lex_state = 39}, + [2202] = {.lex_state = 240, .external_lex_state = 37}, + [2203] = {.lex_state = 254, .external_lex_state = 35}, + [2204] = {.lex_state = 240, .external_lex_state = 37}, + [2205] = {.lex_state = 254, .external_lex_state = 35}, + [2206] = {.lex_state = 254, .external_lex_state = 35}, + [2207] = {.lex_state = 240, .external_lex_state = 37}, + [2208] = {.lex_state = 240, .external_lex_state = 37}, + [2209] = {.lex_state = 254, .external_lex_state = 35}, + [2210] = {.lex_state = 240, .external_lex_state = 37}, + [2211] = {.lex_state = 253, .external_lex_state = 20}, + [2212] = {.lex_state = 430, .external_lex_state = 36}, + [2213] = {.lex_state = 240, .external_lex_state = 16}, + [2214] = {.lex_state = 240, .external_lex_state = 37}, + [2215] = {.lex_state = 240, .external_lex_state = 37}, + [2216] = {.lex_state = 430, .external_lex_state = 36}, + [2217] = {.lex_state = 254, .external_lex_state = 35}, + [2218] = {.lex_state = 157, .external_lex_state = 36}, + [2219] = {.lex_state = 157, .external_lex_state = 36}, + [2220] = {.lex_state = 240, .external_lex_state = 37}, + [2221] = {.lex_state = 149, .external_lex_state = 36}, + [2222] = {.lex_state = 183, .external_lex_state = 38}, + [2223] = {.lex_state = 240, .external_lex_state = 37}, + [2224] = {.lex_state = 254, .external_lex_state = 35}, + [2225] = {.lex_state = 254, .external_lex_state = 35}, + [2226] = {.lex_state = 149, .external_lex_state = 36}, + [2227] = {.lex_state = 240, .external_lex_state = 37}, + [2228] = {.lex_state = 254, .external_lex_state = 35}, + [2229] = {.lex_state = 254, .external_lex_state = 35}, + [2230] = {.lex_state = 240, .external_lex_state = 37}, + [2231] = {.lex_state = 254, .external_lex_state = 35}, + [2232] = {.lex_state = 240, .external_lex_state = 37}, + [2233] = {.lex_state = 183, .external_lex_state = 38}, + [2234] = {.lex_state = 254, .external_lex_state = 35}, + [2235] = {.lex_state = 254, .external_lex_state = 35}, + [2236] = {.lex_state = 240, .external_lex_state = 37}, + [2237] = {.lex_state = 240, .external_lex_state = 37}, + [2238] = {.lex_state = 254, .external_lex_state = 35}, + [2239] = {.lex_state = 254, .external_lex_state = 35}, + [2240] = {.lex_state = 254, .external_lex_state = 35}, + [2241] = {.lex_state = 72, .external_lex_state = 39}, + [2242] = {.lex_state = 248, .external_lex_state = 10}, + [2243] = {.lex_state = 255, .external_lex_state = 40}, + [2244] = {.lex_state = 72, .external_lex_state = 39}, + [2245] = {.lex_state = 72, .external_lex_state = 39}, + [2246] = {.lex_state = 72, .external_lex_state = 39}, + [2247] = {.lex_state = 72, .external_lex_state = 39}, + [2248] = {.lex_state = 430, .external_lex_state = 36}, + [2249] = {.lex_state = 72, .external_lex_state = 39}, + [2250] = {.lex_state = 430, .external_lex_state = 36}, + [2251] = {.lex_state = 255, .external_lex_state = 40}, + [2252] = {.lex_state = 255, .external_lex_state = 40}, + [2253] = {.lex_state = 255, .external_lex_state = 40}, + [2254] = {.lex_state = 72, .external_lex_state = 39}, + [2255] = {.lex_state = 72, .external_lex_state = 39}, + [2256] = {.lex_state = 72, .external_lex_state = 39}, + [2257] = {.lex_state = 72, .external_lex_state = 39}, + [2258] = {.lex_state = 72, .external_lex_state = 39}, + [2259] = {.lex_state = 72, .external_lex_state = 39}, + [2260] = {.lex_state = 72, .external_lex_state = 39}, + [2261] = {.lex_state = 255, .external_lex_state = 40}, + [2262] = {.lex_state = 253, .external_lex_state = 10}, + [2263] = {.lex_state = 255, .external_lex_state = 40}, + [2264] = {.lex_state = 255, .external_lex_state = 40}, + [2265] = {.lex_state = 248, .external_lex_state = 10}, + [2266] = {.lex_state = 255, .external_lex_state = 40}, + [2267] = {.lex_state = 255, .external_lex_state = 40}, + [2268] = {.lex_state = 248, .external_lex_state = 10}, + [2269] = {.lex_state = 72, .external_lex_state = 39}, + [2270] = {.lex_state = 72, .external_lex_state = 39}, + [2271] = {.lex_state = 255, .external_lex_state = 40}, + [2272] = {.lex_state = 255, .external_lex_state = 40}, + [2273] = {.lex_state = 255, .external_lex_state = 40}, + [2274] = {.lex_state = 72, .external_lex_state = 39}, + [2275] = {.lex_state = 72, .external_lex_state = 39}, + [2276] = {.lex_state = 240, .external_lex_state = 37}, + [2277] = {.lex_state = 248, .external_lex_state = 10}, + [2278] = {.lex_state = 72, .external_lex_state = 39}, + [2279] = {.lex_state = 255, .external_lex_state = 40}, + [2280] = {.lex_state = 173, .external_lex_state = 38}, + [2281] = {.lex_state = 173, .external_lex_state = 38}, + [2282] = {.lex_state = 255, .external_lex_state = 40}, + [2283] = {.lex_state = 255, .external_lex_state = 40}, + [2284] = {.lex_state = 255, .external_lex_state = 40}, + [2285] = {.lex_state = 255, .external_lex_state = 40}, + [2286] = {.lex_state = 255, .external_lex_state = 40}, + [2287] = {.lex_state = 255, .external_lex_state = 40}, + [2288] = {.lex_state = 255, .external_lex_state = 40}, + [2289] = {.lex_state = 248, .external_lex_state = 10}, + [2290] = {.lex_state = 255, .external_lex_state = 40}, + [2291] = {.lex_state = 253, .external_lex_state = 10}, + [2292] = {.lex_state = 72, .external_lex_state = 39}, + [2293] = {.lex_state = 255, .external_lex_state = 40}, + [2294] = {.lex_state = 255, .external_lex_state = 40}, + [2295] = {.lex_state = 238, .external_lex_state = 2}, + [2296] = {.lex_state = 224, .external_lex_state = 19}, + [2297] = {.lex_state = 253, .external_lex_state = 10}, + [2298] = {.lex_state = 253, .external_lex_state = 10}, + [2299] = {.lex_state = 253, .external_lex_state = 10}, + [2300] = {.lex_state = 225, .external_lex_state = 19}, + [2301] = {.lex_state = 224, .external_lex_state = 19}, + [2302] = {.lex_state = 240, .external_lex_state = 30}, + [2303] = {.lex_state = 225, .external_lex_state = 19}, + [2304] = {.lex_state = 225, .external_lex_state = 19}, + [2305] = {.lex_state = 225, .external_lex_state = 19}, + [2306] = {.lex_state = 240, .external_lex_state = 30}, + [2307] = {.lex_state = 240, .external_lex_state = 30}, + [2308] = {.lex_state = 240, .external_lex_state = 30}, + [2309] = {.lex_state = 205, .external_lex_state = 10}, + [2310] = {.lex_state = 166, .external_lex_state = 38}, + [2311] = {.lex_state = 224, .external_lex_state = 19}, + [2312] = {.lex_state = 240, .external_lex_state = 30}, + [2313] = {.lex_state = 240, .external_lex_state = 30}, + [2314] = {.lex_state = 205, .external_lex_state = 10}, + [2315] = {.lex_state = 225, .external_lex_state = 19}, + [2316] = {.lex_state = 224, .external_lex_state = 19}, + [2317] = {.lex_state = 240, .external_lex_state = 30}, + [2318] = {.lex_state = 160, .external_lex_state = 34}, + [2319] = {.lex_state = 224, .external_lex_state = 19}, + [2320] = {.lex_state = 224, .external_lex_state = 19}, + [2321] = {.lex_state = 240, .external_lex_state = 30}, + [2322] = {.lex_state = 225, .external_lex_state = 19}, + [2323] = {.lex_state = 240, .external_lex_state = 30}, + [2324] = {.lex_state = 240, .external_lex_state = 30}, + [2325] = {.lex_state = 240, .external_lex_state = 30}, + [2326] = {.lex_state = 160, .external_lex_state = 34}, + [2327] = {.lex_state = 240, .external_lex_state = 30}, + [2328] = {.lex_state = 240, .external_lex_state = 30}, + [2329] = {.lex_state = 240, .external_lex_state = 30}, + [2330] = {.lex_state = 240, .external_lex_state = 30}, + [2331] = {.lex_state = 225, .external_lex_state = 19}, + [2332] = {.lex_state = 224, .external_lex_state = 19}, + [2333] = {.lex_state = 225, .external_lex_state = 19}, + [2334] = {.lex_state = 240, .external_lex_state = 30}, + [2335] = {.lex_state = 240, .external_lex_state = 30}, + [2336] = {.lex_state = 239, .external_lex_state = 41}, + [2337] = {.lex_state = 225, .external_lex_state = 19}, + [2338] = {.lex_state = 225, .external_lex_state = 19}, + [2339] = {.lex_state = 224, .external_lex_state = 19}, + [2340] = {.lex_state = 225, .external_lex_state = 19}, + [2341] = {.lex_state = 240, .external_lex_state = 30}, + [2342] = {.lex_state = 224, .external_lex_state = 19}, + [2343] = {.lex_state = 224, .external_lex_state = 19}, + [2344] = {.lex_state = 224, .external_lex_state = 19}, + [2345] = {.lex_state = 239, .external_lex_state = 41}, + [2346] = {.lex_state = 224, .external_lex_state = 19}, + [2347] = {.lex_state = 240, .external_lex_state = 30}, + [2348] = {.lex_state = 240, .external_lex_state = 30}, + [2349] = {.lex_state = 240, .external_lex_state = 30}, + [2350] = {.lex_state = 240, .external_lex_state = 30}, + [2351] = {.lex_state = 225, .external_lex_state = 19}, + [2352] = {.lex_state = 224, .external_lex_state = 19}, + [2353] = {.lex_state = 224, .external_lex_state = 19}, + [2354] = {.lex_state = 224, .external_lex_state = 19}, + [2355] = {.lex_state = 225, .external_lex_state = 19}, + [2356] = {.lex_state = 240, .external_lex_state = 30}, + [2357] = {.lex_state = 240, .external_lex_state = 30}, + [2358] = {.lex_state = 224, .external_lex_state = 19}, + [2359] = {.lex_state = 224, .external_lex_state = 19}, + [2360] = {.lex_state = 225, .external_lex_state = 19}, + [2361] = {.lex_state = 225, .external_lex_state = 19}, + [2362] = {.lex_state = 225, .external_lex_state = 19}, + [2363] = {.lex_state = 239, .external_lex_state = 41}, + [2364] = {.lex_state = 240, .external_lex_state = 30}, + [2365] = {.lex_state = 240, .external_lex_state = 30}, + [2366] = {.lex_state = 225, .external_lex_state = 19}, + [2367] = {.lex_state = 225, .external_lex_state = 19}, + [2368] = {.lex_state = 239, .external_lex_state = 41}, + [2369] = {.lex_state = 225, .external_lex_state = 19}, + [2370] = {.lex_state = 240, .external_lex_state = 30}, + [2371] = {.lex_state = 224, .external_lex_state = 19}, + [2372] = {.lex_state = 240, .external_lex_state = 30}, + [2373] = {.lex_state = 224, .external_lex_state = 19}, + [2374] = {.lex_state = 240, .external_lex_state = 30}, + [2375] = {.lex_state = 240, .external_lex_state = 30}, + [2376] = {.lex_state = 239, .external_lex_state = 41}, + [2377] = {.lex_state = 239, .external_lex_state = 41}, + [2378] = {.lex_state = 166, .external_lex_state = 38}, + [2379] = {.lex_state = 240, .external_lex_state = 30}, + [2380] = {.lex_state = 166, .external_lex_state = 38}, + [2381] = {.lex_state = 224, .external_lex_state = 19}, + [2382] = {.lex_state = 239, .external_lex_state = 41}, + [2383] = {.lex_state = 240, .external_lex_state = 30}, + [2384] = {.lex_state = 239, .external_lex_state = 41}, + [2385] = {.lex_state = 225, .external_lex_state = 19}, + [2386] = {.lex_state = 240, .external_lex_state = 30}, + [2387] = {.lex_state = 226, .external_lex_state = 42}, + [2388] = {.lex_state = 175, .external_lex_state = 38}, + [2389] = {.lex_state = 239, .external_lex_state = 41}, + [2390] = {.lex_state = 175, .external_lex_state = 38}, + [2391] = {.lex_state = 240, .external_lex_state = 43}, + [2392] = {.lex_state = 240, .external_lex_state = 43}, + [2393] = {.lex_state = 240, .external_lex_state = 30}, + [2394] = {.lex_state = 240, .external_lex_state = 30}, + [2395] = {.lex_state = 239, .external_lex_state = 41}, + [2396] = {.lex_state = 240, .external_lex_state = 30}, + [2397] = {.lex_state = 240, .external_lex_state = 30}, + [2398] = {.lex_state = 240, .external_lex_state = 37}, + [2399] = {.lex_state = 239, .external_lex_state = 41}, + [2400] = {.lex_state = 240, .external_lex_state = 30}, + [2401] = {.lex_state = 226, .external_lex_state = 42}, + [2402] = {.lex_state = 240, .external_lex_state = 43}, + [2403] = {.lex_state = 240, .external_lex_state = 30}, + [2404] = {.lex_state = 240, .external_lex_state = 30}, + [2405] = {.lex_state = 240, .external_lex_state = 30}, + [2406] = {.lex_state = 239, .external_lex_state = 41}, + [2407] = {.lex_state = 240, .external_lex_state = 30}, + [2408] = {.lex_state = 240, .external_lex_state = 43}, + [2409] = {.lex_state = 239, .external_lex_state = 41}, + [2410] = {.lex_state = 240, .external_lex_state = 37}, + [2411] = {.lex_state = 240, .external_lex_state = 30}, + [2412] = {.lex_state = 239, .external_lex_state = 41}, + [2413] = {.lex_state = 239, .external_lex_state = 41}, + [2414] = {.lex_state = 239, .external_lex_state = 41}, + [2415] = {.lex_state = 240, .external_lex_state = 30}, + [2416] = {.lex_state = 240, .external_lex_state = 30}, + [2417] = {.lex_state = 240, .external_lex_state = 30}, + [2418] = {.lex_state = 240, .external_lex_state = 30}, + [2419] = {.lex_state = 240, .external_lex_state = 30}, + [2420] = {.lex_state = 239, .external_lex_state = 41}, + [2421] = {.lex_state = 240, .external_lex_state = 30}, + [2422] = {.lex_state = 240, .external_lex_state = 30}, + [2423] = {.lex_state = 240, .external_lex_state = 30}, + [2424] = {.lex_state = 240, .external_lex_state = 30}, + [2425] = {.lex_state = 239, .external_lex_state = 41}, + [2426] = {.lex_state = 240, .external_lex_state = 37}, + [2427] = {.lex_state = 240, .external_lex_state = 30}, + [2428] = {.lex_state = 239, .external_lex_state = 41}, + [2429] = {.lex_state = 240, .external_lex_state = 43}, + [2430] = {.lex_state = 240, .external_lex_state = 30}, + [2431] = {.lex_state = 240, .external_lex_state = 30}, + [2432] = {.lex_state = 240, .external_lex_state = 30}, + [2433] = {.lex_state = 240, .external_lex_state = 30}, + [2434] = {.lex_state = 240, .external_lex_state = 30}, + [2435] = {.lex_state = 240, .external_lex_state = 30}, + [2436] = {.lex_state = 240, .external_lex_state = 30}, + [2437] = {.lex_state = 240, .external_lex_state = 30}, + [2438] = {.lex_state = 239, .external_lex_state = 41}, + [2439] = {.lex_state = 240, .external_lex_state = 43}, + [2440] = {.lex_state = 239, .external_lex_state = 41}, + [2441] = {.lex_state = 240, .external_lex_state = 30}, + [2442] = {.lex_state = 240, .external_lex_state = 30}, + [2443] = {.lex_state = 239, .external_lex_state = 41}, + [2444] = {.lex_state = 239, .external_lex_state = 41}, + [2445] = {.lex_state = 206, .external_lex_state = 30}, + [2446] = {.lex_state = 239, .external_lex_state = 41}, + [2447] = {.lex_state = 240, .external_lex_state = 43}, + [2448] = {.lex_state = 239, .external_lex_state = 41}, + [2449] = {.lex_state = 240, .external_lex_state = 30}, + [2450] = {.lex_state = 206, .external_lex_state = 30}, + [2451] = {.lex_state = 240, .external_lex_state = 30}, + [2452] = {.lex_state = 240, .external_lex_state = 30}, + [2453] = {.lex_state = 240, .external_lex_state = 30}, + [2454] = {.lex_state = 239, .external_lex_state = 41}, + [2455] = {.lex_state = 239, .external_lex_state = 41}, + [2456] = {.lex_state = 160, .external_lex_state = 36}, + [2457] = {.lex_state = 160, .external_lex_state = 36}, + [2458] = {.lex_state = 227, .external_lex_state = 44}, + [2459] = {.lex_state = 239, .external_lex_state = 41}, + [2460] = {.lex_state = 227, .external_lex_state = 44}, + [2461] = {.lex_state = 240, .external_lex_state = 30}, + [2462] = {.lex_state = 248, .external_lex_state = 10}, + [2463] = {.lex_state = 240, .external_lex_state = 30}, + [2464] = {.lex_state = 248, .external_lex_state = 10}, + [2465] = {.lex_state = 240, .external_lex_state = 30}, + [2466] = {.lex_state = 240, .external_lex_state = 30}, + [2467] = {.lex_state = 240, .external_lex_state = 30}, + [2468] = {.lex_state = 240, .external_lex_state = 30}, + [2469] = {.lex_state = 240, .external_lex_state = 30}, + [2470] = {.lex_state = 240, .external_lex_state = 30}, + [2471] = {.lex_state = 240, .external_lex_state = 30}, + [2472] = {.lex_state = 240, .external_lex_state = 30}, + [2473] = {.lex_state = 73, .external_lex_state = 45}, + [2474] = {.lex_state = 240, .external_lex_state = 30}, + [2475] = {.lex_state = 240, .external_lex_state = 30}, + [2476] = {.lex_state = 240, .external_lex_state = 30}, + [2477] = {.lex_state = 240, .external_lex_state = 30}, + [2478] = {.lex_state = 256, .external_lex_state = 46}, + [2479] = {.lex_state = 256, .external_lex_state = 46}, + [2480] = {.lex_state = 227, .external_lex_state = 47}, + [2481] = {.lex_state = 227, .external_lex_state = 47}, + [2482] = {.lex_state = 240, .external_lex_state = 30}, + [2483] = {.lex_state = 238, .external_lex_state = 2}, + [2484] = {.lex_state = 240, .external_lex_state = 30}, + [2485] = {.lex_state = 240, .external_lex_state = 30}, + [2486] = {.lex_state = 240, .external_lex_state = 30}, + [2487] = {.lex_state = 240, .external_lex_state = 30}, + [2488] = {.lex_state = 73, .external_lex_state = 45}, + [2489] = {.lex_state = 240, .external_lex_state = 30}, + [2490] = {.lex_state = 240, .external_lex_state = 30}, + [2491] = {.lex_state = 240, .external_lex_state = 30}, + [2492] = {.lex_state = 256, .external_lex_state = 46}, + [2493] = {.lex_state = 256, .external_lex_state = 46}, + [2494] = {.lex_state = 240, .external_lex_state = 30}, + [2495] = {.lex_state = 238, .external_lex_state = 2}, + [2496] = {.lex_state = 240, .external_lex_state = 30}, + [2497] = {.lex_state = 256, .external_lex_state = 46}, + [2498] = {.lex_state = 240, .external_lex_state = 30}, + [2499] = {.lex_state = 256, .external_lex_state = 46}, + [2500] = {.lex_state = 256, .external_lex_state = 46}, + [2501] = {.lex_state = 256, .external_lex_state = 46}, + [2502] = {.lex_state = 238, .external_lex_state = 2}, + [2503] = {.lex_state = 240, .external_lex_state = 30}, + [2504] = {.lex_state = 73, .external_lex_state = 45}, + [2505] = {.lex_state = 240, .external_lex_state = 30}, + [2506] = {.lex_state = 255, .external_lex_state = 30}, + [2507] = {.lex_state = 255, .external_lex_state = 30}, + [2508] = {.lex_state = 255, .external_lex_state = 30}, + [2509] = {.lex_state = 255, .external_lex_state = 30}, + [2510] = {.lex_state = 238, .external_lex_state = 2}, + [2511] = {.lex_state = 255, .external_lex_state = 30}, + [2512] = {.lex_state = 255, .external_lex_state = 30}, + [2513] = {.lex_state = 255, .external_lex_state = 30}, + [2514] = {.lex_state = 255, .external_lex_state = 30}, + [2515] = {.lex_state = 255, .external_lex_state = 30}, + [2516] = {.lex_state = 73, .external_lex_state = 45}, + [2517] = {.lex_state = 255, .external_lex_state = 30}, + [2518] = {.lex_state = 255, .external_lex_state = 30}, + [2519] = {.lex_state = 255, .external_lex_state = 30}, + [2520] = {.lex_state = 255, .external_lex_state = 30}, + [2521] = {.lex_state = 255, .external_lex_state = 30}, + [2522] = {.lex_state = 255, .external_lex_state = 30}, + [2523] = {.lex_state = 255, .external_lex_state = 30}, + [2524] = {.lex_state = 255, .external_lex_state = 30}, + [2525] = {.lex_state = 255, .external_lex_state = 30}, + [2526] = {.lex_state = 255, .external_lex_state = 30}, + [2527] = {.lex_state = 255, .external_lex_state = 30}, + [2528] = {.lex_state = 255, .external_lex_state = 30}, + [2529] = {.lex_state = 255, .external_lex_state = 30}, + [2530] = {.lex_state = 238, .external_lex_state = 2}, + [2531] = {.lex_state = 255, .external_lex_state = 30}, + [2532] = {.lex_state = 255, .external_lex_state = 30}, + [2533] = {.lex_state = 255, .external_lex_state = 30}, + [2534] = {.lex_state = 255, .external_lex_state = 30}, + [2535] = {.lex_state = 255, .external_lex_state = 30}, + [2536] = {.lex_state = 255, .external_lex_state = 30}, + [2537] = {.lex_state = 255, .external_lex_state = 30}, + [2538] = {.lex_state = 255, .external_lex_state = 30}, + [2539] = {.lex_state = 255, .external_lex_state = 30}, + [2540] = {.lex_state = 255, .external_lex_state = 30}, + [2541] = {.lex_state = 255, .external_lex_state = 30}, + [2542] = {.lex_state = 255, .external_lex_state = 30}, + [2543] = {.lex_state = 255, .external_lex_state = 30}, + [2544] = {.lex_state = 73, .external_lex_state = 45}, + [2545] = {.lex_state = 255, .external_lex_state = 30}, + [2546] = {.lex_state = 255, .external_lex_state = 30}, + [2547] = {.lex_state = 255, .external_lex_state = 30}, + [2548] = {.lex_state = 255, .external_lex_state = 30}, + [2549] = {.lex_state = 255, .external_lex_state = 30}, + [2550] = {.lex_state = 255, .external_lex_state = 30}, + [2551] = {.lex_state = 255, .external_lex_state = 30}, + [2552] = {.lex_state = 255, .external_lex_state = 30}, + [2553] = {.lex_state = 255, .external_lex_state = 30}, + [2554] = {.lex_state = 255, .external_lex_state = 30}, + [2555] = {.lex_state = 255, .external_lex_state = 30}, + [2556] = {.lex_state = 255, .external_lex_state = 30}, + [2557] = {.lex_state = 255, .external_lex_state = 30}, + [2558] = {.lex_state = 255, .external_lex_state = 30}, + [2559] = {.lex_state = 255, .external_lex_state = 30}, + [2560] = {.lex_state = 255, .external_lex_state = 30}, + [2561] = {.lex_state = 255, .external_lex_state = 30}, + [2562] = {.lex_state = 255, .external_lex_state = 30}, + [2563] = {.lex_state = 255, .external_lex_state = 30}, + [2564] = {.lex_state = 255, .external_lex_state = 30}, + [2565] = {.lex_state = 255, .external_lex_state = 30}, + [2566] = {.lex_state = 255, .external_lex_state = 30}, + [2567] = {.lex_state = 255, .external_lex_state = 30}, + [2568] = {.lex_state = 255, .external_lex_state = 30}, + [2569] = {.lex_state = 255, .external_lex_state = 30}, + [2570] = {.lex_state = 255, .external_lex_state = 30}, + [2571] = {.lex_state = 255, .external_lex_state = 30}, + [2572] = {.lex_state = 255, .external_lex_state = 30}, + [2573] = {.lex_state = 255, .external_lex_state = 30}, + [2574] = {.lex_state = 255, .external_lex_state = 30}, + [2575] = {.lex_state = 255, .external_lex_state = 30}, + [2576] = {.lex_state = 255, .external_lex_state = 30}, + [2577] = {.lex_state = 255, .external_lex_state = 30}, + [2578] = {.lex_state = 255, .external_lex_state = 30}, + [2579] = {.lex_state = 255, .external_lex_state = 30}, + [2580] = {.lex_state = 255, .external_lex_state = 30}, + [2581] = {.lex_state = 255, .external_lex_state = 30}, + [2582] = {.lex_state = 255, .external_lex_state = 30}, + [2583] = {.lex_state = 255, .external_lex_state = 30}, + [2584] = {.lex_state = 255, .external_lex_state = 30}, + [2585] = {.lex_state = 255, .external_lex_state = 30}, + [2586] = {.lex_state = 255, .external_lex_state = 30}, + [2587] = {.lex_state = 255, .external_lex_state = 30}, + [2588] = {.lex_state = 255, .external_lex_state = 30}, + [2589] = {.lex_state = 255, .external_lex_state = 30}, + [2590] = {.lex_state = 255, .external_lex_state = 30}, + [2591] = {.lex_state = 255, .external_lex_state = 30}, + [2592] = {.lex_state = 255, .external_lex_state = 30}, + [2593] = {.lex_state = 255, .external_lex_state = 30}, + [2594] = {.lex_state = 255, .external_lex_state = 30}, + [2595] = {.lex_state = 255, .external_lex_state = 30}, + [2596] = {.lex_state = 255, .external_lex_state = 30}, + [2597] = {.lex_state = 255, .external_lex_state = 30}, + [2598] = {.lex_state = 255, .external_lex_state = 30}, + [2599] = {.lex_state = 255, .external_lex_state = 30}, + [2600] = {.lex_state = 255, .external_lex_state = 30}, + [2601] = {.lex_state = 255, .external_lex_state = 30}, + [2602] = {.lex_state = 255, .external_lex_state = 30}, + [2603] = {.lex_state = 75, .external_lex_state = 48}, + [2604] = {.lex_state = 255, .external_lex_state = 30}, + [2605] = {.lex_state = 238, .external_lex_state = 2}, + [2606] = {.lex_state = 255, .external_lex_state = 30}, + [2607] = {.lex_state = 255, .external_lex_state = 30}, + [2608] = {.lex_state = 255, .external_lex_state = 30}, + [2609] = {.lex_state = 255, .external_lex_state = 30}, + [2610] = {.lex_state = 255, .external_lex_state = 30}, + [2611] = {.lex_state = 255, .external_lex_state = 30}, + [2612] = {.lex_state = 238, .external_lex_state = 2}, + [2613] = {.lex_state = 255, .external_lex_state = 30}, + [2614] = {.lex_state = 255, .external_lex_state = 30}, + [2615] = {.lex_state = 255, .external_lex_state = 30}, + [2616] = {.lex_state = 255, .external_lex_state = 30}, + [2617] = {.lex_state = 255, .external_lex_state = 30}, + [2618] = {.lex_state = 255, .external_lex_state = 30}, + [2619] = {.lex_state = 255, .external_lex_state = 30}, + [2620] = {.lex_state = 255, .external_lex_state = 30}, + [2621] = {.lex_state = 255, .external_lex_state = 30}, + [2622] = {.lex_state = 255, .external_lex_state = 30}, + [2623] = {.lex_state = 255, .external_lex_state = 30}, + [2624] = {.lex_state = 255, .external_lex_state = 30}, + [2625] = {.lex_state = 255, .external_lex_state = 30}, + [2626] = {.lex_state = 255, .external_lex_state = 30}, + [2627] = {.lex_state = 255, .external_lex_state = 30}, + [2628] = {.lex_state = 255, .external_lex_state = 30}, + [2629] = {.lex_state = 255, .external_lex_state = 30}, + [2630] = {.lex_state = 255, .external_lex_state = 30}, + [2631] = {.lex_state = 255, .external_lex_state = 30}, + [2632] = {.lex_state = 255, .external_lex_state = 30}, + [2633] = {.lex_state = 255, .external_lex_state = 30}, + [2634] = {.lex_state = 255, .external_lex_state = 30}, + [2635] = {.lex_state = 255, .external_lex_state = 30}, + [2636] = {.lex_state = 255, .external_lex_state = 30}, + [2637] = {.lex_state = 255, .external_lex_state = 30}, + [2638] = {.lex_state = 255, .external_lex_state = 30}, + [2639] = {.lex_state = 255, .external_lex_state = 30}, + [2640] = {.lex_state = 255, .external_lex_state = 30}, + [2641] = {.lex_state = 255, .external_lex_state = 30}, + [2642] = {.lex_state = 255, .external_lex_state = 30}, + [2643] = {.lex_state = 255, .external_lex_state = 30}, + [2644] = {.lex_state = 255, .external_lex_state = 30}, + [2645] = {.lex_state = 73, .external_lex_state = 45}, + [2646] = {.lex_state = 255, .external_lex_state = 30}, + [2647] = {.lex_state = 255, .external_lex_state = 30}, + [2648] = {.lex_state = 255, .external_lex_state = 30}, + [2649] = {.lex_state = 255, .external_lex_state = 30}, + [2650] = {.lex_state = 255, .external_lex_state = 30}, + [2651] = {.lex_state = 255, .external_lex_state = 30}, + [2652] = {.lex_state = 255, .external_lex_state = 30}, + [2653] = {.lex_state = 255, .external_lex_state = 30}, + [2654] = {.lex_state = 255, .external_lex_state = 30}, + [2655] = {.lex_state = 255, .external_lex_state = 30}, + [2656] = {.lex_state = 255, .external_lex_state = 30}, + [2657] = {.lex_state = 255, .external_lex_state = 30}, + [2658] = {.lex_state = 255, .external_lex_state = 30}, + [2659] = {.lex_state = 255, .external_lex_state = 30}, + [2660] = {.lex_state = 255, .external_lex_state = 30}, + [2661] = {.lex_state = 255, .external_lex_state = 30}, + [2662] = {.lex_state = 255, .external_lex_state = 30}, + [2663] = {.lex_state = 255, .external_lex_state = 30}, + [2664] = {.lex_state = 255, .external_lex_state = 30}, + [2665] = {.lex_state = 255, .external_lex_state = 30}, + [2666] = {.lex_state = 255, .external_lex_state = 30}, + [2667] = {.lex_state = 255, .external_lex_state = 30}, + [2668] = {.lex_state = 255, .external_lex_state = 30}, + [2669] = {.lex_state = 255, .external_lex_state = 30}, + [2670] = {.lex_state = 255, .external_lex_state = 30}, + [2671] = {.lex_state = 255, .external_lex_state = 30}, + [2672] = {.lex_state = 255, .external_lex_state = 30}, + [2673] = {.lex_state = 255, .external_lex_state = 30}, + [2674] = {.lex_state = 255, .external_lex_state = 30}, + [2675] = {.lex_state = 255, .external_lex_state = 30}, + [2676] = {.lex_state = 255, .external_lex_state = 30}, + [2677] = {.lex_state = 255, .external_lex_state = 30}, + [2678] = {.lex_state = 255, .external_lex_state = 30}, + [2679] = {.lex_state = 255, .external_lex_state = 30}, + [2680] = {.lex_state = 255, .external_lex_state = 30}, + [2681] = {.lex_state = 255, .external_lex_state = 30}, + [2682] = {.lex_state = 255, .external_lex_state = 30}, + [2683] = {.lex_state = 255, .external_lex_state = 30}, + [2684] = {.lex_state = 255, .external_lex_state = 30}, + [2685] = {.lex_state = 255, .external_lex_state = 30}, + [2686] = {.lex_state = 255, .external_lex_state = 30}, + [2687] = {.lex_state = 255, .external_lex_state = 30}, + [2688] = {.lex_state = 255, .external_lex_state = 30}, + [2689] = {.lex_state = 255, .external_lex_state = 30}, + [2690] = {.lex_state = 255, .external_lex_state = 30}, + [2691] = {.lex_state = 255, .external_lex_state = 30}, + [2692] = {.lex_state = 255, .external_lex_state = 30}, + [2693] = {.lex_state = 255, .external_lex_state = 30}, + [2694] = {.lex_state = 255, .external_lex_state = 30}, + [2695] = {.lex_state = 255, .external_lex_state = 30}, + [2696] = {.lex_state = 255, .external_lex_state = 30}, + [2697] = {.lex_state = 255, .external_lex_state = 30}, + [2698] = {.lex_state = 255, .external_lex_state = 30}, + [2699] = {.lex_state = 255, .external_lex_state = 30}, + [2700] = {.lex_state = 255, .external_lex_state = 30}, + [2701] = {.lex_state = 255, .external_lex_state = 30}, + [2702] = {.lex_state = 255, .external_lex_state = 30}, + [2703] = {.lex_state = 255, .external_lex_state = 30}, + [2704] = {.lex_state = 255, .external_lex_state = 30}, + [2705] = {.lex_state = 255, .external_lex_state = 30}, + [2706] = {.lex_state = 255, .external_lex_state = 30}, + [2707] = {.lex_state = 255, .external_lex_state = 30}, + [2708] = {.lex_state = 255, .external_lex_state = 30}, + [2709] = {.lex_state = 255, .external_lex_state = 30}, + [2710] = {.lex_state = 75, .external_lex_state = 36}, + [2711] = {.lex_state = 75, .external_lex_state = 36}, + [2712] = {.lex_state = 425, .external_lex_state = 48}, + [2713] = {.lex_state = 75, .external_lex_state = 48}, + [2714] = {.lex_state = 75, .external_lex_state = 34}, + [2715] = {.lex_state = 75, .external_lex_state = 36}, + [2716] = {.lex_state = 75, .external_lex_state = 36}, + [2717] = {.lex_state = 75, .external_lex_state = 48}, + [2718] = {.lex_state = 75, .external_lex_state = 48}, + [2719] = {.lex_state = 75, .external_lex_state = 36}, + [2720] = {.lex_state = 75, .external_lex_state = 36}, + [2721] = {.lex_state = 75, .external_lex_state = 49}, + [2722] = {.lex_state = 75, .external_lex_state = 34}, + [2723] = {.lex_state = 75, .external_lex_state = 48}, + [2724] = {.lex_state = 75, .external_lex_state = 48}, + [2725] = {.lex_state = 75, .external_lex_state = 48}, + [2726] = {.lex_state = 425, .external_lex_state = 49}, + [2727] = {.lex_state = 75, .external_lex_state = 36}, + [2728] = {.lex_state = 425, .external_lex_state = 48}, + [2729] = {.lex_state = 425, .external_lex_state = 48}, + [2730] = {.lex_state = 75, .external_lex_state = 48}, + [2731] = {.lex_state = 75, .external_lex_state = 48}, + [2732] = {.lex_state = 75, .external_lex_state = 48}, + [2733] = {.lex_state = 425, .external_lex_state = 48}, + [2734] = {.lex_state = 75, .external_lex_state = 48}, + [2735] = {.lex_state = 75, .external_lex_state = 48}, + [2736] = {.lex_state = 75, .external_lex_state = 48}, + [2737] = {.lex_state = 75, .external_lex_state = 48}, + [2738] = {.lex_state = 426, .external_lex_state = 34}, + [2739] = {.lex_state = 425, .external_lex_state = 48}, + [2740] = {.lex_state = 425, .external_lex_state = 48}, + [2741] = {.lex_state = 75, .external_lex_state = 48}, + [2742] = {.lex_state = 425, .external_lex_state = 48}, + [2743] = {.lex_state = 425, .external_lex_state = 48}, + [2744] = {.lex_state = 75, .external_lex_state = 49}, + [2745] = {.lex_state = 75, .external_lex_state = 48}, + [2746] = {.lex_state = 425, .external_lex_state = 48}, + [2747] = {.lex_state = 75, .external_lex_state = 48}, + [2748] = {.lex_state = 75, .external_lex_state = 36}, + [2749] = {.lex_state = 75, .external_lex_state = 34}, + [2750] = {.lex_state = 75, .external_lex_state = 36}, + [2751] = {.lex_state = 75, .external_lex_state = 48}, + [2752] = {.lex_state = 75, .external_lex_state = 34}, + [2753] = {.lex_state = 425, .external_lex_state = 48}, + [2754] = {.lex_state = 75, .external_lex_state = 48}, + [2755] = {.lex_state = 425, .external_lex_state = 48}, + [2756] = {.lex_state = 75, .external_lex_state = 34}, + [2757] = {.lex_state = 75, .external_lex_state = 48}, + [2758] = {.lex_state = 75, .external_lex_state = 34}, + [2759] = {.lex_state = 75, .external_lex_state = 36}, + [2760] = {.lex_state = 75, .external_lex_state = 48}, + [2761] = {.lex_state = 75, .external_lex_state = 48}, + [2762] = {.lex_state = 75, .external_lex_state = 49}, + [2763] = {.lex_state = 425, .external_lex_state = 48}, + [2764] = {.lex_state = 425, .external_lex_state = 48}, + [2765] = {.lex_state = 75, .external_lex_state = 49}, + [2766] = {.lex_state = 75, .external_lex_state = 49}, + [2767] = {.lex_state = 425, .external_lex_state = 48}, + [2768] = {.lex_state = 75, .external_lex_state = 48}, + [2769] = {.lex_state = 75, .external_lex_state = 48}, + [2770] = {.lex_state = 425, .external_lex_state = 48}, + [2771] = {.lex_state = 75, .external_lex_state = 48}, + [2772] = {.lex_state = 425, .external_lex_state = 48}, + [2773] = {.lex_state = 75, .external_lex_state = 49}, + [2774] = {.lex_state = 425, .external_lex_state = 48}, + [2775] = {.lex_state = 425, .external_lex_state = 48}, + [2776] = {.lex_state = 425, .external_lex_state = 48}, + [2777] = {.lex_state = 75, .external_lex_state = 49}, + [2778] = {.lex_state = 75, .external_lex_state = 48}, + [2779] = {.lex_state = 75, .external_lex_state = 49}, + [2780] = {.lex_state = 75, .external_lex_state = 36}, + [2781] = {.lex_state = 425, .external_lex_state = 48}, + [2782] = {.lex_state = 425, .external_lex_state = 48}, + [2783] = {.lex_state = 75, .external_lex_state = 36}, + [2784] = {.lex_state = 75, .external_lex_state = 48}, + [2785] = {.lex_state = 425, .external_lex_state = 48}, + [2786] = {.lex_state = 75, .external_lex_state = 48}, + [2787] = {.lex_state = 75, .external_lex_state = 48}, + [2788] = {.lex_state = 426, .external_lex_state = 34}, + [2789] = {.lex_state = 425, .external_lex_state = 48}, + [2790] = {.lex_state = 75, .external_lex_state = 48}, + [2791] = {.lex_state = 75, .external_lex_state = 49}, + [2792] = {.lex_state = 75, .external_lex_state = 48}, + [2793] = {.lex_state = 425, .external_lex_state = 48}, + [2794] = {.lex_state = 425, .external_lex_state = 48}, + [2795] = {.lex_state = 425, .external_lex_state = 49}, + [2796] = {.lex_state = 425, .external_lex_state = 36}, + [2797] = {.lex_state = 425, .external_lex_state = 36}, + [2798] = {.lex_state = 425, .external_lex_state = 36}, + [2799] = {.lex_state = 75, .external_lex_state = 36}, + [2800] = {.lex_state = 425, .external_lex_state = 36}, + [2801] = {.lex_state = 251}, + [2802] = {.lex_state = 251}, + [2803] = {.lex_state = 251}, + [2804] = {.lex_state = 425, .external_lex_state = 48}, + [2805] = {.lex_state = 425, .external_lex_state = 48}, + [2806] = {.lex_state = 425, .external_lex_state = 49}, + [2807] = {.lex_state = 426, .external_lex_state = 36}, + [2808] = {.lex_state = 75, .external_lex_state = 49}, + [2809] = {.lex_state = 425, .external_lex_state = 36}, + [2810] = {.lex_state = 425, .external_lex_state = 49}, + [2811] = {.lex_state = 184, .external_lex_state = 50}, + [2812] = {.lex_state = 184, .external_lex_state = 50}, + [2813] = {.lex_state = 426, .external_lex_state = 36}, + [2814] = {.lex_state = 425, .external_lex_state = 36}, + [2815] = {.lex_state = 425, .external_lex_state = 49}, + [2816] = {.lex_state = 425, .external_lex_state = 48}, + [2817] = {.lex_state = 425, .external_lex_state = 49}, + [2818] = {.lex_state = 426, .external_lex_state = 34}, + [2819] = {.lex_state = 425, .external_lex_state = 34}, + [2820] = {.lex_state = 425, .external_lex_state = 48}, + [2821] = {.lex_state = 425, .external_lex_state = 36}, + [2822] = {.lex_state = 75, .external_lex_state = 49}, + [2823] = {.lex_state = 425, .external_lex_state = 49}, + [2824] = {.lex_state = 425, .external_lex_state = 49}, + [2825] = {.lex_state = 425, .external_lex_state = 36}, + [2826] = {.lex_state = 425, .external_lex_state = 49}, + [2827] = {.lex_state = 75, .external_lex_state = 49}, + [2828] = {.lex_state = 75, .external_lex_state = 49}, + [2829] = {.lex_state = 251}, + [2830] = {.lex_state = 184, .external_lex_state = 50}, + [2831] = {.lex_state = 425, .external_lex_state = 48}, + [2832] = {.lex_state = 425, .external_lex_state = 48}, + [2833] = {.lex_state = 425, .external_lex_state = 36}, + [2834] = {.lex_state = 251}, + [2835] = {.lex_state = 75, .external_lex_state = 49}, + [2836] = {.lex_state = 75, .external_lex_state = 49}, + [2837] = {.lex_state = 425, .external_lex_state = 49}, + [2838] = {.lex_state = 425, .external_lex_state = 49}, + [2839] = {.lex_state = 425, .external_lex_state = 49}, + [2840] = {.lex_state = 75, .external_lex_state = 49}, [2841] = {.lex_state = 75, .external_lex_state = 36}, - [2842] = {.lex_state = 391, .external_lex_state = 48}, - [2843] = {.lex_state = 391, .external_lex_state = 48}, - [2844] = {.lex_state = 391, .external_lex_state = 48}, - [2845] = {.lex_state = 391, .external_lex_state = 47}, - [2846] = {.lex_state = 391, .external_lex_state = 47}, - [2847] = {.lex_state = 76, .external_lex_state = 36}, - [2848] = {.lex_state = 170, .external_lex_state = 49}, - [2849] = {.lex_state = 76, .external_lex_state = 36}, - [2850] = {.lex_state = 391, .external_lex_state = 48}, - [2851] = {.lex_state = 76, .external_lex_state = 36}, - [2852] = {.lex_state = 391, .external_lex_state = 48}, - [2853] = {.lex_state = 391, .external_lex_state = 48}, - [2854] = {.lex_state = 170, .external_lex_state = 49}, - [2855] = {.lex_state = 391, .external_lex_state = 36}, - [2856] = {.lex_state = 391, .external_lex_state = 48}, - [2857] = {.lex_state = 75, .external_lex_state = 36}, - [2858] = {.lex_state = 76, .external_lex_state = 36}, - [2859] = {.lex_state = 391, .external_lex_state = 48}, - [2860] = {.lex_state = 391, .external_lex_state = 35}, - [2861] = {.lex_state = 76, .external_lex_state = 36}, - [2862] = {.lex_state = 76, .external_lex_state = 36}, - [2863] = {.lex_state = 170, .external_lex_state = 49}, - [2864] = {.lex_state = 391, .external_lex_state = 48}, - [2865] = {.lex_state = 170, .external_lex_state = 49}, - [2866] = {.lex_state = 391, .external_lex_state = 48}, - [2867] = {.lex_state = 76, .external_lex_state = 36}, - [2868] = {.lex_state = 391, .external_lex_state = 36}, - [2869] = {.lex_state = 170, .external_lex_state = 49}, - [2870] = {.lex_state = 76, .external_lex_state = 36}, - [2871] = {.lex_state = 391, .external_lex_state = 48}, - [2872] = {.lex_state = 76, .external_lex_state = 36}, - [2873] = {.lex_state = 391, .external_lex_state = 48}, - [2874] = {.lex_state = 76, .external_lex_state = 36}, - [2875] = {.lex_state = 76, .external_lex_state = 36}, - [2876] = {.lex_state = 391, .external_lex_state = 48}, - [2877] = {.lex_state = 76, .external_lex_state = 36}, - [2878] = {.lex_state = 170, .external_lex_state = 49}, - [2879] = {.lex_state = 76, .external_lex_state = 36}, - [2880] = {.lex_state = 391, .external_lex_state = 48}, - [2881] = {.lex_state = 76, .external_lex_state = 36}, - [2882] = {.lex_state = 391, .external_lex_state = 48}, - [2883] = {.lex_state = 76, .external_lex_state = 36}, - [2884] = {.lex_state = 170, .external_lex_state = 49}, - [2885] = {.lex_state = 76, .external_lex_state = 36}, - [2886] = {.lex_state = 391, .external_lex_state = 48}, - [2887] = {.lex_state = 391, .external_lex_state = 48}, - [2888] = {.lex_state = 76, .external_lex_state = 36}, - [2889] = {.lex_state = 170, .external_lex_state = 49}, - [2890] = {.lex_state = 75, .external_lex_state = 35}, - [2891] = {.lex_state = 391, .external_lex_state = 36}, - [2892] = {.lex_state = 76, .external_lex_state = 36}, - [2893] = {.lex_state = 391, .external_lex_state = 48}, - [2894] = {.lex_state = 391, .external_lex_state = 36}, - [2895] = {.lex_state = 76, .external_lex_state = 36}, - [2896] = {.lex_state = 76, .external_lex_state = 36}, - [2897] = {.lex_state = 76, .external_lex_state = 36}, - [2898] = {.lex_state = 76, .external_lex_state = 36}, - [2899] = {.lex_state = 76, .external_lex_state = 36}, - [2900] = {.lex_state = 170, .external_lex_state = 49}, - [2901] = {.lex_state = 76, .external_lex_state = 36}, - [2902] = {.lex_state = 170, .external_lex_state = 49}, - [2903] = {.lex_state = 391, .external_lex_state = 36}, - [2904] = {.lex_state = 170, .external_lex_state = 49}, - [2905] = {.lex_state = 75, .external_lex_state = 35}, - [2906] = {.lex_state = 391, .external_lex_state = 48}, - [2907] = {.lex_state = 76, .external_lex_state = 36}, - [2908] = {.lex_state = 170, .external_lex_state = 49}, - [2909] = {.lex_state = 76, .external_lex_state = 36}, - [2910] = {.lex_state = 391, .external_lex_state = 48}, - [2911] = {.lex_state = 170, .external_lex_state = 49}, - [2912] = {.lex_state = 391, .external_lex_state = 48}, - [2913] = {.lex_state = 76, .external_lex_state = 36}, - [2914] = {.lex_state = 75, .external_lex_state = 36}, - [2915] = {.lex_state = 76, .external_lex_state = 36}, - [2916] = {.lex_state = 76, .external_lex_state = 36}, - [2917] = {.lex_state = 76, .external_lex_state = 36}, - [2918] = {.lex_state = 76, .external_lex_state = 36}, - [2919] = {.lex_state = 391, .external_lex_state = 36}, - [2920] = {.lex_state = 170, .external_lex_state = 49}, - [2921] = {.lex_state = 170, .external_lex_state = 49}, - [2922] = {.lex_state = 75, .external_lex_state = 35}, - [2923] = {.lex_state = 170, .external_lex_state = 49}, - [2924] = {.lex_state = 75, .external_lex_state = 36}, - [2925] = {.lex_state = 76, .external_lex_state = 36}, - [2926] = {.lex_state = 76, .external_lex_state = 36}, - [2927] = {.lex_state = 391, .external_lex_state = 48}, - [2928] = {.lex_state = 391, .external_lex_state = 48}, - [2929] = {.lex_state = 391, .external_lex_state = 48}, - [2930] = {.lex_state = 391, .external_lex_state = 36}, - [2931] = {.lex_state = 76, .external_lex_state = 36}, - [2932] = {.lex_state = 76, .external_lex_state = 36}, - [2933] = {.lex_state = 170, .external_lex_state = 49}, - [2934] = {.lex_state = 391, .external_lex_state = 48}, - [2935] = {.lex_state = 170, .external_lex_state = 49}, - [2936] = {.lex_state = 76, .external_lex_state = 36}, - [2937] = {.lex_state = 76, .external_lex_state = 36}, - [2938] = {.lex_state = 391, .external_lex_state = 48}, - [2939] = {.lex_state = 76, .external_lex_state = 36}, - [2940] = {.lex_state = 76, .external_lex_state = 36}, - [2941] = {.lex_state = 391, .external_lex_state = 48}, - [2942] = {.lex_state = 76, .external_lex_state = 36}, - [2943] = {.lex_state = 76, .external_lex_state = 36}, - [2944] = {.lex_state = 76, .external_lex_state = 36}, - [2945] = {.lex_state = 75, .external_lex_state = 36}, - [2946] = {.lex_state = 75, .external_lex_state = 36}, - [2947] = {.lex_state = 391, .external_lex_state = 35}, - [2948] = {.lex_state = 75, .external_lex_state = 36}, - [2949] = {.lex_state = 391, .external_lex_state = 35}, + [2842] = {.lex_state = 75, .external_lex_state = 49}, + [2843] = {.lex_state = 425, .external_lex_state = 49}, + [2844] = {.lex_state = 75, .external_lex_state = 49}, + [2845] = {.lex_state = 425, .external_lex_state = 36}, + [2846] = {.lex_state = 425, .external_lex_state = 49}, + [2847] = {.lex_state = 426, .external_lex_state = 36}, + [2848] = {.lex_state = 425, .external_lex_state = 49}, + [2849] = {.lex_state = 425, .external_lex_state = 49}, + [2850] = {.lex_state = 75, .external_lex_state = 49}, + [2851] = {.lex_state = 425, .external_lex_state = 36}, + [2852] = {.lex_state = 425, .external_lex_state = 49}, + [2853] = {.lex_state = 425, .external_lex_state = 49}, + [2854] = {.lex_state = 425, .external_lex_state = 36}, + [2855] = {.lex_state = 426, .external_lex_state = 36}, + [2856] = {.lex_state = 425, .external_lex_state = 48}, + [2857] = {.lex_state = 425, .external_lex_state = 48}, + [2858] = {.lex_state = 75, .external_lex_state = 49}, + [2859] = {.lex_state = 251}, + [2860] = {.lex_state = 184, .external_lex_state = 50}, + [2861] = {.lex_state = 425, .external_lex_state = 34}, + [2862] = {.lex_state = 75, .external_lex_state = 49}, + [2863] = {.lex_state = 425, .external_lex_state = 49}, + [2864] = {.lex_state = 75, .external_lex_state = 36}, + [2865] = {.lex_state = 251}, + [2866] = {.lex_state = 184, .external_lex_state = 50}, + [2867] = {.lex_state = 425, .external_lex_state = 49}, + [2868] = {.lex_state = 425, .external_lex_state = 34}, + [2869] = {.lex_state = 425, .external_lex_state = 48}, + [2870] = {.lex_state = 425, .external_lex_state = 48}, + [2871] = {.lex_state = 426, .external_lex_state = 36}, + [2872] = {.lex_state = 251}, + [2873] = {.lex_state = 426, .external_lex_state = 36}, + [2874] = {.lex_state = 426, .external_lex_state = 36}, + [2875] = {.lex_state = 75, .external_lex_state = 49}, + [2876] = {.lex_state = 75, .external_lex_state = 36}, + [2877] = {.lex_state = 75, .external_lex_state = 49}, + [2878] = {.lex_state = 425, .external_lex_state = 49}, + [2879] = {.lex_state = 425, .external_lex_state = 49}, + [2880] = {.lex_state = 75, .external_lex_state = 49}, + [2881] = {.lex_state = 75, .external_lex_state = 34}, + [2882] = {.lex_state = 251}, + [2883] = {.lex_state = 425, .external_lex_state = 48}, + [2884] = {.lex_state = 75, .external_lex_state = 49}, + [2885] = {.lex_state = 426, .external_lex_state = 34}, + [2886] = {.lex_state = 75, .external_lex_state = 36}, + [2887] = {.lex_state = 75, .external_lex_state = 49}, + [2888] = {.lex_state = 425, .external_lex_state = 49}, + [2889] = {.lex_state = 75, .external_lex_state = 49}, + [2890] = {.lex_state = 75, .external_lex_state = 49}, + [2891] = {.lex_state = 184, .external_lex_state = 50}, + [2892] = {.lex_state = 425, .external_lex_state = 34}, + [2893] = {.lex_state = 75, .external_lex_state = 49}, + [2894] = {.lex_state = 75, .external_lex_state = 49}, + [2895] = {.lex_state = 426, .external_lex_state = 36}, + [2896] = {.lex_state = 75, .external_lex_state = 49}, + [2897] = {.lex_state = 425, .external_lex_state = 48}, + [2898] = {.lex_state = 75, .external_lex_state = 49}, + [2899] = {.lex_state = 75, .external_lex_state = 49}, + [2900] = {.lex_state = 426, .external_lex_state = 34}, + [2901] = {.lex_state = 425, .external_lex_state = 49}, + [2902] = {.lex_state = 426, .external_lex_state = 36}, + [2903] = {.lex_state = 75, .external_lex_state = 49}, + [2904] = {.lex_state = 75, .external_lex_state = 49}, + [2905] = {.lex_state = 425, .external_lex_state = 36}, + [2906] = {.lex_state = 425, .external_lex_state = 49}, + [2907] = {.lex_state = 426, .external_lex_state = 36}, + [2908] = {.lex_state = 184, .external_lex_state = 50}, + [2909] = {.lex_state = 425, .external_lex_state = 36}, + [2910] = {.lex_state = 426, .external_lex_state = 34}, + [2911] = {.lex_state = 184, .external_lex_state = 50}, + [2912] = {.lex_state = 425, .external_lex_state = 36}, + [2913] = {.lex_state = 425, .external_lex_state = 48}, + [2914] = {.lex_state = 425, .external_lex_state = 36}, + [2915] = {.lex_state = 425, .external_lex_state = 49}, + [2916] = {.lex_state = 425, .external_lex_state = 48}, + [2917] = {.lex_state = 425, .external_lex_state = 49}, + [2918] = {.lex_state = 425, .external_lex_state = 49}, + [2919] = {.lex_state = 425, .external_lex_state = 49}, + [2920] = {.lex_state = 425, .external_lex_state = 49}, + [2921] = {.lex_state = 425, .external_lex_state = 49}, + [2922] = {.lex_state = 184, .external_lex_state = 50}, + [2923] = {.lex_state = 184, .external_lex_state = 50}, + [2924] = {.lex_state = 425, .external_lex_state = 49}, + [2925] = {.lex_state = 425, .external_lex_state = 34}, + [2926] = {.lex_state = 184, .external_lex_state = 50}, + [2927] = {.lex_state = 425, .external_lex_state = 49}, + [2928] = {.lex_state = 184, .external_lex_state = 50}, + [2929] = {.lex_state = 184, .external_lex_state = 50}, + [2930] = {.lex_state = 425, .external_lex_state = 49}, + [2931] = {.lex_state = 75, .external_lex_state = 36}, + [2932] = {.lex_state = 425, .external_lex_state = 49}, + [2933] = {.lex_state = 184, .external_lex_state = 50}, + [2934] = {.lex_state = 425, .external_lex_state = 36}, + [2935] = {.lex_state = 425, .external_lex_state = 49}, + [2936] = {.lex_state = 425, .external_lex_state = 36}, + [2937] = {.lex_state = 251}, + [2938] = {.lex_state = 184, .external_lex_state = 50}, + [2939] = {.lex_state = 184, .external_lex_state = 50}, + [2940] = {.lex_state = 425, .external_lex_state = 49}, + [2941] = {.lex_state = 425, .external_lex_state = 36}, + [2942] = {.lex_state = 75, .external_lex_state = 36}, + [2943] = {.lex_state = 251}, + [2944] = {.lex_state = 251}, + [2945] = {.lex_state = 425, .external_lex_state = 36}, + [2946] = {.lex_state = 184, .external_lex_state = 50}, + [2947] = {.lex_state = 75, .external_lex_state = 36}, + [2948] = {.lex_state = 251}, + [2949] = {.lex_state = 75, .external_lex_state = 34}, [2950] = {.lex_state = 75, .external_lex_state = 36}, - [2951] = {.lex_state = 75, .external_lex_state = 36}, - [2952] = {.lex_state = 75, .external_lex_state = 36}, - [2953] = {.lex_state = 75, .external_lex_state = 36}, - [2954] = {.lex_state = 75, .external_lex_state = 36}, - [2955] = {.lex_state = 75, .external_lex_state = 36}, - [2956] = {.lex_state = 236}, - [2957] = {.lex_state = 169, .external_lex_state = 39}, - [2958] = {.lex_state = 75, .external_lex_state = 36}, - [2959] = {.lex_state = 75, .external_lex_state = 36}, - [2960] = {.lex_state = 391, .external_lex_state = 36}, - [2961] = {.lex_state = 75, .external_lex_state = 36}, - [2962] = {.lex_state = 236}, - [2963] = {.lex_state = 75, .external_lex_state = 36}, - [2964] = {.lex_state = 391, .external_lex_state = 35}, - [2965] = {.lex_state = 75, .external_lex_state = 36}, - [2966] = {.lex_state = 236}, - [2967] = {.lex_state = 236}, - [2968] = {.lex_state = 391, .external_lex_state = 36}, - [2969] = {.lex_state = 391, .external_lex_state = 36}, + [2951] = {.lex_state = 75, .external_lex_state = 34}, + [2952] = {.lex_state = 184, .external_lex_state = 50}, + [2953] = {.lex_state = 425, .external_lex_state = 36}, + [2954] = {.lex_state = 425, .external_lex_state = 36}, + [2955] = {.lex_state = 425, .external_lex_state = 48}, + [2956] = {.lex_state = 425, .external_lex_state = 36}, + [2957] = {.lex_state = 251}, + [2958] = {.lex_state = 184, .external_lex_state = 50}, + [2959] = {.lex_state = 425, .external_lex_state = 36}, + [2960] = {.lex_state = 425, .external_lex_state = 49}, + [2961] = {.lex_state = 75, .external_lex_state = 34}, + [2962] = {.lex_state = 184, .external_lex_state = 50}, + [2963] = {.lex_state = 251}, + [2964] = {.lex_state = 184, .external_lex_state = 50}, + [2965] = {.lex_state = 425, .external_lex_state = 49}, + [2966] = {.lex_state = 425, .external_lex_state = 49}, + [2967] = {.lex_state = 251}, + [2968] = {.lex_state = 426, .external_lex_state = 34}, + [2969] = {.lex_state = 184, .external_lex_state = 50}, [2970] = {.lex_state = 75, .external_lex_state = 36}, - [2971] = {.lex_state = 75, .external_lex_state = 36}, - [2972] = {.lex_state = 236}, - [2973] = {.lex_state = 75, .external_lex_state = 36}, - [2974] = {.lex_state = 391, .external_lex_state = 36}, - [2975] = {.lex_state = 75, .external_lex_state = 36}, - [2976] = {.lex_state = 391, .external_lex_state = 36}, - [2977] = {.lex_state = 75, .external_lex_state = 36}, - [2978] = {.lex_state = 75, .external_lex_state = 36}, - [2979] = {.lex_state = 75, .external_lex_state = 36}, - [2980] = {.lex_state = 75, .external_lex_state = 36}, - [2981] = {.lex_state = 75, .external_lex_state = 36}, - [2982] = {.lex_state = 75, .external_lex_state = 36}, - [2983] = {.lex_state = 75, .external_lex_state = 36}, - [2984] = {.lex_state = 236}, + [2971] = {.lex_state = 425, .external_lex_state = 49}, + [2972] = {.lex_state = 425, .external_lex_state = 49}, + [2973] = {.lex_state = 425, .external_lex_state = 48}, + [2974] = {.lex_state = 75, .external_lex_state = 36}, + [2975] = {.lex_state = 426, .external_lex_state = 34}, + [2976] = {.lex_state = 251}, + [2977] = {.lex_state = 425, .external_lex_state = 34}, + [2978] = {.lex_state = 251}, + [2979] = {.lex_state = 184, .external_lex_state = 50}, + [2980] = {.lex_state = 184, .external_lex_state = 50}, + [2981] = {.lex_state = 184, .external_lex_state = 50}, + [2982] = {.lex_state = 184, .external_lex_state = 50}, + [2983] = {.lex_state = 425, .external_lex_state = 49}, + [2984] = {.lex_state = 426, .external_lex_state = 36}, [2985] = {.lex_state = 75, .external_lex_state = 36}, - [2986] = {.lex_state = 75, .external_lex_state = 36}, - [2987] = {.lex_state = 391, .external_lex_state = 36}, - [2988] = {.lex_state = 391, .external_lex_state = 36}, - [2989] = {.lex_state = 75, .external_lex_state = 36}, + [2986] = {.lex_state = 426, .external_lex_state = 36}, + [2987] = {.lex_state = 249, .external_lex_state = 35}, + [2988] = {.lex_state = 426, .external_lex_state = 36}, + [2989] = {.lex_state = 425, .external_lex_state = 49}, [2990] = {.lex_state = 75, .external_lex_state = 36}, [2991] = {.lex_state = 75, .external_lex_state = 36}, - [2992] = {.lex_state = 75, .external_lex_state = 36}, - [2993] = {.lex_state = 75, .external_lex_state = 36}, - [2994] = {.lex_state = 75, .external_lex_state = 36}, - [2995] = {.lex_state = 75, .external_lex_state = 36}, + [2992] = {.lex_state = 426, .external_lex_state = 36}, + [2993] = {.lex_state = 426, .external_lex_state = 36}, + [2994] = {.lex_state = 426, .external_lex_state = 36}, + [2995] = {.lex_state = 426, .external_lex_state = 36}, [2996] = {.lex_state = 75, .external_lex_state = 36}, - [2997] = {.lex_state = 391, .external_lex_state = 36}, - [2998] = {.lex_state = 169, .external_lex_state = 39}, - [2999] = {.lex_state = 75, .external_lex_state = 36}, + [2997] = {.lex_state = 426, .external_lex_state = 36}, + [2998] = {.lex_state = 425, .external_lex_state = 36}, + [2999] = {.lex_state = 249, .external_lex_state = 35}, [3000] = {.lex_state = 75, .external_lex_state = 36}, - [3001] = {.lex_state = 391, .external_lex_state = 36}, + [3001] = {.lex_state = 75, .external_lex_state = 36}, [3002] = {.lex_state = 75, .external_lex_state = 36}, [3003] = {.lex_state = 75, .external_lex_state = 36}, - [3004] = {.lex_state = 75, .external_lex_state = 36}, - [3005] = {.lex_state = 75, .external_lex_state = 36}, + [3004] = {.lex_state = 426, .external_lex_state = 36}, + [3005] = {.lex_state = 249, .external_lex_state = 35}, [3006] = {.lex_state = 75, .external_lex_state = 36}, - [3007] = {.lex_state = 391, .external_lex_state = 36}, - [3008] = {.lex_state = 219, .external_lex_state = 50}, - [3009] = {.lex_state = 236, .external_lex_state = 41}, - [3010] = {.lex_state = 219, .external_lex_state = 50}, - [3011] = {.lex_state = 228, .external_lex_state = 51}, - [3012] = {.lex_state = 391, .external_lex_state = 36}, - [3013] = {.lex_state = 219, .external_lex_state = 50}, - [3014] = {.lex_state = 391, .external_lex_state = 36}, - [3015] = {.lex_state = 228, .external_lex_state = 51}, - [3016] = {.lex_state = 391, .external_lex_state = 36}, - [3017] = {.lex_state = 219, .external_lex_state = 50}, - [3018] = {.lex_state = 219, .external_lex_state = 50}, - [3019] = {.lex_state = 391, .external_lex_state = 36}, - [3020] = {.lex_state = 219, .external_lex_state = 50}, - [3021] = {.lex_state = 391, .external_lex_state = 36}, - [3022] = {.lex_state = 236, .external_lex_state = 41}, - [3023] = {.lex_state = 391, .external_lex_state = 36}, - [3024] = {.lex_state = 219, .external_lex_state = 52}, - [3025] = {.lex_state = 219, .external_lex_state = 50}, - [3026] = {.lex_state = 391, .external_lex_state = 36}, - [3027] = {.lex_state = 219, .external_lex_state = 50}, - [3028] = {.lex_state = 219, .external_lex_state = 50}, - [3029] = {.lex_state = 228, .external_lex_state = 51}, - [3030] = {.lex_state = 219, .external_lex_state = 50}, - [3031] = {.lex_state = 219, .external_lex_state = 50}, - [3032] = {.lex_state = 219, .external_lex_state = 50}, - [3033] = {.lex_state = 219, .external_lex_state = 50}, - [3034] = {.lex_state = 219, .external_lex_state = 50}, - [3035] = {.lex_state = 219, .external_lex_state = 50}, - [3036] = {.lex_state = 219, .external_lex_state = 50}, - [3037] = {.lex_state = 219, .external_lex_state = 50}, - [3038] = {.lex_state = 391, .external_lex_state = 36}, - [3039] = {.lex_state = 219, .external_lex_state = 50}, - [3040] = {.lex_state = 219, .external_lex_state = 50}, - [3041] = {.lex_state = 219, .external_lex_state = 50}, - [3042] = {.lex_state = 219, .external_lex_state = 50}, - [3043] = {.lex_state = 219, .external_lex_state = 50}, - [3044] = {.lex_state = 219, .external_lex_state = 50}, - [3045] = {.lex_state = 391, .external_lex_state = 36}, - [3046] = {.lex_state = 228, .external_lex_state = 51}, - [3047] = {.lex_state = 391, .external_lex_state = 36}, - [3048] = {.lex_state = 219, .external_lex_state = 50}, - [3049] = {.lex_state = 219, .external_lex_state = 50}, - [3050] = {.lex_state = 391, .external_lex_state = 36}, - [3051] = {.lex_state = 391, .external_lex_state = 36}, - [3052] = {.lex_state = 219, .external_lex_state = 50}, - [3053] = {.lex_state = 391, .external_lex_state = 36}, - [3054] = {.lex_state = 391, .external_lex_state = 36}, - [3055] = {.lex_state = 219, .external_lex_state = 50}, - [3056] = {.lex_state = 219, .external_lex_state = 50}, - [3057] = {.lex_state = 391, .external_lex_state = 36}, - [3058] = {.lex_state = 391, .external_lex_state = 36}, - [3059] = {.lex_state = 391, .external_lex_state = 36}, - [3060] = {.lex_state = 391, .external_lex_state = 36}, - [3061] = {.lex_state = 219, .external_lex_state = 50}, - [3062] = {.lex_state = 391, .external_lex_state = 36}, - [3063] = {.lex_state = 169, .external_lex_state = 39}, - [3064] = {.lex_state = 219, .external_lex_state = 50}, - [3065] = {.lex_state = 391, .external_lex_state = 36}, - [3066] = {.lex_state = 219, .external_lex_state = 50}, - [3067] = {.lex_state = 391, .external_lex_state = 36}, - [3068] = {.lex_state = 219, .external_lex_state = 50}, - [3069] = {.lex_state = 219, .external_lex_state = 50}, - [3070] = {.lex_state = 391, .external_lex_state = 36}, - [3071] = {.lex_state = 219, .external_lex_state = 50}, - [3072] = {.lex_state = 391, .external_lex_state = 36}, - [3073] = {.lex_state = 219, .external_lex_state = 50}, - [3074] = {.lex_state = 219, .external_lex_state = 50}, - [3075] = {.lex_state = 219, .external_lex_state = 50}, - [3076] = {.lex_state = 219, .external_lex_state = 50}, - [3077] = {.lex_state = 219, .external_lex_state = 50}, - [3078] = {.lex_state = 391, .external_lex_state = 36}, - [3079] = {.lex_state = 219, .external_lex_state = 50}, - [3080] = {.lex_state = 391, .external_lex_state = 36}, - [3081] = {.lex_state = 391, .external_lex_state = 36}, - [3082] = {.lex_state = 391, .external_lex_state = 36}, - [3083] = {.lex_state = 391, .external_lex_state = 36}, - [3084] = {.lex_state = 219, .external_lex_state = 50}, - [3085] = {.lex_state = 219, .external_lex_state = 50}, - [3086] = {.lex_state = 219, .external_lex_state = 50}, - [3087] = {.lex_state = 241, .external_lex_state = 53}, - [3088] = {.lex_state = 219, .external_lex_state = 50}, - [3089] = {.lex_state = 219, .external_lex_state = 50}, - [3090] = {.lex_state = 219, .external_lex_state = 50}, - [3091] = {.lex_state = 219, .external_lex_state = 50}, - [3092] = {.lex_state = 219, .external_lex_state = 50}, - [3093] = {.lex_state = 219, .external_lex_state = 50}, - [3094] = {.lex_state = 219, .external_lex_state = 50}, - [3095] = {.lex_state = 391, .external_lex_state = 36}, - [3096] = {.lex_state = 219, .external_lex_state = 50}, - [3097] = {.lex_state = 219, .external_lex_state = 50}, - [3098] = {.lex_state = 391, .external_lex_state = 36}, - [3099] = {.lex_state = 219, .external_lex_state = 50}, - [3100] = {.lex_state = 219, .external_lex_state = 50}, - [3101] = {.lex_state = 219, .external_lex_state = 50}, - [3102] = {.lex_state = 219, .external_lex_state = 50}, - [3103] = {.lex_state = 228, .external_lex_state = 51}, - [3104] = {.lex_state = 219, .external_lex_state = 50}, - [3105] = {.lex_state = 219, .external_lex_state = 50}, - [3106] = {.lex_state = 219, .external_lex_state = 50}, - [3107] = {.lex_state = 219, .external_lex_state = 50}, - [3108] = {.lex_state = 391, .external_lex_state = 36}, - [3109] = {.lex_state = 219, .external_lex_state = 50}, - [3110] = {.lex_state = 219, .external_lex_state = 50}, - [3111] = {.lex_state = 391, .external_lex_state = 36}, - [3112] = {.lex_state = 391, .external_lex_state = 36}, - [3113] = {.lex_state = 236, .external_lex_state = 41}, - [3114] = {.lex_state = 391, .external_lex_state = 36}, - [3115] = {.lex_state = 391, .external_lex_state = 36}, - [3116] = {.lex_state = 236, .external_lex_state = 41}, - [3117] = {.lex_state = 236, .external_lex_state = 41}, - [3118] = {.lex_state = 391, .external_lex_state = 36}, - [3119] = {.lex_state = 391, .external_lex_state = 36}, - [3120] = {.lex_state = 391, .external_lex_state = 36}, - [3121] = {.lex_state = 391, .external_lex_state = 36}, - [3122] = {.lex_state = 391, .external_lex_state = 36}, - [3123] = {.lex_state = 391, .external_lex_state = 36}, - [3124] = {.lex_state = 236, .external_lex_state = 41}, - [3125] = {.lex_state = 228, .external_lex_state = 51}, - [3126] = {.lex_state = 218, .external_lex_state = 54}, - [3127] = {.lex_state = 219, .external_lex_state = 55}, - [3128] = {.lex_state = 218, .external_lex_state = 54}, - [3129] = {.lex_state = 218, .external_lex_state = 54}, - [3130] = {.lex_state = 236, .external_lex_state = 44}, - [3131] = {.lex_state = 234, .external_lex_state = 37}, - [3132] = {.lex_state = 218, .external_lex_state = 54}, - [3133] = {.lex_state = 218, .external_lex_state = 54}, - [3134] = {.lex_state = 236, .external_lex_state = 44}, - [3135] = {.lex_state = 218, .external_lex_state = 54}, - [3136] = {.lex_state = 218, .external_lex_state = 54}, - [3137] = {.lex_state = 228, .external_lex_state = 51}, - [3138] = {.lex_state = 234, .external_lex_state = 37}, - [3139] = {.lex_state = 218, .external_lex_state = 54}, - [3140] = {.lex_state = 218, .external_lex_state = 54}, - [3141] = {.lex_state = 218, .external_lex_state = 54}, - [3142] = {.lex_state = 218, .external_lex_state = 54}, - [3143] = {.lex_state = 218, .external_lex_state = 54}, - [3144] = {.lex_state = 228, .external_lex_state = 51}, - [3145] = {.lex_state = 218, .external_lex_state = 54}, - [3146] = {.lex_state = 218, .external_lex_state = 54}, - [3147] = {.lex_state = 218, .external_lex_state = 54}, - [3148] = {.lex_state = 218, .external_lex_state = 54}, - [3149] = {.lex_state = 218, .external_lex_state = 54}, - [3150] = {.lex_state = 234, .external_lex_state = 37}, - [3151] = {.lex_state = 228, .external_lex_state = 51}, - [3152] = {.lex_state = 241, .external_lex_state = 53}, - [3153] = {.lex_state = 218, .external_lex_state = 54}, - [3154] = {.lex_state = 218, .external_lex_state = 54}, - [3155] = {.lex_state = 218, .external_lex_state = 54}, - [3156] = {.lex_state = 218, .external_lex_state = 54}, - [3157] = {.lex_state = 218, .external_lex_state = 54}, - [3158] = {.lex_state = 236, .external_lex_state = 43}, - [3159] = {.lex_state = 218, .external_lex_state = 54}, - [3160] = {.lex_state = 218, .external_lex_state = 54}, - [3161] = {.lex_state = 241, .external_lex_state = 53}, - [3162] = {.lex_state = 218, .external_lex_state = 54}, - [3163] = {.lex_state = 234, .external_lex_state = 37}, - [3164] = {.lex_state = 218, .external_lex_state = 54}, - [3165] = {.lex_state = 234, .external_lex_state = 37}, - [3166] = {.lex_state = 228, .external_lex_state = 51}, - [3167] = {.lex_state = 218, .external_lex_state = 54}, - [3168] = {.lex_state = 218, .external_lex_state = 54}, - [3169] = {.lex_state = 228, .external_lex_state = 51}, - [3170] = {.lex_state = 236, .external_lex_state = 44}, - [3171] = {.lex_state = 218, .external_lex_state = 54}, - [3172] = {.lex_state = 228, .external_lex_state = 51}, - [3173] = {.lex_state = 218, .external_lex_state = 54}, - [3174] = {.lex_state = 218, .external_lex_state = 54}, - [3175] = {.lex_state = 234, .external_lex_state = 37}, - [3176] = {.lex_state = 234, .external_lex_state = 37}, - [3177] = {.lex_state = 234, .external_lex_state = 37}, - [3178] = {.lex_state = 218, .external_lex_state = 54}, - [3179] = {.lex_state = 218, .external_lex_state = 54}, - [3180] = {.lex_state = 218, .external_lex_state = 54}, - [3181] = {.lex_state = 218, .external_lex_state = 54}, - [3182] = {.lex_state = 218, .external_lex_state = 54}, - [3183] = {.lex_state = 219, .external_lex_state = 52}, - [3184] = {.lex_state = 218, .external_lex_state = 54}, - [3185] = {.lex_state = 241, .external_lex_state = 53}, - [3186] = {.lex_state = 236, .external_lex_state = 43}, - [3187] = {.lex_state = 228, .external_lex_state = 51}, - [3188] = {.lex_state = 234, .external_lex_state = 37}, - [3189] = {.lex_state = 234, .external_lex_state = 37}, - [3190] = {.lex_state = 218, .external_lex_state = 54}, - [3191] = {.lex_state = 218, .external_lex_state = 54}, - [3192] = {.lex_state = 218, .external_lex_state = 54}, - [3193] = {.lex_state = 218, .external_lex_state = 54}, - [3194] = {.lex_state = 218, .external_lex_state = 54}, - [3195] = {.lex_state = 234, .external_lex_state = 37}, - [3196] = {.lex_state = 218, .external_lex_state = 54}, - [3197] = {.lex_state = 241, .external_lex_state = 53}, - [3198] = {.lex_state = 218, .external_lex_state = 54}, - [3199] = {.lex_state = 218, .external_lex_state = 54}, - [3200] = {.lex_state = 218, .external_lex_state = 54}, - [3201] = {.lex_state = 218, .external_lex_state = 54}, - [3202] = {.lex_state = 218, .external_lex_state = 54}, - [3203] = {.lex_state = 218, .external_lex_state = 54}, - [3204] = {.lex_state = 218, .external_lex_state = 54}, - [3205] = {.lex_state = 218, .external_lex_state = 54}, - [3206] = {.lex_state = 234, .external_lex_state = 37}, - [3207] = {.lex_state = 234, .external_lex_state = 37}, - [3208] = {.lex_state = 218, .external_lex_state = 54}, - [3209] = {.lex_state = 218, .external_lex_state = 54}, - [3210] = {.lex_state = 218, .external_lex_state = 54}, - [3211] = {.lex_state = 218, .external_lex_state = 54}, - [3212] = {.lex_state = 218, .external_lex_state = 54}, - [3213] = {.lex_state = 219, .external_lex_state = 52}, - [3214] = {.lex_state = 219, .external_lex_state = 52}, - [3215] = {.lex_state = 218, .external_lex_state = 54}, - [3216] = {.lex_state = 218, .external_lex_state = 54}, - [3217] = {.lex_state = 218, .external_lex_state = 54}, - [3218] = {.lex_state = 218, .external_lex_state = 54}, - [3219] = {.lex_state = 218, .external_lex_state = 54}, - [3220] = {.lex_state = 218, .external_lex_state = 54}, - [3221] = {.lex_state = 236, .external_lex_state = 44}, - [3222] = {.lex_state = 218, .external_lex_state = 54}, - [3223] = {.lex_state = 218, .external_lex_state = 54}, - [3224] = {.lex_state = 218, .external_lex_state = 54}, - [3225] = {.lex_state = 218, .external_lex_state = 54}, - [3226] = {.lex_state = 234, .external_lex_state = 37}, - [3227] = {.lex_state = 218, .external_lex_state = 54}, - [3228] = {.lex_state = 218, .external_lex_state = 54}, - [3229] = {.lex_state = 218, .external_lex_state = 54}, - [3230] = {.lex_state = 218, .external_lex_state = 54}, - [3231] = {.lex_state = 218, .external_lex_state = 54}, - [3232] = {.lex_state = 218, .external_lex_state = 54}, - [3233] = {.lex_state = 218, .external_lex_state = 54}, - [3234] = {.lex_state = 218, .external_lex_state = 54}, - [3235] = {.lex_state = 218, .external_lex_state = 54}, - [3236] = {.lex_state = 228, .external_lex_state = 51}, - [3237] = {.lex_state = 218, .external_lex_state = 54}, - [3238] = {.lex_state = 218, .external_lex_state = 54}, - [3239] = {.lex_state = 228, .external_lex_state = 51}, - [3240] = {.lex_state = 218, .external_lex_state = 54}, - [3241] = {.lex_state = 218, .external_lex_state = 54}, - [3242] = {.lex_state = 218, .external_lex_state = 54}, - [3243] = {.lex_state = 219, .external_lex_state = 52}, - [3244] = {.lex_state = 228, .external_lex_state = 51}, - [3245] = {.lex_state = 234, .external_lex_state = 37}, - [3246] = {.lex_state = 234, .external_lex_state = 37}, - [3247] = {.lex_state = 218, .external_lex_state = 54}, - [3248] = {.lex_state = 218, .external_lex_state = 54}, - [3249] = {.lex_state = 218, .external_lex_state = 54}, - [3250] = {.lex_state = 218, .external_lex_state = 54}, - [3251] = {.lex_state = 219, .external_lex_state = 52}, - [3252] = {.lex_state = 218, .external_lex_state = 54}, - [3253] = {.lex_state = 236, .external_lex_state = 44}, - [3254] = {.lex_state = 218, .external_lex_state = 54}, - [3255] = {.lex_state = 218, .external_lex_state = 54}, - [3256] = {.lex_state = 218, .external_lex_state = 54}, - [3257] = {.lex_state = 241, .external_lex_state = 53}, - [3258] = {.lex_state = 218, .external_lex_state = 54}, - [3259] = {.lex_state = 218, .external_lex_state = 54}, - [3260] = {.lex_state = 234, .external_lex_state = 37}, - [3261] = {.lex_state = 218, .external_lex_state = 54}, - [3262] = {.lex_state = 218, .external_lex_state = 54}, - [3263] = {.lex_state = 228, .external_lex_state = 51}, - [3264] = {.lex_state = 218, .external_lex_state = 54}, - [3265] = {.lex_state = 234, .external_lex_state = 37}, - [3266] = {.lex_state = 228, .external_lex_state = 51}, - [3267] = {.lex_state = 218, .external_lex_state = 54}, - [3268] = {.lex_state = 218, .external_lex_state = 54}, - [3269] = {.lex_state = 241, .external_lex_state = 53}, - [3270] = {.lex_state = 218, .external_lex_state = 54}, - [3271] = {.lex_state = 228, .external_lex_state = 51}, - [3272] = {.lex_state = 228, .external_lex_state = 51}, - [3273] = {.lex_state = 228, .external_lex_state = 51}, - [3274] = {.lex_state = 218, .external_lex_state = 54}, - [3275] = {.lex_state = 236, .external_lex_state = 44}, - [3276] = {.lex_state = 218, .external_lex_state = 54}, - [3277] = {.lex_state = 218, .external_lex_state = 54}, - [3278] = {.lex_state = 218, .external_lex_state = 54}, - [3279] = {.lex_state = 218, .external_lex_state = 54}, - [3280] = {.lex_state = 234, .external_lex_state = 37}, - [3281] = {.lex_state = 234, .external_lex_state = 37}, - [3282] = {.lex_state = 218, .external_lex_state = 54}, - [3283] = {.lex_state = 228, .external_lex_state = 51}, - [3284] = {.lex_state = 218, .external_lex_state = 54}, - [3285] = {.lex_state = 218, .external_lex_state = 54}, - [3286] = {.lex_state = 234, .external_lex_state = 37}, - [3287] = {.lex_state = 218, .external_lex_state = 54}, - [3288] = {.lex_state = 234, .external_lex_state = 37}, - [3289] = {.lex_state = 228, .external_lex_state = 51}, - [3290] = {.lex_state = 218, .external_lex_state = 54}, - [3291] = {.lex_state = 234, .external_lex_state = 37}, - [3292] = {.lex_state = 218, .external_lex_state = 54}, - [3293] = {.lex_state = 218, .external_lex_state = 54}, - [3294] = {.lex_state = 241, .external_lex_state = 53}, - [3295] = {.lex_state = 234, .external_lex_state = 37}, - [3296] = {.lex_state = 228, .external_lex_state = 51}, - [3297] = {.lex_state = 218, .external_lex_state = 54}, - [3298] = {.lex_state = 218, .external_lex_state = 54}, - [3299] = {.lex_state = 218, .external_lex_state = 54}, - [3300] = {.lex_state = 218, .external_lex_state = 54}, - [3301] = {.lex_state = 226, .external_lex_state = 37}, - [3302] = {.lex_state = 219, .external_lex_state = 55}, - [3303] = {.lex_state = 241, .external_lex_state = 53}, - [3304] = {.lex_state = 226, .external_lex_state = 37}, - [3305] = {.lex_state = 226, .external_lex_state = 37}, - [3306] = {.lex_state = 226, .external_lex_state = 37}, - [3307] = {.lex_state = 219, .external_lex_state = 52}, - [3308] = {.lex_state = 219, .external_lex_state = 52}, - [3309] = {.lex_state = 219, .external_lex_state = 52}, - [3310] = {.lex_state = 226, .external_lex_state = 37}, - [3311] = {.lex_state = 226, .external_lex_state = 37}, - [3312] = {.lex_state = 219, .external_lex_state = 52}, - [3313] = {.lex_state = 241, .external_lex_state = 53}, - [3314] = {.lex_state = 226, .external_lex_state = 37}, - [3315] = {.lex_state = 226, .external_lex_state = 37}, - [3316] = {.lex_state = 236, .external_lex_state = 41}, - [3317] = {.lex_state = 226, .external_lex_state = 37}, - [3318] = {.lex_state = 241, .external_lex_state = 53}, - [3319] = {.lex_state = 226, .external_lex_state = 37}, - [3320] = {.lex_state = 241, .external_lex_state = 53}, - [3321] = {.lex_state = 219, .external_lex_state = 43}, - [3322] = {.lex_state = 226, .external_lex_state = 31}, - [3323] = {.lex_state = 219, .external_lex_state = 52}, - [3324] = {.lex_state = 226, .external_lex_state = 37}, - [3325] = {.lex_state = 226, .external_lex_state = 37}, - [3326] = {.lex_state = 219, .external_lex_state = 52}, - [3327] = {.lex_state = 219, .external_lex_state = 55}, - [3328] = {.lex_state = 226, .external_lex_state = 37}, - [3329] = {.lex_state = 226, .external_lex_state = 37}, - [3330] = {.lex_state = 226, .external_lex_state = 37}, - [3331] = {.lex_state = 241, .external_lex_state = 53}, - [3332] = {.lex_state = 226, .external_lex_state = 37}, - [3333] = {.lex_state = 226, .external_lex_state = 37}, - [3334] = {.lex_state = 226, .external_lex_state = 37}, - [3335] = {.lex_state = 219, .external_lex_state = 52}, - [3336] = {.lex_state = 219, .external_lex_state = 52}, - [3337] = {.lex_state = 226, .external_lex_state = 37}, - [3338] = {.lex_state = 226, .external_lex_state = 37}, - [3339] = {.lex_state = 219, .external_lex_state = 55}, - [3340] = {.lex_state = 226, .external_lex_state = 37}, - [3341] = {.lex_state = 226, .external_lex_state = 37}, - [3342] = {.lex_state = 226, .external_lex_state = 37}, - [3343] = {.lex_state = 219, .external_lex_state = 52}, - [3344] = {.lex_state = 219, .external_lex_state = 52}, - [3345] = {.lex_state = 226, .external_lex_state = 37}, - [3346] = {.lex_state = 219, .external_lex_state = 55}, - [3347] = {.lex_state = 219, .external_lex_state = 55}, - [3348] = {.lex_state = 226, .external_lex_state = 37}, - [3349] = {.lex_state = 226, .external_lex_state = 37}, - [3350] = {.lex_state = 241, .external_lex_state = 53}, - [3351] = {.lex_state = 219, .external_lex_state = 52}, - [3352] = {.lex_state = 226, .external_lex_state = 31}, - [3353] = {.lex_state = 219, .external_lex_state = 52}, - [3354] = {.lex_state = 241, .external_lex_state = 53}, - [3355] = {.lex_state = 219, .external_lex_state = 55}, - [3356] = {.lex_state = 226, .external_lex_state = 37}, - [3357] = {.lex_state = 226, .external_lex_state = 37}, - [3358] = {.lex_state = 241, .external_lex_state = 53}, - [3359] = {.lex_state = 226, .external_lex_state = 37}, - [3360] = {.lex_state = 226, .external_lex_state = 37}, - [3361] = {.lex_state = 219, .external_lex_state = 52}, - [3362] = {.lex_state = 236, .external_lex_state = 41}, - [3363] = {.lex_state = 226, .external_lex_state = 37}, - [3364] = {.lex_state = 226, .external_lex_state = 37}, - [3365] = {.lex_state = 241, .external_lex_state = 53}, - [3366] = {.lex_state = 241, .external_lex_state = 53}, - [3367] = {.lex_state = 219, .external_lex_state = 52}, - [3368] = {.lex_state = 226, .external_lex_state = 37}, - [3369] = {.lex_state = 226, .external_lex_state = 37}, - [3370] = {.lex_state = 219, .external_lex_state = 52}, - [3371] = {.lex_state = 236, .external_lex_state = 41}, - [3372] = {.lex_state = 226, .external_lex_state = 37}, - [3373] = {.lex_state = 226, .external_lex_state = 37}, - [3374] = {.lex_state = 226, .external_lex_state = 37}, - [3375] = {.lex_state = 226, .external_lex_state = 37}, - [3376] = {.lex_state = 241, .external_lex_state = 53}, - [3377] = {.lex_state = 219, .external_lex_state = 52}, - [3378] = {.lex_state = 219, .external_lex_state = 52}, - [3379] = {.lex_state = 226, .external_lex_state = 37}, - [3380] = {.lex_state = 226, .external_lex_state = 37}, - [3381] = {.lex_state = 226, .external_lex_state = 37}, - [3382] = {.lex_state = 219, .external_lex_state = 55}, - [3383] = {.lex_state = 226, .external_lex_state = 37}, - [3384] = {.lex_state = 226, .external_lex_state = 37}, - [3385] = {.lex_state = 226, .external_lex_state = 37}, - [3386] = {.lex_state = 226, .external_lex_state = 37}, - [3387] = {.lex_state = 226, .external_lex_state = 37}, - [3388] = {.lex_state = 226, .external_lex_state = 37}, - [3389] = {.lex_state = 226, .external_lex_state = 37}, - [3390] = {.lex_state = 219, .external_lex_state = 43}, - [3391] = {.lex_state = 226, .external_lex_state = 37}, - [3392] = {.lex_state = 226, .external_lex_state = 37}, - [3393] = {.lex_state = 241, .external_lex_state = 53}, - [3394] = {.lex_state = 226, .external_lex_state = 37}, - [3395] = {.lex_state = 226, .external_lex_state = 37}, - [3396] = {.lex_state = 219, .external_lex_state = 52}, - [3397] = {.lex_state = 226, .external_lex_state = 37}, - [3398] = {.lex_state = 226, .external_lex_state = 37}, - [3399] = {.lex_state = 241, .external_lex_state = 53}, - [3400] = {.lex_state = 226, .external_lex_state = 37}, - [3401] = {.lex_state = 241, .external_lex_state = 53}, - [3402] = {.lex_state = 226, .external_lex_state = 37}, - [3403] = {.lex_state = 226, .external_lex_state = 37}, - [3404] = {.lex_state = 226, .external_lex_state = 37}, - [3405] = {.lex_state = 226, .external_lex_state = 37}, - [3406] = {.lex_state = 226, .external_lex_state = 37}, - [3407] = {.lex_state = 226, .external_lex_state = 37}, - [3408] = {.lex_state = 226, .external_lex_state = 37}, - [3409] = {.lex_state = 241, .external_lex_state = 53}, - [3410] = {.lex_state = 241, .external_lex_state = 53}, - [3411] = {.lex_state = 236, .external_lex_state = 41}, - [3412] = {.lex_state = 241, .external_lex_state = 53}, - [3413] = {.lex_state = 241, .external_lex_state = 53}, - [3414] = {.lex_state = 236, .external_lex_state = 41}, - [3415] = {.lex_state = 226, .external_lex_state = 37}, - [3416] = {.lex_state = 226, .external_lex_state = 37}, - [3417] = {.lex_state = 236, .external_lex_state = 41}, - [3418] = {.lex_state = 219, .external_lex_state = 55}, - [3419] = {.lex_state = 219, .external_lex_state = 55}, - [3420] = {.lex_state = 219, .external_lex_state = 55}, - [3421] = {.lex_state = 219, .external_lex_state = 55}, - [3422] = {.lex_state = 219, .external_lex_state = 55}, - [3423] = {.lex_state = 219, .external_lex_state = 44}, - [3424] = {.lex_state = 219, .external_lex_state = 55}, - [3425] = {.lex_state = 219, .external_lex_state = 55}, - [3426] = {.lex_state = 236, .external_lex_state = 44}, - [3427] = {.lex_state = 219, .external_lex_state = 55}, - [3428] = {.lex_state = 219, .external_lex_state = 44}, - [3429] = {.lex_state = 219, .external_lex_state = 55}, - [3430] = {.lex_state = 226, .external_lex_state = 31}, - [3431] = {.lex_state = 219, .external_lex_state = 44}, - [3432] = {.lex_state = 219, .external_lex_state = 43}, - [3433] = {.lex_state = 219, .external_lex_state = 55}, - [3434] = {.lex_state = 219, .external_lex_state = 55}, - [3435] = {.lex_state = 219, .external_lex_state = 55}, - [3436] = {.lex_state = 219, .external_lex_state = 55}, - [3437] = {.lex_state = 219, .external_lex_state = 55}, - [3438] = {.lex_state = 219, .external_lex_state = 55}, - [3439] = {.lex_state = 150, .external_lex_state = 45}, - [3440] = {.lex_state = 150, .external_lex_state = 45}, - [3441] = {.lex_state = 219, .external_lex_state = 55}, - [3442] = {.lex_state = 219, .external_lex_state = 55}, - [3443] = {.lex_state = 219, .external_lex_state = 55}, - [3444] = {.lex_state = 236, .external_lex_state = 44}, - [3445] = {.lex_state = 236, .external_lex_state = 44}, - [3446] = {.lex_state = 236, .external_lex_state = 44}, - [3447] = {.lex_state = 236, .external_lex_state = 44}, - [3448] = {.lex_state = 236, .external_lex_state = 41}, - [3449] = {.lex_state = 236, .external_lex_state = 43}, - [3450] = {.lex_state = 219, .external_lex_state = 44}, - [3451] = {.lex_state = 236, .external_lex_state = 43}, - [3452] = {.lex_state = 218, .external_lex_state = 54}, - [3453] = {.lex_state = 236, .external_lex_state = 41}, - [3454] = {.lex_state = 236, .external_lex_state = 43}, - [3455] = {.lex_state = 236, .external_lex_state = 41}, - [3456] = {.lex_state = 236, .external_lex_state = 41}, - [3457] = {.lex_state = 236, .external_lex_state = 44}, - [3458] = {.lex_state = 236, .external_lex_state = 44}, - [3459] = {.lex_state = 236, .external_lex_state = 44}, - [3460] = {.lex_state = 236, .external_lex_state = 44}, - [3461] = {.lex_state = 236, .external_lex_state = 44}, - [3462] = {.lex_state = 236, .external_lex_state = 44}, - [3463] = {.lex_state = 236, .external_lex_state = 44}, - [3464] = {.lex_state = 236, .external_lex_state = 44}, - [3465] = {.lex_state = 236, .external_lex_state = 44}, - [3466] = {.lex_state = 236, .external_lex_state = 44}, - [3467] = {.lex_state = 236, .external_lex_state = 44}, - [3468] = {.lex_state = 236, .external_lex_state = 44}, - [3469] = {.lex_state = 236, .external_lex_state = 44}, - [3470] = {.lex_state = 236, .external_lex_state = 44}, - [3471] = {.lex_state = 236, .external_lex_state = 44}, - [3472] = {.lex_state = 236, .external_lex_state = 44}, - [3473] = {.lex_state = 236, .external_lex_state = 44}, - [3474] = {.lex_state = 236, .external_lex_state = 44}, - [3475] = {.lex_state = 236, .external_lex_state = 44}, - [3476] = {.lex_state = 236, .external_lex_state = 44}, - [3477] = {.lex_state = 236, .external_lex_state = 44}, - [3478] = {.lex_state = 236, .external_lex_state = 44}, - [3479] = {.lex_state = 236, .external_lex_state = 44}, - [3480] = {.lex_state = 236, .external_lex_state = 44}, - [3481] = {.lex_state = 236, .external_lex_state = 44}, - [3482] = {.lex_state = 236, .external_lex_state = 44}, - [3483] = {.lex_state = 236, .external_lex_state = 44}, - [3484] = {.lex_state = 236, .external_lex_state = 44}, - [3485] = {.lex_state = 236, .external_lex_state = 44}, - [3486] = {.lex_state = 236, .external_lex_state = 44}, - [3487] = {.lex_state = 236, .external_lex_state = 44}, - [3488] = {.lex_state = 236, .external_lex_state = 44}, - [3489] = {.lex_state = 236, .external_lex_state = 44}, - [3490] = {.lex_state = 236, .external_lex_state = 44}, - [3491] = {.lex_state = 236, .external_lex_state = 44}, - [3492] = {.lex_state = 236, .external_lex_state = 44}, - [3493] = {.lex_state = 236, .external_lex_state = 44}, - [3494] = {.lex_state = 236, .external_lex_state = 44}, - [3495] = {.lex_state = 236, .external_lex_state = 44}, - [3496] = {.lex_state = 212}, - [3497] = {.lex_state = 212}, - [3498] = {.lex_state = 214, .external_lex_state = 56}, - [3499] = {.lex_state = 214, .external_lex_state = 56}, - [3500] = {.lex_state = 213}, - [3501] = {.lex_state = 239}, - [3502] = {.lex_state = 239}, - [3503] = {.lex_state = 215}, - [3504] = {.lex_state = 213}, - [3505] = {.lex_state = 239}, - [3506] = {.lex_state = 213}, - [3507] = {.lex_state = 213}, - [3508] = {.lex_state = 239}, - [3509] = {.lex_state = 239}, - [3510] = {.lex_state = 215}, - [3511] = {.lex_state = 239}, - [3512] = {.lex_state = 213}, - [3513] = {.lex_state = 239}, - [3514] = {.lex_state = 213}, - [3515] = {.lex_state = 239}, - [3516] = {.lex_state = 213}, - [3517] = {.lex_state = 215}, - [3518] = {.lex_state = 213}, - [3519] = {.lex_state = 215}, - [3520] = {.lex_state = 239}, - [3521] = {.lex_state = 213}, - [3522] = {.lex_state = 213}, - [3523] = {.lex_state = 213}, - [3524] = {.lex_state = 213}, - [3525] = {.lex_state = 239}, - [3526] = {.lex_state = 239}, - [3527] = {.lex_state = 215}, - [3528] = {.lex_state = 239}, - [3529] = {.lex_state = 213}, - [3530] = {.lex_state = 239}, - [3531] = {.lex_state = 213}, - [3532] = {.lex_state = 213}, - [3533] = {.lex_state = 239}, - [3534] = {.lex_state = 239}, - [3535] = {.lex_state = 213}, - [3536] = {.lex_state = 215}, - [3537] = {.lex_state = 239}, - [3538] = {.lex_state = 215}, - [3539] = {.lex_state = 213}, - [3540] = {.lex_state = 239}, - [3541] = {.lex_state = 239}, - [3542] = {.lex_state = 213}, - [3543] = {.lex_state = 239}, - [3544] = {.lex_state = 215}, - [3545] = {.lex_state = 239}, - [3546] = {.lex_state = 213}, - [3547] = {.lex_state = 213}, - [3548] = {.lex_state = 213}, - [3549] = {.lex_state = 213}, - [3550] = {.lex_state = 239}, - [3551] = {.lex_state = 213}, - [3552] = {.lex_state = 213}, - [3553] = {.lex_state = 239}, - [3554] = {.lex_state = 213}, - [3555] = {.lex_state = 239}, - [3556] = {.lex_state = 215}, - [3557] = {.lex_state = 213}, - [3558] = {.lex_state = 213}, - [3559] = {.lex_state = 239}, - [3560] = {.lex_state = 213}, - [3561] = {.lex_state = 239}, - [3562] = {.lex_state = 213}, - [3563] = {.lex_state = 239}, - [3564] = {.lex_state = 215}, - [3565] = {.lex_state = 239}, - [3566] = {.lex_state = 213}, - [3567] = {.lex_state = 213}, - [3568] = {.lex_state = 239}, - [3569] = {.lex_state = 213}, - [3570] = {.lex_state = 239}, - [3571] = {.lex_state = 215}, - [3572] = {.lex_state = 213}, - [3573] = {.lex_state = 239}, - [3574] = {.lex_state = 239}, - [3575] = {.lex_state = 239}, - [3576] = {.lex_state = 213}, - [3577] = {.lex_state = 213}, - [3578] = {.lex_state = 213}, - [3579] = {.lex_state = 215}, - [3580] = {.lex_state = 239}, - [3581] = {.lex_state = 215}, - [3582] = {.lex_state = 215}, - [3583] = {.lex_state = 213}, - [3584] = {.lex_state = 215}, - [3585] = {.lex_state = 239}, - [3586] = {.lex_state = 239}, - [3587] = {.lex_state = 213}, - [3588] = {.lex_state = 239}, - [3589] = {.lex_state = 213}, - [3590] = {.lex_state = 239}, - [3591] = {.lex_state = 213}, - [3592] = {.lex_state = 239}, - [3593] = {.lex_state = 213}, - [3594] = {.lex_state = 239}, - [3595] = {.lex_state = 239}, - [3596] = {.lex_state = 215}, - [3597] = {.lex_state = 215}, - [3598] = {.lex_state = 213}, - [3599] = {.lex_state = 213}, - [3600] = {.lex_state = 239}, - [3601] = {.lex_state = 213}, - [3602] = {.lex_state = 213}, - [3603] = {.lex_state = 239}, - [3604] = {.lex_state = 215}, - [3605] = {.lex_state = 239}, - [3606] = {.lex_state = 239}, - [3607] = {.lex_state = 239}, - [3608] = {.lex_state = 213}, - [3609] = {.lex_state = 213}, - [3610] = {.lex_state = 239}, - [3611] = {.lex_state = 239}, - [3612] = {.lex_state = 215}, - [3613] = {.lex_state = 239}, - [3614] = {.lex_state = 213}, - [3615] = {.lex_state = 215}, - [3616] = {.lex_state = 213}, - [3617] = {.lex_state = 239}, - [3618] = {.lex_state = 213}, - [3619] = {.lex_state = 213}, - [3620] = {.lex_state = 215}, - [3621] = {.lex_state = 239}, - [3622] = {.lex_state = 215}, - [3623] = {.lex_state = 213}, - [3624] = {.lex_state = 215}, - [3625] = {.lex_state = 239}, - [3626] = {.lex_state = 213}, - [3627] = {.lex_state = 239}, - [3628] = {.lex_state = 213}, - [3629] = {.lex_state = 213}, - [3630] = {.lex_state = 239}, - [3631] = {.lex_state = 239}, - [3632] = {.lex_state = 213}, - [3633] = {.lex_state = 239}, - [3634] = {.lex_state = 215}, - [3635] = {.lex_state = 213}, - [3636] = {.lex_state = 215}, - [3637] = {.lex_state = 239}, - [3638] = {.lex_state = 213}, - [3639] = {.lex_state = 213}, - [3640] = {.lex_state = 239}, - [3641] = {.lex_state = 213}, - [3642] = {.lex_state = 215}, - [3643] = {.lex_state = 239}, - [3644] = {.lex_state = 239}, - [3645] = {.lex_state = 213}, - [3646] = {.lex_state = 215}, - [3647] = {.lex_state = 213}, - [3648] = {.lex_state = 239}, - [3649] = {.lex_state = 213}, - [3650] = {.lex_state = 239}, - [3651] = {.lex_state = 239}, - [3652] = {.lex_state = 215}, - [3653] = {.lex_state = 215}, - [3654] = {.lex_state = 213}, - [3655] = {.lex_state = 239}, - [3656] = {.lex_state = 213}, - [3657] = {.lex_state = 213}, - [3658] = {.lex_state = 239}, - [3659] = {.lex_state = 213}, - [3660] = {.lex_state = 215}, - [3661] = {.lex_state = 239}, - [3662] = {.lex_state = 239}, - [3663] = {.lex_state = 239}, - [3664] = {.lex_state = 215}, - [3665] = {.lex_state = 213}, - [3666] = {.lex_state = 239}, - [3667] = {.lex_state = 215}, - [3668] = {.lex_state = 239}, - [3669] = {.lex_state = 213}, - [3670] = {.lex_state = 213}, - [3671] = {.lex_state = 213}, - [3672] = {.lex_state = 213}, - [3673] = {.lex_state = 239}, - [3674] = {.lex_state = 213}, - [3675] = {.lex_state = 239}, - [3676] = {.lex_state = 213}, - [3677] = {.lex_state = 239}, - [3678] = {.lex_state = 215}, - [3679] = {.lex_state = 239}, - [3680] = {.lex_state = 213}, - [3681] = {.lex_state = 239}, - [3682] = {.lex_state = 215}, - [3683] = {.lex_state = 213}, - [3684] = {.lex_state = 239}, - [3685] = {.lex_state = 239}, - [3686] = {.lex_state = 213}, - [3687] = {.lex_state = 239}, - [3688] = {.lex_state = 215}, - [3689] = {.lex_state = 213}, - [3690] = {.lex_state = 213}, - [3691] = {.lex_state = 239}, - [3692] = {.lex_state = 213}, - [3693] = {.lex_state = 213}, - [3694] = {.lex_state = 239}, - [3695] = {.lex_state = 213}, - [3696] = {.lex_state = 215}, - [3697] = {.lex_state = 239}, - [3698] = {.lex_state = 239}, - [3699] = {.lex_state = 215}, - [3700] = {.lex_state = 239}, - [3701] = {.lex_state = 213}, - [3702] = {.lex_state = 239}, - [3703] = {.lex_state = 213}, - [3704] = {.lex_state = 215}, - [3705] = {.lex_state = 239}, - [3706] = {.lex_state = 213}, - [3707] = {.lex_state = 213}, - [3708] = {.lex_state = 215}, - [3709] = {.lex_state = 239}, - [3710] = {.lex_state = 213}, - [3711] = {.lex_state = 215}, - [3712] = {.lex_state = 239}, - [3713] = {.lex_state = 213}, - [3714] = {.lex_state = 215}, - [3715] = {.lex_state = 239}, - [3716] = {.lex_state = 213}, - [3717] = {.lex_state = 239}, - [3718] = {.lex_state = 239}, - [3719] = {.lex_state = 213}, - [3720] = {.lex_state = 239}, - [3721] = {.lex_state = 215}, - [3722] = {.lex_state = 239}, - [3723] = {.lex_state = 213}, - [3724] = {.lex_state = 213}, - [3725] = {.lex_state = 239}, - [3726] = {.lex_state = 213}, - [3727] = {.lex_state = 213}, - [3728] = {.lex_state = 213}, - [3729] = {.lex_state = 215}, - [3730] = {.lex_state = 239}, - [3731] = {.lex_state = 215}, - [3732] = {.lex_state = 215}, - [3733] = {.lex_state = 239}, - [3734] = {.lex_state = 213}, - [3735] = {.lex_state = 239}, - [3736] = {.lex_state = 239}, - [3737] = {.lex_state = 213}, - [3738] = {.lex_state = 239}, - [3739] = {.lex_state = 213}, - [3740] = {.lex_state = 213}, - [3741] = {.lex_state = 239}, - [3742] = {.lex_state = 213}, - [3743] = {.lex_state = 215}, - [3744] = {.lex_state = 239}, - [3745] = {.lex_state = 215}, - [3746] = {.lex_state = 213}, - [3747] = {.lex_state = 239}, - [3748] = {.lex_state = 213}, - [3749] = {.lex_state = 213}, - [3750] = {.lex_state = 215}, - [3751] = {.lex_state = 239}, - [3752] = {.lex_state = 239}, - [3753] = {.lex_state = 215}, - [3754] = {.lex_state = 239}, - [3755] = {.lex_state = 213}, - [3756] = {.lex_state = 239}, - [3757] = {.lex_state = 239}, - [3758] = {.lex_state = 216}, - [3759] = {.lex_state = 201, .external_lex_state = 57}, - [3760] = {.lex_state = 217}, - [3761] = {.lex_state = 217}, - [3762] = {.lex_state = 217}, - [3763] = {.lex_state = 201, .external_lex_state = 57}, - [3764] = {.lex_state = 236, .external_lex_state = 58}, - [3765] = {.lex_state = 236, .external_lex_state = 58}, - [3766] = {.lex_state = 236, .external_lex_state = 58}, - [3767] = {.lex_state = 201, .external_lex_state = 57}, - [3768] = {.lex_state = 236, .external_lex_state = 58}, - [3769] = {.lex_state = 201, .external_lex_state = 57}, - [3770] = {.lex_state = 236, .external_lex_state = 58}, - [3771] = {.lex_state = 236, .external_lex_state = 58}, - [3772] = {.lex_state = 201, .external_lex_state = 57}, - [3773] = {.lex_state = 201, .external_lex_state = 57}, - [3774] = {.lex_state = 201, .external_lex_state = 57}, - [3775] = {.lex_state = 236, .external_lex_state = 58}, - [3776] = {.lex_state = 236, .external_lex_state = 58}, - [3777] = {.lex_state = 217}, - [3778] = {.lex_state = 217}, - [3779] = {.lex_state = 217}, - [3780] = {.lex_state = 239, .external_lex_state = 59}, - [3781] = {.lex_state = 392, .external_lex_state = 60}, - [3782] = {.lex_state = 239, .external_lex_state = 59}, - [3783] = {.lex_state = 239, .external_lex_state = 59}, - [3784] = {.lex_state = 239, .external_lex_state = 59}, - [3785] = {.lex_state = 239, .external_lex_state = 59}, - [3786] = {.lex_state = 239, .external_lex_state = 59}, - [3787] = {.lex_state = 239, .external_lex_state = 59}, - [3788] = {.lex_state = 239, .external_lex_state = 59}, - [3789] = {.lex_state = 239, .external_lex_state = 59}, - [3790] = {.lex_state = 239, .external_lex_state = 59}, - [3791] = {.lex_state = 392, .external_lex_state = 60}, - [3792] = {.lex_state = 240}, - [3793] = {.lex_state = 392, .external_lex_state = 60}, - [3794] = {.lex_state = 392, .external_lex_state = 60}, - [3795] = {.lex_state = 392, .external_lex_state = 60}, - [3796] = {.lex_state = 392, .external_lex_state = 60}, - [3797] = {.lex_state = 240}, - [3798] = {.lex_state = 392, .external_lex_state = 60}, - [3799] = {.lex_state = 240}, - [3800] = {.lex_state = 240}, - [3801] = {.lex_state = 240}, - [3802] = {.lex_state = 240}, - [3803] = {.lex_state = 240}, - [3804] = {.lex_state = 240}, - [3805] = {.lex_state = 239}, - [3806] = {.lex_state = 239}, - [3807] = {.lex_state = 392, .external_lex_state = 60}, - [3808] = {.lex_state = 392, .external_lex_state = 60}, - [3809] = {.lex_state = 240}, - [3810] = {.lex_state = 240}, - [3811] = {.lex_state = 392, .external_lex_state = 60}, - [3812] = {.lex_state = 392, .external_lex_state = 60}, - [3813] = {.lex_state = 240}, - [3814] = {.lex_state = 392, .external_lex_state = 60}, - [3815] = {.lex_state = 240}, - [3816] = {.lex_state = 240}, - [3817] = {.lex_state = 240}, - [3818] = {.lex_state = 240}, - [3819] = {.lex_state = 240}, - [3820] = {.lex_state = 392, .external_lex_state = 60}, - [3821] = {.lex_state = 392, .external_lex_state = 45}, - [3822] = {.lex_state = 405}, - [3823] = {.lex_state = 392, .external_lex_state = 60}, - [3824] = {.lex_state = 405}, - [3825] = {.lex_state = 392, .external_lex_state = 60}, - [3826] = {.lex_state = 392, .external_lex_state = 60}, - [3827] = {.lex_state = 201, .external_lex_state = 57}, - [3828] = {.lex_state = 392, .external_lex_state = 60}, - [3829] = {.lex_state = 405}, - [3830] = {.lex_state = 392, .external_lex_state = 60}, - [3831] = {.lex_state = 78, .external_lex_state = 45}, - [3832] = {.lex_state = 392, .external_lex_state = 45}, - [3833] = {.lex_state = 78, .external_lex_state = 45}, - [3834] = {.lex_state = 405}, - [3835] = {.lex_state = 405}, - [3836] = {.lex_state = 405}, - [3837] = {.lex_state = 405}, - [3838] = {.lex_state = 201, .external_lex_state = 57}, - [3839] = {.lex_state = 201, .external_lex_state = 57}, - [3840] = {.lex_state = 392, .external_lex_state = 60}, - [3841] = {.lex_state = 392, .external_lex_state = 60}, - [3842] = {.lex_state = 392, .external_lex_state = 60}, - [3843] = {.lex_state = 201, .external_lex_state = 57}, - [3844] = {.lex_state = 405}, - [3845] = {.lex_state = 405}, - [3846] = {.lex_state = 392, .external_lex_state = 45}, - [3847] = {.lex_state = 405}, - [3848] = {.lex_state = 405}, - [3849] = {.lex_state = 405}, - [3850] = {.lex_state = 78, .external_lex_state = 45}, - [3851] = {.lex_state = 78, .external_lex_state = 45}, - [3852] = {.lex_state = 405}, - [3853] = {.lex_state = 392, .external_lex_state = 60}, - [3854] = {.lex_state = 392, .external_lex_state = 60}, - [3855] = {.lex_state = 405}, - [3856] = {.lex_state = 201, .external_lex_state = 57}, - [3857] = {.lex_state = 78, .external_lex_state = 45}, - [3858] = {.lex_state = 392, .external_lex_state = 60}, - [3859] = {.lex_state = 392, .external_lex_state = 60}, - [3860] = {.lex_state = 405}, - [3861] = {.lex_state = 392, .external_lex_state = 60}, - [3862] = {.lex_state = 392, .external_lex_state = 60}, - [3863] = {.lex_state = 392, .external_lex_state = 45}, - [3864] = {.lex_state = 405}, - [3865] = {.lex_state = 405}, - [3866] = {.lex_state = 405}, - [3867] = {.lex_state = 392, .external_lex_state = 60}, - [3868] = {.lex_state = 201, .external_lex_state = 57}, - [3869] = {.lex_state = 405}, - [3870] = {.lex_state = 392, .external_lex_state = 60}, - [3871] = {.lex_state = 201, .external_lex_state = 57}, - [3872] = {.lex_state = 392, .external_lex_state = 60}, - [3873] = {.lex_state = 392, .external_lex_state = 45}, - [3874] = {.lex_state = 405}, - [3875] = {.lex_state = 405}, - [3876] = {.lex_state = 241}, - [3877] = {.lex_state = 225, .external_lex_state = 59}, - [3878] = {.lex_state = 77, .external_lex_state = 45}, - [3879] = {.lex_state = 225, .external_lex_state = 59}, - [3880] = {.lex_state = 74, .external_lex_state = 45}, - [3881] = {.lex_state = 241}, - [3882] = {.lex_state = 78, .external_lex_state = 45}, - [3883] = {.lex_state = 225, .external_lex_state = 59}, - [3884] = {.lex_state = 78, .external_lex_state = 45}, - [3885] = {.lex_state = 225, .external_lex_state = 59}, - [3886] = {.lex_state = 225, .external_lex_state = 59}, - [3887] = {.lex_state = 77, .external_lex_state = 45}, - [3888] = {.lex_state = 77, .external_lex_state = 45}, - [3889] = {.lex_state = 225, .external_lex_state = 59}, - [3890] = {.lex_state = 241}, - [3891] = {.lex_state = 241}, - [3892] = {.lex_state = 225, .external_lex_state = 59}, - [3893] = {.lex_state = 74, .external_lex_state = 45}, - [3894] = {.lex_state = 241}, - [3895] = {.lex_state = 241}, - [3896] = {.lex_state = 225, .external_lex_state = 59}, - [3897] = {.lex_state = 74, .external_lex_state = 45}, - [3898] = {.lex_state = 241}, - [3899] = {.lex_state = 392, .external_lex_state = 45}, - [3900] = {.lex_state = 74, .external_lex_state = 45}, - [3901] = {.lex_state = 74, .external_lex_state = 45}, - [3902] = {.lex_state = 225, .external_lex_state = 59}, - [3903] = {.lex_state = 74, .external_lex_state = 45}, - [3904] = {.lex_state = 74, .external_lex_state = 45}, - [3905] = {.lex_state = 74, .external_lex_state = 45}, - [3906] = {.lex_state = 241}, - [3907] = {.lex_state = 392, .external_lex_state = 45}, - [3908] = {.lex_state = 392, .external_lex_state = 45}, - [3909] = {.lex_state = 225, .external_lex_state = 59}, - [3910] = {.lex_state = 241}, - [3911] = {.lex_state = 225, .external_lex_state = 59}, - [3912] = {.lex_state = 224}, - [3913] = {.lex_state = 225, .external_lex_state = 59}, - [3914] = {.lex_state = 392, .external_lex_state = 45}, - [3915] = {.lex_state = 225, .external_lex_state = 59}, - [3916] = {.lex_state = 392, .external_lex_state = 45}, - [3917] = {.lex_state = 240}, - [3918] = {.lex_state = 224}, - [3919] = {.lex_state = 74, .external_lex_state = 45}, - [3920] = {.lex_state = 392, .external_lex_state = 45}, - [3921] = {.lex_state = 392, .external_lex_state = 45}, - [3922] = {.lex_state = 392, .external_lex_state = 45}, - [3923] = {.lex_state = 392, .external_lex_state = 45}, - [3924] = {.lex_state = 77, .external_lex_state = 45}, - [3925] = {.lex_state = 392, .external_lex_state = 45}, - [3926] = {.lex_state = 240}, - [3927] = {.lex_state = 392, .external_lex_state = 45}, - [3928] = {.lex_state = 225, .external_lex_state = 59}, - [3929] = {.lex_state = 392, .external_lex_state = 45}, - [3930] = {.lex_state = 224}, - [3931] = {.lex_state = 392, .external_lex_state = 45}, - [3932] = {.lex_state = 209, .external_lex_state = 61}, - [3933] = {.lex_state = 392, .external_lex_state = 45}, - [3934] = {.lex_state = 77, .external_lex_state = 45}, - [3935] = {.lex_state = 224}, - [3936] = {.lex_state = 240}, - [3937] = {.lex_state = 240}, - [3938] = {.lex_state = 392, .external_lex_state = 45}, - [3939] = {.lex_state = 392, .external_lex_state = 45}, - [3940] = {.lex_state = 225, .external_lex_state = 59}, - [3941] = {.lex_state = 225, .external_lex_state = 59}, - [3942] = {.lex_state = 209, .external_lex_state = 61}, - [3943] = {.lex_state = 203}, - [3944] = {.lex_state = 225, .external_lex_state = 59}, - [3945] = {.lex_state = 203}, - [3946] = {.lex_state = 392, .external_lex_state = 45}, - [3947] = {.lex_state = 224}, - [3948] = {.lex_state = 203}, - [3949] = {.lex_state = 74, .external_lex_state = 45}, - [3950] = {.lex_state = 240}, - [3951] = {.lex_state = 203}, - [3952] = {.lex_state = 209, .external_lex_state = 61}, - [3953] = {.lex_state = 203}, - [3954] = {.lex_state = 209, .external_lex_state = 61}, - [3955] = {.lex_state = 225, .external_lex_state = 59}, - [3956] = {.lex_state = 225, .external_lex_state = 59}, - [3957] = {.lex_state = 203}, - [3958] = {.lex_state = 240}, - [3959] = {.lex_state = 203}, - [3960] = {.lex_state = 225, .external_lex_state = 59}, - [3961] = {.lex_state = 203}, - [3962] = {.lex_state = 225, .external_lex_state = 59}, - [3963] = {.lex_state = 225, .external_lex_state = 59}, - [3964] = {.lex_state = 225, .external_lex_state = 59}, - [3965] = {.lex_state = 392, .external_lex_state = 45}, - [3966] = {.lex_state = 209, .external_lex_state = 61}, - [3967] = {.lex_state = 209, .external_lex_state = 61}, - [3968] = {.lex_state = 225, .external_lex_state = 59}, - [3969] = {.lex_state = 225, .external_lex_state = 59}, - [3970] = {.lex_state = 224}, - [3971] = {.lex_state = 225, .external_lex_state = 59}, - [3972] = {.lex_state = 203}, - [3973] = {.lex_state = 240}, - [3974] = {.lex_state = 392, .external_lex_state = 45}, - [3975] = {.lex_state = 203}, - [3976] = {.lex_state = 225, .external_lex_state = 59}, - [3977] = {.lex_state = 225, .external_lex_state = 59}, - [3978] = {.lex_state = 74, .external_lex_state = 45}, - [3979] = {.lex_state = 203}, - [3980] = {.lex_state = 225, .external_lex_state = 59}, - [3981] = {.lex_state = 240}, - [3982] = {.lex_state = 225, .external_lex_state = 59}, - [3983] = {.lex_state = 203}, - [3984] = {.lex_state = 225, .external_lex_state = 59}, - [3985] = {.lex_state = 225, .external_lex_state = 59}, - [3986] = {.lex_state = 209, .external_lex_state = 61}, - [3987] = {.lex_state = 202}, - [3988] = {.lex_state = 405}, - [3989] = {.lex_state = 405}, - [3990] = {.lex_state = 242}, - [3991] = {.lex_state = 202}, - [3992] = {.lex_state = 242}, - [3993] = {.lex_state = 202}, - [3994] = {.lex_state = 405}, - [3995] = {.lex_state = 209, .external_lex_state = 61}, - [3996] = {.lex_state = 209, .external_lex_state = 61}, - [3997] = {.lex_state = 203}, - [3998] = {.lex_state = 209, .external_lex_state = 61}, - [3999] = {.lex_state = 209, .external_lex_state = 61}, - [4000] = {.lex_state = 202}, - [4001] = {.lex_state = 209, .external_lex_state = 61}, - [4002] = {.lex_state = 242}, - [4003] = {.lex_state = 203}, - [4004] = {.lex_state = 209, .external_lex_state = 61}, - [4005] = {.lex_state = 405}, - [4006] = {.lex_state = 405}, - [4007] = {.lex_state = 242}, - [4008] = {.lex_state = 203}, - [4009] = {.lex_state = 203}, - [4010] = {.lex_state = 242}, - [4011] = {.lex_state = 242}, - [4012] = {.lex_state = 405}, - [4013] = {.lex_state = 203}, - [4014] = {.lex_state = 209, .external_lex_state = 61}, + [3007] = {.lex_state = 75, .external_lex_state = 36}, + [3008] = {.lex_state = 75, .external_lex_state = 36}, + [3009] = {.lex_state = 75, .external_lex_state = 36}, + [3010] = {.lex_state = 75, .external_lex_state = 36}, + [3011] = {.lex_state = 426, .external_lex_state = 36}, + [3012] = {.lex_state = 75, .external_lex_state = 36}, + [3013] = {.lex_state = 75, .external_lex_state = 36}, + [3014] = {.lex_state = 426, .external_lex_state = 36}, + [3015] = {.lex_state = 75, .external_lex_state = 36}, + [3016] = {.lex_state = 425, .external_lex_state = 49}, + [3017] = {.lex_state = 425, .external_lex_state = 49}, + [3018] = {.lex_state = 426, .external_lex_state = 36}, + [3019] = {.lex_state = 426, .external_lex_state = 36}, + [3020] = {.lex_state = 249, .external_lex_state = 35}, + [3021] = {.lex_state = 426, .external_lex_state = 36}, + [3022] = {.lex_state = 75, .external_lex_state = 36}, + [3023] = {.lex_state = 75, .external_lex_state = 36}, + [3024] = {.lex_state = 249, .external_lex_state = 35}, + [3025] = {.lex_state = 75, .external_lex_state = 36}, + [3026] = {.lex_state = 426, .external_lex_state = 36}, + [3027] = {.lex_state = 426, .external_lex_state = 36}, + [3028] = {.lex_state = 426, .external_lex_state = 36}, + [3029] = {.lex_state = 426, .external_lex_state = 36}, + [3030] = {.lex_state = 425, .external_lex_state = 49}, + [3031] = {.lex_state = 75, .external_lex_state = 36}, + [3032] = {.lex_state = 425, .external_lex_state = 36}, + [3033] = {.lex_state = 426, .external_lex_state = 36}, + [3034] = {.lex_state = 425, .external_lex_state = 36}, + [3035] = {.lex_state = 426, .external_lex_state = 36}, + [3036] = {.lex_state = 426, .external_lex_state = 36}, + [3037] = {.lex_state = 426, .external_lex_state = 36}, + [3038] = {.lex_state = 426, .external_lex_state = 36}, + [3039] = {.lex_state = 75, .external_lex_state = 36}, + [3040] = {.lex_state = 426, .external_lex_state = 36}, + [3041] = {.lex_state = 426, .external_lex_state = 36}, + [3042] = {.lex_state = 75, .external_lex_state = 36}, + [3043] = {.lex_state = 426, .external_lex_state = 36}, + [3044] = {.lex_state = 75, .external_lex_state = 36}, + [3045] = {.lex_state = 75, .external_lex_state = 36}, + [3046] = {.lex_state = 75, .external_lex_state = 36}, + [3047] = {.lex_state = 258}, + [3048] = {.lex_state = 426, .external_lex_state = 36}, + [3049] = {.lex_state = 425, .external_lex_state = 36}, + [3050] = {.lex_state = 426, .external_lex_state = 36}, + [3051] = {.lex_state = 426, .external_lex_state = 36}, + [3052] = {.lex_state = 426, .external_lex_state = 36}, + [3053] = {.lex_state = 426, .external_lex_state = 36}, + [3054] = {.lex_state = 75, .external_lex_state = 36}, + [3055] = {.lex_state = 75, .external_lex_state = 36}, + [3056] = {.lex_state = 426, .external_lex_state = 36}, + [3057] = {.lex_state = 75, .external_lex_state = 36}, + [3058] = {.lex_state = 426, .external_lex_state = 36}, + [3059] = {.lex_state = 425, .external_lex_state = 49}, + [3060] = {.lex_state = 425, .external_lex_state = 49}, + [3061] = {.lex_state = 75, .external_lex_state = 36}, + [3062] = {.lex_state = 75, .external_lex_state = 36}, + [3063] = {.lex_state = 426, .external_lex_state = 36}, + [3064] = {.lex_state = 75, .external_lex_state = 36}, + [3065] = {.lex_state = 75, .external_lex_state = 36}, + [3066] = {.lex_state = 75, .external_lex_state = 36}, + [3067] = {.lex_state = 75, .external_lex_state = 36}, + [3068] = {.lex_state = 75, .external_lex_state = 36}, + [3069] = {.lex_state = 75, .external_lex_state = 36}, + [3070] = {.lex_state = 426, .external_lex_state = 36}, + [3071] = {.lex_state = 426, .external_lex_state = 36}, + [3072] = {.lex_state = 75, .external_lex_state = 36}, + [3073] = {.lex_state = 426, .external_lex_state = 36}, + [3074] = {.lex_state = 75, .external_lex_state = 36}, + [3075] = {.lex_state = 75, .external_lex_state = 36}, + [3076] = {.lex_state = 75, .external_lex_state = 36}, + [3077] = {.lex_state = 183, .external_lex_state = 38}, + [3078] = {.lex_state = 426, .external_lex_state = 36}, + [3079] = {.lex_state = 426, .external_lex_state = 36}, + [3080] = {.lex_state = 426, .external_lex_state = 36}, + [3081] = {.lex_state = 75, .external_lex_state = 36}, + [3082] = {.lex_state = 426, .external_lex_state = 36}, + [3083] = {.lex_state = 426, .external_lex_state = 36}, + [3084] = {.lex_state = 75, .external_lex_state = 36}, + [3085] = {.lex_state = 426, .external_lex_state = 36}, + [3086] = {.lex_state = 75, .external_lex_state = 36}, + [3087] = {.lex_state = 75, .external_lex_state = 36}, + [3088] = {.lex_state = 426, .external_lex_state = 36}, + [3089] = {.lex_state = 75, .external_lex_state = 36}, + [3090] = {.lex_state = 183, .external_lex_state = 38}, + [3091] = {.lex_state = 426, .external_lex_state = 36}, + [3092] = {.lex_state = 75, .external_lex_state = 36}, + [3093] = {.lex_state = 249, .external_lex_state = 35}, + [3094] = {.lex_state = 180, .external_lex_state = 50}, + [3095] = {.lex_state = 249, .external_lex_state = 35}, + [3096] = {.lex_state = 242, .external_lex_state = 51}, + [3097] = {.lex_state = 242, .external_lex_state = 51}, + [3098] = {.lex_state = 242, .external_lex_state = 51}, + [3099] = {.lex_state = 425, .external_lex_state = 36}, + [3100] = {.lex_state = 249, .external_lex_state = 35}, + [3101] = {.lex_state = 425, .external_lex_state = 36}, + [3102] = {.lex_state = 242, .external_lex_state = 51}, + [3103] = {.lex_state = 242, .external_lex_state = 51}, + [3104] = {.lex_state = 249, .external_lex_state = 35}, + [3105] = {.lex_state = 183, .external_lex_state = 38}, + [3106] = {.lex_state = 251}, + [3107] = {.lex_state = 249, .external_lex_state = 35}, + [3108] = {.lex_state = 251}, + [3109] = {.lex_state = 249, .external_lex_state = 35}, + [3110] = {.lex_state = 426, .external_lex_state = 36}, + [3111] = {.lex_state = 426, .external_lex_state = 36}, + [3112] = {.lex_state = 249, .external_lex_state = 35}, + [3113] = {.lex_state = 249, .external_lex_state = 35}, + [3114] = {.lex_state = 242, .external_lex_state = 51}, + [3115] = {.lex_state = 249, .external_lex_state = 35}, + [3116] = {.lex_state = 180, .external_lex_state = 50}, + [3117] = {.lex_state = 249, .external_lex_state = 35}, + [3118] = {.lex_state = 249, .external_lex_state = 35}, + [3119] = {.lex_state = 426, .external_lex_state = 36}, + [3120] = {.lex_state = 180, .external_lex_state = 50}, + [3121] = {.lex_state = 249, .external_lex_state = 35}, + [3122] = {.lex_state = 249, .external_lex_state = 35}, + [3123] = {.lex_state = 425, .external_lex_state = 36}, + [3124] = {.lex_state = 425, .external_lex_state = 36}, + [3125] = {.lex_state = 249, .external_lex_state = 35}, + [3126] = {.lex_state = 251}, + [3127] = {.lex_state = 251}, + [3128] = {.lex_state = 251}, + [3129] = {.lex_state = 425, .external_lex_state = 36}, + [3130] = {.lex_state = 249, .external_lex_state = 35}, + [3131] = {.lex_state = 251}, + [3132] = {.lex_state = 249, .external_lex_state = 35}, + [3133] = {.lex_state = 249, .external_lex_state = 35}, + [3134] = {.lex_state = 425, .external_lex_state = 36}, + [3135] = {.lex_state = 425, .external_lex_state = 36}, + [3136] = {.lex_state = 75, .external_lex_state = 48}, + [3137] = {.lex_state = 249, .external_lex_state = 35}, + [3138] = {.lex_state = 180, .external_lex_state = 50}, + [3139] = {.lex_state = 180, .external_lex_state = 50}, + [3140] = {.lex_state = 249, .external_lex_state = 35}, + [3141] = {.lex_state = 249, .external_lex_state = 35}, + [3142] = {.lex_state = 249, .external_lex_state = 35}, + [3143] = {.lex_state = 425, .external_lex_state = 36}, + [3144] = {.lex_state = 232, .external_lex_state = 52}, + [3145] = {.lex_state = 232, .external_lex_state = 52}, + [3146] = {.lex_state = 232, .external_lex_state = 52}, + [3147] = {.lex_state = 232, .external_lex_state = 52}, + [3148] = {.lex_state = 251, .external_lex_state = 42}, + [3149] = {.lex_state = 250, .external_lex_state = 37}, + [3150] = {.lex_state = 242, .external_lex_state = 51}, + [3151] = {.lex_state = 75, .external_lex_state = 48}, + [3152] = {.lex_state = 232, .external_lex_state = 52}, + [3153] = {.lex_state = 242, .external_lex_state = 51}, + [3154] = {.lex_state = 232, .external_lex_state = 52}, + [3155] = {.lex_state = 250, .external_lex_state = 37}, + [3156] = {.lex_state = 232, .external_lex_state = 52}, + [3157] = {.lex_state = 425, .external_lex_state = 36}, + [3158] = {.lex_state = 250, .external_lex_state = 37}, + [3159] = {.lex_state = 232, .external_lex_state = 52}, + [3160] = {.lex_state = 250, .external_lex_state = 37}, + [3161] = {.lex_state = 242, .external_lex_state = 51}, + [3162] = {.lex_state = 425, .external_lex_state = 36}, + [3163] = {.lex_state = 232, .external_lex_state = 52}, + [3164] = {.lex_state = 232, .external_lex_state = 52}, + [3165] = {.lex_state = 232, .external_lex_state = 52}, + [3166] = {.lex_state = 232, .external_lex_state = 52}, + [3167] = {.lex_state = 242, .external_lex_state = 51}, + [3168] = {.lex_state = 250, .external_lex_state = 37}, + [3169] = {.lex_state = 75, .external_lex_state = 34}, + [3170] = {.lex_state = 242, .external_lex_state = 51}, + [3171] = {.lex_state = 242, .external_lex_state = 51}, + [3172] = {.lex_state = 232, .external_lex_state = 52}, + [3173] = {.lex_state = 232, .external_lex_state = 52}, + [3174] = {.lex_state = 242, .external_lex_state = 51}, + [3175] = {.lex_state = 250, .external_lex_state = 37}, + [3176] = {.lex_state = 232, .external_lex_state = 52}, + [3177] = {.lex_state = 250, .external_lex_state = 37}, + [3178] = {.lex_state = 242, .external_lex_state = 51}, + [3179] = {.lex_state = 425, .external_lex_state = 36}, + [3180] = {.lex_state = 242, .external_lex_state = 51}, + [3181] = {.lex_state = 232, .external_lex_state = 52}, + [3182] = {.lex_state = 232, .external_lex_state = 52}, + [3183] = {.lex_state = 242, .external_lex_state = 51}, + [3184] = {.lex_state = 232, .external_lex_state = 52}, + [3185] = {.lex_state = 232, .external_lex_state = 52}, + [3186] = {.lex_state = 75, .external_lex_state = 48}, + [3187] = {.lex_state = 232, .external_lex_state = 52}, + [3188] = {.lex_state = 250, .external_lex_state = 37}, + [3189] = {.lex_state = 250, .external_lex_state = 37}, + [3190] = {.lex_state = 250, .external_lex_state = 37}, + [3191] = {.lex_state = 232, .external_lex_state = 52}, + [3192] = {.lex_state = 232, .external_lex_state = 52}, + [3193] = {.lex_state = 232, .external_lex_state = 52}, + [3194] = {.lex_state = 232, .external_lex_state = 52}, + [3195] = {.lex_state = 250, .external_lex_state = 37}, + [3196] = {.lex_state = 232, .external_lex_state = 52}, + [3197] = {.lex_state = 232, .external_lex_state = 52}, + [3198] = {.lex_state = 232, .external_lex_state = 52}, + [3199] = {.lex_state = 250, .external_lex_state = 37}, + [3200] = {.lex_state = 232, .external_lex_state = 52}, + [3201] = {.lex_state = 232, .external_lex_state = 52}, + [3202] = {.lex_state = 250, .external_lex_state = 37}, + [3203] = {.lex_state = 251, .external_lex_state = 42}, + [3204] = {.lex_state = 250, .external_lex_state = 37}, + [3205] = {.lex_state = 232, .external_lex_state = 52}, + [3206] = {.lex_state = 242, .external_lex_state = 51}, + [3207] = {.lex_state = 232, .external_lex_state = 52}, + [3208] = {.lex_state = 232, .external_lex_state = 52}, + [3209] = {.lex_state = 242, .external_lex_state = 51}, + [3210] = {.lex_state = 251, .external_lex_state = 42}, + [3211] = {.lex_state = 250, .external_lex_state = 37}, + [3212] = {.lex_state = 242, .external_lex_state = 51}, + [3213] = {.lex_state = 232, .external_lex_state = 52}, + [3214] = {.lex_state = 248, .external_lex_state = 10}, + [3215] = {.lex_state = 251, .external_lex_state = 42}, + [3216] = {.lex_state = 232, .external_lex_state = 52}, + [3217] = {.lex_state = 248, .external_lex_state = 10}, + [3218] = {.lex_state = 250, .external_lex_state = 37}, + [3219] = {.lex_state = 232, .external_lex_state = 52}, + [3220] = {.lex_state = 232, .external_lex_state = 52}, + [3221] = {.lex_state = 75, .external_lex_state = 36}, + [3222] = {.lex_state = 242, .external_lex_state = 51}, + [3223] = {.lex_state = 232, .external_lex_state = 52}, + [3224] = {.lex_state = 75, .external_lex_state = 36}, + [3225] = {.lex_state = 75, .external_lex_state = 36}, + [3226] = {.lex_state = 75, .external_lex_state = 36}, + [3227] = {.lex_state = 242, .external_lex_state = 51}, + [3228] = {.lex_state = 232, .external_lex_state = 52}, + [3229] = {.lex_state = 242, .external_lex_state = 51}, + [3230] = {.lex_state = 242, .external_lex_state = 51}, + [3231] = {.lex_state = 242, .external_lex_state = 51}, + [3232] = {.lex_state = 232, .external_lex_state = 52}, + [3233] = {.lex_state = 75, .external_lex_state = 49}, + [3234] = {.lex_state = 75, .external_lex_state = 48}, + [3235] = {.lex_state = 242, .external_lex_state = 51}, + [3236] = {.lex_state = 75, .external_lex_state = 48}, + [3237] = {.lex_state = 232, .external_lex_state = 52}, + [3238] = {.lex_state = 250, .external_lex_state = 37}, + [3239] = {.lex_state = 232, .external_lex_state = 53}, + [3240] = {.lex_state = 232, .external_lex_state = 52}, + [3241] = {.lex_state = 250, .external_lex_state = 37}, + [3242] = {.lex_state = 232, .external_lex_state = 52}, + [3243] = {.lex_state = 232, .external_lex_state = 52}, + [3244] = {.lex_state = 232, .external_lex_state = 52}, + [3245] = {.lex_state = 242, .external_lex_state = 51}, + [3246] = {.lex_state = 232, .external_lex_state = 52}, + [3247] = {.lex_state = 232, .external_lex_state = 52}, + [3248] = {.lex_state = 232, .external_lex_state = 52}, + [3249] = {.lex_state = 232, .external_lex_state = 52}, + [3250] = {.lex_state = 250, .external_lex_state = 37}, + [3251] = {.lex_state = 250, .external_lex_state = 37}, + [3252] = {.lex_state = 232, .external_lex_state = 52}, + [3253] = {.lex_state = 250, .external_lex_state = 37}, + [3254] = {.lex_state = 250, .external_lex_state = 37}, + [3255] = {.lex_state = 232, .external_lex_state = 52}, + [3256] = {.lex_state = 250, .external_lex_state = 37}, + [3257] = {.lex_state = 232, .external_lex_state = 52}, + [3258] = {.lex_state = 232, .external_lex_state = 52}, + [3259] = {.lex_state = 232, .external_lex_state = 52}, + [3260] = {.lex_state = 260, .external_lex_state = 54}, + [3261] = {.lex_state = 232, .external_lex_state = 52}, + [3262] = {.lex_state = 75, .external_lex_state = 34}, + [3263] = {.lex_state = 232, .external_lex_state = 52}, + [3264] = {.lex_state = 232, .external_lex_state = 52}, + [3265] = {.lex_state = 251, .external_lex_state = 42}, + [3266] = {.lex_state = 232, .external_lex_state = 52}, + [3267] = {.lex_state = 250, .external_lex_state = 37}, + [3268] = {.lex_state = 232, .external_lex_state = 52}, + [3269] = {.lex_state = 75, .external_lex_state = 36}, + [3270] = {.lex_state = 232, .external_lex_state = 52}, + [3271] = {.lex_state = 232, .external_lex_state = 52}, + [3272] = {.lex_state = 232, .external_lex_state = 52}, + [3273] = {.lex_state = 232, .external_lex_state = 52}, + [3274] = {.lex_state = 232, .external_lex_state = 52}, + [3275] = {.lex_state = 235, .external_lex_state = 55}, + [3276] = {.lex_state = 240, .external_lex_state = 37}, + [3277] = {.lex_state = 235, .external_lex_state = 55}, + [3278] = {.lex_state = 235, .external_lex_state = 55}, + [3279] = {.lex_state = 235, .external_lex_state = 55}, + [3280] = {.lex_state = 235, .external_lex_state = 55}, + [3281] = {.lex_state = 235, .external_lex_state = 55}, + [3282] = {.lex_state = 240, .external_lex_state = 37}, + [3283] = {.lex_state = 235, .external_lex_state = 55}, + [3284] = {.lex_state = 235, .external_lex_state = 55}, + [3285] = {.lex_state = 240, .external_lex_state = 37}, + [3286] = {.lex_state = 260, .external_lex_state = 54}, + [3287] = {.lex_state = 240, .external_lex_state = 37}, + [3288] = {.lex_state = 235, .external_lex_state = 55}, + [3289] = {.lex_state = 251, .external_lex_state = 44}, + [3290] = {.lex_state = 240, .external_lex_state = 37}, + [3291] = {.lex_state = 235, .external_lex_state = 55}, + [3292] = {.lex_state = 240, .external_lex_state = 37}, + [3293] = {.lex_state = 235, .external_lex_state = 55}, + [3294] = {.lex_state = 75, .external_lex_state = 49}, + [3295] = {.lex_state = 235, .external_lex_state = 55}, + [3296] = {.lex_state = 235, .external_lex_state = 55}, + [3297] = {.lex_state = 235, .external_lex_state = 55}, + [3298] = {.lex_state = 235, .external_lex_state = 55}, + [3299] = {.lex_state = 240, .external_lex_state = 37}, + [3300] = {.lex_state = 240, .external_lex_state = 37}, + [3301] = {.lex_state = 235, .external_lex_state = 55}, + [3302] = {.lex_state = 251, .external_lex_state = 47}, + [3303] = {.lex_state = 240, .external_lex_state = 37}, + [3304] = {.lex_state = 240, .external_lex_state = 37}, + [3305] = {.lex_state = 235, .external_lex_state = 55}, + [3306] = {.lex_state = 240, .external_lex_state = 37}, + [3307] = {.lex_state = 235, .external_lex_state = 55}, + [3308] = {.lex_state = 235, .external_lex_state = 55}, + [3309] = {.lex_state = 235, .external_lex_state = 55}, + [3310] = {.lex_state = 240, .external_lex_state = 37}, + [3311] = {.lex_state = 235, .external_lex_state = 55}, + [3312] = {.lex_state = 235, .external_lex_state = 55}, + [3313] = {.lex_state = 240, .external_lex_state = 37}, + [3314] = {.lex_state = 240, .external_lex_state = 37}, + [3315] = {.lex_state = 235, .external_lex_state = 55}, + [3316] = {.lex_state = 240, .external_lex_state = 37}, + [3317] = {.lex_state = 235, .external_lex_state = 55}, + [3318] = {.lex_state = 240, .external_lex_state = 37}, + [3319] = {.lex_state = 240, .external_lex_state = 37}, + [3320] = {.lex_state = 240, .external_lex_state = 37}, + [3321] = {.lex_state = 235, .external_lex_state = 55}, + [3322] = {.lex_state = 235, .external_lex_state = 55}, + [3323] = {.lex_state = 235, .external_lex_state = 55}, + [3324] = {.lex_state = 235, .external_lex_state = 55}, + [3325] = {.lex_state = 235, .external_lex_state = 55}, + [3326] = {.lex_state = 235, .external_lex_state = 55}, + [3327] = {.lex_state = 235, .external_lex_state = 55}, + [3328] = {.lex_state = 240, .external_lex_state = 37}, + [3329] = {.lex_state = 235, .external_lex_state = 55}, + [3330] = {.lex_state = 75, .external_lex_state = 49}, + [3331] = {.lex_state = 235, .external_lex_state = 55}, + [3332] = {.lex_state = 260, .external_lex_state = 54}, + [3333] = {.lex_state = 235, .external_lex_state = 55}, + [3334] = {.lex_state = 260, .external_lex_state = 54}, + [3335] = {.lex_state = 235, .external_lex_state = 55}, + [3336] = {.lex_state = 240, .external_lex_state = 37}, + [3337] = {.lex_state = 240, .external_lex_state = 37}, + [3338] = {.lex_state = 235, .external_lex_state = 55}, + [3339] = {.lex_state = 235, .external_lex_state = 55}, + [3340] = {.lex_state = 235, .external_lex_state = 55}, + [3341] = {.lex_state = 235, .external_lex_state = 55}, + [3342] = {.lex_state = 235, .external_lex_state = 55}, + [3343] = {.lex_state = 235, .external_lex_state = 55}, + [3344] = {.lex_state = 240, .external_lex_state = 37}, + [3345] = {.lex_state = 251, .external_lex_state = 47}, + [3346] = {.lex_state = 240, .external_lex_state = 37}, + [3347] = {.lex_state = 235, .external_lex_state = 55}, + [3348] = {.lex_state = 235, .external_lex_state = 55}, + [3349] = {.lex_state = 235, .external_lex_state = 55}, + [3350] = {.lex_state = 235, .external_lex_state = 55}, + [3351] = {.lex_state = 235, .external_lex_state = 55}, + [3352] = {.lex_state = 235, .external_lex_state = 55}, + [3353] = {.lex_state = 235, .external_lex_state = 55}, + [3354] = {.lex_state = 235, .external_lex_state = 55}, + [3355] = {.lex_state = 240, .external_lex_state = 30}, + [3356] = {.lex_state = 235, .external_lex_state = 55}, + [3357] = {.lex_state = 235, .external_lex_state = 55}, + [3358] = {.lex_state = 235, .external_lex_state = 55}, + [3359] = {.lex_state = 235, .external_lex_state = 55}, + [3360] = {.lex_state = 251, .external_lex_state = 47}, + [3361] = {.lex_state = 235, .external_lex_state = 55}, + [3362] = {.lex_state = 240, .external_lex_state = 37}, + [3363] = {.lex_state = 240, .external_lex_state = 37}, + [3364] = {.lex_state = 232, .external_lex_state = 56}, + [3365] = {.lex_state = 240, .external_lex_state = 37}, + [3366] = {.lex_state = 235, .external_lex_state = 55}, + [3367] = {.lex_state = 235, .external_lex_state = 55}, + [3368] = {.lex_state = 251, .external_lex_state = 47}, + [3369] = {.lex_state = 235, .external_lex_state = 55}, + [3370] = {.lex_state = 251, .external_lex_state = 47}, + [3371] = {.lex_state = 75, .external_lex_state = 49}, + [3372] = {.lex_state = 235, .external_lex_state = 55}, + [3373] = {.lex_state = 240, .external_lex_state = 37}, + [3374] = {.lex_state = 240, .external_lex_state = 37}, + [3375] = {.lex_state = 235, .external_lex_state = 55}, + [3376] = {.lex_state = 235, .external_lex_state = 55}, + [3377] = {.lex_state = 235, .external_lex_state = 55}, + [3378] = {.lex_state = 235, .external_lex_state = 55}, + [3379] = {.lex_state = 240, .external_lex_state = 37}, + [3380] = {.lex_state = 235, .external_lex_state = 55}, + [3381] = {.lex_state = 235, .external_lex_state = 55}, + [3382] = {.lex_state = 260, .external_lex_state = 54}, + [3383] = {.lex_state = 260, .external_lex_state = 54}, + [3384] = {.lex_state = 235, .external_lex_state = 55}, + [3385] = {.lex_state = 240, .external_lex_state = 37}, + [3386] = {.lex_state = 75, .external_lex_state = 49}, + [3387] = {.lex_state = 240, .external_lex_state = 37}, + [3388] = {.lex_state = 240, .external_lex_state = 37}, + [3389] = {.lex_state = 235, .external_lex_state = 55}, + [3390] = {.lex_state = 235, .external_lex_state = 55}, + [3391] = {.lex_state = 240, .external_lex_state = 37}, + [3392] = {.lex_state = 235, .external_lex_state = 55}, + [3393] = {.lex_state = 235, .external_lex_state = 55}, + [3394] = {.lex_state = 235, .external_lex_state = 55}, + [3395] = {.lex_state = 235, .external_lex_state = 55}, + [3396] = {.lex_state = 240, .external_lex_state = 37}, + [3397] = {.lex_state = 240, .external_lex_state = 37}, + [3398] = {.lex_state = 240, .external_lex_state = 37}, + [3399] = {.lex_state = 240, .external_lex_state = 37}, + [3400] = {.lex_state = 240, .external_lex_state = 37}, + [3401] = {.lex_state = 235, .external_lex_state = 55}, + [3402] = {.lex_state = 235, .external_lex_state = 55}, + [3403] = {.lex_state = 235, .external_lex_state = 55}, + [3404] = {.lex_state = 240, .external_lex_state = 37}, + [3405] = {.lex_state = 235, .external_lex_state = 55}, + [3406] = {.lex_state = 251, .external_lex_state = 44}, + [3407] = {.lex_state = 240, .external_lex_state = 37}, + [3408] = {.lex_state = 240, .external_lex_state = 37}, + [3409] = {.lex_state = 235, .external_lex_state = 55}, + [3410] = {.lex_state = 248, .external_lex_state = 10}, + [3411] = {.lex_state = 235, .external_lex_state = 55}, + [3412] = {.lex_state = 232, .external_lex_state = 53}, + [3413] = {.lex_state = 235, .external_lex_state = 55}, + [3414] = {.lex_state = 235, .external_lex_state = 55}, + [3415] = {.lex_state = 240, .external_lex_state = 37}, + [3416] = {.lex_state = 260, .external_lex_state = 54}, + [3417] = {.lex_state = 240, .external_lex_state = 37}, + [3418] = {.lex_state = 260, .external_lex_state = 54}, + [3419] = {.lex_state = 235, .external_lex_state = 55}, + [3420] = {.lex_state = 248, .external_lex_state = 10}, + [3421] = {.lex_state = 235, .external_lex_state = 55}, + [3422] = {.lex_state = 235, .external_lex_state = 55}, + [3423] = {.lex_state = 232, .external_lex_state = 53}, + [3424] = {.lex_state = 235, .external_lex_state = 55}, + [3425] = {.lex_state = 235, .external_lex_state = 55}, + [3426] = {.lex_state = 240, .external_lex_state = 37}, + [3427] = {.lex_state = 235, .external_lex_state = 55}, + [3428] = {.lex_state = 235, .external_lex_state = 55}, + [3429] = {.lex_state = 240, .external_lex_state = 37}, + [3430] = {.lex_state = 232, .external_lex_state = 53}, + [3431] = {.lex_state = 235, .external_lex_state = 55}, + [3432] = {.lex_state = 240, .external_lex_state = 30}, + [3433] = {.lex_state = 75, .external_lex_state = 49}, + [3434] = {.lex_state = 235, .external_lex_state = 55}, + [3435] = {.lex_state = 235, .external_lex_state = 55}, + [3436] = {.lex_state = 75, .external_lex_state = 49}, + [3437] = {.lex_state = 240, .external_lex_state = 37}, + [3438] = {.lex_state = 235, .external_lex_state = 55}, + [3439] = {.lex_state = 235, .external_lex_state = 55}, + [3440] = {.lex_state = 235, .external_lex_state = 55}, + [3441] = {.lex_state = 240, .external_lex_state = 37}, + [3442] = {.lex_state = 240, .external_lex_state = 37}, + [3443] = {.lex_state = 232, .external_lex_state = 53}, + [3444] = {.lex_state = 235, .external_lex_state = 55}, + [3445] = {.lex_state = 235, .external_lex_state = 55}, + [3446] = {.lex_state = 235, .external_lex_state = 55}, + [3447] = {.lex_state = 240, .external_lex_state = 37}, + [3448] = {.lex_state = 240, .external_lex_state = 37}, + [3449] = {.lex_state = 240, .external_lex_state = 37}, + [3450] = {.lex_state = 235, .external_lex_state = 55}, + [3451] = {.lex_state = 251, .external_lex_state = 47}, + [3452] = {.lex_state = 235, .external_lex_state = 55}, + [3453] = {.lex_state = 235, .external_lex_state = 55}, + [3454] = {.lex_state = 235, .external_lex_state = 55}, + [3455] = {.lex_state = 240, .external_lex_state = 37}, + [3456] = {.lex_state = 235, .external_lex_state = 55}, + [3457] = {.lex_state = 240, .external_lex_state = 37}, + [3458] = {.lex_state = 240, .external_lex_state = 37}, + [3459] = {.lex_state = 235, .external_lex_state = 55}, + [3460] = {.lex_state = 240, .external_lex_state = 37}, + [3461] = {.lex_state = 240, .external_lex_state = 37}, + [3462] = {.lex_state = 235, .external_lex_state = 55}, + [3463] = {.lex_state = 240, .external_lex_state = 37}, + [3464] = {.lex_state = 240, .external_lex_state = 37}, + [3465] = {.lex_state = 232, .external_lex_state = 53}, + [3466] = {.lex_state = 235, .external_lex_state = 55}, + [3467] = {.lex_state = 235, .external_lex_state = 55}, + [3468] = {.lex_state = 240, .external_lex_state = 37}, + [3469] = {.lex_state = 235, .external_lex_state = 55}, + [3470] = {.lex_state = 235, .external_lex_state = 55}, + [3471] = {.lex_state = 248, .external_lex_state = 10}, + [3472] = {.lex_state = 235, .external_lex_state = 55}, + [3473] = {.lex_state = 240, .external_lex_state = 37}, + [3474] = {.lex_state = 235, .external_lex_state = 55}, + [3475] = {.lex_state = 240, .external_lex_state = 37}, + [3476] = {.lex_state = 235, .external_lex_state = 55}, + [3477] = {.lex_state = 235, .external_lex_state = 55}, + [3478] = {.lex_state = 240, .external_lex_state = 37}, + [3479] = {.lex_state = 235, .external_lex_state = 55}, + [3480] = {.lex_state = 240, .external_lex_state = 37}, + [3481] = {.lex_state = 235, .external_lex_state = 55}, + [3482] = {.lex_state = 240, .external_lex_state = 37}, + [3483] = {.lex_state = 232, .external_lex_state = 53}, + [3484] = {.lex_state = 232, .external_lex_state = 53}, + [3485] = {.lex_state = 251, .external_lex_state = 42}, + [3486] = {.lex_state = 260, .external_lex_state = 54}, + [3487] = {.lex_state = 75, .external_lex_state = 36}, + [3488] = {.lex_state = 75, .external_lex_state = 36}, + [3489] = {.lex_state = 260, .external_lex_state = 54}, + [3490] = {.lex_state = 232, .external_lex_state = 56}, + [3491] = {.lex_state = 260, .external_lex_state = 54}, + [3492] = {.lex_state = 232, .external_lex_state = 56}, + [3493] = {.lex_state = 260, .external_lex_state = 54}, + [3494] = {.lex_state = 232, .external_lex_state = 56}, + [3495] = {.lex_state = 232, .external_lex_state = 56}, + [3496] = {.lex_state = 260, .external_lex_state = 54}, + [3497] = {.lex_state = 232, .external_lex_state = 44}, + [3498] = {.lex_state = 232, .external_lex_state = 53}, + [3499] = {.lex_state = 232, .external_lex_state = 56}, + [3500] = {.lex_state = 260, .external_lex_state = 54}, + [3501] = {.lex_state = 232, .external_lex_state = 56}, + [3502] = {.lex_state = 251, .external_lex_state = 42}, + [3503] = {.lex_state = 240, .external_lex_state = 30}, + [3504] = {.lex_state = 260, .external_lex_state = 54}, + [3505] = {.lex_state = 232, .external_lex_state = 53}, + [3506] = {.lex_state = 260, .external_lex_state = 54}, + [3507] = {.lex_state = 251, .external_lex_state = 42}, + [3508] = {.lex_state = 260, .external_lex_state = 54}, + [3509] = {.lex_state = 232, .external_lex_state = 53}, + [3510] = {.lex_state = 232, .external_lex_state = 56}, + [3511] = {.lex_state = 232, .external_lex_state = 44}, + [3512] = {.lex_state = 260, .external_lex_state = 54}, + [3513] = {.lex_state = 232, .external_lex_state = 53}, + [3514] = {.lex_state = 232, .external_lex_state = 53}, + [3515] = {.lex_state = 232, .external_lex_state = 53}, + [3516] = {.lex_state = 251, .external_lex_state = 42}, + [3517] = {.lex_state = 260, .external_lex_state = 54}, + [3518] = {.lex_state = 260, .external_lex_state = 54}, + [3519] = {.lex_state = 260, .external_lex_state = 54}, + [3520] = {.lex_state = 232, .external_lex_state = 53}, + [3521] = {.lex_state = 232, .external_lex_state = 53}, + [3522] = {.lex_state = 260, .external_lex_state = 54}, + [3523] = {.lex_state = 260, .external_lex_state = 54}, + [3524] = {.lex_state = 232, .external_lex_state = 53}, + [3525] = {.lex_state = 232, .external_lex_state = 53}, + [3526] = {.lex_state = 232, .external_lex_state = 53}, + [3527] = {.lex_state = 232, .external_lex_state = 53}, + [3528] = {.lex_state = 232, .external_lex_state = 53}, + [3529] = {.lex_state = 260, .external_lex_state = 54}, + [3530] = {.lex_state = 232, .external_lex_state = 53}, + [3531] = {.lex_state = 232, .external_lex_state = 53}, + [3532] = {.lex_state = 232, .external_lex_state = 53}, + [3533] = {.lex_state = 251, .external_lex_state = 42}, + [3534] = {.lex_state = 260, .external_lex_state = 54}, + [3535] = {.lex_state = 260, .external_lex_state = 54}, + [3536] = {.lex_state = 232, .external_lex_state = 53}, + [3537] = {.lex_state = 260, .external_lex_state = 54}, + [3538] = {.lex_state = 260, .external_lex_state = 54}, + [3539] = {.lex_state = 232, .external_lex_state = 53}, + [3540] = {.lex_state = 232, .external_lex_state = 56}, + [3541] = {.lex_state = 232, .external_lex_state = 56}, + [3542] = {.lex_state = 232, .external_lex_state = 56}, + [3543] = {.lex_state = 232, .external_lex_state = 56}, + [3544] = {.lex_state = 232, .external_lex_state = 56}, + [3545] = {.lex_state = 232, .external_lex_state = 56}, + [3546] = {.lex_state = 232, .external_lex_state = 47}, + [3547] = {.lex_state = 163, .external_lex_state = 45}, + [3548] = {.lex_state = 232, .external_lex_state = 56}, + [3549] = {.lex_state = 232, .external_lex_state = 56}, + [3550] = {.lex_state = 232, .external_lex_state = 56}, + [3551] = {.lex_state = 232, .external_lex_state = 47}, + [3552] = {.lex_state = 232, .external_lex_state = 56}, + [3553] = {.lex_state = 251, .external_lex_state = 42}, + [3554] = {.lex_state = 163, .external_lex_state = 45}, + [3555] = {.lex_state = 232, .external_lex_state = 56}, + [3556] = {.lex_state = 232, .external_lex_state = 56}, + [3557] = {.lex_state = 232, .external_lex_state = 56}, + [3558] = {.lex_state = 251, .external_lex_state = 47}, + [3559] = {.lex_state = 232, .external_lex_state = 44}, + [3560] = {.lex_state = 232, .external_lex_state = 47}, + [3561] = {.lex_state = 75, .external_lex_state = 36}, + [3562] = {.lex_state = 232, .external_lex_state = 56}, + [3563] = {.lex_state = 232, .external_lex_state = 56}, + [3564] = {.lex_state = 232, .external_lex_state = 56}, + [3565] = {.lex_state = 232, .external_lex_state = 56}, + [3566] = {.lex_state = 75, .external_lex_state = 36}, + [3567] = {.lex_state = 75, .external_lex_state = 36}, + [3568] = {.lex_state = 251, .external_lex_state = 47}, + [3569] = {.lex_state = 232, .external_lex_state = 56}, + [3570] = {.lex_state = 232, .external_lex_state = 56}, + [3571] = {.lex_state = 232, .external_lex_state = 56}, + [3572] = {.lex_state = 251, .external_lex_state = 44}, + [3573] = {.lex_state = 235, .external_lex_state = 55}, + [3574] = {.lex_state = 251, .external_lex_state = 44}, + [3575] = {.lex_state = 251, .external_lex_state = 42}, + [3576] = {.lex_state = 251, .external_lex_state = 47}, + [3577] = {.lex_state = 251, .external_lex_state = 42}, + [3578] = {.lex_state = 251, .external_lex_state = 44}, + [3579] = {.lex_state = 251, .external_lex_state = 42}, + [3580] = {.lex_state = 232, .external_lex_state = 47}, + [3581] = {.lex_state = 251, .external_lex_state = 42}, + [3582] = {.lex_state = 251, .external_lex_state = 47}, + [3583] = {.lex_state = 251, .external_lex_state = 42}, + [3584] = {.lex_state = 251, .external_lex_state = 42}, + [3585] = {.lex_state = 251, .external_lex_state = 42}, + [3586] = {.lex_state = 251, .external_lex_state = 47}, + [3587] = {.lex_state = 251, .external_lex_state = 42}, + [3588] = {.lex_state = 251, .external_lex_state = 47}, + [3589] = {.lex_state = 251, .external_lex_state = 47}, + [3590] = {.lex_state = 251, .external_lex_state = 47}, + [3591] = {.lex_state = 251, .external_lex_state = 47}, + [3592] = {.lex_state = 251, .external_lex_state = 47}, + [3593] = {.lex_state = 251, .external_lex_state = 47}, + [3594] = {.lex_state = 251, .external_lex_state = 47}, + [3595] = {.lex_state = 251, .external_lex_state = 47}, + [3596] = {.lex_state = 251, .external_lex_state = 47}, + [3597] = {.lex_state = 251, .external_lex_state = 47}, + [3598] = {.lex_state = 251, .external_lex_state = 47}, + [3599] = {.lex_state = 251, .external_lex_state = 47}, + [3600] = {.lex_state = 251, .external_lex_state = 47}, + [3601] = {.lex_state = 251, .external_lex_state = 47}, + [3602] = {.lex_state = 251, .external_lex_state = 47}, + [3603] = {.lex_state = 251, .external_lex_state = 47}, + [3604] = {.lex_state = 251, .external_lex_state = 47}, + [3605] = {.lex_state = 251, .external_lex_state = 47}, + [3606] = {.lex_state = 251, .external_lex_state = 47}, + [3607] = {.lex_state = 251, .external_lex_state = 47}, + [3608] = {.lex_state = 251, .external_lex_state = 47}, + [3609] = {.lex_state = 251, .external_lex_state = 47}, + [3610] = {.lex_state = 251, .external_lex_state = 47}, + [3611] = {.lex_state = 251, .external_lex_state = 47}, + [3612] = {.lex_state = 251, .external_lex_state = 47}, + [3613] = {.lex_state = 251, .external_lex_state = 47}, + [3614] = {.lex_state = 251, .external_lex_state = 47}, + [3615] = {.lex_state = 251, .external_lex_state = 47}, + [3616] = {.lex_state = 251, .external_lex_state = 47}, + [3617] = {.lex_state = 251, .external_lex_state = 47}, + [3618] = {.lex_state = 251, .external_lex_state = 47}, + [3619] = {.lex_state = 251, .external_lex_state = 47}, + [3620] = {.lex_state = 251, .external_lex_state = 47}, + [3621] = {.lex_state = 251, .external_lex_state = 47}, + [3622] = {.lex_state = 251, .external_lex_state = 47}, + [3623] = {.lex_state = 251, .external_lex_state = 47}, + [3624] = {.lex_state = 251, .external_lex_state = 47}, + [3625] = {.lex_state = 251, .external_lex_state = 47}, + [3626] = {.lex_state = 251, .external_lex_state = 47}, + [3627] = {.lex_state = 251, .external_lex_state = 47}, + [3628] = {.lex_state = 251, .external_lex_state = 47}, + [3629] = {.lex_state = 251, .external_lex_state = 47}, + [3630] = {.lex_state = 251, .external_lex_state = 47}, + [3631] = {.lex_state = 228}, + [3632] = {.lex_state = 228}, + [3633] = {.lex_state = 229, .external_lex_state = 57}, + [3634] = {.lex_state = 229, .external_lex_state = 57}, + [3635] = {.lex_state = 257}, + [3636] = {.lex_state = 257}, + [3637] = {.lex_state = 257}, + [3638] = {.lex_state = 257}, + [3639] = {.lex_state = 257}, + [3640] = {.lex_state = 257}, + [3641] = {.lex_state = 257}, + [3642] = {.lex_state = 257}, + [3643] = {.lex_state = 257}, + [3644] = {.lex_state = 257}, + [3645] = {.lex_state = 257}, + [3646] = {.lex_state = 257}, + [3647] = {.lex_state = 257}, + [3648] = {.lex_state = 257}, + [3649] = {.lex_state = 257}, + [3650] = {.lex_state = 257}, + [3651] = {.lex_state = 257}, + [3652] = {.lex_state = 257}, + [3653] = {.lex_state = 257}, + [3654] = {.lex_state = 257}, + [3655] = {.lex_state = 257}, + [3656] = {.lex_state = 257}, + [3657] = {.lex_state = 257}, + [3658] = {.lex_state = 257}, + [3659] = {.lex_state = 257}, + [3660] = {.lex_state = 257}, + [3661] = {.lex_state = 257}, + [3662] = {.lex_state = 257}, + [3663] = {.lex_state = 257}, + [3664] = {.lex_state = 257}, + [3665] = {.lex_state = 257}, + [3666] = {.lex_state = 257}, + [3667] = {.lex_state = 257}, + [3668] = {.lex_state = 257}, + [3669] = {.lex_state = 257}, + [3670] = {.lex_state = 257}, + [3671] = {.lex_state = 257}, + [3672] = {.lex_state = 257}, + [3673] = {.lex_state = 257}, + [3674] = {.lex_state = 257}, + [3675] = {.lex_state = 257}, + [3676] = {.lex_state = 257}, + [3677] = {.lex_state = 257}, + [3678] = {.lex_state = 257}, + [3679] = {.lex_state = 257}, + [3680] = {.lex_state = 257}, + [3681] = {.lex_state = 257}, + [3682] = {.lex_state = 257}, + [3683] = {.lex_state = 257}, + [3684] = {.lex_state = 257}, + [3685] = {.lex_state = 257}, + [3686] = {.lex_state = 257}, + [3687] = {.lex_state = 257}, + [3688] = {.lex_state = 257}, + [3689] = {.lex_state = 257}, + [3690] = {.lex_state = 74, .external_lex_state = 58}, + [3691] = {.lex_state = 74, .external_lex_state = 58}, + [3692] = {.lex_state = 257}, + [3693] = {.lex_state = 257}, + [3694] = {.lex_state = 257}, + [3695] = {.lex_state = 257}, + [3696] = {.lex_state = 257}, + [3697] = {.lex_state = 74, .external_lex_state = 58}, + [3698] = {.lex_state = 257}, + [3699] = {.lex_state = 257}, + [3700] = {.lex_state = 257}, + [3701] = {.lex_state = 257}, + [3702] = {.lex_state = 257}, + [3703] = {.lex_state = 257}, + [3704] = {.lex_state = 257}, + [3705] = {.lex_state = 257}, + [3706] = {.lex_state = 257}, + [3707] = {.lex_state = 257}, + [3708] = {.lex_state = 257}, + [3709] = {.lex_state = 74, .external_lex_state = 58}, + [3710] = {.lex_state = 257}, + [3711] = {.lex_state = 257}, + [3712] = {.lex_state = 257}, + [3713] = {.lex_state = 257}, + [3714] = {.lex_state = 257}, + [3715] = {.lex_state = 257}, + [3716] = {.lex_state = 74, .external_lex_state = 58}, + [3717] = {.lex_state = 257}, + [3718] = {.lex_state = 257}, + [3719] = {.lex_state = 257}, + [3720] = {.lex_state = 74, .external_lex_state = 58}, + [3721] = {.lex_state = 257}, + [3722] = {.lex_state = 257}, + [3723] = {.lex_state = 257}, + [3724] = {.lex_state = 257}, + [3725] = {.lex_state = 257}, + [3726] = {.lex_state = 257}, + [3727] = {.lex_state = 257}, + [3728] = {.lex_state = 257}, + [3729] = {.lex_state = 257}, + [3730] = {.lex_state = 257}, + [3731] = {.lex_state = 257}, + [3732] = {.lex_state = 257}, + [3733] = {.lex_state = 257}, + [3734] = {.lex_state = 257}, + [3735] = {.lex_state = 257}, + [3736] = {.lex_state = 257}, + [3737] = {.lex_state = 257}, + [3738] = {.lex_state = 257}, + [3739] = {.lex_state = 257}, + [3740] = {.lex_state = 257}, + [3741] = {.lex_state = 257}, + [3742] = {.lex_state = 74, .external_lex_state = 58}, + [3743] = {.lex_state = 257}, + [3744] = {.lex_state = 257}, + [3745] = {.lex_state = 257}, + [3746] = {.lex_state = 257}, + [3747] = {.lex_state = 74, .external_lex_state = 58}, + [3748] = {.lex_state = 230}, + [3749] = {.lex_state = 230}, + [3750] = {.lex_state = 231}, + [3751] = {.lex_state = 230}, + [3752] = {.lex_state = 230}, + [3753] = {.lex_state = 231}, + [3754] = {.lex_state = 230}, + [3755] = {.lex_state = 231}, + [3756] = {.lex_state = 231}, + [3757] = {.lex_state = 230}, + [3758] = {.lex_state = 230}, + [3759] = {.lex_state = 230}, + [3760] = {.lex_state = 231}, + [3761] = {.lex_state = 231}, + [3762] = {.lex_state = 231}, + [3763] = {.lex_state = 230}, + [3764] = {.lex_state = 230}, + [3765] = {.lex_state = 230}, + [3766] = {.lex_state = 230}, + [3767] = {.lex_state = 230}, + [3768] = {.lex_state = 230}, + [3769] = {.lex_state = 230}, + [3770] = {.lex_state = 230}, + [3771] = {.lex_state = 230}, + [3772] = {.lex_state = 231}, + [3773] = {.lex_state = 230}, + [3774] = {.lex_state = 231}, + [3775] = {.lex_state = 231}, + [3776] = {.lex_state = 230}, + [3777] = {.lex_state = 230}, + [3778] = {.lex_state = 230}, + [3779] = {.lex_state = 230}, + [3780] = {.lex_state = 230}, + [3781] = {.lex_state = 231}, + [3782] = {.lex_state = 231}, + [3783] = {.lex_state = 230}, + [3784] = {.lex_state = 230}, + [3785] = {.lex_state = 230}, + [3786] = {.lex_state = 230}, + [3787] = {.lex_state = 230}, + [3788] = {.lex_state = 230}, + [3789] = {.lex_state = 230}, + [3790] = {.lex_state = 230}, + [3791] = {.lex_state = 230}, + [3792] = {.lex_state = 230}, + [3793] = {.lex_state = 230}, + [3794] = {.lex_state = 231}, + [3795] = {.lex_state = 230}, + [3796] = {.lex_state = 231}, + [3797] = {.lex_state = 230}, + [3798] = {.lex_state = 231}, + [3799] = {.lex_state = 230}, + [3800] = {.lex_state = 230}, + [3801] = {.lex_state = 230}, + [3802] = {.lex_state = 231}, + [3803] = {.lex_state = 230}, + [3804] = {.lex_state = 230}, + [3805] = {.lex_state = 230}, + [3806] = {.lex_state = 230}, + [3807] = {.lex_state = 230}, + [3808] = {.lex_state = 231}, + [3809] = {.lex_state = 230}, + [3810] = {.lex_state = 230}, + [3811] = {.lex_state = 231}, + [3812] = {.lex_state = 230}, + [3813] = {.lex_state = 231}, + [3814] = {.lex_state = 230}, + [3815] = {.lex_state = 230}, + [3816] = {.lex_state = 231}, + [3817] = {.lex_state = 230}, + [3818] = {.lex_state = 230}, + [3819] = {.lex_state = 230}, + [3820] = {.lex_state = 230}, + [3821] = {.lex_state = 230}, + [3822] = {.lex_state = 231}, + [3823] = {.lex_state = 230}, + [3824] = {.lex_state = 231}, + [3825] = {.lex_state = 231}, + [3826] = {.lex_state = 230}, + [3827] = {.lex_state = 231}, + [3828] = {.lex_state = 230}, + [3829] = {.lex_state = 230}, + [3830] = {.lex_state = 231}, + [3831] = {.lex_state = 230}, + [3832] = {.lex_state = 231}, + [3833] = {.lex_state = 230}, + [3834] = {.lex_state = 230}, + [3835] = {.lex_state = 230}, + [3836] = {.lex_state = 231}, + [3837] = {.lex_state = 230}, + [3838] = {.lex_state = 231}, + [3839] = {.lex_state = 230}, + [3840] = {.lex_state = 230}, + [3841] = {.lex_state = 230}, + [3842] = {.lex_state = 230}, + [3843] = {.lex_state = 230}, + [3844] = {.lex_state = 231}, + [3845] = {.lex_state = 230}, + [3846] = {.lex_state = 231}, + [3847] = {.lex_state = 230}, + [3848] = {.lex_state = 230}, + [3849] = {.lex_state = 231}, + [3850] = {.lex_state = 230}, + [3851] = {.lex_state = 231}, + [3852] = {.lex_state = 231}, + [3853] = {.lex_state = 230}, + [3854] = {.lex_state = 231}, + [3855] = {.lex_state = 230}, + [3856] = {.lex_state = 230}, + [3857] = {.lex_state = 230}, + [3858] = {.lex_state = 231}, + [3859] = {.lex_state = 230}, + [3860] = {.lex_state = 230}, + [3861] = {.lex_state = 231}, + [3862] = {.lex_state = 231}, + [3863] = {.lex_state = 230}, + [3864] = {.lex_state = 230}, + [3865] = {.lex_state = 230}, + [3866] = {.lex_state = 231}, + [3867] = {.lex_state = 231}, + [3868] = {.lex_state = 230}, + [3869] = {.lex_state = 230}, + [3870] = {.lex_state = 231}, + [3871] = {.lex_state = 230}, + [3872] = {.lex_state = 230}, + [3873] = {.lex_state = 230}, + [3874] = {.lex_state = 230}, + [3875] = {.lex_state = 230}, + [3876] = {.lex_state = 230}, + [3877] = {.lex_state = 231}, + [3878] = {.lex_state = 231}, + [3879] = {.lex_state = 230}, + [3880] = {.lex_state = 230}, + [3881] = {.lex_state = 230}, + [3882] = {.lex_state = 230}, + [3883] = {.lex_state = 230}, + [3884] = {.lex_state = 230}, + [3885] = {.lex_state = 230}, + [3886] = {.lex_state = 230}, + [3887] = {.lex_state = 231}, + [3888] = {.lex_state = 231}, + [3889] = {.lex_state = 231}, + [3890] = {.lex_state = 230}, + [3891] = {.lex_state = 230}, + [3892] = {.lex_state = 231}, + [3893] = {.lex_state = 230}, + [3894] = {.lex_state = 230}, + [3895] = {.lex_state = 230}, + [3896] = {.lex_state = 231}, + [3897] = {.lex_state = 231}, + [3898] = {.lex_state = 230}, + [3899] = {.lex_state = 230}, + [3900] = {.lex_state = 233}, + [3901] = {.lex_state = 251, .external_lex_state = 59}, + [3902] = {.lex_state = 216, .external_lex_state = 60}, + [3903] = {.lex_state = 234}, + [3904] = {.lex_state = 251, .external_lex_state = 59}, + [3905] = {.lex_state = 251, .external_lex_state = 59}, + [3906] = {.lex_state = 234}, + [3907] = {.lex_state = 216, .external_lex_state = 60}, + [3908] = {.lex_state = 216, .external_lex_state = 60}, + [3909] = {.lex_state = 251, .external_lex_state = 59}, + [3910] = {.lex_state = 251, .external_lex_state = 59}, + [3911] = {.lex_state = 234}, + [3912] = {.lex_state = 251, .external_lex_state = 59}, + [3913] = {.lex_state = 251, .external_lex_state = 59}, + [3914] = {.lex_state = 234}, + [3915] = {.lex_state = 234}, + [3916] = {.lex_state = 251, .external_lex_state = 59}, + [3917] = {.lex_state = 234}, + [3918] = {.lex_state = 251, .external_lex_state = 59}, + [3919] = {.lex_state = 260}, + [3920] = {.lex_state = 257, .external_lex_state = 61}, + [3921] = {.lex_state = 257, .external_lex_state = 61}, + [3922] = {.lex_state = 257, .external_lex_state = 61}, + [3923] = {.lex_state = 260}, + [3924] = {.lex_state = 257, .external_lex_state = 61}, + [3925] = {.lex_state = 257, .external_lex_state = 61}, + [3926] = {.lex_state = 425, .external_lex_state = 45}, + [3927] = {.lex_state = 257, .external_lex_state = 61}, + [3928] = {.lex_state = 257, .external_lex_state = 61}, + [3929] = {.lex_state = 257, .external_lex_state = 61}, + [3930] = {.lex_state = 257, .external_lex_state = 61}, + [3931] = {.lex_state = 257, .external_lex_state = 61}, + [3932] = {.lex_state = 257, .external_lex_state = 61}, + [3933] = {.lex_state = 257, .external_lex_state = 61}, + [3934] = {.lex_state = 257}, + [3935] = {.lex_state = 257}, + [3936] = {.lex_state = 74, .external_lex_state = 62}, + [3937] = {.lex_state = 76, .external_lex_state = 63}, + [3938] = {.lex_state = 74, .external_lex_state = 62}, + [3939] = {.lex_state = 259}, + [3940] = {.lex_state = 259}, + [3941] = {.lex_state = 259}, + [3942] = {.lex_state = 76, .external_lex_state = 63}, + [3943] = {.lex_state = 76, .external_lex_state = 63}, + [3944] = {.lex_state = 259}, + [3945] = {.lex_state = 259}, + [3946] = {.lex_state = 76, .external_lex_state = 63}, + [3947] = {.lex_state = 259}, + [3948] = {.lex_state = 259}, + [3949] = {.lex_state = 259}, + [3950] = {.lex_state = 259}, + [3951] = {.lex_state = 76, .external_lex_state = 63}, + [3952] = {.lex_state = 76, .external_lex_state = 63}, + [3953] = {.lex_state = 259}, + [3954] = {.lex_state = 76, .external_lex_state = 63}, + [3955] = {.lex_state = 259}, + [3956] = {.lex_state = 76, .external_lex_state = 63}, + [3957] = {.lex_state = 259}, + [3958] = {.lex_state = 76, .external_lex_state = 63}, + [3959] = {.lex_state = 76, .external_lex_state = 63}, + [3960] = {.lex_state = 259}, + [3961] = {.lex_state = 259}, + [3962] = {.lex_state = 259}, + [3963] = {.lex_state = 259}, + [3964] = {.lex_state = 259}, + [3965] = {.lex_state = 259}, + [3966] = {.lex_state = 259}, + [3967] = {.lex_state = 76, .external_lex_state = 63}, + [3968] = {.lex_state = 224}, + [3969] = {.lex_state = 76, .external_lex_state = 45}, + [3970] = {.lex_state = 76, .external_lex_state = 63}, + [3971] = {.lex_state = 224}, + [3972] = {.lex_state = 224}, + [3973] = {.lex_state = 216, .external_lex_state = 60}, + [3974] = {.lex_state = 76, .external_lex_state = 63}, + [3975] = {.lex_state = 76, .external_lex_state = 63}, + [3976] = {.lex_state = 224}, + [3977] = {.lex_state = 224}, + [3978] = {.lex_state = 216, .external_lex_state = 60}, + [3979] = {.lex_state = 76, .external_lex_state = 63}, + [3980] = {.lex_state = 76, .external_lex_state = 63}, + [3981] = {.lex_state = 224}, + [3982] = {.lex_state = 76, .external_lex_state = 63}, + [3983] = {.lex_state = 76, .external_lex_state = 63}, + [3984] = {.lex_state = 224}, + [3985] = {.lex_state = 216, .external_lex_state = 60}, + [3986] = {.lex_state = 216, .external_lex_state = 60}, + [3987] = {.lex_state = 224}, + [3988] = {.lex_state = 224}, + [3989] = {.lex_state = 76, .external_lex_state = 63}, + [3990] = {.lex_state = 76, .external_lex_state = 63}, + [3991] = {.lex_state = 76, .external_lex_state = 63}, + [3992] = {.lex_state = 224}, + [3993] = {.lex_state = 76, .external_lex_state = 63}, + [3994] = {.lex_state = 216, .external_lex_state = 60}, + [3995] = {.lex_state = 76, .external_lex_state = 45}, + [3996] = {.lex_state = 76, .external_lex_state = 63}, + [3997] = {.lex_state = 224}, + [3998] = {.lex_state = 76, .external_lex_state = 63}, + [3999] = {.lex_state = 76, .external_lex_state = 63}, + [4000] = {.lex_state = 224}, + [4001] = {.lex_state = 76, .external_lex_state = 63}, + [4002] = {.lex_state = 224}, + [4003] = {.lex_state = 216, .external_lex_state = 60}, + [4004] = {.lex_state = 224}, + [4005] = {.lex_state = 216, .external_lex_state = 60}, + [4006] = {.lex_state = 76, .external_lex_state = 63}, + [4007] = {.lex_state = 224}, + [4008] = {.lex_state = 224}, + [4009] = {.lex_state = 76, .external_lex_state = 45}, + [4010] = {.lex_state = 76, .external_lex_state = 63}, + [4011] = {.lex_state = 224}, + [4012] = {.lex_state = 224}, + [4013] = {.lex_state = 224}, + [4014] = {.lex_state = 76, .external_lex_state = 45}, [4015] = {.lex_state = 224}, - [4016] = {.lex_state = 242}, - [4017] = {.lex_state = 203}, - [4018] = {.lex_state = 203}, - [4019] = {.lex_state = 405}, - [4020] = {.lex_state = 203}, - [4021] = {.lex_state = 405}, - [4022] = {.lex_state = 209, .external_lex_state = 56}, - [4023] = {.lex_state = 242}, - [4024] = {.lex_state = 209, .external_lex_state = 61}, - [4025] = {.lex_state = 202}, - [4026] = {.lex_state = 242}, - [4027] = {.lex_state = 203}, - [4028] = {.lex_state = 209, .external_lex_state = 61}, - [4029] = {.lex_state = 209, .external_lex_state = 61}, - [4030] = {.lex_state = 242}, - [4031] = {.lex_state = 405}, - [4032] = {.lex_state = 405}, - [4033] = {.lex_state = 242}, - [4034] = {.lex_state = 242}, - [4035] = {.lex_state = 209, .external_lex_state = 61}, - [4036] = {.lex_state = 209, .external_lex_state = 61}, - [4037] = {.lex_state = 203}, - [4038] = {.lex_state = 203}, - [4039] = {.lex_state = 209, .external_lex_state = 61}, - [4040] = {.lex_state = 405}, - [4041] = {.lex_state = 405}, - [4042] = {.lex_state = 405}, - [4043] = {.lex_state = 242}, - [4044] = {.lex_state = 203}, - [4045] = {.lex_state = 242}, - [4046] = {.lex_state = 203}, - [4047] = {.lex_state = 242}, - [4048] = {.lex_state = 209, .external_lex_state = 61}, - [4049] = {.lex_state = 236, .external_lex_state = 59}, - [4050] = {.lex_state = 236, .external_lex_state = 59}, - [4051] = {.lex_state = 405}, - [4052] = {.lex_state = 203}, - [4053] = {.lex_state = 405}, - [4054] = {.lex_state = 405}, - [4055] = {.lex_state = 242}, - [4056] = {.lex_state = 405}, - [4057] = {.lex_state = 405}, - [4058] = {.lex_state = 405}, - [4059] = {.lex_state = 236, .external_lex_state = 59}, - [4060] = {.lex_state = 242}, - [4061] = {.lex_state = 405}, - [4062] = {.lex_state = 203}, - [4063] = {.lex_state = 202}, - [4064] = {.lex_state = 203}, - [4065] = {.lex_state = 405}, - [4066] = {.lex_state = 405}, - [4067] = {.lex_state = 203}, - [4068] = {.lex_state = 242}, - [4069] = {.lex_state = 236, .external_lex_state = 59}, - [4070] = {.lex_state = 242}, - [4071] = {.lex_state = 209, .external_lex_state = 56}, - [4072] = {.lex_state = 202}, - [4073] = {.lex_state = 203}, - [4074] = {.lex_state = 405}, - [4075] = {.lex_state = 405}, - [4076] = {.lex_state = 405}, - [4077] = {.lex_state = 405}, - [4078] = {.lex_state = 405}, - [4079] = {.lex_state = 209, .external_lex_state = 61}, - [4080] = {.lex_state = 405}, - [4081] = {.lex_state = 405}, - [4082] = {.lex_state = 405}, - [4083] = {.lex_state = 405}, - [4084] = {.lex_state = 209, .external_lex_state = 61}, - [4085] = {.lex_state = 405}, - [4086] = {.lex_state = 405}, - [4087] = {.lex_state = 242}, - [4088] = {.lex_state = 203}, - [4089] = {.lex_state = 209, .external_lex_state = 61}, - [4090] = {.lex_state = 236}, - [4091] = {.lex_state = 236}, - [4092] = {.lex_state = 236}, - [4093] = {.lex_state = 405}, - [4094] = {.lex_state = 405}, - [4095] = {.lex_state = 236}, - [4096] = {.lex_state = 405}, - [4097] = {.lex_state = 236}, - [4098] = {.lex_state = 241}, - [4099] = {.lex_state = 236}, - [4100] = {.lex_state = 202}, - [4101] = {.lex_state = 202}, - [4102] = {.lex_state = 405}, - [4103] = {.lex_state = 202}, - [4104] = {.lex_state = 241}, - [4105] = {.lex_state = 202}, - [4106] = {.lex_state = 236}, - [4107] = {.lex_state = 202}, - [4108] = {.lex_state = 405}, - [4109] = {.lex_state = 241}, - [4110] = {.lex_state = 405}, - [4111] = {.lex_state = 405}, - [4112] = {.lex_state = 236}, - [4113] = {.lex_state = 405}, - [4114] = {.lex_state = 241}, - [4115] = {.lex_state = 405}, - [4116] = {.lex_state = 202}, - [4117] = {.lex_state = 405}, - [4118] = {.lex_state = 405}, - [4119] = {.lex_state = 405}, - [4120] = {.lex_state = 405}, - [4121] = {.lex_state = 405}, - [4122] = {.lex_state = 242}, - [4123] = {.lex_state = 241}, - [4124] = {.lex_state = 405}, - [4125] = {.lex_state = 209, .external_lex_state = 56}, - [4126] = {.lex_state = 405}, - [4127] = {.lex_state = 241}, - [4128] = {.lex_state = 405}, - [4129] = {.lex_state = 405}, - [4130] = {.lex_state = 241}, - [4131] = {.lex_state = 405}, - [4132] = {.lex_state = 405}, - [4133] = {.lex_state = 405}, - [4134] = {.lex_state = 405}, - [4135] = {.lex_state = 405}, - [4136] = {.lex_state = 405}, - [4137] = {.lex_state = 405}, - [4138] = {.lex_state = 405}, - [4139] = {.lex_state = 405}, - [4140] = {.lex_state = 241}, - [4141] = {.lex_state = 405}, - [4142] = {.lex_state = 236}, - [4143] = {.lex_state = 405}, - [4144] = {.lex_state = 236}, - [4145] = {.lex_state = 236}, - [4146] = {.lex_state = 236}, - [4147] = {.lex_state = 405}, - [4148] = {.lex_state = 236}, - [4149] = {.lex_state = 405}, - [4150] = {.lex_state = 405}, - [4151] = {.lex_state = 203}, - [4152] = {.lex_state = 236}, - [4153] = {.lex_state = 405}, - [4154] = {.lex_state = 236}, - [4155] = {.lex_state = 405}, - [4156] = {.lex_state = 405}, - [4157] = {.lex_state = 405}, - [4158] = {.lex_state = 236}, - [4159] = {.lex_state = 405}, - [4160] = {.lex_state = 236}, - [4161] = {.lex_state = 405}, - [4162] = {.lex_state = 236}, - [4163] = {.lex_state = 405}, - [4164] = {.lex_state = 236}, - [4165] = {.lex_state = 405}, - [4166] = {.lex_state = 203}, - [4167] = {.lex_state = 236}, - [4168] = {.lex_state = 405}, - [4169] = {.lex_state = 236}, - [4170] = {.lex_state = 405}, - [4171] = {.lex_state = 236}, - [4172] = {.lex_state = 405}, - [4173] = {.lex_state = 405}, - [4174] = {.lex_state = 236}, - [4175] = {.lex_state = 405}, - [4176] = {.lex_state = 405}, - [4177] = {.lex_state = 405}, - [4178] = {.lex_state = 236}, - [4179] = {.lex_state = 405}, - [4180] = {.lex_state = 405}, - [4181] = {.lex_state = 405}, - [4182] = {.lex_state = 405}, - [4183] = {.lex_state = 405}, - [4184] = {.lex_state = 405}, - [4185] = {.lex_state = 405}, - [4186] = {.lex_state = 405}, - [4187] = {.lex_state = 203}, - [4188] = {.lex_state = 405}, - [4189] = {.lex_state = 405}, - [4190] = {.lex_state = 241}, - [4191] = {.lex_state = 405}, - [4192] = {.lex_state = 405}, - [4193] = {.lex_state = 405}, - [4194] = {.lex_state = 201, .external_lex_state = 56}, - [4195] = {.lex_state = 207}, - [4196] = {.lex_state = 201, .external_lex_state = 56}, - [4197] = {.lex_state = 405}, - [4198] = {.lex_state = 241}, - [4199] = {.lex_state = 405}, - [4200] = {.lex_state = 405}, - [4201] = {.lex_state = 405}, - [4202] = {.lex_state = 201, .external_lex_state = 56}, - [4203] = {.lex_state = 207}, - [4204] = {.lex_state = 201, .external_lex_state = 56}, - [4205] = {.lex_state = 405}, - [4206] = {.lex_state = 405}, - [4207] = {.lex_state = 405}, - [4208] = {.lex_state = 203}, - [4209] = {.lex_state = 405}, - [4210] = {.lex_state = 186}, - [4211] = {.lex_state = 203}, - [4212] = {.lex_state = 203}, - [4213] = {.lex_state = 405}, - [4214] = {.lex_state = 201, .external_lex_state = 56}, - [4215] = {.lex_state = 207}, - [4216] = {.lex_state = 201, .external_lex_state = 56}, - [4217] = {.lex_state = 405}, - [4218] = {.lex_state = 405}, - [4219] = {.lex_state = 405}, - [4220] = {.lex_state = 405}, - [4221] = {.lex_state = 201, .external_lex_state = 56}, - [4222] = {.lex_state = 207}, - [4223] = {.lex_state = 201, .external_lex_state = 56}, - [4224] = {.lex_state = 405}, - [4225] = {.lex_state = 405}, - [4226] = {.lex_state = 405}, - [4227] = {.lex_state = 405}, - [4228] = {.lex_state = 201, .external_lex_state = 56}, - [4229] = {.lex_state = 405}, - [4230] = {.lex_state = 207}, - [4231] = {.lex_state = 201, .external_lex_state = 56}, - [4232] = {.lex_state = 405}, - [4233] = {.lex_state = 405}, - [4234] = {.lex_state = 405}, - [4235] = {.lex_state = 405}, - [4236] = {.lex_state = 201, .external_lex_state = 56}, - [4237] = {.lex_state = 207}, - [4238] = {.lex_state = 207}, - [4239] = {.lex_state = 201, .external_lex_state = 56}, - [4240] = {.lex_state = 405}, - [4241] = {.lex_state = 241}, - [4242] = {.lex_state = 405}, - [4243] = {.lex_state = 405}, - [4244] = {.lex_state = 405}, - [4245] = {.lex_state = 201, .external_lex_state = 56}, - [4246] = {.lex_state = 241}, - [4247] = {.lex_state = 201, .external_lex_state = 56}, - [4248] = {.lex_state = 207}, - [4249] = {.lex_state = 201, .external_lex_state = 56}, - [4250] = {.lex_state = 405}, - [4251] = {.lex_state = 405}, - [4252] = {.lex_state = 405}, - [4253] = {.lex_state = 405}, - [4254] = {.lex_state = 203}, - [4255] = {.lex_state = 201, .external_lex_state = 56}, - [4256] = {.lex_state = 241}, - [4257] = {.lex_state = 201, .external_lex_state = 56}, - [4258] = {.lex_state = 405}, - [4259] = {.lex_state = 207}, - [4260] = {.lex_state = 201, .external_lex_state = 56}, - [4261] = {.lex_state = 405}, - [4262] = {.lex_state = 405}, - [4263] = {.lex_state = 405}, - [4264] = {.lex_state = 405}, - [4265] = {.lex_state = 405}, - [4266] = {.lex_state = 203}, - [4267] = {.lex_state = 186}, - [4268] = {.lex_state = 203}, - [4269] = {.lex_state = 203}, - [4270] = {.lex_state = 201, .external_lex_state = 56}, - [4271] = {.lex_state = 405}, - [4272] = {.lex_state = 207}, - [4273] = {.lex_state = 201, .external_lex_state = 56}, - [4274] = {.lex_state = 405}, - [4275] = {.lex_state = 405}, - [4276] = {.lex_state = 405}, - [4277] = {.lex_state = 405}, - [4278] = {.lex_state = 201, .external_lex_state = 56}, - [4279] = {.lex_state = 405}, - [4280] = {.lex_state = 207}, - [4281] = {.lex_state = 201, .external_lex_state = 56}, - [4282] = {.lex_state = 405}, - [4283] = {.lex_state = 405}, - [4284] = {.lex_state = 241}, - [4285] = {.lex_state = 405}, - [4286] = {.lex_state = 201, .external_lex_state = 56}, - [4287] = {.lex_state = 405}, - [4288] = {.lex_state = 201, .external_lex_state = 56}, - [4289] = {.lex_state = 207}, - [4290] = {.lex_state = 201, .external_lex_state = 56}, - [4291] = {.lex_state = 405}, - [4292] = {.lex_state = 207}, - [4293] = {.lex_state = 203}, - [4294] = {.lex_state = 201, .external_lex_state = 56}, - [4295] = {.lex_state = 405}, - [4296] = {.lex_state = 405}, - [4297] = {.lex_state = 241}, - [4298] = {.lex_state = 405}, - [4299] = {.lex_state = 405}, - [4300] = {.lex_state = 201, .external_lex_state = 56}, - [4301] = {.lex_state = 405}, - [4302] = {.lex_state = 207}, - [4303] = {.lex_state = 405}, - [4304] = {.lex_state = 405}, - [4305] = {.lex_state = 201, .external_lex_state = 56}, - [4306] = {.lex_state = 203}, - [4307] = {.lex_state = 405}, - [4308] = {.lex_state = 405}, - [4309] = {.lex_state = 241}, - [4310] = {.lex_state = 405}, - [4311] = {.lex_state = 405}, - [4312] = {.lex_state = 201, .external_lex_state = 56}, - [4313] = {.lex_state = 405}, - [4314] = {.lex_state = 207}, - [4315] = {.lex_state = 405}, - [4316] = {.lex_state = 405}, - [4317] = {.lex_state = 201, .external_lex_state = 56}, - [4318] = {.lex_state = 203}, - [4319] = {.lex_state = 405}, - [4320] = {.lex_state = 405}, - [4321] = {.lex_state = 405}, - [4322] = {.lex_state = 405}, - [4323] = {.lex_state = 201, .external_lex_state = 56}, - [4324] = {.lex_state = 201, .external_lex_state = 56}, - [4325] = {.lex_state = 201, .external_lex_state = 56}, - [4326] = {.lex_state = 207}, - [4327] = {.lex_state = 201, .external_lex_state = 56}, - [4328] = {.lex_state = 203}, - [4329] = {.lex_state = 207}, - [4330] = {.lex_state = 201, .external_lex_state = 56}, - [4331] = {.lex_state = 405}, - [4332] = {.lex_state = 405}, - [4333] = {.lex_state = 405}, - [4334] = {.lex_state = 405}, - [4335] = {.lex_state = 201, .external_lex_state = 56}, - [4336] = {.lex_state = 201, .external_lex_state = 56}, - [4337] = {.lex_state = 203}, - [4338] = {.lex_state = 405}, - [4339] = {.lex_state = 207}, - [4340] = {.lex_state = 201, .external_lex_state = 56}, - [4341] = {.lex_state = 405}, - [4342] = {.lex_state = 405}, - [4343] = {.lex_state = 405}, - [4344] = {.lex_state = 405}, - [4345] = {.lex_state = 405}, - [4346] = {.lex_state = 203}, - [4347] = {.lex_state = 201, .external_lex_state = 56}, - [4348] = {.lex_state = 405}, - [4349] = {.lex_state = 207}, - [4350] = {.lex_state = 201, .external_lex_state = 56}, - [4351] = {.lex_state = 405}, - [4352] = {.lex_state = 405}, - [4353] = {.lex_state = 405}, - [4354] = {.lex_state = 201, .external_lex_state = 56}, - [4355] = {.lex_state = 203}, - [4356] = {.lex_state = 405}, - [4357] = {.lex_state = 201, .external_lex_state = 56}, - [4358] = {.lex_state = 207}, - [4359] = {.lex_state = 207}, - [4360] = {.lex_state = 201, .external_lex_state = 56}, - [4361] = {.lex_state = 203}, - [4362] = {.lex_state = 405}, - [4363] = {.lex_state = 405}, - [4364] = {.lex_state = 203}, - [4365] = {.lex_state = 405}, - [4366] = {.lex_state = 405}, - [4367] = {.lex_state = 405}, - [4368] = {.lex_state = 201, .external_lex_state = 56}, - [4369] = {.lex_state = 201, .external_lex_state = 56}, - [4370] = {.lex_state = 207}, - [4371] = {.lex_state = 201, .external_lex_state = 56}, - [4372] = {.lex_state = 405}, - [4373] = {.lex_state = 203}, - [4374] = {.lex_state = 405}, - [4375] = {.lex_state = 405}, - [4376] = {.lex_state = 405}, - [4377] = {.lex_state = 203}, - [4378] = {.lex_state = 405}, - [4379] = {.lex_state = 201, .external_lex_state = 56}, - [4380] = {.lex_state = 405}, - [4381] = {.lex_state = 405}, - [4382] = {.lex_state = 203}, - [4383] = {.lex_state = 405}, - [4384] = {.lex_state = 207}, - [4385] = {.lex_state = 201, .external_lex_state = 56}, - [4386] = {.lex_state = 405}, - [4387] = {.lex_state = 405}, - [4388] = {.lex_state = 405}, - [4389] = {.lex_state = 405}, - [4390] = {.lex_state = 207}, - [4391] = {.lex_state = 203}, - [4392] = {.lex_state = 201, .external_lex_state = 56}, - [4393] = {.lex_state = 201, .external_lex_state = 56}, - [4394] = {.lex_state = 207}, - [4395] = {.lex_state = 241}, - [4396] = {.lex_state = 201, .external_lex_state = 56}, - [4397] = {.lex_state = 405}, - [4398] = {.lex_state = 405}, - [4399] = {.lex_state = 203}, - [4400] = {.lex_state = 405}, - [4401] = {.lex_state = 405}, - [4402] = {.lex_state = 405}, - [4403] = {.lex_state = 201, .external_lex_state = 56}, - [4404] = {.lex_state = 405}, - [4405] = {.lex_state = 207}, - [4406] = {.lex_state = 405}, - [4407] = {.lex_state = 203}, - [4408] = {.lex_state = 201, .external_lex_state = 56}, - [4409] = {.lex_state = 405}, - [4410] = {.lex_state = 405}, - [4411] = {.lex_state = 405}, - [4412] = {.lex_state = 405}, - [4413] = {.lex_state = 201, .external_lex_state = 56}, - [4414] = {.lex_state = 405}, - [4415] = {.lex_state = 203}, - [4416] = {.lex_state = 405}, - [4417] = {.lex_state = 203}, - [4418] = {.lex_state = 207}, - [4419] = {.lex_state = 201, .external_lex_state = 56}, - [4420] = {.lex_state = 405}, - [4421] = {.lex_state = 405}, - [4422] = {.lex_state = 201, .external_lex_state = 56}, - [4423] = {.lex_state = 203}, - [4424] = {.lex_state = 405}, - [4425] = {.lex_state = 405}, - [4426] = {.lex_state = 201, .external_lex_state = 56}, - [4427] = {.lex_state = 207}, - [4428] = {.lex_state = 207}, - [4429] = {.lex_state = 203}, - [4430] = {.lex_state = 207}, - [4431] = {.lex_state = 187, .external_lex_state = 62}, - [4432] = {.lex_state = 187, .external_lex_state = 62}, - [4433] = {.lex_state = 201, .external_lex_state = 56}, - [4434] = {.lex_state = 405}, - [4435] = {.lex_state = 203}, - [4436] = {.lex_state = 405}, - [4437] = {.lex_state = 405}, - [4438] = {.lex_state = 405}, - [4439] = {.lex_state = 201, .external_lex_state = 56}, - [4440] = {.lex_state = 201, .external_lex_state = 56}, - [4441] = {.lex_state = 203}, - [4442] = {.lex_state = 405}, - [4443] = {.lex_state = 207}, - [4444] = {.lex_state = 201, .external_lex_state = 56}, - [4445] = {.lex_state = 405}, - [4446] = {.lex_state = 405}, - [4447] = {.lex_state = 203}, - [4448] = {.lex_state = 405}, - [4449] = {.lex_state = 405}, - [4450] = {.lex_state = 405}, - [4451] = {.lex_state = 201, .external_lex_state = 56}, - [4452] = {.lex_state = 405}, - [4453] = {.lex_state = 241}, - [4454] = {.lex_state = 207}, - [4455] = {.lex_state = 201, .external_lex_state = 56}, - [4456] = {.lex_state = 405}, - [4457] = {.lex_state = 405}, - [4458] = {.lex_state = 405}, - [4459] = {.lex_state = 203}, - [4460] = {.lex_state = 405}, - [4461] = {.lex_state = 201, .external_lex_state = 56}, - [4462] = {.lex_state = 405}, - [4463] = {.lex_state = 207}, - [4464] = {.lex_state = 405, .external_lex_state = 63}, - [4465] = {.lex_state = 203}, - [4466] = {.lex_state = 201, .external_lex_state = 56}, - [4467] = {.lex_state = 405}, - [4468] = {.lex_state = 405}, - [4469] = {.lex_state = 201, .external_lex_state = 56}, - [4470] = {.lex_state = 405}, - [4471] = {.lex_state = 203}, - [4472] = {.lex_state = 405}, - [4473] = {.lex_state = 201, .external_lex_state = 56}, - [4474] = {.lex_state = 405}, - [4475] = {.lex_state = 201, .external_lex_state = 56}, - [4476] = {.lex_state = 207}, - [4477] = {.lex_state = 203}, - [4478] = {.lex_state = 201, .external_lex_state = 56}, - [4479] = {.lex_state = 405}, - [4480] = {.lex_state = 405}, - [4481] = {.lex_state = 405}, - [4482] = {.lex_state = 201, .external_lex_state = 56}, - [4483] = {.lex_state = 203}, - [4484] = {.lex_state = 201, .external_lex_state = 56}, - [4485] = {.lex_state = 405}, - [4486] = {.lex_state = 201, .external_lex_state = 56}, - [4487] = {.lex_state = 405}, - [4488] = {.lex_state = 405}, - [4489] = {.lex_state = 203}, - [4490] = {.lex_state = 405}, - [4491] = {.lex_state = 207}, - [4492] = {.lex_state = 405, .external_lex_state = 63}, - [4493] = {.lex_state = 201, .external_lex_state = 56}, - [4494] = {.lex_state = 405}, - [4495] = {.lex_state = 203}, - [4496] = {.lex_state = 405}, - [4497] = {.lex_state = 405}, - [4498] = {.lex_state = 405}, - [4499] = {.lex_state = 201, .external_lex_state = 56}, - [4500] = {.lex_state = 405}, - [4501] = {.lex_state = 203}, - [4502] = {.lex_state = 201, .external_lex_state = 56}, - [4503] = {.lex_state = 207}, - [4504] = {.lex_state = 203}, - [4505] = {.lex_state = 201, .external_lex_state = 56}, - [4506] = {.lex_state = 405}, - [4507] = {.lex_state = 203}, - [4508] = {.lex_state = 405}, - [4509] = {.lex_state = 405}, - [4510] = {.lex_state = 405}, - [4511] = {.lex_state = 203}, - [4512] = {.lex_state = 405}, - [4513] = {.lex_state = 203}, - [4514] = {.lex_state = 405}, - [4515] = {.lex_state = 203}, - [4516] = {.lex_state = 201, .external_lex_state = 56}, - [4517] = {.lex_state = 207}, - [4518] = {.lex_state = 201, .external_lex_state = 56}, - [4519] = {.lex_state = 203}, - [4520] = {.lex_state = 201, .external_lex_state = 56}, - [4521] = {.lex_state = 405}, - [4522] = {.lex_state = 405}, - [4523] = {.lex_state = 201, .external_lex_state = 56}, - [4524] = {.lex_state = 405}, - [4525] = {.lex_state = 203}, - [4526] = {.lex_state = 405, .external_lex_state = 63}, - [4527] = {.lex_state = 405}, - [4528] = {.lex_state = 201, .external_lex_state = 56}, - [4529] = {.lex_state = 186}, - [4530] = {.lex_state = 187, .external_lex_state = 62}, - [4531] = {.lex_state = 203}, - [4532] = {.lex_state = 187, .external_lex_state = 62}, - [4533] = {.lex_state = 405}, - [4534] = {.lex_state = 207}, - [4535] = {.lex_state = 203}, - [4536] = {.lex_state = 207}, - [4537] = {.lex_state = 203}, - [4538] = {.lex_state = 201, .external_lex_state = 56}, - [4539] = {.lex_state = 405}, - [4540] = {.lex_state = 405}, - [4541] = {.lex_state = 405}, - [4542] = {.lex_state = 405}, - [4543] = {.lex_state = 203}, - [4544] = {.lex_state = 241}, - [4545] = {.lex_state = 405}, - [4546] = {.lex_state = 201, .external_lex_state = 56}, - [4547] = {.lex_state = 203}, - [4548] = {.lex_state = 203}, - [4549] = {.lex_state = 203}, - [4550] = {.lex_state = 405}, - [4551] = {.lex_state = 207}, - [4552] = {.lex_state = 201, .external_lex_state = 56}, - [4553] = {.lex_state = 405}, - [4554] = {.lex_state = 405}, - [4555] = {.lex_state = 203}, - [4556] = {.lex_state = 405}, - [4557] = {.lex_state = 405}, - [4558] = {.lex_state = 241}, - [4559] = {.lex_state = 405}, - [4560] = {.lex_state = 405, .external_lex_state = 63}, - [4561] = {.lex_state = 203}, - [4562] = {.lex_state = 201, .external_lex_state = 56}, - [4563] = {.lex_state = 203}, - [4564] = {.lex_state = 405}, - [4565] = {.lex_state = 203}, - [4566] = {.lex_state = 405}, - [4567] = {.lex_state = 203}, - [4568] = {.lex_state = 203}, - [4569] = {.lex_state = 405}, - [4570] = {.lex_state = 405}, - [4571] = {.lex_state = 405}, - [4572] = {.lex_state = 241}, - [4573] = {.lex_state = 203}, - [4574] = {.lex_state = 203}, - [4575] = {.lex_state = 201, .external_lex_state = 56}, - [4576] = {.lex_state = 203}, - [4577] = {.lex_state = 203}, - [4578] = {.lex_state = 207}, - [4579] = {.lex_state = 203}, - [4580] = {.lex_state = 203}, - [4581] = {.lex_state = 201, .external_lex_state = 56}, - [4582] = {.lex_state = 203}, - [4583] = {.lex_state = 405}, - [4584] = {.lex_state = 405}, - [4585] = {.lex_state = 203}, - [4586] = {.lex_state = 405}, - [4587] = {.lex_state = 405}, - [4588] = {.lex_state = 201, .external_lex_state = 56}, - [4589] = {.lex_state = 201, .external_lex_state = 56}, - [4590] = {.lex_state = 207}, - [4591] = {.lex_state = 203}, - [4592] = {.lex_state = 201, .external_lex_state = 56}, - [4593] = {.lex_state = 405}, - [4594] = {.lex_state = 201}, - [4595] = {.lex_state = 405}, - [4596] = {.lex_state = 405}, - [4597] = {.lex_state = 203}, - [4598] = {.lex_state = 405}, - [4599] = {.lex_state = 201, .external_lex_state = 56}, - [4600] = {.lex_state = 186}, - [4601] = {.lex_state = 201, .external_lex_state = 56}, - [4602] = {.lex_state = 201, .external_lex_state = 56}, - [4603] = {.lex_state = 203}, - [4604] = {.lex_state = 207}, - [4605] = {.lex_state = 201, .external_lex_state = 56}, - [4606] = {.lex_state = 405}, - [4607] = {.lex_state = 405}, - [4608] = {.lex_state = 405}, - [4609] = {.lex_state = 405}, - [4610] = {.lex_state = 405}, - [4611] = {.lex_state = 201, .external_lex_state = 56}, - [4612] = {.lex_state = 203}, - [4613] = {.lex_state = 203}, - [4614] = {.lex_state = 207}, - [4615] = {.lex_state = 201, .external_lex_state = 56}, - [4616] = {.lex_state = 201, .external_lex_state = 56}, - [4617] = {.lex_state = 405}, - [4618] = {.lex_state = 405}, - [4619] = {.lex_state = 405}, - [4620] = {.lex_state = 405}, - [4621] = {.lex_state = 405}, - [4622] = {.lex_state = 241}, - [4623] = {.lex_state = 201, .external_lex_state = 56}, - [4624] = {.lex_state = 202}, - [4625] = {.lex_state = 201, .external_lex_state = 56}, - [4626] = {.lex_state = 405}, - [4627] = {.lex_state = 203}, - [4628] = {.lex_state = 405}, - [4629] = {.lex_state = 405}, - [4630] = {.lex_state = 201}, - [4631] = {.lex_state = 201, .external_lex_state = 56}, - [4632] = {.lex_state = 405, .external_lex_state = 63}, - [4633] = {.lex_state = 201, .external_lex_state = 56}, - [4634] = {.lex_state = 405}, - [4635] = {.lex_state = 241}, - [4636] = {.lex_state = 207}, - [4637] = {.lex_state = 201, .external_lex_state = 56}, - [4638] = {.lex_state = 405}, - [4639] = {.lex_state = 405}, - [4640] = {.lex_state = 405}, - [4641] = {.lex_state = 241}, - [4642] = {.lex_state = 201, .external_lex_state = 56}, - [4643] = {.lex_state = 201, .external_lex_state = 56}, - [4644] = {.lex_state = 405}, - [4645] = {.lex_state = 405, .external_lex_state = 63}, - [4646] = {.lex_state = 187, .external_lex_state = 62}, - [4647] = {.lex_state = 187, .external_lex_state = 62}, - [4648] = {.lex_state = 207}, - [4649] = {.lex_state = 207}, - [4650] = {.lex_state = 201, .external_lex_state = 56}, - [4651] = {.lex_state = 405}, - [4652] = {.lex_state = 405}, - [4653] = {.lex_state = 405}, - [4654] = {.lex_state = 405}, - [4655] = {.lex_state = 405}, - [4656] = {.lex_state = 405}, - [4657] = {.lex_state = 405}, - [4658] = {.lex_state = 201, .external_lex_state = 56}, - [4659] = {.lex_state = 241}, - [4660] = {.lex_state = 405}, - [4661] = {.lex_state = 405}, - [4662] = {.lex_state = 203}, - [4663] = {.lex_state = 203}, - [4664] = {.lex_state = 207}, - [4665] = {.lex_state = 405, .external_lex_state = 63}, - [4666] = {.lex_state = 201, .external_lex_state = 56}, - [4667] = {.lex_state = 405, .external_lex_state = 63}, - [4668] = {.lex_state = 405}, - [4669] = {.lex_state = 405}, - [4670] = {.lex_state = 405}, - [4671] = {.lex_state = 405}, - [4672] = {.lex_state = 201, .external_lex_state = 56}, - [4673] = {.lex_state = 241}, - [4674] = {.lex_state = 241}, - [4675] = {.lex_state = 203}, - [4676] = {.lex_state = 405}, - [4677] = {.lex_state = 203}, - [4678] = {.lex_state = 241}, - [4679] = {.lex_state = 203}, - [4680] = {.lex_state = 405}, - [4681] = {.lex_state = 203}, - [4682] = {.lex_state = 203}, - [4683] = {.lex_state = 203}, - [4684] = {.lex_state = 203}, - [4685] = {.lex_state = 203}, - [4686] = {.lex_state = 203}, - [4687] = {.lex_state = 203}, - [4688] = {.lex_state = 241}, - [4689] = {.lex_state = 203}, - [4690] = {.lex_state = 241}, - [4691] = {.lex_state = 201, .external_lex_state = 56}, - [4692] = {.lex_state = 201, .external_lex_state = 56}, - [4693] = {.lex_state = 202}, - [4694] = {.lex_state = 203}, - [4695] = {.lex_state = 203}, - [4696] = {.lex_state = 203}, - [4697] = {.lex_state = 405}, - [4698] = {.lex_state = 241}, - [4699] = {.lex_state = 201, .external_lex_state = 56}, - [4700] = {.lex_state = 203}, - [4701] = {.lex_state = 201, .external_lex_state = 56}, - [4702] = {.lex_state = 203}, - [4703] = {.lex_state = 241}, - [4704] = {.lex_state = 207}, - [4705] = {.lex_state = 187, .external_lex_state = 62}, - [4706] = {.lex_state = 187, .external_lex_state = 62}, - [4707] = {.lex_state = 405}, - [4708] = {.lex_state = 405}, - [4709] = {.lex_state = 405}, - [4710] = {.lex_state = 202}, - [4711] = {.lex_state = 405}, - [4712] = {.lex_state = 202}, - [4713] = {.lex_state = 241}, - [4714] = {.lex_state = 405, .external_lex_state = 63}, - [4715] = {.lex_state = 203}, - [4716] = {.lex_state = 201, .external_lex_state = 56}, - [4717] = {.lex_state = 203}, - [4718] = {.lex_state = 203}, - [4719] = {.lex_state = 405}, - [4720] = {.lex_state = 203}, - [4721] = {.lex_state = 203}, - [4722] = {.lex_state = 203}, - [4723] = {.lex_state = 203}, - [4724] = {.lex_state = 203}, - [4725] = {.lex_state = 203}, - [4726] = {.lex_state = 203}, - [4727] = {.lex_state = 203}, - [4728] = {.lex_state = 203}, - [4729] = {.lex_state = 203}, - [4730] = {.lex_state = 203}, - [4731] = {.lex_state = 203}, - [4732] = {.lex_state = 203}, - [4733] = {.lex_state = 203}, - [4734] = {.lex_state = 203}, - [4735] = {.lex_state = 203}, - [4736] = {.lex_state = 203}, - [4737] = {.lex_state = 203}, - [4738] = {.lex_state = 203}, - [4739] = {.lex_state = 203}, - [4740] = {.lex_state = 203}, - [4741] = {.lex_state = 203}, - [4742] = {.lex_state = 203}, - [4743] = {.lex_state = 203}, - [4744] = {.lex_state = 203}, - [4745] = {.lex_state = 203}, - [4746] = {.lex_state = 203}, - [4747] = {.lex_state = 203}, - [4748] = {.lex_state = 203}, - [4749] = {.lex_state = 203}, - [4750] = {.lex_state = 203}, - [4751] = {.lex_state = 203}, - [4752] = {.lex_state = 203}, - [4753] = {.lex_state = 203}, - [4754] = {.lex_state = 203}, - [4755] = {.lex_state = 203}, - [4756] = {.lex_state = 203}, - [4757] = {.lex_state = 203}, - [4758] = {.lex_state = 203}, - [4759] = {.lex_state = 203}, - [4760] = {.lex_state = 203}, - [4761] = {.lex_state = 203}, - [4762] = {.lex_state = 203}, - [4763] = {.lex_state = 203}, - [4764] = {.lex_state = 203}, - [4765] = {.lex_state = 203}, - [4766] = {.lex_state = 203}, - [4767] = {.lex_state = 405, .external_lex_state = 63}, - [4768] = {.lex_state = 405}, - [4769] = {.lex_state = 203}, - [4770] = {.lex_state = 203}, - [4771] = {.lex_state = 203}, - [4772] = {.lex_state = 203}, - [4773] = {.lex_state = 203}, - [4774] = {.lex_state = 203}, - [4775] = {.lex_state = 203}, - [4776] = {.lex_state = 203}, - [4777] = {.lex_state = 203}, - [4778] = {.lex_state = 203}, - [4779] = {.lex_state = 203}, - [4780] = {.lex_state = 203}, - [4781] = {.lex_state = 203}, - [4782] = {.lex_state = 203}, - [4783] = {.lex_state = 203}, - [4784] = {.lex_state = 203}, - [4785] = {.lex_state = 203}, - [4786] = {.lex_state = 203}, - [4787] = {.lex_state = 203}, - [4788] = {.lex_state = 203}, - [4789] = {.lex_state = 203}, - [4790] = {.lex_state = 203}, - [4791] = {.lex_state = 203}, - [4792] = {.lex_state = 203}, - [4793] = {.lex_state = 203}, - [4794] = {.lex_state = 203}, - [4795] = {.lex_state = 203}, - [4796] = {.lex_state = 203}, - [4797] = {.lex_state = 203}, - [4798] = {.lex_state = 203}, - [4799] = {.lex_state = 203}, - [4800] = {.lex_state = 203}, - [4801] = {.lex_state = 203}, - [4802] = {.lex_state = 203}, - [4803] = {.lex_state = 203}, - [4804] = {.lex_state = 203}, - [4805] = {.lex_state = 203}, - [4806] = {.lex_state = 203}, - [4807] = {.lex_state = 203}, - [4808] = {.lex_state = 203}, - [4809] = {.lex_state = 203}, - [4810] = {.lex_state = 203}, - [4811] = {.lex_state = 203}, - [4812] = {.lex_state = 203}, - [4813] = {.lex_state = 203}, - [4814] = {.lex_state = 203}, - [4815] = {.lex_state = 203}, + [4016] = {.lex_state = 224}, + [4017] = {.lex_state = 216, .external_lex_state = 60}, + [4018] = {.lex_state = 224}, + [4019] = {.lex_state = 76, .external_lex_state = 63}, + [4020] = {.lex_state = 224}, + [4021] = {.lex_state = 76, .external_lex_state = 63}, + [4022] = {.lex_state = 224}, + [4023] = {.lex_state = 260}, + [4024] = {.lex_state = 260}, + [4025] = {.lex_state = 239, .external_lex_state = 61}, + [4026] = {.lex_state = 260}, + [4027] = {.lex_state = 239, .external_lex_state = 61}, + [4028] = {.lex_state = 260}, + [4029] = {.lex_state = 73, .external_lex_state = 45}, + [4030] = {.lex_state = 239, .external_lex_state = 61}, + [4031] = {.lex_state = 239, .external_lex_state = 61}, + [4032] = {.lex_state = 73, .external_lex_state = 45}, + [4033] = {.lex_state = 73, .external_lex_state = 45}, + [4034] = {.lex_state = 76, .external_lex_state = 45}, + [4035] = {.lex_state = 239, .external_lex_state = 61}, + [4036] = {.lex_state = 259, .external_lex_state = 64}, + [4037] = {.lex_state = 73, .external_lex_state = 45}, + [4038] = {.lex_state = 73, .external_lex_state = 45}, + [4039] = {.lex_state = 239, .external_lex_state = 61}, + [4040] = {.lex_state = 260}, + [4041] = {.lex_state = 73, .external_lex_state = 45}, + [4042] = {.lex_state = 239, .external_lex_state = 61}, + [4043] = {.lex_state = 260}, + [4044] = {.lex_state = 239, .external_lex_state = 61}, + [4045] = {.lex_state = 73, .external_lex_state = 45}, + [4046] = {.lex_state = 239, .external_lex_state = 61}, + [4047] = {.lex_state = 73, .external_lex_state = 45}, + [4048] = {.lex_state = 439, .external_lex_state = 65}, + [4049] = {.lex_state = 439, .external_lex_state = 65}, + [4050] = {.lex_state = 439, .external_lex_state = 65}, + [4051] = {.lex_state = 262}, + [4052] = {.lex_state = 439, .external_lex_state = 65}, + [4053] = {.lex_state = 259, .external_lex_state = 64}, + [4054] = {.lex_state = 439, .external_lex_state = 66}, + [4055] = {.lex_state = 76, .external_lex_state = 45}, + [4056] = {.lex_state = 439, .external_lex_state = 65}, + [4057] = {.lex_state = 238}, + [4058] = {.lex_state = 439, .external_lex_state = 65}, + [4059] = {.lex_state = 76, .external_lex_state = 45}, + [4060] = {.lex_state = 439, .external_lex_state = 65}, + [4061] = {.lex_state = 259, .external_lex_state = 64}, + [4062] = {.lex_state = 239, .external_lex_state = 61}, + [4063] = {.lex_state = 259, .external_lex_state = 64}, + [4064] = {.lex_state = 76, .external_lex_state = 45}, + [4065] = {.lex_state = 239, .external_lex_state = 61}, + [4066] = {.lex_state = 439, .external_lex_state = 66}, + [4067] = {.lex_state = 439, .external_lex_state = 65}, + [4068] = {.lex_state = 439, .external_lex_state = 65}, + [4069] = {.lex_state = 439, .external_lex_state = 65}, + [4070] = {.lex_state = 439, .external_lex_state = 65}, + [4071] = {.lex_state = 238}, + [4072] = {.lex_state = 260}, + [4073] = {.lex_state = 73, .external_lex_state = 45}, + [4074] = {.lex_state = 259, .external_lex_state = 64}, + [4075] = {.lex_state = 262}, + [4076] = {.lex_state = 238}, + [4077] = {.lex_state = 439, .external_lex_state = 65}, + [4078] = {.lex_state = 439, .external_lex_state = 65}, + [4079] = {.lex_state = 239, .external_lex_state = 61}, + [4080] = {.lex_state = 259, .external_lex_state = 64}, + [4081] = {.lex_state = 76, .external_lex_state = 45}, + [4082] = {.lex_state = 439, .external_lex_state = 65}, + [4083] = {.lex_state = 238}, + [4084] = {.lex_state = 439, .external_lex_state = 65}, + [4085] = {.lex_state = 259, .external_lex_state = 64}, + [4086] = {.lex_state = 76, .external_lex_state = 45}, + [4087] = {.lex_state = 76, .external_lex_state = 45}, + [4088] = {.lex_state = 259, .external_lex_state = 64}, + [4089] = {.lex_state = 239, .external_lex_state = 61}, + [4090] = {.lex_state = 262}, + [4091] = {.lex_state = 239, .external_lex_state = 61}, + [4092] = {.lex_state = 439, .external_lex_state = 65}, + [4093] = {.lex_state = 259, .external_lex_state = 64}, + [4094] = {.lex_state = 239, .external_lex_state = 61}, + [4095] = {.lex_state = 218}, + [4096] = {.lex_state = 218}, + [4097] = {.lex_state = 239, .external_lex_state = 61}, + [4098] = {.lex_state = 259, .external_lex_state = 64}, + [4099] = {.lex_state = 218}, + [4100] = {.lex_state = 218}, + [4101] = {.lex_state = 218}, + [4102] = {.lex_state = 259, .external_lex_state = 64}, + [4103] = {.lex_state = 239, .external_lex_state = 61}, + [4104] = {.lex_state = 262}, + [4105] = {.lex_state = 259, .external_lex_state = 64}, + [4106] = {.lex_state = 218}, + [4107] = {.lex_state = 259, .external_lex_state = 57}, + [4108] = {.lex_state = 239, .external_lex_state = 61}, + [4109] = {.lex_state = 218}, + [4110] = {.lex_state = 239, .external_lex_state = 61}, + [4111] = {.lex_state = 239, .external_lex_state = 61}, + [4112] = {.lex_state = 259, .external_lex_state = 64}, + [4113] = {.lex_state = 218}, + [4114] = {.lex_state = 239, .external_lex_state = 61}, + [4115] = {.lex_state = 239, .external_lex_state = 61}, + [4116] = {.lex_state = 259, .external_lex_state = 64}, + [4117] = {.lex_state = 259, .external_lex_state = 64}, + [4118] = {.lex_state = 259, .external_lex_state = 64}, + [4119] = {.lex_state = 259, .external_lex_state = 57}, + [4120] = {.lex_state = 259, .external_lex_state = 64}, + [4121] = {.lex_state = 259, .external_lex_state = 64}, + [4122] = {.lex_state = 239, .external_lex_state = 61}, + [4123] = {.lex_state = 259, .external_lex_state = 64}, + [4124] = {.lex_state = 239, .external_lex_state = 61}, + [4125] = {.lex_state = 259, .external_lex_state = 64}, + [4126] = {.lex_state = 73, .external_lex_state = 45}, + [4127] = {.lex_state = 259, .external_lex_state = 64}, + [4128] = {.lex_state = 239, .external_lex_state = 61}, + [4129] = {.lex_state = 262}, + [4130] = {.lex_state = 238}, + [4131] = {.lex_state = 259, .external_lex_state = 64}, + [4132] = {.lex_state = 239, .external_lex_state = 61}, + [4133] = {.lex_state = 239, .external_lex_state = 61}, + [4134] = {.lex_state = 73, .external_lex_state = 45}, + [4135] = {.lex_state = 218}, + [4136] = {.lex_state = 239, .external_lex_state = 61}, + [4137] = {.lex_state = 239, .external_lex_state = 61}, + [4138] = {.lex_state = 259, .external_lex_state = 64}, + [4139] = {.lex_state = 259, .external_lex_state = 64}, + [4140] = {.lex_state = 238}, + [4141] = {.lex_state = 239, .external_lex_state = 61}, + [4142] = {.lex_state = 218}, + [4143] = {.lex_state = 259, .external_lex_state = 64}, + [4144] = {.lex_state = 259, .external_lex_state = 64}, + [4145] = {.lex_state = 259, .external_lex_state = 64}, + [4146] = {.lex_state = 218}, + [4147] = {.lex_state = 218}, + [4148] = {.lex_state = 239, .external_lex_state = 61}, + [4149] = {.lex_state = 259, .external_lex_state = 64}, + [4150] = {.lex_state = 262}, + [4151] = {.lex_state = 239, .external_lex_state = 61}, + [4152] = {.lex_state = 239, .external_lex_state = 61}, + [4153] = {.lex_state = 239, .external_lex_state = 61}, + [4154] = {.lex_state = 259, .external_lex_state = 57}, + [4155] = {.lex_state = 217}, + [4156] = {.lex_state = 217}, + [4157] = {.lex_state = 439}, + [4158] = {.lex_state = 218}, + [4159] = {.lex_state = 218}, + [4160] = {.lex_state = 218}, + [4161] = {.lex_state = 261}, + [4162] = {.lex_state = 251, .external_lex_state = 61}, + [4163] = {.lex_state = 261}, + [4164] = {.lex_state = 261}, + [4165] = {.lex_state = 218}, + [4166] = {.lex_state = 218}, + [4167] = {.lex_state = 217}, + [4168] = {.lex_state = 261}, + [4169] = {.lex_state = 439}, + [4170] = {.lex_state = 218}, + [4171] = {.lex_state = 261}, + [4172] = {.lex_state = 439}, + [4173] = {.lex_state = 218}, + [4174] = {.lex_state = 217}, + [4175] = {.lex_state = 261}, + [4176] = {.lex_state = 218}, + [4177] = {.lex_state = 439}, + [4178] = {.lex_state = 218}, + [4179] = {.lex_state = 218}, + [4180] = {.lex_state = 261}, + [4181] = {.lex_state = 439}, + [4182] = {.lex_state = 261}, + [4183] = {.lex_state = 439}, + [4184] = {.lex_state = 261}, + [4185] = {.lex_state = 218}, + [4186] = {.lex_state = 261}, + [4187] = {.lex_state = 439}, + [4188] = {.lex_state = 218}, + [4189] = {.lex_state = 218}, + [4190] = {.lex_state = 218}, + [4191] = {.lex_state = 439}, + [4192] = {.lex_state = 217}, + [4193] = {.lex_state = 218}, + [4194] = {.lex_state = 261}, + [4195] = {.lex_state = 218}, + [4196] = {.lex_state = 261}, + [4197] = {.lex_state = 261}, + [4198] = {.lex_state = 218}, + [4199] = {.lex_state = 238}, + [4200] = {.lex_state = 261}, + [4201] = {.lex_state = 261}, + [4202] = {.lex_state = 218}, + [4203] = {.lex_state = 261}, + [4204] = {.lex_state = 218}, + [4205] = {.lex_state = 218}, + [4206] = {.lex_state = 218}, + [4207] = {.lex_state = 218}, + [4208] = {.lex_state = 218}, + [4209] = {.lex_state = 218}, + [4210] = {.lex_state = 439}, + [4211] = {.lex_state = 439}, + [4212] = {.lex_state = 218}, + [4213] = {.lex_state = 261}, + [4214] = {.lex_state = 218}, + [4215] = {.lex_state = 439}, + [4216] = {.lex_state = 261}, + [4217] = {.lex_state = 218}, + [4218] = {.lex_state = 218}, + [4219] = {.lex_state = 218}, + [4220] = {.lex_state = 439}, + [4221] = {.lex_state = 439}, + [4222] = {.lex_state = 218}, + [4223] = {.lex_state = 251, .external_lex_state = 61}, + [4224] = {.lex_state = 218}, + [4225] = {.lex_state = 218}, + [4226] = {.lex_state = 439}, + [4227] = {.lex_state = 261}, + [4228] = {.lex_state = 218}, + [4229] = {.lex_state = 439}, + [4230] = {.lex_state = 218}, + [4231] = {.lex_state = 217}, + [4232] = {.lex_state = 218}, + [4233] = {.lex_state = 218}, + [4234] = {.lex_state = 218}, + [4235] = {.lex_state = 218}, + [4236] = {.lex_state = 218}, + [4237] = {.lex_state = 261}, + [4238] = {.lex_state = 218}, + [4239] = {.lex_state = 218}, + [4240] = {.lex_state = 439}, + [4241] = {.lex_state = 218}, + [4242] = {.lex_state = 439}, + [4243] = {.lex_state = 439}, + [4244] = {.lex_state = 439}, + [4245] = {.lex_state = 251, .external_lex_state = 61}, + [4246] = {.lex_state = 218}, + [4247] = {.lex_state = 218}, + [4248] = {.lex_state = 259, .external_lex_state = 57}, + [4249] = {.lex_state = 218}, + [4250] = {.lex_state = 218}, + [4251] = {.lex_state = 218}, + [4252] = {.lex_state = 218}, + [4253] = {.lex_state = 218}, + [4254] = {.lex_state = 439}, + [4255] = {.lex_state = 218}, + [4256] = {.lex_state = 218}, + [4257] = {.lex_state = 439}, + [4258] = {.lex_state = 261}, + [4259] = {.lex_state = 439}, + [4260] = {.lex_state = 218}, + [4261] = {.lex_state = 439}, + [4262] = {.lex_state = 439}, + [4263] = {.lex_state = 218}, + [4264] = {.lex_state = 439}, + [4265] = {.lex_state = 439}, + [4266] = {.lex_state = 218}, + [4267] = {.lex_state = 218}, + [4268] = {.lex_state = 218}, + [4269] = {.lex_state = 439}, + [4270] = {.lex_state = 218}, + [4271] = {.lex_state = 251, .external_lex_state = 61}, + [4272] = {.lex_state = 218}, + [4273] = {.lex_state = 218}, + [4274] = {.lex_state = 218}, + [4275] = {.lex_state = 439}, + [4276] = {.lex_state = 218}, + [4277] = {.lex_state = 218}, + [4278] = {.lex_state = 217}, + [4279] = {.lex_state = 218}, + [4280] = {.lex_state = 439}, + [4281] = {.lex_state = 439}, + [4282] = {.lex_state = 218}, + [4283] = {.lex_state = 218}, + [4284] = {.lex_state = 218}, + [4285] = {.lex_state = 439}, + [4286] = {.lex_state = 439}, + [4287] = {.lex_state = 218}, + [4288] = {.lex_state = 261}, + [4289] = {.lex_state = 218}, + [4290] = {.lex_state = 439}, + [4291] = {.lex_state = 218}, + [4292] = {.lex_state = 261}, + [4293] = {.lex_state = 218}, + [4294] = {.lex_state = 439}, + [4295] = {.lex_state = 251}, + [4296] = {.lex_state = 439}, + [4297] = {.lex_state = 217}, + [4298] = {.lex_state = 216, .external_lex_state = 57}, + [4299] = {.lex_state = 216, .external_lex_state = 57}, + [4300] = {.lex_state = 216, .external_lex_state = 57}, + [4301] = {.lex_state = 439}, + [4302] = {.lex_state = 216, .external_lex_state = 57}, + [4303] = {.lex_state = 439}, + [4304] = {.lex_state = 216, .external_lex_state = 57}, + [4305] = {.lex_state = 216, .external_lex_state = 57}, + [4306] = {.lex_state = 216, .external_lex_state = 57}, + [4307] = {.lex_state = 251}, + [4308] = {.lex_state = 216, .external_lex_state = 57}, + [4309] = {.lex_state = 439}, + [4310] = {.lex_state = 439}, + [4311] = {.lex_state = 251}, + [4312] = {.lex_state = 439}, + [4313] = {.lex_state = 439}, + [4314] = {.lex_state = 439}, + [4315] = {.lex_state = 439}, + [4316] = {.lex_state = 439}, + [4317] = {.lex_state = 251}, + [4318] = {.lex_state = 439}, + [4319] = {.lex_state = 439}, + [4320] = {.lex_state = 217}, + [4321] = {.lex_state = 251}, + [4322] = {.lex_state = 259, .external_lex_state = 57}, + [4323] = {.lex_state = 439}, + [4324] = {.lex_state = 439}, + [4325] = {.lex_state = 439}, + [4326] = {.lex_state = 439}, + [4327] = {.lex_state = 259, .external_lex_state = 57}, + [4328] = {.lex_state = 439}, + [4329] = {.lex_state = 439}, + [4330] = {.lex_state = 439}, + [4331] = {.lex_state = 439}, + [4332] = {.lex_state = 439}, + [4333] = {.lex_state = 217}, + [4334] = {.lex_state = 439}, + [4335] = {.lex_state = 217}, + [4336] = {.lex_state = 439}, + [4337] = {.lex_state = 439}, + [4338] = {.lex_state = 439}, + [4339] = {.lex_state = 439}, + [4340] = {.lex_state = 217}, + [4341] = {.lex_state = 439}, + [4342] = {.lex_state = 251}, + [4343] = {.lex_state = 251}, + [4344] = {.lex_state = 439}, + [4345] = {.lex_state = 439}, + [4346] = {.lex_state = 439}, + [4347] = {.lex_state = 439}, + [4348] = {.lex_state = 218}, + [4349] = {.lex_state = 218}, + [4350] = {.lex_state = 439}, + [4351] = {.lex_state = 260}, + [4352] = {.lex_state = 260}, + [4353] = {.lex_state = 439}, + [4354] = {.lex_state = 439}, + [4355] = {.lex_state = 439}, + [4356] = {.lex_state = 260}, + [4357] = {.lex_state = 439}, + [4358] = {.lex_state = 251}, + [4359] = {.lex_state = 251}, + [4360] = {.lex_state = 251}, + [4361] = {.lex_state = 439}, + [4362] = {.lex_state = 439}, + [4363] = {.lex_state = 251}, + [4364] = {.lex_state = 251}, + [4365] = {.lex_state = 439}, + [4366] = {.lex_state = 251}, + [4367] = {.lex_state = 251}, + [4368] = {.lex_state = 439}, + [4369] = {.lex_state = 251}, + [4370] = {.lex_state = 251}, + [4371] = {.lex_state = 439}, + [4372] = {.lex_state = 251}, + [4373] = {.lex_state = 251}, + [4374] = {.lex_state = 259, .external_lex_state = 57}, + [4375] = {.lex_state = 439}, + [4376] = {.lex_state = 251}, + [4377] = {.lex_state = 439}, + [4378] = {.lex_state = 439}, + [4379] = {.lex_state = 251}, + [4380] = {.lex_state = 216, .external_lex_state = 57}, + [4381] = {.lex_state = 439}, + [4382] = {.lex_state = 251}, + [4383] = {.lex_state = 251}, + [4384] = {.lex_state = 259, .external_lex_state = 57}, + [4385] = {.lex_state = 439}, + [4386] = {.lex_state = 251}, + [4387] = {.lex_state = 251}, + [4388] = {.lex_state = 260}, + [4389] = {.lex_state = 439}, + [4390] = {.lex_state = 260}, + [4391] = {.lex_state = 251}, + [4392] = {.lex_state = 439}, + [4393] = {.lex_state = 439}, + [4394] = {.lex_state = 251}, + [4395] = {.lex_state = 439}, + [4396] = {.lex_state = 251}, + [4397] = {.lex_state = 439}, + [4398] = {.lex_state = 216, .external_lex_state = 57}, + [4399] = {.lex_state = 439}, + [4400] = {.lex_state = 439}, + [4401] = {.lex_state = 260}, + [4402] = {.lex_state = 439}, + [4403] = {.lex_state = 221}, + [4404] = {.lex_state = 218}, + [4405] = {.lex_state = 72, .external_lex_state = 45}, + [4406] = {.lex_state = 216, .external_lex_state = 57}, + [4407] = {.lex_state = 72, .external_lex_state = 45}, + [4408] = {.lex_state = 439}, + [4409] = {.lex_state = 439}, + [4410] = {.lex_state = 218}, + [4411] = {.lex_state = 218}, + [4412] = {.lex_state = 260}, + [4413] = {.lex_state = 439}, + [4414] = {.lex_state = 439, .external_lex_state = 67}, + [4415] = {.lex_state = 439, .external_lex_state = 67}, + [4416] = {.lex_state = 439}, + [4417] = {.lex_state = 216, .external_lex_state = 57}, + [4418] = {.lex_state = 216, .external_lex_state = 57}, + [4419] = {.lex_state = 218}, + [4420] = {.lex_state = 260}, + [4421] = {.lex_state = 439}, + [4422] = {.lex_state = 218}, + [4423] = {.lex_state = 439}, + [4424] = {.lex_state = 216, .external_lex_state = 57}, + [4425] = {.lex_state = 260}, + [4426] = {.lex_state = 216, .external_lex_state = 57}, + [4427] = {.lex_state = 218}, + [4428] = {.lex_state = 439}, + [4429] = {.lex_state = 221}, + [4430] = {.lex_state = 216, .external_lex_state = 57}, + [4431] = {.lex_state = 218}, + [4432] = {.lex_state = 216, .external_lex_state = 57}, + [4433] = {.lex_state = 439}, + [4434] = {.lex_state = 218}, + [4435] = {.lex_state = 218}, + [4436] = {.lex_state = 439}, + [4437] = {.lex_state = 260}, + [4438] = {.lex_state = 216, .external_lex_state = 57}, + [4439] = {.lex_state = 439}, + [4440] = {.lex_state = 216, .external_lex_state = 57}, + [4441] = {.lex_state = 216, .external_lex_state = 57}, + [4442] = {.lex_state = 218}, + [4443] = {.lex_state = 221}, + [4444] = {.lex_state = 195, .external_lex_state = 68}, + [4445] = {.lex_state = 216, .external_lex_state = 57}, + [4446] = {.lex_state = 439}, + [4447] = {.lex_state = 439}, + [4448] = {.lex_state = 439}, + [4449] = {.lex_state = 439}, + [4450] = {.lex_state = 218}, + [4451] = {.lex_state = 216, .external_lex_state = 57}, + [4452] = {.lex_state = 216, .external_lex_state = 57}, + [4453] = {.lex_state = 195, .external_lex_state = 68}, + [4454] = {.lex_state = 216, .external_lex_state = 57}, + [4455] = {.lex_state = 216, .external_lex_state = 57}, + [4456] = {.lex_state = 439}, + [4457] = {.lex_state = 439}, + [4458] = {.lex_state = 216, .external_lex_state = 57}, + [4459] = {.lex_state = 439}, + [4460] = {.lex_state = 218}, + [4461] = {.lex_state = 439}, + [4462] = {.lex_state = 439}, + [4463] = {.lex_state = 216, .external_lex_state = 57}, + [4464] = {.lex_state = 216, .external_lex_state = 57}, + [4465] = {.lex_state = 439}, + [4466] = {.lex_state = 439}, + [4467] = {.lex_state = 218}, + [4468] = {.lex_state = 439}, + [4469] = {.lex_state = 216, .external_lex_state = 57}, + [4470] = {.lex_state = 218}, + [4471] = {.lex_state = 439}, + [4472] = {.lex_state = 439}, + [4473] = {.lex_state = 439}, + [4474] = {.lex_state = 216, .external_lex_state = 57}, + [4475] = {.lex_state = 216, .external_lex_state = 57}, + [4476] = {.lex_state = 439}, + [4477] = {.lex_state = 216, .external_lex_state = 57}, + [4478] = {.lex_state = 216, .external_lex_state = 57}, + [4479] = {.lex_state = 216, .external_lex_state = 57}, + [4480] = {.lex_state = 218}, + [4481] = {.lex_state = 221}, + [4482] = {.lex_state = 216, .external_lex_state = 57}, + [4483] = {.lex_state = 260}, + [4484] = {.lex_state = 439}, + [4485] = {.lex_state = 439}, + [4486] = {.lex_state = 439}, + [4487] = {.lex_state = 439}, + [4488] = {.lex_state = 216, .external_lex_state = 57}, + [4489] = {.lex_state = 218}, + [4490] = {.lex_state = 439}, + [4491] = {.lex_state = 439}, + [4492] = {.lex_state = 439}, + [4493] = {.lex_state = 221}, + [4494] = {.lex_state = 221}, + [4495] = {.lex_state = 195, .external_lex_state = 68}, + [4496] = {.lex_state = 195, .external_lex_state = 68}, + [4497] = {.lex_state = 439}, + [4498] = {.lex_state = 218}, + [4499] = {.lex_state = 216, .external_lex_state = 57}, + [4500] = {.lex_state = 439}, + [4501] = {.lex_state = 439}, + [4502] = {.lex_state = 221}, + [4503] = {.lex_state = 216, .external_lex_state = 57}, + [4504] = {.lex_state = 216, .external_lex_state = 57}, + [4505] = {.lex_state = 439}, + [4506] = {.lex_state = 260}, + [4507] = {.lex_state = 218}, + [4508] = {.lex_state = 439}, + [4509] = {.lex_state = 439}, + [4510] = {.lex_state = 439}, + [4511] = {.lex_state = 439}, + [4512] = {.lex_state = 216, .external_lex_state = 57}, + [4513] = {.lex_state = 216, .external_lex_state = 57}, + [4514] = {.lex_state = 221}, + [4515] = {.lex_state = 216, .external_lex_state = 57}, + [4516] = {.lex_state = 218}, + [4517] = {.lex_state = 216, .external_lex_state = 57}, + [4518] = {.lex_state = 439}, + [4519] = {.lex_state = 72, .external_lex_state = 45}, + [4520] = {.lex_state = 439}, + [4521] = {.lex_state = 439}, + [4522] = {.lex_state = 439}, + [4523] = {.lex_state = 439}, + [4524] = {.lex_state = 216, .external_lex_state = 57}, + [4525] = {.lex_state = 218}, + [4526] = {.lex_state = 216, .external_lex_state = 57}, + [4527] = {.lex_state = 439}, + [4528] = {.lex_state = 439}, + [4529] = {.lex_state = 439}, + [4530] = {.lex_state = 439}, + [4531] = {.lex_state = 216, .external_lex_state = 57}, + [4532] = {.lex_state = 195, .external_lex_state = 68}, + [4533] = {.lex_state = 195, .external_lex_state = 68}, + [4534] = {.lex_state = 218}, + [4535] = {.lex_state = 439}, + [4536] = {.lex_state = 221}, + [4537] = {.lex_state = 216, .external_lex_state = 57}, + [4538] = {.lex_state = 439}, + [4539] = {.lex_state = 439}, + [4540] = {.lex_state = 439}, + [4541] = {.lex_state = 439, .external_lex_state = 69}, + [4542] = {.lex_state = 221}, + [4543] = {.lex_state = 218}, + [4544] = {.lex_state = 439}, + [4545] = {.lex_state = 439}, + [4546] = {.lex_state = 260}, + [4547] = {.lex_state = 216, .external_lex_state = 57}, + [4548] = {.lex_state = 216, .external_lex_state = 57}, + [4549] = {.lex_state = 439, .external_lex_state = 67}, + [4550] = {.lex_state = 221}, + [4551] = {.lex_state = 221}, + [4552] = {.lex_state = 218}, + [4553] = {.lex_state = 221}, + [4554] = {.lex_state = 216, .external_lex_state = 57}, + [4555] = {.lex_state = 439}, + [4556] = {.lex_state = 216, .external_lex_state = 57}, + [4557] = {.lex_state = 439}, + [4558] = {.lex_state = 439}, + [4559] = {.lex_state = 439}, + [4560] = {.lex_state = 218}, + [4561] = {.lex_state = 439}, + [4562] = {.lex_state = 216, .external_lex_state = 57}, + [4563] = {.lex_state = 216, .external_lex_state = 57}, + [4564] = {.lex_state = 439, .external_lex_state = 67}, + [4565] = {.lex_state = 216, .external_lex_state = 57}, + [4566] = {.lex_state = 221}, + [4567] = {.lex_state = 218}, + [4568] = {.lex_state = 218}, + [4569] = {.lex_state = 216, .external_lex_state = 57}, + [4570] = {.lex_state = 439}, + [4571] = {.lex_state = 218}, + [4572] = {.lex_state = 218}, + [4573] = {.lex_state = 439}, + [4574] = {.lex_state = 439}, + [4575] = {.lex_state = 194}, + [4576] = {.lex_state = 218}, + [4577] = {.lex_state = 216, .external_lex_state = 57}, + [4578] = {.lex_state = 218}, + [4579] = {.lex_state = 439, .external_lex_state = 70}, + [4580] = {.lex_state = 218}, + [4581] = {.lex_state = 439, .external_lex_state = 66}, + [4582] = {.lex_state = 439}, + [4583] = {.lex_state = 218}, + [4584] = {.lex_state = 218}, + [4585] = {.lex_state = 260}, + [4586] = {.lex_state = 439}, + [4587] = {.lex_state = 216, .external_lex_state = 57}, + [4588] = {.lex_state = 439, .external_lex_state = 70}, + [4589] = {.lex_state = 439}, + [4590] = {.lex_state = 218}, + [4591] = {.lex_state = 439, .external_lex_state = 67}, + [4592] = {.lex_state = 439, .external_lex_state = 66}, + [4593] = {.lex_state = 439, .external_lex_state = 67}, + [4594] = {.lex_state = 439}, + [4595] = {.lex_state = 439}, + [4596] = {.lex_state = 218}, + [4597] = {.lex_state = 439}, + [4598] = {.lex_state = 221}, + [4599] = {.lex_state = 216, .external_lex_state = 57}, + [4600] = {.lex_state = 218}, + [4601] = {.lex_state = 218}, + [4602] = {.lex_state = 218}, + [4603] = {.lex_state = 439}, + [4604] = {.lex_state = 260}, + [4605] = {.lex_state = 439}, + [4606] = {.lex_state = 439}, + [4607] = {.lex_state = 439}, + [4608] = {.lex_state = 218}, + [4609] = {.lex_state = 439}, + [4610] = {.lex_state = 216, .external_lex_state = 57}, + [4611] = {.lex_state = 216, .external_lex_state = 57}, + [4612] = {.lex_state = 218}, + [4613] = {.lex_state = 221}, + [4614] = {.lex_state = 218}, + [4615] = {.lex_state = 216, .external_lex_state = 57}, + [4616] = {.lex_state = 439}, + [4617] = {.lex_state = 218}, + [4618] = {.lex_state = 218}, + [4619] = {.lex_state = 439}, + [4620] = {.lex_state = 218}, + [4621] = {.lex_state = 260}, + [4622] = {.lex_state = 218}, + [4623] = {.lex_state = 439}, + [4624] = {.lex_state = 218}, + [4625] = {.lex_state = 216, .external_lex_state = 57}, + [4626] = {.lex_state = 218}, + [4627] = {.lex_state = 439}, + [4628] = {.lex_state = 218}, + [4629] = {.lex_state = 221}, + [4630] = {.lex_state = 195, .external_lex_state = 68}, + [4631] = {.lex_state = 195, .external_lex_state = 68}, + [4632] = {.lex_state = 218}, + [4633] = {.lex_state = 216, .external_lex_state = 57}, + [4634] = {.lex_state = 439}, + [4635] = {.lex_state = 216, .external_lex_state = 57}, + [4636] = {.lex_state = 216, .external_lex_state = 57}, + [4637] = {.lex_state = 221}, + [4638] = {.lex_state = 218}, + [4639] = {.lex_state = 260}, + [4640] = {.lex_state = 260}, + [4641] = {.lex_state = 216, .external_lex_state = 57}, + [4642] = {.lex_state = 439}, + [4643] = {.lex_state = 439}, + [4644] = {.lex_state = 218}, + [4645] = {.lex_state = 439}, + [4646] = {.lex_state = 439}, + [4647] = {.lex_state = 216, .external_lex_state = 57}, + [4648] = {.lex_state = 439}, + [4649] = {.lex_state = 439}, + [4650] = {.lex_state = 218}, + [4651] = {.lex_state = 439}, + [4652] = {.lex_state = 439}, + [4653] = {.lex_state = 439}, + [4654] = {.lex_state = 194}, + [4655] = {.lex_state = 439}, + [4656] = {.lex_state = 218}, + [4657] = {.lex_state = 216, .external_lex_state = 57}, + [4658] = {.lex_state = 439}, + [4659] = {.lex_state = 221}, + [4660] = {.lex_state = 218}, + [4661] = {.lex_state = 216, .external_lex_state = 57}, + [4662] = {.lex_state = 218}, + [4663] = {.lex_state = 439}, + [4664] = {.lex_state = 439}, + [4665] = {.lex_state = 216, .external_lex_state = 57}, + [4666] = {.lex_state = 439}, + [4667] = {.lex_state = 439}, + [4668] = {.lex_state = 218}, + [4669] = {.lex_state = 218}, + [4670] = {.lex_state = 439}, + [4671] = {.lex_state = 216, .external_lex_state = 57}, + [4672] = {.lex_state = 439}, + [4673] = {.lex_state = 72, .external_lex_state = 45}, + [4674] = {.lex_state = 218}, + [4675] = {.lex_state = 216, .external_lex_state = 57}, + [4676] = {.lex_state = 439}, + [4677] = {.lex_state = 439}, + [4678] = {.lex_state = 439}, + [4679] = {.lex_state = 216, .external_lex_state = 57}, + [4680] = {.lex_state = 218}, + [4681] = {.lex_state = 216, .external_lex_state = 57}, + [4682] = {.lex_state = 221}, + [4683] = {.lex_state = 221}, + [4684] = {.lex_state = 221}, + [4685] = {.lex_state = 216, .external_lex_state = 57}, + [4686] = {.lex_state = 218}, + [4687] = {.lex_state = 218}, + [4688] = {.lex_state = 439}, + [4689] = {.lex_state = 439}, + [4690] = {.lex_state = 439}, + [4691] = {.lex_state = 439, .external_lex_state = 69}, + [4692] = {.lex_state = 218}, + [4693] = {.lex_state = 216, .external_lex_state = 57}, + [4694] = {.lex_state = 439}, + [4695] = {.lex_state = 439}, + [4696] = {.lex_state = 216, .external_lex_state = 57}, + [4697] = {.lex_state = 439}, + [4698] = {.lex_state = 218}, + [4699] = {.lex_state = 216, .external_lex_state = 57}, + [4700] = {.lex_state = 439}, + [4701] = {.lex_state = 72, .external_lex_state = 45}, + [4702] = {.lex_state = 439}, + [4703] = {.lex_state = 439}, + [4704] = {.lex_state = 218}, + [4705] = {.lex_state = 216, .external_lex_state = 57}, + [4706] = {.lex_state = 216, .external_lex_state = 57}, + [4707] = {.lex_state = 216, .external_lex_state = 57}, + [4708] = {.lex_state = 221}, + [4709] = {.lex_state = 216, .external_lex_state = 57}, + [4710] = {.lex_state = 218}, + [4711] = {.lex_state = 218}, + [4712] = {.lex_state = 216, .external_lex_state = 57}, + [4713] = {.lex_state = 439}, + [4714] = {.lex_state = 218}, + [4715] = {.lex_state = 439}, + [4716] = {.lex_state = 218}, + [4717] = {.lex_state = 439}, + [4718] = {.lex_state = 439}, + [4719] = {.lex_state = 439}, + [4720] = {.lex_state = 72, .external_lex_state = 45}, + [4721] = {.lex_state = 439, .external_lex_state = 67}, + [4722] = {.lex_state = 216, .external_lex_state = 57}, + [4723] = {.lex_state = 216, .external_lex_state = 57}, + [4724] = {.lex_state = 439, .external_lex_state = 67}, + [4725] = {.lex_state = 439}, + [4726] = {.lex_state = 439}, + [4727] = {.lex_state = 72, .external_lex_state = 45}, + [4728] = {.lex_state = 218}, + [4729] = {.lex_state = 439}, + [4730] = {.lex_state = 216, .external_lex_state = 57}, + [4731] = {.lex_state = 221}, + [4732] = {.lex_state = 216, .external_lex_state = 57}, + [4733] = {.lex_state = 439}, + [4734] = {.lex_state = 218}, + [4735] = {.lex_state = 439}, + [4736] = {.lex_state = 439}, + [4737] = {.lex_state = 439}, + [4738] = {.lex_state = 439}, + [4739] = {.lex_state = 216, .external_lex_state = 57}, + [4740] = {.lex_state = 218}, + [4741] = {.lex_state = 216, .external_lex_state = 57}, + [4742] = {.lex_state = 221}, + [4743] = {.lex_state = 218}, + [4744] = {.lex_state = 439}, + [4745] = {.lex_state = 221}, + [4746] = {.lex_state = 218}, + [4747] = {.lex_state = 216, .external_lex_state = 57}, + [4748] = {.lex_state = 260}, + [4749] = {.lex_state = 439}, + [4750] = {.lex_state = 439}, + [4751] = {.lex_state = 439}, + [4752] = {.lex_state = 72, .external_lex_state = 45}, + [4753] = {.lex_state = 439}, + [4754] = {.lex_state = 439}, + [4755] = {.lex_state = 221}, + [4756] = {.lex_state = 216, .external_lex_state = 57}, + [4757] = {.lex_state = 216, .external_lex_state = 57}, + [4758] = {.lex_state = 439}, + [4759] = {.lex_state = 439}, + [4760] = {.lex_state = 260}, + [4761] = {.lex_state = 216, .external_lex_state = 57}, + [4762] = {.lex_state = 216, .external_lex_state = 57}, + [4763] = {.lex_state = 439}, + [4764] = {.lex_state = 439}, + [4765] = {.lex_state = 439}, + [4766] = {.lex_state = 439}, + [4767] = {.lex_state = 439}, + [4768] = {.lex_state = 217}, + [4769] = {.lex_state = 439}, + [4770] = {.lex_state = 218}, + [4771] = {.lex_state = 218}, + [4772] = {.lex_state = 439}, + [4773] = {.lex_state = 439}, + [4774] = {.lex_state = 216, .external_lex_state = 57}, + [4775] = {.lex_state = 439, .external_lex_state = 69}, + [4776] = {.lex_state = 439}, + [4777] = {.lex_state = 439}, + [4778] = {.lex_state = 221}, + [4779] = {.lex_state = 216, .external_lex_state = 57}, + [4780] = {.lex_state = 216, .external_lex_state = 57}, + [4781] = {.lex_state = 439, .external_lex_state = 69}, + [4782] = {.lex_state = 439}, + [4783] = {.lex_state = 439}, + [4784] = {.lex_state = 439}, + [4785] = {.lex_state = 439}, + [4786] = {.lex_state = 439}, + [4787] = {.lex_state = 221}, + [4788] = {.lex_state = 216, .external_lex_state = 57}, + [4789] = {.lex_state = 221}, + [4790] = {.lex_state = 216, .external_lex_state = 57}, + [4791] = {.lex_state = 221}, + [4792] = {.lex_state = 216, .external_lex_state = 57}, + [4793] = {.lex_state = 439}, + [4794] = {.lex_state = 439}, + [4795] = {.lex_state = 439}, + [4796] = {.lex_state = 439}, + [4797] = {.lex_state = 216, .external_lex_state = 57}, + [4798] = {.lex_state = 216, .external_lex_state = 57}, + [4799] = {.lex_state = 221}, + [4800] = {.lex_state = 439}, + [4801] = {.lex_state = 221}, + [4802] = {.lex_state = 216, .external_lex_state = 57}, + [4803] = {.lex_state = 439}, + [4804] = {.lex_state = 439}, + [4805] = {.lex_state = 439}, + [4806] = {.lex_state = 439}, + [4807] = {.lex_state = 218}, + [4808] = {.lex_state = 439}, + [4809] = {.lex_state = 216, .external_lex_state = 57}, + [4810] = {.lex_state = 439}, + [4811] = {.lex_state = 439}, + [4812] = {.lex_state = 221}, + [4813] = {.lex_state = 216, .external_lex_state = 57}, + [4814] = {.lex_state = 221}, + [4815] = {.lex_state = 216, .external_lex_state = 57}, + [4816] = {.lex_state = 439}, + [4817] = {.lex_state = 439}, + [4818] = {.lex_state = 439}, + [4819] = {.lex_state = 439}, + [4820] = {.lex_state = 216, .external_lex_state = 57}, + [4821] = {.lex_state = 216, .external_lex_state = 57}, + [4822] = {.lex_state = 221}, + [4823] = {.lex_state = 218}, + [4824] = {.lex_state = 221}, + [4825] = {.lex_state = 216, .external_lex_state = 57}, + [4826] = {.lex_state = 439}, + [4827] = {.lex_state = 439}, + [4828] = {.lex_state = 439}, + [4829] = {.lex_state = 216, .external_lex_state = 57}, + [4830] = {.lex_state = 218}, + [4831] = {.lex_state = 439}, + [4832] = {.lex_state = 216, .external_lex_state = 57}, + [4833] = {.lex_state = 194}, + [4834] = {.lex_state = 221}, + [4835] = {.lex_state = 216, .external_lex_state = 57}, + [4836] = {.lex_state = 218}, + [4837] = {.lex_state = 439}, + [4838] = {.lex_state = 439}, + [4839] = {.lex_state = 439}, + [4840] = {.lex_state = 439}, + [4841] = {.lex_state = 216, .external_lex_state = 57}, + [4842] = {.lex_state = 260}, + [4843] = {.lex_state = 439}, + [4844] = {.lex_state = 217}, + [4845] = {.lex_state = 216, .external_lex_state = 57}, + [4846] = {.lex_state = 439}, + [4847] = {.lex_state = 218}, + [4848] = {.lex_state = 216, .external_lex_state = 57}, + [4849] = {.lex_state = 439}, + [4850] = {.lex_state = 439}, + [4851] = {.lex_state = 439, .external_lex_state = 69}, + [4852] = {.lex_state = 439}, + [4853] = {.lex_state = 439}, + [4854] = {.lex_state = 221}, + [4855] = {.lex_state = 216, .external_lex_state = 57}, + [4856] = {.lex_state = 439, .external_lex_state = 69}, + [4857] = {.lex_state = 439}, + [4858] = {.lex_state = 439}, + [4859] = {.lex_state = 439}, + [4860] = {.lex_state = 439}, + [4861] = {.lex_state = 216, .external_lex_state = 57}, + [4862] = {.lex_state = 216, .external_lex_state = 57}, + [4863] = {.lex_state = 221}, + [4864] = {.lex_state = 439}, + [4865] = {.lex_state = 439}, + [4866] = {.lex_state = 218}, + [4867] = {.lex_state = 221}, + [4868] = {.lex_state = 216, .external_lex_state = 57}, + [4869] = {.lex_state = 439}, + [4870] = {.lex_state = 439}, + [4871] = {.lex_state = 439}, + [4872] = {.lex_state = 439}, + [4873] = {.lex_state = 439}, + [4874] = {.lex_state = 439}, + [4875] = {.lex_state = 216, .external_lex_state = 57}, + [4876] = {.lex_state = 439}, + [4877] = {.lex_state = 216, .external_lex_state = 57}, + [4878] = {.lex_state = 216, .external_lex_state = 57}, + [4879] = {.lex_state = 439}, + [4880] = {.lex_state = 221}, + [4881] = {.lex_state = 216, .external_lex_state = 57}, + [4882] = {.lex_state = 439}, + [4883] = {.lex_state = 439}, + [4884] = {.lex_state = 439}, + [4885] = {.lex_state = 439}, + [4886] = {.lex_state = 439}, + [4887] = {.lex_state = 439}, + [4888] = {.lex_state = 216, .external_lex_state = 57}, + [4889] = {.lex_state = 439}, + [4890] = {.lex_state = 221}, + [4891] = {.lex_state = 216, .external_lex_state = 57}, + [4892] = {.lex_state = 221}, + [4893] = {.lex_state = 221}, + [4894] = {.lex_state = 216, .external_lex_state = 57}, + [4895] = {.lex_state = 439}, + [4896] = {.lex_state = 260}, + [4897] = {.lex_state = 439}, + [4898] = {.lex_state = 439}, + [4899] = {.lex_state = 439}, + [4900] = {.lex_state = 216, .external_lex_state = 57}, + [4901] = {.lex_state = 439}, + [4902] = {.lex_state = 218}, + [4903] = {.lex_state = 260}, + [4904] = {.lex_state = 216, .external_lex_state = 57}, + [4905] = {.lex_state = 439, .external_lex_state = 69}, + [4906] = {.lex_state = 216, .external_lex_state = 57}, + [4907] = {.lex_state = 216, .external_lex_state = 57}, + [4908] = {.lex_state = 221}, + [4909] = {.lex_state = 216, .external_lex_state = 57}, + [4910] = {.lex_state = 439, .external_lex_state = 69}, + [4911] = {.lex_state = 439}, + [4912] = {.lex_state = 439}, + [4913] = {.lex_state = 221}, + [4914] = {.lex_state = 216, .external_lex_state = 57}, + [4915] = {.lex_state = 439}, + [4916] = {.lex_state = 216, .external_lex_state = 57}, + [4917] = {.lex_state = 439}, + [4918] = {.lex_state = 439}, + [4919] = {.lex_state = 216, .external_lex_state = 57}, + [4920] = {.lex_state = 218}, + [4921] = {.lex_state = 439}, + [4922] = {.lex_state = 439}, + [4923] = {.lex_state = 439}, + [4924] = {.lex_state = 439}, + [4925] = {.lex_state = 439}, + [4926] = {.lex_state = 221}, + [4927] = {.lex_state = 216, .external_lex_state = 57}, + [4928] = {.lex_state = 260}, + [4929] = {.lex_state = 439}, + [4930] = {.lex_state = 439}, + [4931] = {.lex_state = 439}, + [4932] = {.lex_state = 439}, + [4933] = {.lex_state = 216, .external_lex_state = 57}, + [4934] = {.lex_state = 218}, + [4935] = {.lex_state = 218}, + [4936] = {.lex_state = 218}, + [4937] = {.lex_state = 218}, + [4938] = {.lex_state = 218}, + [4939] = {.lex_state = 218}, + [4940] = {.lex_state = 218}, + [4941] = {.lex_state = 218}, + [4942] = {.lex_state = 218}, + [4943] = {.lex_state = 218}, + [4944] = {.lex_state = 218}, + [4945] = {.lex_state = 218}, + [4946] = {.lex_state = 218}, + [4947] = {.lex_state = 218}, + [4948] = {.lex_state = 218}, + [4949] = {.lex_state = 218}, + [4950] = {.lex_state = 218}, + [4951] = {.lex_state = 218}, + [4952] = {.lex_state = 218}, + [4953] = {.lex_state = 218}, + [4954] = {.lex_state = 218}, + [4955] = {.lex_state = 218}, + [4956] = {.lex_state = 218}, + [4957] = {.lex_state = 218}, + [4958] = {.lex_state = 218}, + [4959] = {.lex_state = 218}, + [4960] = {.lex_state = 218}, + [4961] = {.lex_state = 218}, + [4962] = {.lex_state = 218}, + [4963] = {.lex_state = 218}, + [4964] = {.lex_state = 218}, + [4965] = {.lex_state = 218}, + [4966] = {.lex_state = 218}, + [4967] = {.lex_state = 218}, + [4968] = {.lex_state = 218}, + [4969] = {.lex_state = 218}, + [4970] = {.lex_state = 218}, + [4971] = {.lex_state = 218}, + [4972] = {.lex_state = 218}, + [4973] = {.lex_state = 218}, + [4974] = {.lex_state = 218}, + [4975] = {.lex_state = 218}, + [4976] = {.lex_state = 218}, + [4977] = {.lex_state = 218}, + [4978] = {.lex_state = 260}, + [4979] = {.lex_state = 439}, + [4980] = {.lex_state = 439}, + [4981] = {.lex_state = 216, .external_lex_state = 57}, + [4982] = {.lex_state = 439}, + [4983] = {.lex_state = 218}, + [4984] = {.lex_state = 260}, + [4985] = {.lex_state = 439}, + [4986] = {.lex_state = 216, .external_lex_state = 57}, + [4987] = {.lex_state = 217}, + [4988] = {.lex_state = 216, .external_lex_state = 57}, + [4989] = {.lex_state = 218}, + [4990] = {.lex_state = 260}, + [4991] = {.lex_state = 439}, + [4992] = {.lex_state = 439}, + [4993] = {.lex_state = 218}, + [4994] = {.lex_state = 260}, + [4995] = {.lex_state = 439}, + [4996] = {.lex_state = 218}, + [4997] = {.lex_state = 218}, + [4998] = {.lex_state = 218}, + [4999] = {.lex_state = 218}, + [5000] = {.lex_state = 218}, + [5001] = {.lex_state = 218}, + [5002] = {.lex_state = 218}, + [5003] = {.lex_state = 218}, + [5004] = {.lex_state = 218}, + [5005] = {.lex_state = 218}, + [5006] = {.lex_state = 218}, + [5007] = {.lex_state = 218}, + [5008] = {.lex_state = 218}, + [5009] = {.lex_state = 218}, + [5010] = {.lex_state = 218}, + [5011] = {.lex_state = 218}, + [5012] = {.lex_state = 218}, + [5013] = {.lex_state = 218}, + [5014] = {.lex_state = 218}, + [5015] = {.lex_state = 218}, + [5016] = {.lex_state = 218}, + [5017] = {.lex_state = 218}, + [5018] = {.lex_state = 218}, + [5019] = {.lex_state = 218}, + [5020] = {.lex_state = 218}, + [5021] = {.lex_state = 218}, + [5022] = {.lex_state = 218}, + [5023] = {.lex_state = 218}, + [5024] = {.lex_state = 218}, + [5025] = {.lex_state = 218}, + [5026] = {.lex_state = 218}, + [5027] = {.lex_state = 218}, + [5028] = {.lex_state = 218}, + [5029] = {.lex_state = 218}, + [5030] = {.lex_state = 218}, + [5031] = {.lex_state = 218}, + [5032] = {.lex_state = 218}, + [5033] = {.lex_state = 218}, + [5034] = {.lex_state = 218}, + [5035] = {.lex_state = 218}, + [5036] = {.lex_state = 218}, + [5037] = {.lex_state = 218}, + [5038] = {.lex_state = 218}, + [5039] = {.lex_state = 218}, + [5040] = {.lex_state = 439}, }; enum { ts_external_token_heredoc_start = 0, - ts_external_token__simple_heredoc_body = 1, + ts_external_token_simple_heredoc_body = 1, ts_external_token__heredoc_body_beginning = 2, ts_external_token__heredoc_body_middle = 3, - ts_external_token__heredoc_body_end = 4, + ts_external_token_heredoc_end = 4, ts_external_token_file_descriptor = 5, ts_external_token__empty_value = 6, ts_external_token__concat = 7, ts_external_token_variable_name = 8, ts_external_token_regex = 9, - ts_external_token_extglob_pattern = 10, - ts_external_token__bare_dollar = 11, - ts_external_token__brace_start = 12, - ts_external_token_RBRACE = 13, - ts_external_token_RBRACK = 14, - ts_external_token_LT_LT = 15, - ts_external_token_LT_LT_DASH = 16, - ts_external_token_LF = 17, + ts_external_token__regex_no_slash = 10, + ts_external_token__regex_no_space = 11, + ts_external_token_extglob_pattern = 12, + ts_external_token__bare_dollar = 13, + ts_external_token__brace_start = 14, + ts_external_token_RBRACE = 15, + ts_external_token_RBRACK = 16, + ts_external_token_LT_LT = 17, + ts_external_token_LT_LT_DASH = 18, + ts_external_token_LF = 19, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_start] = sym_heredoc_start, - [ts_external_token__simple_heredoc_body] = sym__simple_heredoc_body, + [ts_external_token_simple_heredoc_body] = sym_simple_heredoc_body, [ts_external_token__heredoc_body_beginning] = sym__heredoc_body_beginning, [ts_external_token__heredoc_body_middle] = sym__heredoc_body_middle, - [ts_external_token__heredoc_body_end] = sym__heredoc_body_end, + [ts_external_token_heredoc_end] = sym_heredoc_end, [ts_external_token_file_descriptor] = sym_file_descriptor, [ts_external_token__empty_value] = sym__empty_value, [ts_external_token__concat] = sym__concat, [ts_external_token_variable_name] = sym_variable_name, [ts_external_token_regex] = sym_regex, + [ts_external_token__regex_no_slash] = sym__regex_no_slash, + [ts_external_token__regex_no_space] = sym__regex_no_space, [ts_external_token_extglob_pattern] = sym_extglob_pattern, [ts_external_token__bare_dollar] = sym__bare_dollar, [ts_external_token__brace_start] = sym__brace_start, @@ -19772,18 +21284,20 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LF] = anon_sym_LF, }; -static const bool ts_external_scanner_states[64][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[71][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token_heredoc_start] = true, - [ts_external_token__simple_heredoc_body] = true, + [ts_external_token_simple_heredoc_body] = true, [ts_external_token__heredoc_body_beginning] = true, [ts_external_token__heredoc_body_middle] = true, - [ts_external_token__heredoc_body_end] = true, + [ts_external_token_heredoc_end] = true, [ts_external_token_file_descriptor] = true, [ts_external_token__empty_value] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, [ts_external_token_regex] = true, + [ts_external_token__regex_no_slash] = true, + [ts_external_token__regex_no_space] = true, [ts_external_token_extglob_pattern] = true, [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, @@ -19849,19 +21363,16 @@ static const bool ts_external_scanner_states[64][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, }, [10] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, [ts_external_token__brace_start] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_LF] = true, + [ts_external_token_RBRACE] = true, }, [11] = { - [ts_external_token__simple_heredoc_body] = true, - [ts_external_token__heredoc_body_beginning] = true, [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token__brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_LF] = true, }, [12] = { [ts_external_token_file_descriptor] = true, @@ -19878,50 +21389,47 @@ static const bool ts_external_scanner_states[64][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, }, [14] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, - [ts_external_token_RBRACE] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, }, [15] = { [ts_external_token_file_descriptor] = true, - [ts_external_token__bare_dollar] = true, + [ts_external_token_variable_name] = true, [ts_external_token__brace_start] = true, + [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, [16] = { - [ts_external_token__concat] = true, - [ts_external_token_RBRACK] = true, + [ts_external_token_file_descriptor] = true, + [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, }, [17] = { + [ts_external_token__concat] = true, + [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, }, [18] = { [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, [ts_external_token__brace_start] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, [19] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, }, [20] = { - [ts_external_token_file_descriptor] = true, + [ts_external_token_regex] = true, [ts_external_token__brace_start] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_RBRACE] = true, }, [21] = { - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - }, - [22] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, @@ -19930,12 +21438,11 @@ static const bool ts_external_scanner_states[64][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, [ts_external_token_LF] = true, }, - [23] = { - [ts_external_token_regex] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_RBRACE] = true, + [22] = { + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, }, - [24] = { + [23] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token__brace_start] = true, @@ -19943,11 +21450,11 @@ static const bool ts_external_scanner_states[64][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, [ts_external_token_LF] = true, }, - [25] = { + [24] = { [ts_external_token__concat] = true, [ts_external_token_LT_LT] = true, }, - [26] = { + [25] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token__bare_dollar] = true, @@ -19955,14 +21462,22 @@ static const bool ts_external_scanner_states[64][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, + [26] = { + [ts_external_token__regex_no_space] = true, + [ts_external_token__brace_start] = true, + }, [27] = { - [ts_external_token_extglob_pattern] = true, + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, [ts_external_token__brace_start] = true, - [ts_external_token_LF] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, }, [28] = { - [ts_external_token_regex] = true, + [ts_external_token_extglob_pattern] = true, [ts_external_token__brace_start] = true, + [ts_external_token_LF] = true, }, [29] = { [ts_external_token_file_descriptor] = true, @@ -19974,17 +21489,9 @@ static const bool ts_external_scanner_states[64][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, }, [30] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token_variable_name] = true, [ts_external_token__brace_start] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, }, [31] = { - [ts_external_token__brace_start] = true, - }, - [32] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token__brace_start] = true, @@ -19992,25 +21499,30 @@ static const bool ts_external_scanner_states[64][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [33] = { + [32] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [34] = { - [ts_external_token__concat] = true, + [33] = { [ts_external_token__brace_start] = true, [ts_external_token_RBRACE] = true, + [ts_external_token_LF] = true, }, - [35] = { + [34] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_LF] = true, }, + [35] = { + [ts_external_token__concat] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_RBRACE] = true, + }, [36] = { [ts_external_token_file_descriptor] = true, [ts_external_token_LT_LT] = true, @@ -20022,11 +21534,11 @@ static const bool ts_external_scanner_states[64][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__brace_start] = true, }, [38] = { - [ts_external_token_LT_LT] = true, + [ts_external_token__brace_start] = true, [ts_external_token_LF] = true, }, [39] = { - [ts_external_token__brace_start] = true, + [ts_external_token_LT_LT] = true, [ts_external_token_LF] = true, }, [40] = { @@ -20034,25 +21546,24 @@ static const bool ts_external_scanner_states[64][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__brace_start] = true, }, [41] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, - [42] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, [ts_external_token__brace_start] = true, }, - [43] = { + [42] = { [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, + [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, + [43] = { + [ts_external_token_regex] = true, + [ts_external_token__brace_start] = true, + }, [44] = { [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, @@ -20065,83 +21576,109 @@ static const bool ts_external_scanner_states[64][EXTERNAL_TOKEN_COUNT] = { }, [47] = { [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_LF] = true, }, [48] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_LF] = true, }, [49] = { + [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, - [ts_external_token__brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, [ts_external_token_LF] = true, }, [50] = { - [ts_external_token_variable_name] = true, + [ts_external_token__concat] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_LF] = true, }, [51] = { [ts_external_token__concat] = true, [ts_external_token__brace_start] = true, }, [52] = { + [ts_external_token_variable_name] = true, + }, + [53] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [53] = { + [54] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [54] = { + [55] = { [ts_external_token_variable_name] = true, [ts_external_token_RBRACE] = true, }, - [55] = { + [56] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [56] = { - [ts_external_token_RBRACE] = true, - }, [57] = { - [ts_external_token__heredoc_body_middle] = true, - [ts_external_token__heredoc_body_end] = true, + [ts_external_token_RBRACE] = true, }, [58] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_LF] = true, + }, + [59] = { [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [59] = { + [60] = { + [ts_external_token__heredoc_body_middle] = true, + [ts_external_token_heredoc_end] = true, + }, + [61] = { [ts_external_token__concat] = true, }, - [60] = { + [62] = { + [ts_external_token_RBRACE] = true, + [ts_external_token_LF] = true, + }, + [63] = { [ts_external_token__concat] = true, [ts_external_token_LF] = true, }, - [61] = { + [64] = { [ts_external_token__concat] = true, [ts_external_token_RBRACE] = true, }, - [62] = { + [65] = { + [ts_external_token_simple_heredoc_body] = true, + [ts_external_token__heredoc_body_beginning] = true, + }, + [66] = { + [ts_external_token_regex] = true, + }, + [67] = { + [ts_external_token_heredoc_end] = true, + }, + [68] = { [ts_external_token_RBRACK] = true, }, - [63] = { + [69] = { [ts_external_token_heredoc_start] = true, }, + [70] = { + [ts_external_token__regex_no_slash] = true, + }, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -20151,6 +21688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1), [anon_sym_select] = ACTIONS(1), [anon_sym_in] = ACTIONS(1), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1), [anon_sym_RPAREN_RPAREN] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), @@ -20243,12 +21781,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(1), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1), [anon_sym_RBRACE3] = ACTIONS(1), - [anon_sym_SLASH2] = ACTIONS(1), - [anon_sym_COMMA2] = ACTIONS(1), + [anon_sym_COLON_EQ] = ACTIONS(1), + [anon_sym_COLON_DASH] = ACTIONS(1), + [anon_sym_COLON_PLUS] = ACTIONS(1), + [anon_sym_COLON_QMARK] = ACTIONS(1), + [anon_sym_POUND_POUND] = ACTIONS(1), + [anon_sym_PERCENT_PERCENT] = ACTIONS(1), + [anon_sym_SLASH_SLASH] = ACTIONS(1), + [anon_sym_SLASH_POUND] = ACTIONS(1), + [anon_sym_SLASH_PERCENT] = ACTIONS(1), [anon_sym_COMMA_COMMA] = ACTIONS(1), + [anon_sym_CARET_CARET] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [anon_sym_U] = ACTIONS(1), + [anon_sym_u] = ACTIONS(1), + [anon_sym_L] = ACTIONS(1), + [anon_sym_Q] = ACTIONS(1), + [anon_sym_E] = ACTIONS(1), + [anon_sym_P] = ACTIONS(1), + [anon_sym_A] = ACTIONS(1), + [anon_sym_K] = ACTIONS(1), + [anon_sym_a] = ACTIONS(1), + [anon_sym_k] = ACTIONS(1), + [anon_sym_COMMA2] = ACTIONS(1), + [anon_sym_COMMA_COMMA2] = ACTIONS(1), [anon_sym_CARET2] = ACTIONS(1), - [anon_sym_COLON_QMARK] = ACTIONS(1), - [anon_sym_COLON_DASH] = ACTIONS(1), + [anon_sym_CARET_CARET2] = ACTIONS(1), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1), [anon_sym_BQUOTE] = ACTIONS(1), [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1), @@ -20256,92 +21814,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(1), [sym_comment] = ACTIONS(3), [sym__comment_word] = ACTIONS(1), - [anon_sym_AT] = ACTIONS(1), [anon_sym_0] = ACTIONS(1), [anon_sym__] = ACTIONS(1), [sym_test_operator] = ACTIONS(1), [sym_heredoc_start] = ACTIONS(1), - [sym__simple_heredoc_body] = ACTIONS(1), + [sym_simple_heredoc_body] = ACTIONS(1), [sym__heredoc_body_beginning] = ACTIONS(1), [sym__heredoc_body_middle] = ACTIONS(1), - [sym__heredoc_body_end] = ACTIONS(1), + [sym_heredoc_end] = ACTIONS(1), [sym_file_descriptor] = ACTIONS(1), [sym__empty_value] = ACTIONS(1), [sym__concat] = ACTIONS(1), [sym_variable_name] = ACTIONS(1), [sym_regex] = ACTIONS(1), + [sym__regex_no_slash] = ACTIONS(1), + [sym__regex_no_space] = ACTIONS(1), [sym_extglob_pattern] = ACTIONS(1), [sym__bare_dollar] = ACTIONS(1), [sym__brace_start] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(4657), - [sym__statements] = STATE(4656), - [sym_redirected_statement] = STATE(2682), - [sym_for_statement] = STATE(2682), - [sym_c_style_for_statement] = STATE(2682), - [sym_while_statement] = STATE(2682), - [sym_if_statement] = STATE(2682), - [sym_case_statement] = STATE(2682), - [sym_function_definition] = STATE(2682), - [sym_compound_statement] = STATE(2682), - [sym_subshell] = STATE(2682), - [sym_pipeline] = STATE(2682), - [sym_list] = STATE(2682), - [sym_negated_command] = STATE(2682), - [sym_test_command] = STATE(2682), - [sym_declaration_command] = STATE(2682), - [sym_unset_command] = STATE(2682), - [sym_command] = STATE(2682), - [sym_command_name] = STATE(483), - [sym_variable_assignment] = STATE(665), - [sym_variable_assignments] = STATE(2682), - [sym_subscript] = STATE(4112), - [sym_file_redirect] = STATE(1550), - [sym_arithmetic_expansion] = STATE(852), - [sym_brace_expression] = STATE(852), - [sym_concatenation] = STATE(1197), - [sym_string] = STATE(852), - [sym_translated_string] = STATE(852), - [sym_number] = STATE(852), - [sym_simple_expansion] = STATE(852), - [sym_expansion] = STATE(852), - [sym_command_substitution] = STATE(852), - [sym_process_substitution] = STATE(852), - [aux_sym__statements_repeat1] = STATE(319), - [aux_sym_redirected_statement_repeat2] = STATE(2930), - [aux_sym_command_repeat1] = STATE(975), - [aux_sym__literal_repeat1] = STATE(1106), + [sym_program] = STATE(4874), + [sym__statements] = STATE(4873), + [sym_redirected_statement] = STATE(2851), + [sym_for_statement] = STATE(2851), + [sym_c_style_for_statement] = STATE(2851), + [sym_while_statement] = STATE(2851), + [sym_if_statement] = STATE(2851), + [sym_case_statement] = STATE(2851), + [sym_function_definition] = STATE(2851), + [sym_compound_statement] = STATE(2851), + [sym_subshell] = STATE(2851), + [sym_pipeline] = STATE(2851), + [sym_list] = STATE(2851), + [sym_negated_command] = STATE(2851), + [sym_test_command] = STATE(2851), + [sym_declaration_command] = STATE(2851), + [sym_unset_command] = STATE(2851), + [sym_command] = STATE(2851), + [sym_command_name] = STATE(473), + [sym_variable_assignment] = STATE(662), + [sym_variable_assignments] = STATE(2851), + [sym_subscript] = STATE(4317), + [sym_file_redirect] = STATE(1499), + [sym_arithmetic_expansion] = STATE(794), + [sym_brace_expression] = STATE(794), + [sym_concatenation] = STATE(1275), + [sym_string] = STATE(794), + [sym_translated_string] = STATE(794), + [sym_number] = STATE(794), + [sym_simple_expansion] = STATE(794), + [sym_expansion] = STATE(794), + [sym_command_substitution] = STATE(794), + [sym_process_substitution] = STATE(794), + [aux_sym__statements_repeat1] = STATE(303), + [aux_sym_redirected_statement_repeat2] = STATE(2998), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1104), [ts_builtin_sym_end] = ACTIONS(5), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_GT_GT] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(15), - [anon_sym_GT] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_while] = ACTIONS(19), - [anon_sym_until] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_case] = ACTIONS(23), - [anon_sym_function] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym_declare] = ACTIONS(35), - [anon_sym_typeset] = ACTIONS(35), - [anon_sym_export] = ACTIONS(35), - [anon_sym_readonly] = ACTIONS(35), - [anon_sym_local] = ACTIONS(35), - [anon_sym_unset] = ACTIONS(37), - [anon_sym_unsetenv] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(15), - [anon_sym_AMP_GT_GT] = ACTIONS(13), - [anon_sym_LT_AMP] = ACTIONS(13), - [anon_sym_GT_AMP] = ACTIONS(13), - [anon_sym_GT_PIPE] = ACTIONS(13), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(39), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_GT_GT] = ACTIONS(15), + [anon_sym_LT] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(37), + [anon_sym_typeset] = ACTIONS(37), + [anon_sym_export] = ACTIONS(37), + [anon_sym_readonly] = ACTIONS(37), + [anon_sym_local] = ACTIONS(37), + [anon_sym_unset] = ACTIONS(39), + [anon_sym_unsetenv] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(17), + [anon_sym_AMP_GT_GT] = ACTIONS(15), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(15), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(13), [anon_sym_DOLLAR] = ACTIONS(41), [sym__special_character] = ACTIONS(43), [anon_sym_DQUOTE] = ACTIONS(45), @@ -20362,6313 +21922,6359 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(71), }, [2] = { - [sym__statements] = STATE(4449), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym__expression] = STATE(1709), - [sym_binary_expression] = STATE(1557), - [sym_ternary_expression] = STATE(1557), - [sym_unary_expression] = STATE(1557), - [sym_postfix_expression] = STATE(1557), - [sym_parenthesized_expression] = STATE(1557), - [sym_arithmetic_expansion] = STATE(359), - [sym_brace_expression] = STATE(359), - [sym_concatenation] = STATE(408), - [sym_string] = STATE(359), - [sym_translated_string] = STATE(359), - [sym_number] = STATE(359), - [sym_simple_expansion] = STATE(359), - [sym_expansion] = STATE(359), - [sym_command_substitution] = STATE(359), - [sym_process_substitution] = STATE(359), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(392), + [sym__statements] = STATE(4763), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym__expression] = STATE(1948), + [sym_binary_expression] = STATE(1623), + [sym_ternary_expression] = STATE(1623), + [sym_unary_expression] = STATE(1623), + [sym_postfix_expression] = STATE(1623), + [sym_parenthesized_expression] = STATE(1623), + [sym_arithmetic_expansion] = STATE(342), + [sym_brace_expression] = STATE(342), + [sym_concatenation] = STATE(402), + [sym_string] = STATE(342), + [sym_translated_string] = STATE(342), + [sym_number] = STATE(342), + [sym_simple_expansion] = STATE(342), + [sym_expansion] = STATE(342), + [sym_command_substitution] = STATE(342), + [sym_process_substitution] = STATE(342), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(377), [sym_word] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_RPAREN_RPAREN] = ACTIONS(79), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [aux_sym_unary_expression_token1] = ACTIONS(107), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [sym__special_character] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_raw_string] = ACTIONS(117), - [sym_ansi_c_string] = ACTIONS(117), - [aux_sym_number_token1] = ACTIONS(119), - [aux_sym_number_token2] = ACTIONS(121), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_BQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(129), - [anon_sym_LT_LPAREN] = ACTIONS(131), - [anon_sym_GT_LPAREN] = ACTIONS(131), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(75), + [anon_sym_RPAREN_RPAREN] = ACTIONS(77), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [aux_sym_unary_expression_token1] = ACTIONS(93), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(75), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansi_c_string] = ACTIONS(101), + [aux_sym_number_token1] = ACTIONS(103), + [aux_sym_number_token2] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(109), + [anon_sym_BQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(133), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(139), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(123), }, [3] = { - [sym__statements] = STATE(4449), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym__expression] = STATE(1843), - [sym_binary_expression] = STATE(1557), - [sym_ternary_expression] = STATE(1557), - [sym_unary_expression] = STATE(1557), - [sym_postfix_expression] = STATE(1557), - [sym_parenthesized_expression] = STATE(1557), - [sym_arithmetic_expansion] = STATE(360), - [sym_brace_expression] = STATE(360), - [sym_concatenation] = STATE(407), - [sym_string] = STATE(360), - [sym_translated_string] = STATE(360), - [sym_number] = STATE(360), - [sym_simple_expansion] = STATE(360), - [sym_expansion] = STATE(360), - [sym_command_substitution] = STATE(360), - [sym_process_substitution] = STATE(360), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(395), - [sym_word] = ACTIONS(141), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_RPAREN_RPAREN] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [aux_sym_unary_expression_token1] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [sym__special_character] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_raw_string] = ACTIONS(149), - [sym_ansi_c_string] = ACTIONS(149), - [aux_sym_number_token1] = ACTIONS(119), - [aux_sym_number_token2] = ACTIONS(121), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_BQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(129), - [anon_sym_LT_LPAREN] = ACTIONS(131), - [anon_sym_GT_LPAREN] = ACTIONS(131), + [sym__statements] = STATE(4763), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym__expression] = STATE(2112), + [sym_binary_expression] = STATE(1623), + [sym_ternary_expression] = STATE(1623), + [sym_unary_expression] = STATE(1623), + [sym_postfix_expression] = STATE(1623), + [sym_parenthesized_expression] = STATE(1623), + [sym_arithmetic_expansion] = STATE(346), + [sym_brace_expression] = STATE(346), + [sym_concatenation] = STATE(400), + [sym_string] = STATE(346), + [sym_translated_string] = STATE(346), + [sym_number] = STATE(346), + [sym_simple_expansion] = STATE(346), + [sym_expansion] = STATE(346), + [sym_command_substitution] = STATE(346), + [sym_process_substitution] = STATE(346), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(379), + [sym_word] = ACTIONS(125), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(75), + [anon_sym_RPAREN_RPAREN] = ACTIONS(127), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [aux_sym_unary_expression_token1] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(75), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(133), + [sym_ansi_c_string] = ACTIONS(133), + [aux_sym_number_token1] = ACTIONS(103), + [aux_sym_number_token2] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(109), + [anon_sym_BQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(151), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(139), + [sym_test_operator] = ACTIONS(135), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(123), }, [4] = { - [sym__statements] = STATE(4449), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym__expression] = STATE(2005), - [sym_binary_expression] = STATE(1557), - [sym_ternary_expression] = STATE(1557), - [sym_unary_expression] = STATE(1557), - [sym_postfix_expression] = STATE(1557), - [sym_parenthesized_expression] = STATE(1557), - [sym_arithmetic_expansion] = STATE(360), - [sym_brace_expression] = STATE(360), - [sym_concatenation] = STATE(407), - [sym_string] = STATE(360), - [sym_translated_string] = STATE(360), - [sym_number] = STATE(360), - [sym_simple_expansion] = STATE(360), - [sym_expansion] = STATE(360), - [sym_command_substitution] = STATE(360), - [sym_process_substitution] = STATE(360), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(395), - [sym_word] = ACTIONS(141), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_RPAREN_RPAREN] = ACTIONS(153), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [aux_sym_unary_expression_token1] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [sym__special_character] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_raw_string] = ACTIONS(149), - [sym_ansi_c_string] = ACTIONS(149), - [aux_sym_number_token1] = ACTIONS(119), - [aux_sym_number_token2] = ACTIONS(121), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_BQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(129), - [anon_sym_LT_LPAREN] = ACTIONS(131), - [anon_sym_GT_LPAREN] = ACTIONS(131), + [sym__statements] = STATE(4763), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym__expression] = STATE(1941), + [sym_binary_expression] = STATE(1623), + [sym_ternary_expression] = STATE(1623), + [sym_unary_expression] = STATE(1623), + [sym_postfix_expression] = STATE(1623), + [sym_parenthesized_expression] = STATE(1623), + [sym_arithmetic_expansion] = STATE(342), + [sym_brace_expression] = STATE(342), + [sym_concatenation] = STATE(402), + [sym_string] = STATE(342), + [sym_translated_string] = STATE(342), + [sym_number] = STATE(342), + [sym_simple_expansion] = STATE(342), + [sym_expansion] = STATE(342), + [sym_command_substitution] = STATE(342), + [sym_process_substitution] = STATE(342), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(377), + [sym_word] = ACTIONS(73), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(75), + [anon_sym_RPAREN_RPAREN] = ACTIONS(77), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [aux_sym_unary_expression_token1] = ACTIONS(93), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(75), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansi_c_string] = ACTIONS(101), + [aux_sym_number_token1] = ACTIONS(103), + [aux_sym_number_token2] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(109), + [anon_sym_BQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(151), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(139), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(123), }, [5] = { - [sym__statements] = STATE(4449), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym__expression] = STATE(1769), - [sym_binary_expression] = STATE(1557), - [sym_ternary_expression] = STATE(1557), - [sym_unary_expression] = STATE(1557), - [sym_postfix_expression] = STATE(1557), - [sym_parenthesized_expression] = STATE(1557), - [sym_arithmetic_expansion] = STATE(359), - [sym_brace_expression] = STATE(359), - [sym_concatenation] = STATE(408), - [sym_string] = STATE(359), - [sym_translated_string] = STATE(359), - [sym_number] = STATE(359), - [sym_simple_expansion] = STATE(359), - [sym_expansion] = STATE(359), - [sym_command_substitution] = STATE(359), - [sym_process_substitution] = STATE(359), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(392), - [sym_word] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_RPAREN_RPAREN] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [aux_sym_unary_expression_token1] = ACTIONS(107), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [sym__special_character] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_raw_string] = ACTIONS(117), - [sym_ansi_c_string] = ACTIONS(117), - [aux_sym_number_token1] = ACTIONS(119), - [aux_sym_number_token2] = ACTIONS(121), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_BQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(129), - [anon_sym_LT_LPAREN] = ACTIONS(131), - [anon_sym_GT_LPAREN] = ACTIONS(131), + [sym__statements] = STATE(4763), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym__expression] = STATE(2045), + [sym_binary_expression] = STATE(1623), + [sym_ternary_expression] = STATE(1623), + [sym_unary_expression] = STATE(1623), + [sym_postfix_expression] = STATE(1623), + [sym_parenthesized_expression] = STATE(1623), + [sym_arithmetic_expansion] = STATE(346), + [sym_brace_expression] = STATE(346), + [sym_concatenation] = STATE(400), + [sym_string] = STATE(346), + [sym_translated_string] = STATE(346), + [sym_number] = STATE(346), + [sym_simple_expansion] = STATE(346), + [sym_expansion] = STATE(346), + [sym_command_substitution] = STATE(346), + [sym_process_substitution] = STATE(346), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(379), + [sym_word] = ACTIONS(125), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(75), + [anon_sym_RPAREN_RPAREN] = ACTIONS(137), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [aux_sym_unary_expression_token1] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(75), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(133), + [sym_ansi_c_string] = ACTIONS(133), + [aux_sym_number_token1] = ACTIONS(103), + [aux_sym_number_token2] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(109), + [anon_sym_BQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(133), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(139), + [sym_test_operator] = ACTIONS(135), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(123), }, [6] = { - [sym__statements] = STATE(4449), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym__expression] = STATE(1916), - [sym_binary_expression] = STATE(1557), - [sym_ternary_expression] = STATE(1557), - [sym_unary_expression] = STATE(1557), - [sym_postfix_expression] = STATE(1557), - [sym_parenthesized_expression] = STATE(1557), - [sym_arithmetic_expansion] = STATE(360), - [sym_brace_expression] = STATE(360), - [sym_concatenation] = STATE(407), - [sym_string] = STATE(360), - [sym_translated_string] = STATE(360), - [sym_number] = STATE(360), - [sym_simple_expansion] = STATE(360), - [sym_expansion] = STATE(360), - [sym_command_substitution] = STATE(360), - [sym_process_substitution] = STATE(360), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(395), - [sym_word] = ACTIONS(141), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_RPAREN_RPAREN] = ACTIONS(79), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [aux_sym_unary_expression_token1] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [sym__special_character] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_raw_string] = ACTIONS(149), - [sym_ansi_c_string] = ACTIONS(149), - [aux_sym_number_token1] = ACTIONS(119), - [aux_sym_number_token2] = ACTIONS(121), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_BQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(129), - [anon_sym_LT_LPAREN] = ACTIONS(131), - [anon_sym_GT_LPAREN] = ACTIONS(131), + [sym__statements] = STATE(4763), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym__expression] = STATE(1954), + [sym_binary_expression] = STATE(1623), + [sym_ternary_expression] = STATE(1623), + [sym_unary_expression] = STATE(1623), + [sym_postfix_expression] = STATE(1623), + [sym_parenthesized_expression] = STATE(1623), + [sym_arithmetic_expansion] = STATE(342), + [sym_brace_expression] = STATE(342), + [sym_concatenation] = STATE(402), + [sym_string] = STATE(342), + [sym_translated_string] = STATE(342), + [sym_number] = STATE(342), + [sym_simple_expansion] = STATE(342), + [sym_expansion] = STATE(342), + [sym_command_substitution] = STATE(342), + [sym_process_substitution] = STATE(342), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(377), + [sym_word] = ACTIONS(73), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(75), + [anon_sym_RPAREN_RPAREN] = ACTIONS(127), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [aux_sym_unary_expression_token1] = ACTIONS(93), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(75), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansi_c_string] = ACTIONS(101), + [aux_sym_number_token1] = ACTIONS(103), + [aux_sym_number_token2] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(109), + [anon_sym_BQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(151), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(139), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(123), }, [7] = { - [sym__statements] = STATE(4449), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym__expression] = STATE(1804), - [sym_binary_expression] = STATE(1557), - [sym_ternary_expression] = STATE(1557), - [sym_unary_expression] = STATE(1557), - [sym_postfix_expression] = STATE(1557), - [sym_parenthesized_expression] = STATE(1557), - [sym_arithmetic_expansion] = STATE(359), - [sym_brace_expression] = STATE(359), - [sym_concatenation] = STATE(408), - [sym_string] = STATE(359), - [sym_translated_string] = STATE(359), - [sym_number] = STATE(359), - [sym_simple_expansion] = STATE(359), - [sym_expansion] = STATE(359), - [sym_command_substitution] = STATE(359), - [sym_process_substitution] = STATE(359), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(392), - [sym_word] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_RPAREN_RPAREN] = ACTIONS(79), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [aux_sym_unary_expression_token1] = ACTIONS(107), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [sym__special_character] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_raw_string] = ACTIONS(117), - [sym_ansi_c_string] = ACTIONS(117), - [aux_sym_number_token1] = ACTIONS(119), - [aux_sym_number_token2] = ACTIONS(121), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_BQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(129), - [anon_sym_LT_LPAREN] = ACTIONS(131), - [anon_sym_GT_LPAREN] = ACTIONS(131), + [sym__statements] = STATE(4763), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym__expression] = STATE(2079), + [sym_binary_expression] = STATE(1623), + [sym_ternary_expression] = STATE(1623), + [sym_unary_expression] = STATE(1623), + [sym_postfix_expression] = STATE(1623), + [sym_parenthesized_expression] = STATE(1623), + [sym_arithmetic_expansion] = STATE(346), + [sym_brace_expression] = STATE(346), + [sym_concatenation] = STATE(400), + [sym_string] = STATE(346), + [sym_translated_string] = STATE(346), + [sym_number] = STATE(346), + [sym_simple_expansion] = STATE(346), + [sym_expansion] = STATE(346), + [sym_command_substitution] = STATE(346), + [sym_process_substitution] = STATE(346), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(379), + [sym_word] = ACTIONS(125), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(75), + [anon_sym_RPAREN_RPAREN] = ACTIONS(77), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [aux_sym_unary_expression_token1] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(75), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(133), + [sym_ansi_c_string] = ACTIONS(133), + [aux_sym_number_token1] = ACTIONS(103), + [aux_sym_number_token2] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(109), + [anon_sym_BQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(133), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(139), + [sym_test_operator] = ACTIONS(135), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(123), }, [8] = { - [sym__statements] = STATE(4449), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym__expression] = STATE(1875), - [sym_binary_expression] = STATE(1557), - [sym_ternary_expression] = STATE(1557), - [sym_unary_expression] = STATE(1557), - [sym_postfix_expression] = STATE(1557), - [sym_parenthesized_expression] = STATE(1557), - [sym_arithmetic_expansion] = STATE(360), - [sym_brace_expression] = STATE(360), - [sym_concatenation] = STATE(407), - [sym_string] = STATE(360), - [sym_translated_string] = STATE(360), - [sym_number] = STATE(360), - [sym_simple_expansion] = STATE(360), - [sym_expansion] = STATE(360), - [sym_command_substitution] = STATE(360), - [sym_process_substitution] = STATE(360), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(395), - [sym_word] = ACTIONS(141), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_RPAREN_RPAREN] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [aux_sym_unary_expression_token1] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [sym__special_character] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_raw_string] = ACTIONS(149), - [sym_ansi_c_string] = ACTIONS(149), - [aux_sym_number_token1] = ACTIONS(119), - [aux_sym_number_token2] = ACTIONS(121), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_BQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(129), - [anon_sym_LT_LPAREN] = ACTIONS(131), - [anon_sym_GT_LPAREN] = ACTIONS(131), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(151), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(139), + [sym__expression] = STATE(2060), + [sym_binary_expression] = STATE(1623), + [sym_ternary_expression] = STATE(1623), + [sym_unary_expression] = STATE(1623), + [sym_postfix_expression] = STATE(1623), + [sym_parenthesized_expression] = STATE(1623), + [sym_arithmetic_expansion] = STATE(1637), + [sym_brace_expression] = STATE(1637), + [sym_concatenation] = STATE(1623), + [sym_string] = STATE(1637), + [sym_translated_string] = STATE(1637), + [sym_number] = STATE(1637), + [sym_simple_expansion] = STATE(1637), + [sym_expansion] = STATE(1637), + [sym_command_substitution] = STATE(1637), + [sym_process_substitution] = STATE(1637), + [aux_sym__literal_repeat1] = STATE(1636), + [aux_sym_concatenation_repeat1] = STATE(344), + [sym_word] = ACTIONS(139), + [anon_sym_LPAREN_LPAREN] = ACTIONS(141), + [anon_sym_RPAREN_RPAREN] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_DASH_DASH] = ACTIONS(143), + [anon_sym_PLUS_EQ] = ACTIONS(143), + [anon_sym_DASH_EQ] = ACTIONS(143), + [anon_sym_STAR_EQ] = ACTIONS(143), + [anon_sym_SLASH_EQ] = ACTIONS(143), + [anon_sym_PERCENT_EQ] = ACTIONS(143), + [anon_sym_LT_LT_EQ] = ACTIONS(143), + [anon_sym_GT_GT_EQ] = ACTIONS(143), + [anon_sym_AMP_EQ] = ACTIONS(143), + [anon_sym_CARET_EQ] = ACTIONS(143), + [anon_sym_PIPE_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_AMP_AMP] = ACTIONS(147), + [anon_sym_PIPE_PIPE] = ACTIONS(147), + [anon_sym_LT_LT] = ACTIONS(147), + [anon_sym_GT_GT] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_STAR_STAR] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_RPAREN] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_SEMI_SEMI] = ACTIONS(145), + [anon_sym_PIPE_AMP] = ACTIONS(145), + [anon_sym_BANG] = ACTIONS(152), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_AMP_GT] = ACTIONS(145), + [anon_sym_AMP_GT_GT] = ACTIONS(145), + [anon_sym_LT_AMP] = ACTIONS(145), + [anon_sym_GT_AMP] = ACTIONS(145), + [anon_sym_GT_PIPE] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [anon_sym_LF] = ACTIONS(145), + [anon_sym_LT_LT_LT] = ACTIONS(145), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(143), + [aux_sym_unary_expression_token1] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(141), + [aux_sym_concatenation_token1] = ACTIONS(154), + [anon_sym_DOLLAR] = ACTIONS(156), + [sym__special_character] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(160), + [sym_raw_string] = ACTIONS(139), + [sym_ansi_c_string] = ACTIONS(139), + [aux_sym_number_token1] = ACTIONS(162), + [aux_sym_number_token2] = ACTIONS(164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(166), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(168), + [anon_sym_BQUOTE] = ACTIONS(170), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(172), + [anon_sym_LT_LPAREN] = ACTIONS(174), + [anon_sym_GT_LPAREN] = ACTIONS(174), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(176), + [sym_file_descriptor] = ACTIONS(178), + [sym__concat] = ACTIONS(180), + [sym__bare_dollar] = ACTIONS(178), + [sym__brace_start] = ACTIONS(182), }, [9] = { - [sym__statements] = STATE(4609), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym__expression] = STATE(2007), - [sym_binary_expression] = STATE(1911), - [sym_ternary_expression] = STATE(1911), - [sym_unary_expression] = STATE(1911), - [sym_postfix_expression] = STATE(1911), - [sym_parenthesized_expression] = STATE(1911), - [sym_arithmetic_expansion] = STATE(364), - [sym_brace_expression] = STATE(364), - [sym_concatenation] = STATE(417), - [sym_string] = STATE(364), - [sym_translated_string] = STATE(364), - [sym_number] = STATE(364), - [sym_simple_expansion] = STATE(364), - [sym_expansion] = STATE(364), - [sym_command_substitution] = STATE(364), - [sym_process_substitution] = STATE(364), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(409), - [sym_word] = ACTIONS(157), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [aux_sym_unary_expression_token1] = ACTIONS(163), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(167), - [sym__special_character] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym_raw_string] = ACTIONS(173), - [sym_ansi_c_string] = ACTIONS(173), - [aux_sym_number_token1] = ACTIONS(175), - [aux_sym_number_token2] = ACTIONS(177), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(179), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(181), - [anon_sym_BQUOTE] = ACTIONS(183), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(185), - [anon_sym_LT_LPAREN] = ACTIONS(187), - [anon_sym_GT_LPAREN] = ACTIONS(187), + [sym__statements] = STATE(4763), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym__expression] = STATE(2129), + [sym_binary_expression] = STATE(2117), + [sym_ternary_expression] = STATE(2117), + [sym_unary_expression] = STATE(2117), + [sym_postfix_expression] = STATE(2117), + [sym_parenthesized_expression] = STATE(2117), + [sym_arithmetic_expansion] = STATE(362), + [sym_brace_expression] = STATE(362), + [sym_concatenation] = STATE(405), + [sym_string] = STATE(362), + [sym_translated_string] = STATE(362), + [sym_number] = STATE(362), + [sym_simple_expansion] = STATE(362), + [sym_expansion] = STATE(362), + [sym_command_substitution] = STATE(362), + [sym_process_substitution] = STATE(362), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(399), + [sym_word] = ACTIONS(184), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(186), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(188), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(190), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [aux_sym_unary_expression_token1] = ACTIONS(192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(186), + [anon_sym_DOLLAR] = ACTIONS(194), + [sym__special_character] = ACTIONS(196), + [anon_sym_DQUOTE] = ACTIONS(198), + [sym_raw_string] = ACTIONS(200), + [sym_ansi_c_string] = ACTIONS(200), + [aux_sym_number_token1] = ACTIONS(202), + [aux_sym_number_token2] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(208), + [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(212), + [anon_sym_LT_LPAREN] = ACTIONS(214), + [anon_sym_GT_LPAREN] = ACTIONS(214), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(191), + [sym_test_operator] = ACTIONS(216), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(218), }, [10] = { - [sym__expression] = STATE(1739), - [sym_binary_expression] = STATE(1557), - [sym_ternary_expression] = STATE(1557), - [sym_unary_expression] = STATE(1557), - [sym_postfix_expression] = STATE(1557), - [sym_parenthesized_expression] = STATE(1557), - [sym_arithmetic_expansion] = STATE(1394), - [sym_brace_expression] = STATE(1394), - [sym_concatenation] = STATE(1557), - [sym_string] = STATE(1394), - [sym_translated_string] = STATE(1394), - [sym_number] = STATE(1394), - [sym_simple_expansion] = STATE(1394), - [sym_expansion] = STATE(1394), - [sym_command_substitution] = STATE(1394), - [sym_process_substitution] = STATE(1394), - [aux_sym__literal_repeat1] = STATE(1468), - [aux_sym_concatenation_repeat1] = STATE(355), - [sym_word] = ACTIONS(193), - [anon_sym_LF] = ACTIONS(195), - [anon_sym_RPAREN_RPAREN] = ACTIONS(197), - [anon_sym_SEMI] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_PLUS_PLUS] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(197), - [anon_sym_PLUS_EQ] = ACTIONS(197), - [anon_sym_DASH_EQ] = ACTIONS(197), - [anon_sym_STAR_EQ] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(197), - [anon_sym_LT_LT_EQ] = ACTIONS(197), - [anon_sym_GT_GT_EQ] = ACTIONS(197), - [anon_sym_AMP_EQ] = ACTIONS(197), - [anon_sym_CARET_EQ] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(197), - [anon_sym_EQ_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(197), - [anon_sym_GT_EQ] = ACTIONS(197), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_LT_LT] = ACTIONS(199), - [anon_sym_GT_GT] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_STAR_STAR] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(202), - [anon_sym_RPAREN] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_SEMI_SEMI] = ACTIONS(195), - [anon_sym_PIPE_AMP] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(204), - [anon_sym_EQ_TILDE] = ACTIONS(199), - [anon_sym_AMP_GT] = ACTIONS(195), - [anon_sym_AMP_GT_GT] = ACTIONS(195), - [anon_sym_LT_AMP] = ACTIONS(195), - [anon_sym_GT_AMP] = ACTIONS(195), - [anon_sym_GT_PIPE] = ACTIONS(195), - [anon_sym_LT_LT_DASH] = ACTIONS(195), - [anon_sym_LT_LT_LT] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(197), - [aux_sym_unary_expression_token1] = ACTIONS(107), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(206), - [aux_sym_concatenation_token1] = ACTIONS(208), - [anon_sym_DOLLAR] = ACTIONS(210), - [sym__special_character] = ACTIONS(212), - [anon_sym_DQUOTE] = ACTIONS(214), - [sym_raw_string] = ACTIONS(193), - [sym_ansi_c_string] = ACTIONS(193), - [aux_sym_number_token1] = ACTIONS(216), - [aux_sym_number_token2] = ACTIONS(218), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), - [anon_sym_BQUOTE] = ACTIONS(224), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(226), - [anon_sym_LT_LPAREN] = ACTIONS(228), - [anon_sym_GT_LPAREN] = ACTIONS(228), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(230), - [sym_file_descriptor] = ACTIONS(232), - [sym__concat] = ACTIONS(234), - [sym__bare_dollar] = ACTIONS(232), - [sym__brace_start] = ACTIONS(236), + [sym__statements] = STATE(4763), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym__expression] = STATE(2052), + [sym_binary_expression] = STATE(2117), + [sym_ternary_expression] = STATE(2117), + [sym_unary_expression] = STATE(2117), + [sym_postfix_expression] = STATE(2117), + [sym_parenthesized_expression] = STATE(2117), + [sym_arithmetic_expansion] = STATE(362), + [sym_brace_expression] = STATE(362), + [sym_concatenation] = STATE(405), + [sym_string] = STATE(362), + [sym_translated_string] = STATE(362), + [sym_number] = STATE(362), + [sym_simple_expansion] = STATE(362), + [sym_expansion] = STATE(362), + [sym_command_substitution] = STATE(362), + [sym_process_substitution] = STATE(362), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(399), + [sym_word] = ACTIONS(184), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(186), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(188), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(190), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [aux_sym_unary_expression_token1] = ACTIONS(192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(186), + [anon_sym_DOLLAR] = ACTIONS(194), + [sym__special_character] = ACTIONS(196), + [anon_sym_DQUOTE] = ACTIONS(198), + [sym_raw_string] = ACTIONS(200), + [sym_ansi_c_string] = ACTIONS(200), + [aux_sym_number_token1] = ACTIONS(202), + [aux_sym_number_token2] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(208), + [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(212), + [anon_sym_LT_LPAREN] = ACTIONS(214), + [anon_sym_GT_LPAREN] = ACTIONS(214), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(216), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(218), }, [11] = { - [sym__statements] = STATE(4449), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym__expression] = STATE(1914), - [sym_binary_expression] = STATE(1911), - [sym_ternary_expression] = STATE(1911), - [sym_unary_expression] = STATE(1911), - [sym_postfix_expression] = STATE(1911), - [sym_parenthesized_expression] = STATE(1911), - [sym_arithmetic_expansion] = STATE(364), - [sym_brace_expression] = STATE(364), - [sym_concatenation] = STATE(417), - [sym_string] = STATE(364), - [sym_translated_string] = STATE(364), - [sym_number] = STATE(364), - [sym_simple_expansion] = STATE(364), - [sym_expansion] = STATE(364), - [sym_command_substitution] = STATE(364), - [sym_process_substitution] = STATE(364), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(409), - [sym_word] = ACTIONS(157), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(238), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [aux_sym_unary_expression_token1] = ACTIONS(163), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(167), - [sym__special_character] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym_raw_string] = ACTIONS(173), - [sym_ansi_c_string] = ACTIONS(173), - [aux_sym_number_token1] = ACTIONS(175), - [aux_sym_number_token2] = ACTIONS(177), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(179), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(181), - [anon_sym_BQUOTE] = ACTIONS(183), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(185), - [anon_sym_LT_LPAREN] = ACTIONS(187), - [anon_sym_GT_LPAREN] = ACTIONS(187), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(191), + [sym__expression] = STATE(1990), + [sym_binary_expression] = STATE(1623), + [sym_ternary_expression] = STATE(1623), + [sym_unary_expression] = STATE(1623), + [sym_postfix_expression] = STATE(1623), + [sym_parenthesized_expression] = STATE(1623), + [sym_arithmetic_expansion] = STATE(1557), + [sym_brace_expression] = STATE(1557), + [sym_concatenation] = STATE(1623), + [sym_string] = STATE(1557), + [sym_translated_string] = STATE(1557), + [sym_number] = STATE(1557), + [sym_simple_expansion] = STATE(1557), + [sym_expansion] = STATE(1557), + [sym_command_substitution] = STATE(1557), + [sym_process_substitution] = STATE(1557), + [aux_sym__literal_repeat1] = STATE(1636), + [aux_sym_concatenation_repeat1] = STATE(344), + [sym_word] = ACTIONS(220), + [anon_sym_LPAREN_LPAREN] = ACTIONS(141), + [anon_sym_RPAREN_RPAREN] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_DASH_DASH] = ACTIONS(143), + [anon_sym_PLUS_EQ] = ACTIONS(143), + [anon_sym_DASH_EQ] = ACTIONS(143), + [anon_sym_STAR_EQ] = ACTIONS(143), + [anon_sym_SLASH_EQ] = ACTIONS(143), + [anon_sym_PERCENT_EQ] = ACTIONS(143), + [anon_sym_LT_LT_EQ] = ACTIONS(143), + [anon_sym_GT_GT_EQ] = ACTIONS(143), + [anon_sym_AMP_EQ] = ACTIONS(143), + [anon_sym_CARET_EQ] = ACTIONS(143), + [anon_sym_PIPE_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_AMP_AMP] = ACTIONS(147), + [anon_sym_PIPE_PIPE] = ACTIONS(147), + [anon_sym_LT_LT] = ACTIONS(147), + [anon_sym_GT_GT] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_STAR_STAR] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_SEMI_SEMI] = ACTIONS(145), + [anon_sym_PIPE_AMP] = ACTIONS(145), + [anon_sym_BANG] = ACTIONS(222), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_AMP_GT] = ACTIONS(145), + [anon_sym_AMP_GT_GT] = ACTIONS(145), + [anon_sym_LT_AMP] = ACTIONS(145), + [anon_sym_GT_AMP] = ACTIONS(145), + [anon_sym_GT_PIPE] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [anon_sym_LF] = ACTIONS(145), + [anon_sym_LT_LT_LT] = ACTIONS(145), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(143), + [aux_sym_unary_expression_token1] = ACTIONS(93), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(141), + [aux_sym_concatenation_token1] = ACTIONS(154), + [anon_sym_DOLLAR] = ACTIONS(156), + [sym__special_character] = ACTIONS(224), + [anon_sym_DQUOTE] = ACTIONS(160), + [sym_raw_string] = ACTIONS(220), + [sym_ansi_c_string] = ACTIONS(220), + [aux_sym_number_token1] = ACTIONS(162), + [aux_sym_number_token2] = ACTIONS(164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(166), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(168), + [anon_sym_BQUOTE] = ACTIONS(170), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(172), + [anon_sym_LT_LPAREN] = ACTIONS(174), + [anon_sym_GT_LPAREN] = ACTIONS(174), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(226), + [sym_file_descriptor] = ACTIONS(178), + [sym__concat] = ACTIONS(180), + [sym__bare_dollar] = ACTIONS(178), + [sym__brace_start] = ACTIONS(182), }, [12] = { - [sym__statements] = STATE(4449), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym__expression] = STATE(1836), - [sym_binary_expression] = STATE(1911), - [sym_ternary_expression] = STATE(1911), - [sym_unary_expression] = STATE(1911), - [sym_postfix_expression] = STATE(1911), - [sym_parenthesized_expression] = STATE(1911), - [sym_arithmetic_expansion] = STATE(364), - [sym_brace_expression] = STATE(364), - [sym_concatenation] = STATE(417), - [sym_string] = STATE(364), - [sym_translated_string] = STATE(364), - [sym_number] = STATE(364), - [sym_simple_expansion] = STATE(364), - [sym_expansion] = STATE(364), - [sym_command_substitution] = STATE(364), - [sym_process_substitution] = STATE(364), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(409), - [sym_word] = ACTIONS(157), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(238), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [aux_sym_unary_expression_token1] = ACTIONS(163), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(167), - [sym__special_character] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym_raw_string] = ACTIONS(173), - [sym_ansi_c_string] = ACTIONS(173), - [aux_sym_number_token1] = ACTIONS(175), - [aux_sym_number_token2] = ACTIONS(177), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(179), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(181), - [anon_sym_BQUOTE] = ACTIONS(183), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(185), - [anon_sym_LT_LPAREN] = ACTIONS(187), - [anon_sym_GT_LPAREN] = ACTIONS(187), + [sym__statements] = STATE(4670), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym__expression] = STATE(2085), + [sym_binary_expression] = STATE(2117), + [sym_ternary_expression] = STATE(2117), + [sym_unary_expression] = STATE(2117), + [sym_postfix_expression] = STATE(2117), + [sym_parenthesized_expression] = STATE(2117), + [sym_arithmetic_expansion] = STATE(362), + [sym_brace_expression] = STATE(362), + [sym_concatenation] = STATE(405), + [sym_string] = STATE(362), + [sym_translated_string] = STATE(362), + [sym_number] = STATE(362), + [sym_simple_expansion] = STATE(362), + [sym_expansion] = STATE(362), + [sym_command_substitution] = STATE(362), + [sym_process_substitution] = STATE(362), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(399), + [sym_word] = ACTIONS(184), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(186), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(190), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [aux_sym_unary_expression_token1] = ACTIONS(192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(186), + [anon_sym_DOLLAR] = ACTIONS(194), + [sym__special_character] = ACTIONS(196), + [anon_sym_DQUOTE] = ACTIONS(198), + [sym_raw_string] = ACTIONS(200), + [sym_ansi_c_string] = ACTIONS(200), + [aux_sym_number_token1] = ACTIONS(202), + [aux_sym_number_token2] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(208), + [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(212), + [anon_sym_LT_LPAREN] = ACTIONS(214), + [anon_sym_GT_LPAREN] = ACTIONS(214), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(191), + [sym_test_operator] = ACTIONS(216), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(218), }, [13] = { - [sym__expression] = STATE(1979), - [sym_binary_expression] = STATE(1557), - [sym_ternary_expression] = STATE(1557), - [sym_unary_expression] = STATE(1557), - [sym_postfix_expression] = STATE(1557), - [sym_parenthesized_expression] = STATE(1557), - [sym_arithmetic_expansion] = STATE(1549), - [sym_brace_expression] = STATE(1549), - [sym_concatenation] = STATE(1557), - [sym_string] = STATE(1549), - [sym_translated_string] = STATE(1549), - [sym_number] = STATE(1549), - [sym_simple_expansion] = STATE(1549), - [sym_expansion] = STATE(1549), - [sym_command_substitution] = STATE(1549), - [sym_process_substitution] = STATE(1549), - [aux_sym__literal_repeat1] = STATE(1468), - [aux_sym_concatenation_repeat1] = STATE(355), - [sym_word] = ACTIONS(240), - [anon_sym_LF] = ACTIONS(195), - [anon_sym_RPAREN_RPAREN] = ACTIONS(197), - [anon_sym_SEMI] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_PLUS_PLUS] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(197), - [anon_sym_PLUS_EQ] = ACTIONS(197), - [anon_sym_DASH_EQ] = ACTIONS(197), - [anon_sym_STAR_EQ] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(197), - [anon_sym_LT_LT_EQ] = ACTIONS(197), - [anon_sym_GT_GT_EQ] = ACTIONS(197), - [anon_sym_AMP_EQ] = ACTIONS(197), - [anon_sym_CARET_EQ] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(197), - [anon_sym_EQ_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(197), - [anon_sym_GT_EQ] = ACTIONS(197), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_LT_LT] = ACTIONS(199), - [anon_sym_GT_GT] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_STAR_STAR] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(202), - [anon_sym_RPAREN] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_SEMI_SEMI] = ACTIONS(195), - [anon_sym_PIPE_AMP] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_EQ_TILDE] = ACTIONS(199), - [anon_sym_AMP_GT] = ACTIONS(195), - [anon_sym_AMP_GT_GT] = ACTIONS(195), - [anon_sym_LT_AMP] = ACTIONS(195), - [anon_sym_GT_AMP] = ACTIONS(195), - [anon_sym_GT_PIPE] = ACTIONS(195), - [anon_sym_LT_LT_DASH] = ACTIONS(195), - [anon_sym_LT_LT_LT] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(197), - [aux_sym_unary_expression_token1] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(206), - [aux_sym_concatenation_token1] = ACTIONS(208), - [anon_sym_DOLLAR] = ACTIONS(210), - [sym__special_character] = ACTIONS(244), - [anon_sym_DQUOTE] = ACTIONS(214), - [sym_raw_string] = ACTIONS(240), - [sym_ansi_c_string] = ACTIONS(240), - [aux_sym_number_token1] = ACTIONS(216), - [aux_sym_number_token2] = ACTIONS(218), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), - [anon_sym_BQUOTE] = ACTIONS(224), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(226), - [anon_sym_LT_LPAREN] = ACTIONS(228), - [anon_sym_GT_LPAREN] = ACTIONS(228), + [sym__expression] = STATE(2122), + [sym_binary_expression] = STATE(2117), + [sym_ternary_expression] = STATE(2117), + [sym_unary_expression] = STATE(2117), + [sym_postfix_expression] = STATE(2117), + [sym_parenthesized_expression] = STATE(2117), + [sym_arithmetic_expansion] = STATE(1593), + [sym_brace_expression] = STATE(1593), + [sym_concatenation] = STATE(2117), + [sym_string] = STATE(1593), + [sym_translated_string] = STATE(1593), + [sym_number] = STATE(1593), + [sym_simple_expansion] = STATE(1593), + [sym_expansion] = STATE(1593), + [sym_command_substitution] = STATE(1593), + [sym_process_substitution] = STATE(1593), + [aux_sym__literal_repeat1] = STATE(1586), + [aux_sym_concatenation_repeat1] = STATE(360), + [sym_word] = ACTIONS(230), + [anon_sym_LPAREN_LPAREN] = ACTIONS(232), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_DASH_DASH] = ACTIONS(143), + [anon_sym_PLUS_EQ] = ACTIONS(143), + [anon_sym_DASH_EQ] = ACTIONS(143), + [anon_sym_STAR_EQ] = ACTIONS(143), + [anon_sym_SLASH_EQ] = ACTIONS(143), + [anon_sym_PERCENT_EQ] = ACTIONS(143), + [anon_sym_LT_LT_EQ] = ACTIONS(143), + [anon_sym_GT_GT_EQ] = ACTIONS(143), + [anon_sym_AMP_EQ] = ACTIONS(143), + [anon_sym_CARET_EQ] = ACTIONS(143), + [anon_sym_PIPE_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_AMP_AMP] = ACTIONS(147), + [anon_sym_PIPE_PIPE] = ACTIONS(147), + [anon_sym_LT_LT] = ACTIONS(147), + [anon_sym_GT_GT] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_STAR_STAR] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(234), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_SEMI_SEMI] = ACTIONS(145), + [anon_sym_PIPE_AMP] = ACTIONS(145), + [anon_sym_BANG] = ACTIONS(236), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_AMP_GT] = ACTIONS(145), + [anon_sym_AMP_GT_GT] = ACTIONS(145), + [anon_sym_LT_AMP] = ACTIONS(145), + [anon_sym_GT_AMP] = ACTIONS(145), + [anon_sym_GT_PIPE] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [anon_sym_LF] = ACTIONS(145), + [anon_sym_LT_LT_LT] = ACTIONS(145), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(143), + [aux_sym_unary_expression_token1] = ACTIONS(192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(232), + [aux_sym_concatenation_token1] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(240), + [sym__special_character] = ACTIONS(242), + [anon_sym_DQUOTE] = ACTIONS(244), + [sym_raw_string] = ACTIONS(230), + [sym_ansi_c_string] = ACTIONS(230), + [aux_sym_number_token1] = ACTIONS(246), + [aux_sym_number_token2] = ACTIONS(248), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(250), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(254), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(256), + [anon_sym_LT_LPAREN] = ACTIONS(258), + [anon_sym_GT_LPAREN] = ACTIONS(258), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(246), - [sym_file_descriptor] = ACTIONS(232), - [sym__concat] = ACTIONS(234), - [sym__bare_dollar] = ACTIONS(232), - [sym__brace_start] = ACTIONS(236), + [sym_test_operator] = ACTIONS(260), + [sym_file_descriptor] = ACTIONS(178), + [sym__concat] = ACTIONS(262), + [sym__bare_dollar] = ACTIONS(178), + [sym__brace_start] = ACTIONS(264), }, [14] = { - [sym_redirected_statement] = STATE(3116), - [sym_for_statement] = STATE(3134), - [sym_c_style_for_statement] = STATE(3134), - [sym_while_statement] = STATE(3134), - [sym_if_statement] = STATE(3134), - [sym_case_statement] = STATE(3134), - [sym_function_definition] = STATE(3134), - [sym_compound_statement] = STATE(3134), - [sym_subshell] = STATE(3134), - [sym_pipeline] = STATE(3134), - [sym_list] = STATE(3134), - [sym_negated_command] = STATE(3134), - [sym_test_command] = STATE(3134), - [sym_declaration_command] = STATE(3134), - [sym_unset_command] = STATE(3134), - [sym_command] = STATE(3134), - [sym_command_name] = STATE(626), - [sym_variable_assignment] = STATE(1209), - [sym_variable_assignments] = STATE(3134), - [sym_subscript] = STATE(4091), - [sym_file_redirect] = STATE(2050), - [sym__expression] = STATE(1885), - [sym_binary_expression] = STATE(1898), - [sym_ternary_expression] = STATE(1898), - [sym_unary_expression] = STATE(1898), - [sym_postfix_expression] = STATE(1898), - [sym_parenthesized_expression] = STATE(1898), - [sym_arithmetic_expansion] = STATE(413), - [sym_brace_expression] = STATE(413), - [sym_concatenation] = STATE(438), - [sym_string] = STATE(413), - [sym_translated_string] = STATE(413), - [sym_number] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_redirected_statement_repeat2] = STATE(3362), - [aux_sym_command_repeat1] = STATE(978), - [aux_sym__literal_repeat1] = STATE(436), - [sym_word] = ACTIONS(248), - [anon_sym_for] = ACTIONS(250), - [anon_sym_select] = ACTIONS(252), - [anon_sym_GT_GT] = ACTIONS(254), - [anon_sym_LT] = ACTIONS(256), - [anon_sym_GT] = ACTIONS(256), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_while] = ACTIONS(260), - [anon_sym_until] = ACTIONS(260), - [anon_sym_if] = ACTIONS(262), - [anon_sym_case] = ACTIONS(264), - [anon_sym_function] = ACTIONS(266), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_BANG] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_RBRACK] = ACTIONS(274), - [anon_sym_LBRACK_LBRACK] = ACTIONS(276), - [anon_sym_declare] = ACTIONS(278), - [anon_sym_typeset] = ACTIONS(278), - [anon_sym_export] = ACTIONS(278), - [anon_sym_readonly] = ACTIONS(278), - [anon_sym_local] = ACTIONS(278), - [anon_sym_unset] = ACTIONS(280), - [anon_sym_unsetenv] = ACTIONS(280), - [anon_sym_AMP_GT] = ACTIONS(256), - [anon_sym_AMP_GT_GT] = ACTIONS(254), - [anon_sym_LT_AMP] = ACTIONS(254), - [anon_sym_GT_AMP] = ACTIONS(254), - [anon_sym_GT_PIPE] = ACTIONS(254), - [aux_sym_unary_expression_token1] = ACTIONS(282), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [sym__special_character] = ACTIONS(288), - [anon_sym_DQUOTE] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [sym_ansi_c_string] = ACTIONS(292), - [aux_sym_number_token1] = ACTIONS(294), - [aux_sym_number_token2] = ACTIONS(296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(298), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(304), - [anon_sym_LT_LPAREN] = ACTIONS(306), - [anon_sym_GT_LPAREN] = ACTIONS(306), + [sym_redirected_statement] = STATE(3265), + [sym_for_statement] = STATE(3302), + [sym_c_style_for_statement] = STATE(3302), + [sym_while_statement] = STATE(3302), + [sym_if_statement] = STATE(3302), + [sym_case_statement] = STATE(3302), + [sym_function_definition] = STATE(3302), + [sym_compound_statement] = STATE(3302), + [sym_subshell] = STATE(3302), + [sym_pipeline] = STATE(3302), + [sym_list] = STATE(3302), + [sym_negated_command] = STATE(3302), + [sym_test_command] = STATE(3302), + [sym_declaration_command] = STATE(3302), + [sym_unset_command] = STATE(3302), + [sym_command] = STATE(3302), + [sym_command_name] = STATE(611), + [sym_variable_assignment] = STATE(1328), + [sym_variable_assignments] = STATE(3302), + [sym_subscript] = STATE(4307), + [sym_file_redirect] = STATE(2105), + [sym__expression] = STATE(2095), + [sym_binary_expression] = STATE(2073), + [sym_ternary_expression] = STATE(2073), + [sym_unary_expression] = STATE(2073), + [sym_postfix_expression] = STATE(2073), + [sym_parenthesized_expression] = STATE(2073), + [sym_arithmetic_expansion] = STATE(403), + [sym_brace_expression] = STATE(403), + [sym_concatenation] = STATE(434), + [sym_string] = STATE(403), + [sym_translated_string] = STATE(403), + [sym_number] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_redirected_statement_repeat2] = STATE(3507), + [aux_sym_command_repeat1] = STATE(896), + [aux_sym__literal_repeat1] = STATE(431), + [sym_word] = ACTIONS(266), + [anon_sym_for] = ACTIONS(268), + [anon_sym_select] = ACTIONS(270), + [anon_sym_LPAREN_LPAREN] = ACTIONS(272), + [anon_sym_GT_GT] = ACTIONS(274), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_LPAREN] = ACTIONS(278), + [anon_sym_while] = ACTIONS(280), + [anon_sym_until] = ACTIONS(280), + [anon_sym_if] = ACTIONS(282), + [anon_sym_case] = ACTIONS(284), + [anon_sym_function] = ACTIONS(286), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_BANG] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(292), + [anon_sym_RBRACK] = ACTIONS(294), + [anon_sym_LBRACK_LBRACK] = ACTIONS(296), + [anon_sym_declare] = ACTIONS(298), + [anon_sym_typeset] = ACTIONS(298), + [anon_sym_export] = ACTIONS(298), + [anon_sym_readonly] = ACTIONS(298), + [anon_sym_local] = ACTIONS(298), + [anon_sym_unset] = ACTIONS(300), + [anon_sym_unsetenv] = ACTIONS(300), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(274), + [anon_sym_LT_AMP] = ACTIONS(274), + [anon_sym_GT_AMP] = ACTIONS(274), + [anon_sym_GT_PIPE] = ACTIONS(274), + [aux_sym_unary_expression_token1] = ACTIONS(302), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(304), + [sym__special_character] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [sym_raw_string] = ACTIONS(310), + [sym_ansi_c_string] = ACTIONS(310), + [aux_sym_number_token1] = ACTIONS(312), + [aux_sym_number_token2] = ACTIONS(314), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), + [anon_sym_BQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(322), + [anon_sym_LT_LPAREN] = ACTIONS(324), + [anon_sym_GT_LPAREN] = ACTIONS(324), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(308), - [sym_file_descriptor] = ACTIONS(310), - [sym_variable_name] = ACTIONS(312), - [sym__brace_start] = ACTIONS(314), + [sym_test_operator] = ACTIONS(326), + [sym_file_descriptor] = ACTIONS(328), + [sym_variable_name] = ACTIONS(330), + [sym__brace_start] = ACTIONS(332), }, [15] = { - [sym__expression] = STATE(1895), - [sym_binary_expression] = STATE(1911), - [sym_ternary_expression] = STATE(1911), - [sym_unary_expression] = STATE(1911), - [sym_postfix_expression] = STATE(1911), - [sym_parenthesized_expression] = STATE(1911), - [sym_arithmetic_expansion] = STATE(1489), - [sym_brace_expression] = STATE(1489), - [sym_concatenation] = STATE(1911), - [sym_string] = STATE(1489), - [sym_translated_string] = STATE(1489), - [sym_number] = STATE(1489), - [sym_simple_expansion] = STATE(1489), - [sym_expansion] = STATE(1489), - [sym_command_substitution] = STATE(1489), - [sym_process_substitution] = STATE(1489), - [aux_sym__literal_repeat1] = STATE(1461), - [aux_sym_concatenation_repeat1] = STATE(377), - [sym_word] = ACTIONS(316), - [anon_sym_LF] = ACTIONS(195), - [anon_sym_SEMI] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_PLUS_PLUS] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(197), - [anon_sym_PLUS_EQ] = ACTIONS(197), - [anon_sym_DASH_EQ] = ACTIONS(197), - [anon_sym_STAR_EQ] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(197), - [anon_sym_LT_LT_EQ] = ACTIONS(197), - [anon_sym_GT_GT_EQ] = ACTIONS(197), - [anon_sym_AMP_EQ] = ACTIONS(197), - [anon_sym_CARET_EQ] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(197), - [anon_sym_EQ_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(197), - [anon_sym_GT_EQ] = ACTIONS(197), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_LT_LT] = ACTIONS(199), - [anon_sym_GT_GT] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_STAR_STAR] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(318), - [anon_sym_RPAREN] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_SEMI_SEMI] = ACTIONS(195), - [anon_sym_PIPE_AMP] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(320), - [anon_sym_EQ_TILDE] = ACTIONS(199), - [anon_sym_AMP_GT] = ACTIONS(195), - [anon_sym_AMP_GT_GT] = ACTIONS(195), - [anon_sym_LT_AMP] = ACTIONS(195), - [anon_sym_GT_AMP] = ACTIONS(195), - [anon_sym_GT_PIPE] = ACTIONS(195), - [anon_sym_LT_LT_DASH] = ACTIONS(195), - [anon_sym_LT_LT_LT] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(197), - [aux_sym_unary_expression_token1] = ACTIONS(163), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(322), - [aux_sym_concatenation_token1] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(326), - [sym__special_character] = ACTIONS(328), - [anon_sym_DQUOTE] = ACTIONS(330), - [sym_raw_string] = ACTIONS(316), - [sym_ansi_c_string] = ACTIONS(316), - [aux_sym_number_token1] = ACTIONS(332), - [aux_sym_number_token2] = ACTIONS(334), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(336), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(338), - [anon_sym_BQUOTE] = ACTIONS(340), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(342), - [anon_sym_LT_LPAREN] = ACTIONS(344), - [anon_sym_GT_LPAREN] = ACTIONS(344), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(346), - [sym_file_descriptor] = ACTIONS(232), - [sym__concat] = ACTIONS(348), - [sym__bare_dollar] = ACTIONS(232), - [sym__brace_start] = ACTIONS(350), + [sym_redirected_statement] = STATE(3203), + [sym_for_statement] = STATE(3302), + [sym_c_style_for_statement] = STATE(3302), + [sym_while_statement] = STATE(3302), + [sym_if_statement] = STATE(3302), + [sym_case_statement] = STATE(3302), + [sym_function_definition] = STATE(3302), + [sym_compound_statement] = STATE(3302), + [sym_subshell] = STATE(3302), + [sym_pipeline] = STATE(3302), + [sym_list] = STATE(3302), + [sym_negated_command] = STATE(3302), + [sym_test_command] = STATE(3302), + [sym_declaration_command] = STATE(3302), + [sym_unset_command] = STATE(3302), + [sym_command] = STATE(3302), + [sym_command_name] = STATE(611), + [sym_variable_assignment] = STATE(1328), + [sym_variable_assignments] = STATE(3302), + [sym_subscript] = STATE(4307), + [sym_file_redirect] = STATE(2105), + [sym__expression] = STATE(2074), + [sym_binary_expression] = STATE(2073), + [sym_ternary_expression] = STATE(2073), + [sym_unary_expression] = STATE(2073), + [sym_postfix_expression] = STATE(2073), + [sym_parenthesized_expression] = STATE(2073), + [sym_arithmetic_expansion] = STATE(403), + [sym_brace_expression] = STATE(403), + [sym_concatenation] = STATE(434), + [sym_string] = STATE(403), + [sym_translated_string] = STATE(403), + [sym_number] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_redirected_statement_repeat2] = STATE(3507), + [aux_sym_command_repeat1] = STATE(896), + [aux_sym__literal_repeat1] = STATE(431), + [sym_word] = ACTIONS(266), + [anon_sym_for] = ACTIONS(268), + [anon_sym_select] = ACTIONS(270), + [anon_sym_LPAREN_LPAREN] = ACTIONS(272), + [anon_sym_GT_GT] = ACTIONS(274), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_LPAREN] = ACTIONS(278), + [anon_sym_while] = ACTIONS(280), + [anon_sym_until] = ACTIONS(280), + [anon_sym_if] = ACTIONS(282), + [anon_sym_case] = ACTIONS(284), + [anon_sym_function] = ACTIONS(286), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_BANG] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(292), + [anon_sym_RBRACK] = ACTIONS(334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(296), + [anon_sym_declare] = ACTIONS(298), + [anon_sym_typeset] = ACTIONS(298), + [anon_sym_export] = ACTIONS(298), + [anon_sym_readonly] = ACTIONS(298), + [anon_sym_local] = ACTIONS(298), + [anon_sym_unset] = ACTIONS(300), + [anon_sym_unsetenv] = ACTIONS(300), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(274), + [anon_sym_LT_AMP] = ACTIONS(274), + [anon_sym_GT_AMP] = ACTIONS(274), + [anon_sym_GT_PIPE] = ACTIONS(274), + [aux_sym_unary_expression_token1] = ACTIONS(302), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(304), + [sym__special_character] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [sym_raw_string] = ACTIONS(310), + [sym_ansi_c_string] = ACTIONS(310), + [aux_sym_number_token1] = ACTIONS(312), + [aux_sym_number_token2] = ACTIONS(314), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), + [anon_sym_BQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(322), + [anon_sym_LT_LPAREN] = ACTIONS(324), + [anon_sym_GT_LPAREN] = ACTIONS(324), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(326), + [sym_file_descriptor] = ACTIONS(328), + [sym_variable_name] = ACTIONS(330), + [sym__brace_start] = ACTIONS(332), }, [16] = { - [sym_redirected_statement] = STATE(3113), - [sym_for_statement] = STATE(3134), - [sym_c_style_for_statement] = STATE(3134), - [sym_while_statement] = STATE(3134), - [sym_if_statement] = STATE(3134), - [sym_case_statement] = STATE(3134), - [sym_function_definition] = STATE(3134), - [sym_compound_statement] = STATE(3134), - [sym_subshell] = STATE(3134), - [sym_pipeline] = STATE(3134), - [sym_list] = STATE(3134), - [sym_negated_command] = STATE(3134), - [sym_test_command] = STATE(3134), - [sym_declaration_command] = STATE(3134), - [sym_unset_command] = STATE(3134), - [sym_command] = STATE(3134), - [sym_command_name] = STATE(626), - [sym_variable_assignment] = STATE(1209), - [sym_variable_assignments] = STATE(3134), - [sym_subscript] = STATE(4091), - [sym_file_redirect] = STATE(2050), - [sym__expression] = STATE(1890), - [sym_binary_expression] = STATE(1898), - [sym_ternary_expression] = STATE(1898), - [sym_unary_expression] = STATE(1898), - [sym_postfix_expression] = STATE(1898), - [sym_parenthesized_expression] = STATE(1898), - [sym_arithmetic_expansion] = STATE(413), - [sym_brace_expression] = STATE(413), - [sym_concatenation] = STATE(438), - [sym_string] = STATE(413), - [sym_translated_string] = STATE(413), - [sym_number] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_redirected_statement_repeat2] = STATE(3362), - [aux_sym_command_repeat1] = STATE(978), - [aux_sym__literal_repeat1] = STATE(436), - [sym_word] = ACTIONS(248), - [anon_sym_for] = ACTIONS(250), - [anon_sym_select] = ACTIONS(252), - [anon_sym_GT_GT] = ACTIONS(254), - [anon_sym_LT] = ACTIONS(256), - [anon_sym_GT] = ACTIONS(256), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_while] = ACTIONS(260), - [anon_sym_until] = ACTIONS(260), - [anon_sym_if] = ACTIONS(262), - [anon_sym_case] = ACTIONS(264), - [anon_sym_function] = ACTIONS(266), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_BANG] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_RBRACK] = ACTIONS(352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(276), - [anon_sym_declare] = ACTIONS(278), - [anon_sym_typeset] = ACTIONS(278), - [anon_sym_export] = ACTIONS(278), - [anon_sym_readonly] = ACTIONS(278), - [anon_sym_local] = ACTIONS(278), - [anon_sym_unset] = ACTIONS(280), - [anon_sym_unsetenv] = ACTIONS(280), - [anon_sym_AMP_GT] = ACTIONS(256), - [anon_sym_AMP_GT_GT] = ACTIONS(254), - [anon_sym_LT_AMP] = ACTIONS(254), - [anon_sym_GT_AMP] = ACTIONS(254), - [anon_sym_GT_PIPE] = ACTIONS(254), - [aux_sym_unary_expression_token1] = ACTIONS(282), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [sym__special_character] = ACTIONS(288), - [anon_sym_DQUOTE] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [sym_ansi_c_string] = ACTIONS(292), - [aux_sym_number_token1] = ACTIONS(294), - [aux_sym_number_token2] = ACTIONS(296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(298), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(304), - [anon_sym_LT_LPAREN] = ACTIONS(306), - [anon_sym_GT_LPAREN] = ACTIONS(306), + [sym_redirected_statement] = STATE(3210), + [sym_for_statement] = STATE(3302), + [sym_c_style_for_statement] = STATE(3302), + [sym_while_statement] = STATE(3302), + [sym_if_statement] = STATE(3302), + [sym_case_statement] = STATE(3302), + [sym_function_definition] = STATE(3302), + [sym_compound_statement] = STATE(3302), + [sym_subshell] = STATE(3302), + [sym_pipeline] = STATE(3302), + [sym_list] = STATE(3302), + [sym_negated_command] = STATE(3302), + [sym_test_command] = STATE(3302), + [sym_declaration_command] = STATE(3302), + [sym_unset_command] = STATE(3302), + [sym_command] = STATE(3302), + [sym_command_name] = STATE(611), + [sym_variable_assignment] = STATE(1328), + [sym_variable_assignments] = STATE(3302), + [sym_subscript] = STATE(4307), + [sym_file_redirect] = STATE(2105), + [sym__expression] = STATE(2143), + [sym_binary_expression] = STATE(2073), + [sym_ternary_expression] = STATE(2073), + [sym_unary_expression] = STATE(2073), + [sym_postfix_expression] = STATE(2073), + [sym_parenthesized_expression] = STATE(2073), + [sym_arithmetic_expansion] = STATE(403), + [sym_brace_expression] = STATE(403), + [sym_concatenation] = STATE(434), + [sym_string] = STATE(403), + [sym_translated_string] = STATE(403), + [sym_number] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_redirected_statement_repeat2] = STATE(3507), + [aux_sym_command_repeat1] = STATE(896), + [aux_sym__literal_repeat1] = STATE(431), + [sym_word] = ACTIONS(266), + [anon_sym_for] = ACTIONS(268), + [anon_sym_select] = ACTIONS(270), + [anon_sym_LPAREN_LPAREN] = ACTIONS(272), + [anon_sym_GT_GT] = ACTIONS(274), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_LPAREN] = ACTIONS(278), + [anon_sym_while] = ACTIONS(280), + [anon_sym_until] = ACTIONS(280), + [anon_sym_if] = ACTIONS(282), + [anon_sym_case] = ACTIONS(284), + [anon_sym_function] = ACTIONS(286), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_BANG] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(292), + [anon_sym_RBRACK] = ACTIONS(336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(296), + [anon_sym_declare] = ACTIONS(298), + [anon_sym_typeset] = ACTIONS(298), + [anon_sym_export] = ACTIONS(298), + [anon_sym_readonly] = ACTIONS(298), + [anon_sym_local] = ACTIONS(298), + [anon_sym_unset] = ACTIONS(300), + [anon_sym_unsetenv] = ACTIONS(300), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(274), + [anon_sym_LT_AMP] = ACTIONS(274), + [anon_sym_GT_AMP] = ACTIONS(274), + [anon_sym_GT_PIPE] = ACTIONS(274), + [aux_sym_unary_expression_token1] = ACTIONS(302), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(304), + [sym__special_character] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [sym_raw_string] = ACTIONS(310), + [sym_ansi_c_string] = ACTIONS(310), + [aux_sym_number_token1] = ACTIONS(312), + [aux_sym_number_token2] = ACTIONS(314), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), + [anon_sym_BQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(322), + [anon_sym_LT_LPAREN] = ACTIONS(324), + [anon_sym_GT_LPAREN] = ACTIONS(324), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(308), - [sym_file_descriptor] = ACTIONS(310), - [sym_variable_name] = ACTIONS(312), - [sym__brace_start] = ACTIONS(314), + [sym_test_operator] = ACTIONS(326), + [sym_file_descriptor] = ACTIONS(328), + [sym_variable_name] = ACTIONS(330), + [sym__brace_start] = ACTIONS(332), }, [17] = { - [sym_redirected_statement] = STATE(3022), - [sym_for_statement] = STATE(3134), - [sym_c_style_for_statement] = STATE(3134), - [sym_while_statement] = STATE(3134), - [sym_if_statement] = STATE(3134), - [sym_case_statement] = STATE(3134), - [sym_function_definition] = STATE(3134), - [sym_compound_statement] = STATE(3134), - [sym_subshell] = STATE(3134), - [sym_pipeline] = STATE(3134), - [sym_list] = STATE(3134), - [sym_negated_command] = STATE(3134), - [sym_test_command] = STATE(3134), - [sym_declaration_command] = STATE(3134), - [sym_unset_command] = STATE(3134), - [sym_command] = STATE(3134), - [sym_command_name] = STATE(626), - [sym_variable_assignment] = STATE(1209), - [sym_variable_assignments] = STATE(3134), - [sym_subscript] = STATE(4091), - [sym_file_redirect] = STATE(2050), - [sym__expression] = STATE(1828), - [sym_binary_expression] = STATE(1898), - [sym_ternary_expression] = STATE(1898), - [sym_unary_expression] = STATE(1898), - [sym_postfix_expression] = STATE(1898), - [sym_parenthesized_expression] = STATE(1898), - [sym_arithmetic_expansion] = STATE(413), - [sym_brace_expression] = STATE(413), - [sym_concatenation] = STATE(438), - [sym_string] = STATE(413), - [sym_translated_string] = STATE(413), - [sym_number] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_redirected_statement_repeat2] = STATE(3362), - [aux_sym_command_repeat1] = STATE(978), - [aux_sym__literal_repeat1] = STATE(436), - [sym_word] = ACTIONS(248), - [anon_sym_for] = ACTIONS(250), - [anon_sym_select] = ACTIONS(252), - [anon_sym_GT_GT] = ACTIONS(254), - [anon_sym_LT] = ACTIONS(256), - [anon_sym_GT] = ACTIONS(256), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_while] = ACTIONS(260), - [anon_sym_until] = ACTIONS(260), - [anon_sym_if] = ACTIONS(262), - [anon_sym_case] = ACTIONS(264), - [anon_sym_function] = ACTIONS(266), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_BANG] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_RBRACK] = ACTIONS(354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(276), - [anon_sym_declare] = ACTIONS(278), - [anon_sym_typeset] = ACTIONS(278), - [anon_sym_export] = ACTIONS(278), - [anon_sym_readonly] = ACTIONS(278), - [anon_sym_local] = ACTIONS(278), - [anon_sym_unset] = ACTIONS(280), - [anon_sym_unsetenv] = ACTIONS(280), - [anon_sym_AMP_GT] = ACTIONS(256), - [anon_sym_AMP_GT_GT] = ACTIONS(254), - [anon_sym_LT_AMP] = ACTIONS(254), - [anon_sym_GT_AMP] = ACTIONS(254), - [anon_sym_GT_PIPE] = ACTIONS(254), - [aux_sym_unary_expression_token1] = ACTIONS(282), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [sym__special_character] = ACTIONS(288), - [anon_sym_DQUOTE] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [sym_ansi_c_string] = ACTIONS(292), - [aux_sym_number_token1] = ACTIONS(294), - [aux_sym_number_token2] = ACTIONS(296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(298), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(304), - [anon_sym_LT_LPAREN] = ACTIONS(306), - [anon_sym_GT_LPAREN] = ACTIONS(306), + [aux_sym__statements2] = STATE(18), + [sym_redirected_statement] = STATE(2934), + [sym_for_statement] = STATE(2934), + [sym_c_style_for_statement] = STATE(2934), + [sym_while_statement] = STATE(2934), + [sym_if_statement] = STATE(2934), + [sym_elif_clause] = STATE(4026), + [sym_else_clause] = STATE(4420), + [sym_case_statement] = STATE(2934), + [sym_function_definition] = STATE(2934), + [sym_compound_statement] = STATE(2934), + [sym_subshell] = STATE(2934), + [sym_pipeline] = STATE(2934), + [sym_list] = STATE(2934), + [sym_negated_command] = STATE(2934), + [sym_test_command] = STATE(2934), + [sym_declaration_command] = STATE(2934), + [sym_unset_command] = STATE(2934), + [sym_command] = STATE(2934), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(759), + [sym_variable_assignments] = STATE(2934), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_if_statement_repeat1] = STATE(4026), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(346), + [anon_sym_elif] = ACTIONS(348), + [anon_sym_else] = ACTIONS(350), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(308), - [sym_file_descriptor] = ACTIONS(310), - [sym_variable_name] = ACTIONS(312), - [sym__brace_start] = ACTIONS(314), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [18] = { - [sym_redirected_statement] = STATE(3009), - [sym_for_statement] = STATE(3134), - [sym_c_style_for_statement] = STATE(3134), - [sym_while_statement] = STATE(3134), - [sym_if_statement] = STATE(3134), - [sym_case_statement] = STATE(3134), - [sym_function_definition] = STATE(3134), - [sym_compound_statement] = STATE(3134), - [sym_subshell] = STATE(3134), - [sym_pipeline] = STATE(3134), - [sym_list] = STATE(3134), - [sym_negated_command] = STATE(3134), - [sym_test_command] = STATE(3134), - [sym_declaration_command] = STATE(3134), - [sym_unset_command] = STATE(3134), - [sym_command] = STATE(3134), - [sym_command_name] = STATE(626), - [sym_variable_assignment] = STATE(1209), - [sym_variable_assignments] = STATE(3134), - [sym_subscript] = STATE(4091), - [sym_file_redirect] = STATE(2050), - [sym__expression] = STATE(1926), - [sym_binary_expression] = STATE(1898), - [sym_ternary_expression] = STATE(1898), - [sym_unary_expression] = STATE(1898), - [sym_postfix_expression] = STATE(1898), - [sym_parenthesized_expression] = STATE(1898), - [sym_arithmetic_expansion] = STATE(413), - [sym_brace_expression] = STATE(413), - [sym_concatenation] = STATE(438), - [sym_string] = STATE(413), - [sym_translated_string] = STATE(413), - [sym_number] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_redirected_statement_repeat2] = STATE(3362), - [aux_sym_command_repeat1] = STATE(978), - [aux_sym__literal_repeat1] = STATE(436), - [sym_word] = ACTIONS(248), - [anon_sym_for] = ACTIONS(250), - [anon_sym_select] = ACTIONS(252), - [anon_sym_GT_GT] = ACTIONS(254), - [anon_sym_LT] = ACTIONS(256), - [anon_sym_GT] = ACTIONS(256), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_while] = ACTIONS(260), - [anon_sym_until] = ACTIONS(260), - [anon_sym_if] = ACTIONS(262), - [anon_sym_case] = ACTIONS(264), - [anon_sym_function] = ACTIONS(266), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_BANG] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_RBRACK] = ACTIONS(356), - [anon_sym_LBRACK_LBRACK] = ACTIONS(276), - [anon_sym_declare] = ACTIONS(278), - [anon_sym_typeset] = ACTIONS(278), - [anon_sym_export] = ACTIONS(278), - [anon_sym_readonly] = ACTIONS(278), - [anon_sym_local] = ACTIONS(278), - [anon_sym_unset] = ACTIONS(280), - [anon_sym_unsetenv] = ACTIONS(280), - [anon_sym_AMP_GT] = ACTIONS(256), - [anon_sym_AMP_GT_GT] = ACTIONS(254), - [anon_sym_LT_AMP] = ACTIONS(254), - [anon_sym_GT_AMP] = ACTIONS(254), - [anon_sym_GT_PIPE] = ACTIONS(254), - [aux_sym_unary_expression_token1] = ACTIONS(282), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [sym__special_character] = ACTIONS(288), - [anon_sym_DQUOTE] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [sym_ansi_c_string] = ACTIONS(292), - [aux_sym_number_token1] = ACTIONS(294), - [aux_sym_number_token2] = ACTIONS(296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(298), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(300), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(304), - [anon_sym_LT_LPAREN] = ACTIONS(306), - [anon_sym_GT_LPAREN] = ACTIONS(306), + [aux_sym__statements2] = STATE(40), + [sym_redirected_statement] = STATE(2934), + [sym_for_statement] = STATE(2934), + [sym_c_style_for_statement] = STATE(2934), + [sym_while_statement] = STATE(2934), + [sym_if_statement] = STATE(2934), + [sym_elif_clause] = STATE(4043), + [sym_else_clause] = STATE(4640), + [sym_case_statement] = STATE(2934), + [sym_function_definition] = STATE(2934), + [sym_compound_statement] = STATE(2934), + [sym_subshell] = STATE(2934), + [sym_pipeline] = STATE(2934), + [sym_list] = STATE(2934), + [sym_negated_command] = STATE(2934), + [sym_test_command] = STATE(2934), + [sym_declaration_command] = STATE(2934), + [sym_unset_command] = STATE(2934), + [sym_command] = STATE(2934), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(759), + [sym_variable_assignments] = STATE(2934), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_if_statement_repeat1] = STATE(4043), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(390), + [anon_sym_elif] = ACTIONS(348), + [anon_sym_else] = ACTIONS(350), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(308), - [sym_file_descriptor] = ACTIONS(310), - [sym_variable_name] = ACTIONS(312), - [sym__brace_start] = ACTIONS(314), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [19] = { - [aux_sym__statements2] = STATE(24), - [sym_redirected_statement] = STATE(2786), - [sym_for_statement] = STATE(2786), - [sym_c_style_for_statement] = STATE(2786), - [sym_while_statement] = STATE(2786), - [sym_if_statement] = STATE(2786), - [sym_elif_clause] = STATE(3895), - [sym_else_clause] = STATE(4395), - [sym_case_statement] = STATE(2786), - [sym_function_definition] = STATE(2786), - [sym_compound_statement] = STATE(2786), - [sym_subshell] = STATE(2786), - [sym_pipeline] = STATE(2786), - [sym_list] = STATE(2786), - [sym_negated_command] = STATE(2786), - [sym_test_command] = STATE(2786), - [sym_declaration_command] = STATE(2786), - [sym_unset_command] = STATE(2786), - [sym_command] = STATE(2786), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(750), - [sym_variable_assignments] = STATE(2786), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_if_statement_repeat1] = STATE(3895), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_fi] = ACTIONS(366), - [anon_sym_elif] = ACTIONS(368), - [anon_sym_else] = ACTIONS(370), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [aux_sym__statements2] = STATE(40), + [sym_redirected_statement] = STATE(2934), + [sym_for_statement] = STATE(2934), + [sym_c_style_for_statement] = STATE(2934), + [sym_while_statement] = STATE(2934), + [sym_if_statement] = STATE(2934), + [sym_elif_clause] = STATE(4040), + [sym_else_clause] = STATE(4425), + [sym_case_statement] = STATE(2934), + [sym_function_definition] = STATE(2934), + [sym_compound_statement] = STATE(2934), + [sym_subshell] = STATE(2934), + [sym_pipeline] = STATE(2934), + [sym_list] = STATE(2934), + [sym_negated_command] = STATE(2934), + [sym_test_command] = STATE(2934), + [sym_declaration_command] = STATE(2934), + [sym_unset_command] = STATE(2934), + [sym_command] = STATE(2934), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(759), + [sym_variable_assignments] = STATE(2934), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_if_statement_repeat1] = STATE(4040), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(392), + [anon_sym_elif] = ACTIONS(348), + [anon_sym_else] = ACTIONS(350), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [20] = { - [aux_sym__statements2] = STATE(49), - [sym_redirected_statement] = STATE(2786), - [sym_for_statement] = STATE(2786), - [sym_c_style_for_statement] = STATE(2786), - [sym_while_statement] = STATE(2786), - [sym_if_statement] = STATE(2786), - [sym_elif_clause] = STATE(3891), - [sym_else_clause] = STATE(4674), - [sym_case_statement] = STATE(2786), - [sym_function_definition] = STATE(2786), - [sym_compound_statement] = STATE(2786), - [sym_subshell] = STATE(2786), - [sym_pipeline] = STATE(2786), - [sym_list] = STATE(2786), - [sym_negated_command] = STATE(2786), - [sym_test_command] = STATE(2786), - [sym_declaration_command] = STATE(2786), - [sym_unset_command] = STATE(2786), - [sym_command] = STATE(2786), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(750), - [sym_variable_assignments] = STATE(2786), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_if_statement_repeat1] = STATE(3891), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_fi] = ACTIONS(412), - [anon_sym_elif] = ACTIONS(368), - [anon_sym_else] = ACTIONS(370), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [aux_sym__statements2] = STATE(19), + [sym_redirected_statement] = STATE(2934), + [sym_for_statement] = STATE(2934), + [sym_c_style_for_statement] = STATE(2934), + [sym_while_statement] = STATE(2934), + [sym_if_statement] = STATE(2934), + [sym_elif_clause] = STATE(4024), + [sym_else_clause] = STATE(4437), + [sym_case_statement] = STATE(2934), + [sym_function_definition] = STATE(2934), + [sym_compound_statement] = STATE(2934), + [sym_subshell] = STATE(2934), + [sym_pipeline] = STATE(2934), + [sym_list] = STATE(2934), + [sym_negated_command] = STATE(2934), + [sym_test_command] = STATE(2934), + [sym_declaration_command] = STATE(2934), + [sym_unset_command] = STATE(2934), + [sym_command] = STATE(2934), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(759), + [sym_variable_assignments] = STATE(2934), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_if_statement_repeat1] = STATE(4024), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(394), + [anon_sym_elif] = ACTIONS(348), + [anon_sym_else] = ACTIONS(350), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [21] = { - [aux_sym__statements2] = STATE(26), - [sym_redirected_statement] = STATE(2786), - [sym_for_statement] = STATE(2786), - [sym_c_style_for_statement] = STATE(2786), - [sym_while_statement] = STATE(2786), - [sym_if_statement] = STATE(2786), - [sym_elif_clause] = STATE(3898), - [sym_else_clause] = STATE(4703), - [sym_case_statement] = STATE(2786), - [sym_function_definition] = STATE(2786), - [sym_compound_statement] = STATE(2786), - [sym_subshell] = STATE(2786), - [sym_pipeline] = STATE(2786), - [sym_list] = STATE(2786), - [sym_negated_command] = STATE(2786), - [sym_test_command] = STATE(2786), - [sym_declaration_command] = STATE(2786), - [sym_unset_command] = STATE(2786), - [sym_command] = STATE(2786), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(750), - [sym_variable_assignments] = STATE(2786), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_if_statement_repeat1] = STATE(3898), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_fi] = ACTIONS(414), - [anon_sym_elif] = ACTIONS(368), - [anon_sym_else] = ACTIONS(370), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [aux_sym__statements2] = STATE(40), + [sym_redirected_statement] = STATE(2934), + [sym_for_statement] = STATE(2934), + [sym_c_style_for_statement] = STATE(2934), + [sym_while_statement] = STATE(2934), + [sym_if_statement] = STATE(2934), + [sym_elif_clause] = STATE(4023), + [sym_else_clause] = STATE(4604), + [sym_case_statement] = STATE(2934), + [sym_function_definition] = STATE(2934), + [sym_compound_statement] = STATE(2934), + [sym_subshell] = STATE(2934), + [sym_pipeline] = STATE(2934), + [sym_list] = STATE(2934), + [sym_negated_command] = STATE(2934), + [sym_test_command] = STATE(2934), + [sym_declaration_command] = STATE(2934), + [sym_unset_command] = STATE(2934), + [sym_command] = STATE(2934), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(759), + [sym_variable_assignments] = STATE(2934), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_if_statement_repeat1] = STATE(4023), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(396), + [anon_sym_elif] = ACTIONS(348), + [anon_sym_else] = ACTIONS(350), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [22] = { - [aux_sym__statements2] = STATE(49), - [sym_redirected_statement] = STATE(2786), - [sym_for_statement] = STATE(2786), - [sym_c_style_for_statement] = STATE(2786), - [sym_while_statement] = STATE(2786), - [sym_if_statement] = STATE(2786), - [sym_elif_clause] = STATE(3876), - [sym_else_clause] = STATE(4558), - [sym_case_statement] = STATE(2786), - [sym_function_definition] = STATE(2786), - [sym_compound_statement] = STATE(2786), - [sym_subshell] = STATE(2786), - [sym_pipeline] = STATE(2786), - [sym_list] = STATE(2786), - [sym_negated_command] = STATE(2786), - [sym_test_command] = STATE(2786), - [sym_declaration_command] = STATE(2786), - [sym_unset_command] = STATE(2786), - [sym_command] = STATE(2786), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(750), - [sym_variable_assignments] = STATE(2786), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_if_statement_repeat1] = STATE(3876), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_fi] = ACTIONS(416), - [anon_sym_elif] = ACTIONS(368), - [anon_sym_else] = ACTIONS(370), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [aux_sym__statements2] = STATE(21), + [sym_redirected_statement] = STATE(2934), + [sym_for_statement] = STATE(2934), + [sym_c_style_for_statement] = STATE(2934), + [sym_while_statement] = STATE(2934), + [sym_if_statement] = STATE(2934), + [sym_elif_clause] = STATE(4028), + [sym_else_clause] = STATE(4621), + [sym_case_statement] = STATE(2934), + [sym_function_definition] = STATE(2934), + [sym_compound_statement] = STATE(2934), + [sym_subshell] = STATE(2934), + [sym_pipeline] = STATE(2934), + [sym_list] = STATE(2934), + [sym_negated_command] = STATE(2934), + [sym_test_command] = STATE(2934), + [sym_declaration_command] = STATE(2934), + [sym_unset_command] = STATE(2934), + [sym_command] = STATE(2934), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(759), + [sym_variable_assignments] = STATE(2934), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_if_statement_repeat1] = STATE(4028), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(398), + [anon_sym_elif] = ACTIONS(348), + [anon_sym_else] = ACTIONS(350), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [23] = { - [aux_sym__statements2] = STATE(22), - [sym_redirected_statement] = STATE(2786), - [sym_for_statement] = STATE(2786), - [sym_c_style_for_statement] = STATE(2786), - [sym_while_statement] = STATE(2786), - [sym_if_statement] = STATE(2786), - [sym_elif_clause] = STATE(3881), - [sym_else_clause] = STATE(4544), - [sym_case_statement] = STATE(2786), - [sym_function_definition] = STATE(2786), - [sym_compound_statement] = STATE(2786), - [sym_subshell] = STATE(2786), - [sym_pipeline] = STATE(2786), - [sym_list] = STATE(2786), - [sym_negated_command] = STATE(2786), - [sym_test_command] = STATE(2786), - [sym_declaration_command] = STATE(2786), - [sym_unset_command] = STATE(2786), - [sym_command] = STATE(2786), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(750), - [sym_variable_assignments] = STATE(2786), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_if_statement_repeat1] = STATE(3881), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_fi] = ACTIONS(418), - [anon_sym_elif] = ACTIONS(368), - [anon_sym_else] = ACTIONS(370), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4099), + [sym_redirected_statement] = STATE(2711), + [sym_for_statement] = STATE(2711), + [sym_c_style_for_statement] = STATE(2711), + [sym_while_statement] = STATE(2711), + [sym_if_statement] = STATE(2711), + [sym_case_statement] = STATE(2711), + [sym_function_definition] = STATE(2711), + [sym_compound_statement] = STATE(2711), + [sym_subshell] = STATE(2711), + [sym_pipeline] = STATE(2711), + [sym_list] = STATE(2711), + [sym_negated_command] = STATE(2711), + [sym_test_command] = STATE(2711), + [sym_declaration_command] = STATE(2711), + [sym_unset_command] = STATE(2711), + [sym_command] = STATE(2711), + [sym_command_name] = STATE(446), + [sym_variable_assignment] = STATE(613), + [sym_variable_assignments] = STATE(2711), + [sym_subscript] = STATE(4372), + [sym_file_redirect] = STATE(1291), + [sym_arithmetic_expansion] = STATE(665), + [sym_brace_expression] = STATE(665), + [sym_concatenation] = STATE(1003), + [sym_string] = STATE(665), + [sym_translated_string] = STATE(665), + [sym_number] = STATE(665), + [sym_simple_expansion] = STATE(665), + [sym_expansion] = STATE(665), + [sym_command_substitution] = STATE(665), + [sym_process_substitution] = STATE(665), + [aux_sym__statements_repeat1] = STATE(297), + [aux_sym_redirected_statement_repeat2] = STATE(2799), + [aux_sym_command_repeat1] = STATE(1002), + [aux_sym__literal_repeat1] = STATE(831), + [sym_word] = ACTIONS(400), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(410), + [anon_sym_GT] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_esac] = ACTIONS(420), + [anon_sym_SEMI_SEMI] = ACTIONS(422), + [anon_sym_SEMI_AMP] = ACTIONS(424), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(426), + [anon_sym_function] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(438), + [anon_sym_typeset] = ACTIONS(438), + [anon_sym_export] = ACTIONS(438), + [anon_sym_readonly] = ACTIONS(438), + [anon_sym_local] = ACTIONS(438), + [anon_sym_unset] = ACTIONS(440), + [anon_sym_unsetenv] = ACTIONS(440), + [anon_sym_AMP_GT] = ACTIONS(410), + [anon_sym_AMP_GT_GT] = ACTIONS(408), + [anon_sym_LT_AMP] = ACTIONS(408), + [anon_sym_GT_AMP] = ACTIONS(408), + [anon_sym_GT_PIPE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(442), + [sym__special_character] = ACTIONS(444), + [anon_sym_DQUOTE] = ACTIONS(446), + [sym_raw_string] = ACTIONS(448), + [sym_ansi_c_string] = ACTIONS(448), + [aux_sym_number_token1] = ACTIONS(450), + [aux_sym_number_token2] = ACTIONS(452), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), + [anon_sym_BQUOTE] = ACTIONS(458), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), + [anon_sym_LT_LPAREN] = ACTIONS(462), + [anon_sym_GT_LPAREN] = ACTIONS(462), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(464), + [sym_file_descriptor] = ACTIONS(466), + [sym_variable_name] = ACTIONS(468), + [sym__brace_start] = ACTIONS(470), }, [24] = { - [aux_sym__statements2] = STATE(49), - [sym_redirected_statement] = STATE(2786), - [sym_for_statement] = STATE(2786), - [sym_c_style_for_statement] = STATE(2786), - [sym_while_statement] = STATE(2786), - [sym_if_statement] = STATE(2786), - [sym_elif_clause] = STATE(3906), - [sym_else_clause] = STATE(4641), - [sym_case_statement] = STATE(2786), - [sym_function_definition] = STATE(2786), - [sym_compound_statement] = STATE(2786), - [sym_subshell] = STATE(2786), - [sym_pipeline] = STATE(2786), - [sym_list] = STATE(2786), - [sym_negated_command] = STATE(2786), - [sym_test_command] = STATE(2786), - [sym_declaration_command] = STATE(2786), - [sym_unset_command] = STATE(2786), - [sym_command] = STATE(2786), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(750), - [sym_variable_assignments] = STATE(2786), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_if_statement_repeat1] = STATE(3906), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_fi] = ACTIONS(420), - [anon_sym_elif] = ACTIONS(368), - [anon_sym_else] = ACTIONS(370), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4096), + [sym_redirected_statement] = STATE(2711), + [sym_for_statement] = STATE(2711), + [sym_c_style_for_statement] = STATE(2711), + [sym_while_statement] = STATE(2711), + [sym_if_statement] = STATE(2711), + [sym_case_statement] = STATE(2711), + [sym_function_definition] = STATE(2711), + [sym_compound_statement] = STATE(2711), + [sym_subshell] = STATE(2711), + [sym_pipeline] = STATE(2711), + [sym_list] = STATE(2711), + [sym_negated_command] = STATE(2711), + [sym_test_command] = STATE(2711), + [sym_declaration_command] = STATE(2711), + [sym_unset_command] = STATE(2711), + [sym_command] = STATE(2711), + [sym_command_name] = STATE(446), + [sym_variable_assignment] = STATE(613), + [sym_variable_assignments] = STATE(2711), + [sym_subscript] = STATE(4372), + [sym_file_redirect] = STATE(1291), + [sym_arithmetic_expansion] = STATE(665), + [sym_brace_expression] = STATE(665), + [sym_concatenation] = STATE(1003), + [sym_string] = STATE(665), + [sym_translated_string] = STATE(665), + [sym_number] = STATE(665), + [sym_simple_expansion] = STATE(665), + [sym_expansion] = STATE(665), + [sym_command_substitution] = STATE(665), + [sym_process_substitution] = STATE(665), + [aux_sym__statements_repeat1] = STATE(297), + [aux_sym_redirected_statement_repeat2] = STATE(2799), + [aux_sym_command_repeat1] = STATE(1002), + [aux_sym__literal_repeat1] = STATE(831), + [sym_word] = ACTIONS(400), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(410), + [anon_sym_GT] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_esac] = ACTIONS(472), + [anon_sym_SEMI_SEMI] = ACTIONS(474), + [anon_sym_SEMI_AMP] = ACTIONS(476), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(478), + [anon_sym_function] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(438), + [anon_sym_typeset] = ACTIONS(438), + [anon_sym_export] = ACTIONS(438), + [anon_sym_readonly] = ACTIONS(438), + [anon_sym_local] = ACTIONS(438), + [anon_sym_unset] = ACTIONS(440), + [anon_sym_unsetenv] = ACTIONS(440), + [anon_sym_AMP_GT] = ACTIONS(410), + [anon_sym_AMP_GT_GT] = ACTIONS(408), + [anon_sym_LT_AMP] = ACTIONS(408), + [anon_sym_GT_AMP] = ACTIONS(408), + [anon_sym_GT_PIPE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(442), + [sym__special_character] = ACTIONS(444), + [anon_sym_DQUOTE] = ACTIONS(446), + [sym_raw_string] = ACTIONS(448), + [sym_ansi_c_string] = ACTIONS(448), + [aux_sym_number_token1] = ACTIONS(450), + [aux_sym_number_token2] = ACTIONS(452), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), + [anon_sym_BQUOTE] = ACTIONS(458), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), + [anon_sym_LT_LPAREN] = ACTIONS(462), + [anon_sym_GT_LPAREN] = ACTIONS(462), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(464), + [sym_file_descriptor] = ACTIONS(466), + [sym_variable_name] = ACTIONS(468), + [sym__brace_start] = ACTIONS(470), }, [25] = { - [aux_sym__statements2] = STATE(20), - [sym_redirected_statement] = STATE(2786), - [sym_for_statement] = STATE(2786), - [sym_c_style_for_statement] = STATE(2786), - [sym_while_statement] = STATE(2786), - [sym_if_statement] = STATE(2786), - [sym_elif_clause] = STATE(3894), - [sym_else_clause] = STATE(4659), - [sym_case_statement] = STATE(2786), - [sym_function_definition] = STATE(2786), - [sym_compound_statement] = STATE(2786), - [sym_subshell] = STATE(2786), - [sym_pipeline] = STATE(2786), - [sym_list] = STATE(2786), - [sym_negated_command] = STATE(2786), - [sym_test_command] = STATE(2786), - [sym_declaration_command] = STATE(2786), - [sym_unset_command] = STATE(2786), - [sym_command] = STATE(2786), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(750), - [sym_variable_assignments] = STATE(2786), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_if_statement_repeat1] = STATE(3894), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_fi] = ACTIONS(422), - [anon_sym_elif] = ACTIONS(368), - [anon_sym_else] = ACTIONS(370), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4142), + [sym_redirected_statement] = STATE(2711), + [sym_for_statement] = STATE(2711), + [sym_c_style_for_statement] = STATE(2711), + [sym_while_statement] = STATE(2711), + [sym_if_statement] = STATE(2711), + [sym_case_statement] = STATE(2711), + [sym_function_definition] = STATE(2711), + [sym_compound_statement] = STATE(2711), + [sym_subshell] = STATE(2711), + [sym_pipeline] = STATE(2711), + [sym_list] = STATE(2711), + [sym_negated_command] = STATE(2711), + [sym_test_command] = STATE(2711), + [sym_declaration_command] = STATE(2711), + [sym_unset_command] = STATE(2711), + [sym_command] = STATE(2711), + [sym_command_name] = STATE(446), + [sym_variable_assignment] = STATE(613), + [sym_variable_assignments] = STATE(2711), + [sym_subscript] = STATE(4372), + [sym_file_redirect] = STATE(1291), + [sym_arithmetic_expansion] = STATE(665), + [sym_brace_expression] = STATE(665), + [sym_concatenation] = STATE(1003), + [sym_string] = STATE(665), + [sym_translated_string] = STATE(665), + [sym_number] = STATE(665), + [sym_simple_expansion] = STATE(665), + [sym_expansion] = STATE(665), + [sym_command_substitution] = STATE(665), + [sym_process_substitution] = STATE(665), + [aux_sym__statements_repeat1] = STATE(297), + [aux_sym_redirected_statement_repeat2] = STATE(2799), + [aux_sym_command_repeat1] = STATE(1002), + [aux_sym__literal_repeat1] = STATE(831), + [sym_word] = ACTIONS(400), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(410), + [anon_sym_GT] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_esac] = ACTIONS(480), + [anon_sym_SEMI_SEMI] = ACTIONS(482), + [anon_sym_SEMI_AMP] = ACTIONS(484), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(484), + [anon_sym_function] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(438), + [anon_sym_typeset] = ACTIONS(438), + [anon_sym_export] = ACTIONS(438), + [anon_sym_readonly] = ACTIONS(438), + [anon_sym_local] = ACTIONS(438), + [anon_sym_unset] = ACTIONS(440), + [anon_sym_unsetenv] = ACTIONS(440), + [anon_sym_AMP_GT] = ACTIONS(410), + [anon_sym_AMP_GT_GT] = ACTIONS(408), + [anon_sym_LT_AMP] = ACTIONS(408), + [anon_sym_GT_AMP] = ACTIONS(408), + [anon_sym_GT_PIPE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(442), + [sym__special_character] = ACTIONS(444), + [anon_sym_DQUOTE] = ACTIONS(446), + [sym_raw_string] = ACTIONS(448), + [sym_ansi_c_string] = ACTIONS(448), + [aux_sym_number_token1] = ACTIONS(450), + [aux_sym_number_token2] = ACTIONS(452), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), + [anon_sym_BQUOTE] = ACTIONS(458), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), + [anon_sym_LT_LPAREN] = ACTIONS(462), + [anon_sym_GT_LPAREN] = ACTIONS(462), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(464), + [sym_file_descriptor] = ACTIONS(466), + [sym_variable_name] = ACTIONS(468), + [sym__brace_start] = ACTIONS(470), }, [26] = { - [aux_sym__statements2] = STATE(49), - [sym_redirected_statement] = STATE(2786), - [sym_for_statement] = STATE(2786), - [sym_c_style_for_statement] = STATE(2786), - [sym_while_statement] = STATE(2786), - [sym_if_statement] = STATE(2786), - [sym_elif_clause] = STATE(3890), - [sym_else_clause] = STATE(4698), - [sym_case_statement] = STATE(2786), - [sym_function_definition] = STATE(2786), - [sym_compound_statement] = STATE(2786), - [sym_subshell] = STATE(2786), - [sym_pipeline] = STATE(2786), - [sym_list] = STATE(2786), - [sym_negated_command] = STATE(2786), - [sym_test_command] = STATE(2786), - [sym_declaration_command] = STATE(2786), - [sym_unset_command] = STATE(2786), - [sym_command] = STATE(2786), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(750), - [sym_variable_assignments] = STATE(2786), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_if_statement_repeat1] = STATE(3890), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_fi] = ACTIONS(424), - [anon_sym_elif] = ACTIONS(368), - [anon_sym_else] = ACTIONS(370), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4101), + [sym_redirected_statement] = STATE(2711), + [sym_for_statement] = STATE(2711), + [sym_c_style_for_statement] = STATE(2711), + [sym_while_statement] = STATE(2711), + [sym_if_statement] = STATE(2711), + [sym_case_statement] = STATE(2711), + [sym_function_definition] = STATE(2711), + [sym_compound_statement] = STATE(2711), + [sym_subshell] = STATE(2711), + [sym_pipeline] = STATE(2711), + [sym_list] = STATE(2711), + [sym_negated_command] = STATE(2711), + [sym_test_command] = STATE(2711), + [sym_declaration_command] = STATE(2711), + [sym_unset_command] = STATE(2711), + [sym_command] = STATE(2711), + [sym_command_name] = STATE(446), + [sym_variable_assignment] = STATE(613), + [sym_variable_assignments] = STATE(2711), + [sym_subscript] = STATE(4372), + [sym_file_redirect] = STATE(1291), + [sym_arithmetic_expansion] = STATE(665), + [sym_brace_expression] = STATE(665), + [sym_concatenation] = STATE(1003), + [sym_string] = STATE(665), + [sym_translated_string] = STATE(665), + [sym_number] = STATE(665), + [sym_simple_expansion] = STATE(665), + [sym_expansion] = STATE(665), + [sym_command_substitution] = STATE(665), + [sym_process_substitution] = STATE(665), + [aux_sym__statements_repeat1] = STATE(297), + [aux_sym_redirected_statement_repeat2] = STATE(2799), + [aux_sym_command_repeat1] = STATE(1002), + [aux_sym__literal_repeat1] = STATE(831), + [sym_word] = ACTIONS(400), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(410), + [anon_sym_GT] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_esac] = ACTIONS(486), + [anon_sym_SEMI_SEMI] = ACTIONS(488), + [anon_sym_SEMI_AMP] = ACTIONS(490), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(492), + [anon_sym_function] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(438), + [anon_sym_typeset] = ACTIONS(438), + [anon_sym_export] = ACTIONS(438), + [anon_sym_readonly] = ACTIONS(438), + [anon_sym_local] = ACTIONS(438), + [anon_sym_unset] = ACTIONS(440), + [anon_sym_unsetenv] = ACTIONS(440), + [anon_sym_AMP_GT] = ACTIONS(410), + [anon_sym_AMP_GT_GT] = ACTIONS(408), + [anon_sym_LT_AMP] = ACTIONS(408), + [anon_sym_GT_AMP] = ACTIONS(408), + [anon_sym_GT_PIPE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(442), + [sym__special_character] = ACTIONS(444), + [anon_sym_DQUOTE] = ACTIONS(446), + [sym_raw_string] = ACTIONS(448), + [sym_ansi_c_string] = ACTIONS(448), + [aux_sym_number_token1] = ACTIONS(450), + [aux_sym_number_token2] = ACTIONS(452), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), + [anon_sym_BQUOTE] = ACTIONS(458), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), + [anon_sym_LT_LPAREN] = ACTIONS(462), + [anon_sym_GT_LPAREN] = ACTIONS(462), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(464), + [sym_file_descriptor] = ACTIONS(466), + [sym_variable_name] = ACTIONS(468), + [sym__brace_start] = ACTIONS(470), }, [27] = { - [sym__statements] = STATE(3961), - [sym_redirected_statement] = STATE(2503), - [sym_for_statement] = STATE(2503), - [sym_c_style_for_statement] = STATE(2503), - [sym_while_statement] = STATE(2503), - [sym_if_statement] = STATE(2503), - [sym_case_statement] = STATE(2503), - [sym_function_definition] = STATE(2503), - [sym_compound_statement] = STATE(2503), - [sym_subshell] = STATE(2503), - [sym_pipeline] = STATE(2503), - [sym_list] = STATE(2503), - [sym_negated_command] = STATE(2503), - [sym_test_command] = STATE(2503), - [sym_declaration_command] = STATE(2503), - [sym_unset_command] = STATE(2503), - [sym_command] = STATE(2503), - [sym_command_name] = STATE(448), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2503), - [sym_subscript] = STATE(4152), - [sym_file_redirect] = STATE(1302), - [sym_arithmetic_expansion] = STATE(688), - [sym_brace_expression] = STATE(688), - [sym_concatenation] = STATE(1020), - [sym_string] = STATE(688), - [sym_translated_string] = STATE(688), - [sym_number] = STATE(688), - [sym_simple_expansion] = STATE(688), - [sym_expansion] = STATE(688), - [sym_command_substitution] = STATE(688), - [sym_process_substitution] = STATE(688), - [aux_sym__statements_repeat1] = STATE(311), - [aux_sym_redirected_statement_repeat2] = STATE(2729), - [aux_sym_command_repeat1] = STATE(1023), - [aux_sym__literal_repeat1] = STATE(823), - [sym_word] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_GT] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_esac] = ACTIONS(444), - [anon_sym_SEMI_SEMI] = ACTIONS(446), - [anon_sym_SEMI_AMP] = ACTIONS(448), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(450), - [anon_sym_function] = ACTIONS(452), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(462), - [anon_sym_typeset] = ACTIONS(462), - [anon_sym_export] = ACTIONS(462), - [anon_sym_readonly] = ACTIONS(462), - [anon_sym_local] = ACTIONS(462), - [anon_sym_unset] = ACTIONS(464), - [anon_sym_unsetenv] = ACTIONS(464), - [anon_sym_AMP_GT] = ACTIONS(434), - [anon_sym_AMP_GT_GT] = ACTIONS(432), - [anon_sym_LT_AMP] = ACTIONS(432), - [anon_sym_GT_AMP] = ACTIONS(432), - [anon_sym_GT_PIPE] = ACTIONS(432), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(466), - [anon_sym_DOLLAR] = ACTIONS(468), - [sym__special_character] = ACTIONS(470), - [anon_sym_DQUOTE] = ACTIONS(472), - [sym_raw_string] = ACTIONS(474), - [sym_ansi_c_string] = ACTIONS(474), - [aux_sym_number_token1] = ACTIONS(476), - [aux_sym_number_token2] = ACTIONS(478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(482), - [anon_sym_BQUOTE] = ACTIONS(484), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(486), - [anon_sym_LT_LPAREN] = ACTIONS(488), - [anon_sym_GT_LPAREN] = ACTIONS(488), + [sym__statements] = STATE(4095), + [sym_redirected_statement] = STATE(2711), + [sym_for_statement] = STATE(2711), + [sym_c_style_for_statement] = STATE(2711), + [sym_while_statement] = STATE(2711), + [sym_if_statement] = STATE(2711), + [sym_case_statement] = STATE(2711), + [sym_function_definition] = STATE(2711), + [sym_compound_statement] = STATE(2711), + [sym_subshell] = STATE(2711), + [sym_pipeline] = STATE(2711), + [sym_list] = STATE(2711), + [sym_negated_command] = STATE(2711), + [sym_test_command] = STATE(2711), + [sym_declaration_command] = STATE(2711), + [sym_unset_command] = STATE(2711), + [sym_command] = STATE(2711), + [sym_command_name] = STATE(446), + [sym_variable_assignment] = STATE(613), + [sym_variable_assignments] = STATE(2711), + [sym_subscript] = STATE(4372), + [sym_file_redirect] = STATE(1291), + [sym_arithmetic_expansion] = STATE(665), + [sym_brace_expression] = STATE(665), + [sym_concatenation] = STATE(1003), + [sym_string] = STATE(665), + [sym_translated_string] = STATE(665), + [sym_number] = STATE(665), + [sym_simple_expansion] = STATE(665), + [sym_expansion] = STATE(665), + [sym_command_substitution] = STATE(665), + [sym_process_substitution] = STATE(665), + [aux_sym__statements_repeat1] = STATE(297), + [aux_sym_redirected_statement_repeat2] = STATE(2799), + [aux_sym_command_repeat1] = STATE(1002), + [aux_sym__literal_repeat1] = STATE(831), + [sym_word] = ACTIONS(400), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(410), + [anon_sym_GT] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_esac] = ACTIONS(486), + [anon_sym_SEMI_SEMI] = ACTIONS(494), + [anon_sym_SEMI_AMP] = ACTIONS(496), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(498), + [anon_sym_function] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(438), + [anon_sym_typeset] = ACTIONS(438), + [anon_sym_export] = ACTIONS(438), + [anon_sym_readonly] = ACTIONS(438), + [anon_sym_local] = ACTIONS(438), + [anon_sym_unset] = ACTIONS(440), + [anon_sym_unsetenv] = ACTIONS(440), + [anon_sym_AMP_GT] = ACTIONS(410), + [anon_sym_AMP_GT_GT] = ACTIONS(408), + [anon_sym_LT_AMP] = ACTIONS(408), + [anon_sym_GT_AMP] = ACTIONS(408), + [anon_sym_GT_PIPE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(442), + [sym__special_character] = ACTIONS(444), + [anon_sym_DQUOTE] = ACTIONS(446), + [sym_raw_string] = ACTIONS(448), + [sym_ansi_c_string] = ACTIONS(448), + [aux_sym_number_token1] = ACTIONS(450), + [aux_sym_number_token2] = ACTIONS(452), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), + [anon_sym_BQUOTE] = ACTIONS(458), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), + [anon_sym_LT_LPAREN] = ACTIONS(462), + [anon_sym_GT_LPAREN] = ACTIONS(462), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(490), - [sym_file_descriptor] = ACTIONS(492), - [sym_variable_name] = ACTIONS(494), - [sym__brace_start] = ACTIONS(496), + [sym_test_operator] = ACTIONS(464), + [sym_file_descriptor] = ACTIONS(466), + [sym_variable_name] = ACTIONS(468), + [sym__brace_start] = ACTIONS(470), }, [28] = { - [sym__statements] = STATE(3953), - [sym_redirected_statement] = STATE(2503), - [sym_for_statement] = STATE(2503), - [sym_c_style_for_statement] = STATE(2503), - [sym_while_statement] = STATE(2503), - [sym_if_statement] = STATE(2503), - [sym_case_statement] = STATE(2503), - [sym_function_definition] = STATE(2503), - [sym_compound_statement] = STATE(2503), - [sym_subshell] = STATE(2503), - [sym_pipeline] = STATE(2503), - [sym_list] = STATE(2503), - [sym_negated_command] = STATE(2503), - [sym_test_command] = STATE(2503), - [sym_declaration_command] = STATE(2503), - [sym_unset_command] = STATE(2503), - [sym_command] = STATE(2503), - [sym_command_name] = STATE(448), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2503), - [sym_subscript] = STATE(4152), - [sym_file_redirect] = STATE(1302), - [sym_arithmetic_expansion] = STATE(688), - [sym_brace_expression] = STATE(688), - [sym_concatenation] = STATE(1020), - [sym_string] = STATE(688), - [sym_translated_string] = STATE(688), - [sym_number] = STATE(688), - [sym_simple_expansion] = STATE(688), - [sym_expansion] = STATE(688), - [sym_command_substitution] = STATE(688), - [sym_process_substitution] = STATE(688), - [aux_sym__statements_repeat1] = STATE(311), - [aux_sym_redirected_statement_repeat2] = STATE(2729), - [aux_sym_command_repeat1] = STATE(1023), - [aux_sym__literal_repeat1] = STATE(823), - [sym_word] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_GT] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_esac] = ACTIONS(498), - [anon_sym_SEMI_SEMI] = ACTIONS(500), - [anon_sym_SEMI_AMP] = ACTIONS(502), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(502), - [anon_sym_function] = ACTIONS(452), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(462), - [anon_sym_typeset] = ACTIONS(462), - [anon_sym_export] = ACTIONS(462), - [anon_sym_readonly] = ACTIONS(462), - [anon_sym_local] = ACTIONS(462), - [anon_sym_unset] = ACTIONS(464), - [anon_sym_unsetenv] = ACTIONS(464), - [anon_sym_AMP_GT] = ACTIONS(434), - [anon_sym_AMP_GT_GT] = ACTIONS(432), - [anon_sym_LT_AMP] = ACTIONS(432), - [anon_sym_GT_AMP] = ACTIONS(432), - [anon_sym_GT_PIPE] = ACTIONS(432), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(466), - [anon_sym_DOLLAR] = ACTIONS(468), - [sym__special_character] = ACTIONS(470), - [anon_sym_DQUOTE] = ACTIONS(472), - [sym_raw_string] = ACTIONS(474), - [sym_ansi_c_string] = ACTIONS(474), - [aux_sym_number_token1] = ACTIONS(476), - [aux_sym_number_token2] = ACTIONS(478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(482), - [anon_sym_BQUOTE] = ACTIONS(484), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(486), - [anon_sym_LT_LPAREN] = ACTIONS(488), - [anon_sym_GT_LPAREN] = ACTIONS(488), + [sym__statements] = STATE(4106), + [sym_redirected_statement] = STATE(2711), + [sym_for_statement] = STATE(2711), + [sym_c_style_for_statement] = STATE(2711), + [sym_while_statement] = STATE(2711), + [sym_if_statement] = STATE(2711), + [sym_case_statement] = STATE(2711), + [sym_function_definition] = STATE(2711), + [sym_compound_statement] = STATE(2711), + [sym_subshell] = STATE(2711), + [sym_pipeline] = STATE(2711), + [sym_list] = STATE(2711), + [sym_negated_command] = STATE(2711), + [sym_test_command] = STATE(2711), + [sym_declaration_command] = STATE(2711), + [sym_unset_command] = STATE(2711), + [sym_command] = STATE(2711), + [sym_command_name] = STATE(446), + [sym_variable_assignment] = STATE(613), + [sym_variable_assignments] = STATE(2711), + [sym_subscript] = STATE(4372), + [sym_file_redirect] = STATE(1291), + [sym_arithmetic_expansion] = STATE(665), + [sym_brace_expression] = STATE(665), + [sym_concatenation] = STATE(1003), + [sym_string] = STATE(665), + [sym_translated_string] = STATE(665), + [sym_number] = STATE(665), + [sym_simple_expansion] = STATE(665), + [sym_expansion] = STATE(665), + [sym_command_substitution] = STATE(665), + [sym_process_substitution] = STATE(665), + [aux_sym__statements_repeat1] = STATE(297), + [aux_sym_redirected_statement_repeat2] = STATE(2799), + [aux_sym_command_repeat1] = STATE(1002), + [aux_sym__literal_repeat1] = STATE(831), + [sym_word] = ACTIONS(400), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(410), + [anon_sym_GT] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_esac] = ACTIONS(500), + [anon_sym_SEMI_SEMI] = ACTIONS(502), + [anon_sym_SEMI_AMP] = ACTIONS(504), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(506), + [anon_sym_function] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(438), + [anon_sym_typeset] = ACTIONS(438), + [anon_sym_export] = ACTIONS(438), + [anon_sym_readonly] = ACTIONS(438), + [anon_sym_local] = ACTIONS(438), + [anon_sym_unset] = ACTIONS(440), + [anon_sym_unsetenv] = ACTIONS(440), + [anon_sym_AMP_GT] = ACTIONS(410), + [anon_sym_AMP_GT_GT] = ACTIONS(408), + [anon_sym_LT_AMP] = ACTIONS(408), + [anon_sym_GT_AMP] = ACTIONS(408), + [anon_sym_GT_PIPE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(442), + [sym__special_character] = ACTIONS(444), + [anon_sym_DQUOTE] = ACTIONS(446), + [sym_raw_string] = ACTIONS(448), + [sym_ansi_c_string] = ACTIONS(448), + [aux_sym_number_token1] = ACTIONS(450), + [aux_sym_number_token2] = ACTIONS(452), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), + [anon_sym_BQUOTE] = ACTIONS(458), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), + [anon_sym_LT_LPAREN] = ACTIONS(462), + [anon_sym_GT_LPAREN] = ACTIONS(462), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(490), - [sym_file_descriptor] = ACTIONS(492), - [sym_variable_name] = ACTIONS(494), - [sym__brace_start] = ACTIONS(496), + [sym_test_operator] = ACTIONS(464), + [sym_file_descriptor] = ACTIONS(466), + [sym_variable_name] = ACTIONS(468), + [sym__brace_start] = ACTIONS(470), }, [29] = { - [sym__statements] = STATE(3945), - [sym_redirected_statement] = STATE(2503), - [sym_for_statement] = STATE(2503), - [sym_c_style_for_statement] = STATE(2503), - [sym_while_statement] = STATE(2503), - [sym_if_statement] = STATE(2503), - [sym_case_statement] = STATE(2503), - [sym_function_definition] = STATE(2503), - [sym_compound_statement] = STATE(2503), - [sym_subshell] = STATE(2503), - [sym_pipeline] = STATE(2503), - [sym_list] = STATE(2503), - [sym_negated_command] = STATE(2503), - [sym_test_command] = STATE(2503), - [sym_declaration_command] = STATE(2503), - [sym_unset_command] = STATE(2503), - [sym_command] = STATE(2503), - [sym_command_name] = STATE(448), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2503), - [sym_subscript] = STATE(4152), - [sym_file_redirect] = STATE(1302), - [sym_arithmetic_expansion] = STATE(688), - [sym_brace_expression] = STATE(688), - [sym_concatenation] = STATE(1020), - [sym_string] = STATE(688), - [sym_translated_string] = STATE(688), - [sym_number] = STATE(688), - [sym_simple_expansion] = STATE(688), - [sym_expansion] = STATE(688), - [sym_command_substitution] = STATE(688), - [sym_process_substitution] = STATE(688), - [aux_sym__statements_repeat1] = STATE(311), - [aux_sym_redirected_statement_repeat2] = STATE(2729), - [aux_sym_command_repeat1] = STATE(1023), - [aux_sym__literal_repeat1] = STATE(823), - [sym_word] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_GT] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_esac] = ACTIONS(504), - [anon_sym_SEMI_SEMI] = ACTIONS(506), - [anon_sym_SEMI_AMP] = ACTIONS(508), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(508), - [anon_sym_function] = ACTIONS(452), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(462), - [anon_sym_typeset] = ACTIONS(462), - [anon_sym_export] = ACTIONS(462), - [anon_sym_readonly] = ACTIONS(462), - [anon_sym_local] = ACTIONS(462), - [anon_sym_unset] = ACTIONS(464), - [anon_sym_unsetenv] = ACTIONS(464), - [anon_sym_AMP_GT] = ACTIONS(434), - [anon_sym_AMP_GT_GT] = ACTIONS(432), - [anon_sym_LT_AMP] = ACTIONS(432), - [anon_sym_GT_AMP] = ACTIONS(432), - [anon_sym_GT_PIPE] = ACTIONS(432), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(466), - [anon_sym_DOLLAR] = ACTIONS(468), - [sym__special_character] = ACTIONS(470), - [anon_sym_DQUOTE] = ACTIONS(472), - [sym_raw_string] = ACTIONS(474), - [sym_ansi_c_string] = ACTIONS(474), - [aux_sym_number_token1] = ACTIONS(476), - [aux_sym_number_token2] = ACTIONS(478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(482), - [anon_sym_BQUOTE] = ACTIONS(484), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(486), - [anon_sym_LT_LPAREN] = ACTIONS(488), - [anon_sym_GT_LPAREN] = ACTIONS(488), + [sym__statements] = STATE(4100), + [sym_redirected_statement] = STATE(2711), + [sym_for_statement] = STATE(2711), + [sym_c_style_for_statement] = STATE(2711), + [sym_while_statement] = STATE(2711), + [sym_if_statement] = STATE(2711), + [sym_case_statement] = STATE(2711), + [sym_function_definition] = STATE(2711), + [sym_compound_statement] = STATE(2711), + [sym_subshell] = STATE(2711), + [sym_pipeline] = STATE(2711), + [sym_list] = STATE(2711), + [sym_negated_command] = STATE(2711), + [sym_test_command] = STATE(2711), + [sym_declaration_command] = STATE(2711), + [sym_unset_command] = STATE(2711), + [sym_command] = STATE(2711), + [sym_command_name] = STATE(446), + [sym_variable_assignment] = STATE(613), + [sym_variable_assignments] = STATE(2711), + [sym_subscript] = STATE(4372), + [sym_file_redirect] = STATE(1291), + [sym_arithmetic_expansion] = STATE(665), + [sym_brace_expression] = STATE(665), + [sym_concatenation] = STATE(1003), + [sym_string] = STATE(665), + [sym_translated_string] = STATE(665), + [sym_number] = STATE(665), + [sym_simple_expansion] = STATE(665), + [sym_expansion] = STATE(665), + [sym_command_substitution] = STATE(665), + [sym_process_substitution] = STATE(665), + [aux_sym__statements_repeat1] = STATE(297), + [aux_sym_redirected_statement_repeat2] = STATE(2799), + [aux_sym_command_repeat1] = STATE(1002), + [aux_sym__literal_repeat1] = STATE(831), + [sym_word] = ACTIONS(400), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(410), + [anon_sym_GT] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_esac] = ACTIONS(500), + [anon_sym_SEMI_SEMI] = ACTIONS(508), + [anon_sym_SEMI_AMP] = ACTIONS(510), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(512), + [anon_sym_function] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(438), + [anon_sym_typeset] = ACTIONS(438), + [anon_sym_export] = ACTIONS(438), + [anon_sym_readonly] = ACTIONS(438), + [anon_sym_local] = ACTIONS(438), + [anon_sym_unset] = ACTIONS(440), + [anon_sym_unsetenv] = ACTIONS(440), + [anon_sym_AMP_GT] = ACTIONS(410), + [anon_sym_AMP_GT_GT] = ACTIONS(408), + [anon_sym_LT_AMP] = ACTIONS(408), + [anon_sym_GT_AMP] = ACTIONS(408), + [anon_sym_GT_PIPE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(442), + [sym__special_character] = ACTIONS(444), + [anon_sym_DQUOTE] = ACTIONS(446), + [sym_raw_string] = ACTIONS(448), + [sym_ansi_c_string] = ACTIONS(448), + [aux_sym_number_token1] = ACTIONS(450), + [aux_sym_number_token2] = ACTIONS(452), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), + [anon_sym_BQUOTE] = ACTIONS(458), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), + [anon_sym_LT_LPAREN] = ACTIONS(462), + [anon_sym_GT_LPAREN] = ACTIONS(462), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(490), - [sym_file_descriptor] = ACTIONS(492), - [sym_variable_name] = ACTIONS(494), - [sym__brace_start] = ACTIONS(496), + [sym_test_operator] = ACTIONS(464), + [sym_file_descriptor] = ACTIONS(466), + [sym_variable_name] = ACTIONS(468), + [sym__brace_start] = ACTIONS(470), }, [30] = { - [sym__statements] = STATE(3948), - [sym_redirected_statement] = STATE(2503), - [sym_for_statement] = STATE(2503), - [sym_c_style_for_statement] = STATE(2503), - [sym_while_statement] = STATE(2503), - [sym_if_statement] = STATE(2503), - [sym_case_statement] = STATE(2503), - [sym_function_definition] = STATE(2503), - [sym_compound_statement] = STATE(2503), - [sym_subshell] = STATE(2503), - [sym_pipeline] = STATE(2503), - [sym_list] = STATE(2503), - [sym_negated_command] = STATE(2503), - [sym_test_command] = STATE(2503), - [sym_declaration_command] = STATE(2503), - [sym_unset_command] = STATE(2503), - [sym_command] = STATE(2503), - [sym_command_name] = STATE(448), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2503), - [sym_subscript] = STATE(4152), - [sym_file_redirect] = STATE(1302), - [sym_arithmetic_expansion] = STATE(688), - [sym_brace_expression] = STATE(688), - [sym_concatenation] = STATE(1020), - [sym_string] = STATE(688), - [sym_translated_string] = STATE(688), - [sym_number] = STATE(688), - [sym_simple_expansion] = STATE(688), - [sym_expansion] = STATE(688), - [sym_command_substitution] = STATE(688), - [sym_process_substitution] = STATE(688), - [aux_sym__statements_repeat1] = STATE(311), - [aux_sym_redirected_statement_repeat2] = STATE(2729), - [aux_sym_command_repeat1] = STATE(1023), - [aux_sym__literal_repeat1] = STATE(823), - [sym_word] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_GT] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_esac] = ACTIONS(510), - [anon_sym_SEMI_SEMI] = ACTIONS(512), - [anon_sym_SEMI_AMP] = ACTIONS(514), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(514), - [anon_sym_function] = ACTIONS(452), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(462), - [anon_sym_typeset] = ACTIONS(462), - [anon_sym_export] = ACTIONS(462), - [anon_sym_readonly] = ACTIONS(462), - [anon_sym_local] = ACTIONS(462), - [anon_sym_unset] = ACTIONS(464), - [anon_sym_unsetenv] = ACTIONS(464), - [anon_sym_AMP_GT] = ACTIONS(434), - [anon_sym_AMP_GT_GT] = ACTIONS(432), - [anon_sym_LT_AMP] = ACTIONS(432), - [anon_sym_GT_AMP] = ACTIONS(432), - [anon_sym_GT_PIPE] = ACTIONS(432), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(466), - [anon_sym_DOLLAR] = ACTIONS(468), - [sym__special_character] = ACTIONS(470), - [anon_sym_DQUOTE] = ACTIONS(472), - [sym_raw_string] = ACTIONS(474), - [sym_ansi_c_string] = ACTIONS(474), - [aux_sym_number_token1] = ACTIONS(476), - [aux_sym_number_token2] = ACTIONS(478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(482), - [anon_sym_BQUOTE] = ACTIONS(484), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(486), - [anon_sym_LT_LPAREN] = ACTIONS(488), - [anon_sym_GT_LPAREN] = ACTIONS(488), + [sym__statements] = STATE(4113), + [sym_redirected_statement] = STATE(2711), + [sym_for_statement] = STATE(2711), + [sym_c_style_for_statement] = STATE(2711), + [sym_while_statement] = STATE(2711), + [sym_if_statement] = STATE(2711), + [sym_case_statement] = STATE(2711), + [sym_function_definition] = STATE(2711), + [sym_compound_statement] = STATE(2711), + [sym_subshell] = STATE(2711), + [sym_pipeline] = STATE(2711), + [sym_list] = STATE(2711), + [sym_negated_command] = STATE(2711), + [sym_test_command] = STATE(2711), + [sym_declaration_command] = STATE(2711), + [sym_unset_command] = STATE(2711), + [sym_command] = STATE(2711), + [sym_command_name] = STATE(446), + [sym_variable_assignment] = STATE(613), + [sym_variable_assignments] = STATE(2711), + [sym_subscript] = STATE(4372), + [sym_file_redirect] = STATE(1291), + [sym_arithmetic_expansion] = STATE(665), + [sym_brace_expression] = STATE(665), + [sym_concatenation] = STATE(1003), + [sym_string] = STATE(665), + [sym_translated_string] = STATE(665), + [sym_number] = STATE(665), + [sym_simple_expansion] = STATE(665), + [sym_expansion] = STATE(665), + [sym_command_substitution] = STATE(665), + [sym_process_substitution] = STATE(665), + [aux_sym__statements_repeat1] = STATE(297), + [aux_sym_redirected_statement_repeat2] = STATE(2799), + [aux_sym_command_repeat1] = STATE(1002), + [aux_sym__literal_repeat1] = STATE(831), + [sym_word] = ACTIONS(400), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(410), + [anon_sym_GT] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_esac] = ACTIONS(514), + [anon_sym_SEMI_SEMI] = ACTIONS(516), + [anon_sym_SEMI_AMP] = ACTIONS(518), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(518), + [anon_sym_function] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(438), + [anon_sym_typeset] = ACTIONS(438), + [anon_sym_export] = ACTIONS(438), + [anon_sym_readonly] = ACTIONS(438), + [anon_sym_local] = ACTIONS(438), + [anon_sym_unset] = ACTIONS(440), + [anon_sym_unsetenv] = ACTIONS(440), + [anon_sym_AMP_GT] = ACTIONS(410), + [anon_sym_AMP_GT_GT] = ACTIONS(408), + [anon_sym_LT_AMP] = ACTIONS(408), + [anon_sym_GT_AMP] = ACTIONS(408), + [anon_sym_GT_PIPE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(442), + [sym__special_character] = ACTIONS(444), + [anon_sym_DQUOTE] = ACTIONS(446), + [sym_raw_string] = ACTIONS(448), + [sym_ansi_c_string] = ACTIONS(448), + [aux_sym_number_token1] = ACTIONS(450), + [aux_sym_number_token2] = ACTIONS(452), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), + [anon_sym_BQUOTE] = ACTIONS(458), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), + [anon_sym_LT_LPAREN] = ACTIONS(462), + [anon_sym_GT_LPAREN] = ACTIONS(462), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(490), - [sym_file_descriptor] = ACTIONS(492), - [sym_variable_name] = ACTIONS(494), - [sym__brace_start] = ACTIONS(496), + [sym_test_operator] = ACTIONS(464), + [sym_file_descriptor] = ACTIONS(466), + [sym_variable_name] = ACTIONS(468), + [sym__brace_start] = ACTIONS(470), }, [31] = { - [sym__statements] = STATE(3972), - [sym_redirected_statement] = STATE(2503), - [sym_for_statement] = STATE(2503), - [sym_c_style_for_statement] = STATE(2503), - [sym_while_statement] = STATE(2503), - [sym_if_statement] = STATE(2503), - [sym_case_statement] = STATE(2503), - [sym_function_definition] = STATE(2503), - [sym_compound_statement] = STATE(2503), - [sym_subshell] = STATE(2503), - [sym_pipeline] = STATE(2503), - [sym_list] = STATE(2503), - [sym_negated_command] = STATE(2503), - [sym_test_command] = STATE(2503), - [sym_declaration_command] = STATE(2503), - [sym_unset_command] = STATE(2503), - [sym_command] = STATE(2503), - [sym_command_name] = STATE(448), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2503), - [sym_subscript] = STATE(4152), - [sym_file_redirect] = STATE(1302), - [sym_arithmetic_expansion] = STATE(688), - [sym_brace_expression] = STATE(688), - [sym_concatenation] = STATE(1020), - [sym_string] = STATE(688), - [sym_translated_string] = STATE(688), - [sym_number] = STATE(688), - [sym_simple_expansion] = STATE(688), - [sym_expansion] = STATE(688), - [sym_command_substitution] = STATE(688), - [sym_process_substitution] = STATE(688), - [aux_sym__statements_repeat1] = STATE(311), - [aux_sym_redirected_statement_repeat2] = STATE(2729), - [aux_sym_command_repeat1] = STATE(1023), - [aux_sym__literal_repeat1] = STATE(823), - [sym_word] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_GT] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_esac] = ACTIONS(516), - [anon_sym_SEMI_SEMI] = ACTIONS(518), - [anon_sym_SEMI_AMP] = ACTIONS(520), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(522), - [anon_sym_function] = ACTIONS(452), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(462), - [anon_sym_typeset] = ACTIONS(462), - [anon_sym_export] = ACTIONS(462), - [anon_sym_readonly] = ACTIONS(462), - [anon_sym_local] = ACTIONS(462), - [anon_sym_unset] = ACTIONS(464), - [anon_sym_unsetenv] = ACTIONS(464), - [anon_sym_AMP_GT] = ACTIONS(434), - [anon_sym_AMP_GT_GT] = ACTIONS(432), - [anon_sym_LT_AMP] = ACTIONS(432), - [anon_sym_GT_AMP] = ACTIONS(432), - [anon_sym_GT_PIPE] = ACTIONS(432), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(466), - [anon_sym_DOLLAR] = ACTIONS(468), - [sym__special_character] = ACTIONS(470), - [anon_sym_DQUOTE] = ACTIONS(472), - [sym_raw_string] = ACTIONS(474), - [sym_ansi_c_string] = ACTIONS(474), - [aux_sym_number_token1] = ACTIONS(476), - [aux_sym_number_token2] = ACTIONS(478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(482), - [anon_sym_BQUOTE] = ACTIONS(484), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(486), - [anon_sym_LT_LPAREN] = ACTIONS(488), - [anon_sym_GT_LPAREN] = ACTIONS(488), + [sym__statements] = STATE(4109), + [sym_redirected_statement] = STATE(2711), + [sym_for_statement] = STATE(2711), + [sym_c_style_for_statement] = STATE(2711), + [sym_while_statement] = STATE(2711), + [sym_if_statement] = STATE(2711), + [sym_case_statement] = STATE(2711), + [sym_function_definition] = STATE(2711), + [sym_compound_statement] = STATE(2711), + [sym_subshell] = STATE(2711), + [sym_pipeline] = STATE(2711), + [sym_list] = STATE(2711), + [sym_negated_command] = STATE(2711), + [sym_test_command] = STATE(2711), + [sym_declaration_command] = STATE(2711), + [sym_unset_command] = STATE(2711), + [sym_command] = STATE(2711), + [sym_command_name] = STATE(446), + [sym_variable_assignment] = STATE(613), + [sym_variable_assignments] = STATE(2711), + [sym_subscript] = STATE(4372), + [sym_file_redirect] = STATE(1291), + [sym_arithmetic_expansion] = STATE(665), + [sym_brace_expression] = STATE(665), + [sym_concatenation] = STATE(1003), + [sym_string] = STATE(665), + [sym_translated_string] = STATE(665), + [sym_number] = STATE(665), + [sym_simple_expansion] = STATE(665), + [sym_expansion] = STATE(665), + [sym_command_substitution] = STATE(665), + [sym_process_substitution] = STATE(665), + [aux_sym__statements_repeat1] = STATE(297), + [aux_sym_redirected_statement_repeat2] = STATE(2799), + [aux_sym_command_repeat1] = STATE(1002), + [aux_sym__literal_repeat1] = STATE(831), + [sym_word] = ACTIONS(400), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(410), + [anon_sym_GT] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_esac] = ACTIONS(420), + [anon_sym_SEMI_SEMI] = ACTIONS(520), + [anon_sym_SEMI_AMP] = ACTIONS(522), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(524), + [anon_sym_function] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(438), + [anon_sym_typeset] = ACTIONS(438), + [anon_sym_export] = ACTIONS(438), + [anon_sym_readonly] = ACTIONS(438), + [anon_sym_local] = ACTIONS(438), + [anon_sym_unset] = ACTIONS(440), + [anon_sym_unsetenv] = ACTIONS(440), + [anon_sym_AMP_GT] = ACTIONS(410), + [anon_sym_AMP_GT_GT] = ACTIONS(408), + [anon_sym_LT_AMP] = ACTIONS(408), + [anon_sym_GT_AMP] = ACTIONS(408), + [anon_sym_GT_PIPE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(442), + [sym__special_character] = ACTIONS(444), + [anon_sym_DQUOTE] = ACTIONS(446), + [sym_raw_string] = ACTIONS(448), + [sym_ansi_c_string] = ACTIONS(448), + [aux_sym_number_token1] = ACTIONS(450), + [aux_sym_number_token2] = ACTIONS(452), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), + [anon_sym_BQUOTE] = ACTIONS(458), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), + [anon_sym_LT_LPAREN] = ACTIONS(462), + [anon_sym_GT_LPAREN] = ACTIONS(462), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(490), - [sym_file_descriptor] = ACTIONS(492), - [sym_variable_name] = ACTIONS(494), - [sym__brace_start] = ACTIONS(496), + [sym_test_operator] = ACTIONS(464), + [sym_file_descriptor] = ACTIONS(466), + [sym_variable_name] = ACTIONS(468), + [sym__brace_start] = ACTIONS(470), }, [32] = { - [sym__statements] = STATE(3979), - [sym_redirected_statement] = STATE(2503), - [sym_for_statement] = STATE(2503), - [sym_c_style_for_statement] = STATE(2503), - [sym_while_statement] = STATE(2503), - [sym_if_statement] = STATE(2503), - [sym_case_statement] = STATE(2503), - [sym_function_definition] = STATE(2503), - [sym_compound_statement] = STATE(2503), - [sym_subshell] = STATE(2503), - [sym_pipeline] = STATE(2503), - [sym_list] = STATE(2503), - [sym_negated_command] = STATE(2503), - [sym_test_command] = STATE(2503), - [sym_declaration_command] = STATE(2503), - [sym_unset_command] = STATE(2503), - [sym_command] = STATE(2503), - [sym_command_name] = STATE(448), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2503), - [sym_subscript] = STATE(4152), - [sym_file_redirect] = STATE(1302), - [sym_arithmetic_expansion] = STATE(688), - [sym_brace_expression] = STATE(688), - [sym_concatenation] = STATE(1020), - [sym_string] = STATE(688), - [sym_translated_string] = STATE(688), - [sym_number] = STATE(688), - [sym_simple_expansion] = STATE(688), - [sym_expansion] = STATE(688), - [sym_command_substitution] = STATE(688), - [sym_process_substitution] = STATE(688), - [aux_sym__statements_repeat1] = STATE(311), - [aux_sym_redirected_statement_repeat2] = STATE(2729), - [aux_sym_command_repeat1] = STATE(1023), - [aux_sym__literal_repeat1] = STATE(823), - [sym_word] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_GT] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_esac] = ACTIONS(516), - [anon_sym_SEMI_SEMI] = ACTIONS(524), - [anon_sym_SEMI_AMP] = ACTIONS(526), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(528), - [anon_sym_function] = ACTIONS(452), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(462), - [anon_sym_typeset] = ACTIONS(462), - [anon_sym_export] = ACTIONS(462), - [anon_sym_readonly] = ACTIONS(462), - [anon_sym_local] = ACTIONS(462), - [anon_sym_unset] = ACTIONS(464), - [anon_sym_unsetenv] = ACTIONS(464), - [anon_sym_AMP_GT] = ACTIONS(434), - [anon_sym_AMP_GT_GT] = ACTIONS(432), - [anon_sym_LT_AMP] = ACTIONS(432), - [anon_sym_GT_AMP] = ACTIONS(432), - [anon_sym_GT_PIPE] = ACTIONS(432), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(466), - [anon_sym_DOLLAR] = ACTIONS(468), - [sym__special_character] = ACTIONS(470), - [anon_sym_DQUOTE] = ACTIONS(472), - [sym_raw_string] = ACTIONS(474), - [sym_ansi_c_string] = ACTIONS(474), - [aux_sym_number_token1] = ACTIONS(476), - [aux_sym_number_token2] = ACTIONS(478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(482), - [anon_sym_BQUOTE] = ACTIONS(484), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(486), - [anon_sym_LT_LPAREN] = ACTIONS(488), - [anon_sym_GT_LPAREN] = ACTIONS(488), + [sym__statements] = STATE(4146), + [sym_redirected_statement] = STATE(2711), + [sym_for_statement] = STATE(2711), + [sym_c_style_for_statement] = STATE(2711), + [sym_while_statement] = STATE(2711), + [sym_if_statement] = STATE(2711), + [sym_case_statement] = STATE(2711), + [sym_function_definition] = STATE(2711), + [sym_compound_statement] = STATE(2711), + [sym_subshell] = STATE(2711), + [sym_pipeline] = STATE(2711), + [sym_list] = STATE(2711), + [sym_negated_command] = STATE(2711), + [sym_test_command] = STATE(2711), + [sym_declaration_command] = STATE(2711), + [sym_unset_command] = STATE(2711), + [sym_command] = STATE(2711), + [sym_command_name] = STATE(446), + [sym_variable_assignment] = STATE(613), + [sym_variable_assignments] = STATE(2711), + [sym_subscript] = STATE(4372), + [sym_file_redirect] = STATE(1291), + [sym_arithmetic_expansion] = STATE(665), + [sym_brace_expression] = STATE(665), + [sym_concatenation] = STATE(1003), + [sym_string] = STATE(665), + [sym_translated_string] = STATE(665), + [sym_number] = STATE(665), + [sym_simple_expansion] = STATE(665), + [sym_expansion] = STATE(665), + [sym_command_substitution] = STATE(665), + [sym_process_substitution] = STATE(665), + [aux_sym__statements_repeat1] = STATE(297), + [aux_sym_redirected_statement_repeat2] = STATE(2799), + [aux_sym_command_repeat1] = STATE(1002), + [aux_sym__literal_repeat1] = STATE(831), + [sym_word] = ACTIONS(400), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(410), + [anon_sym_GT] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_esac] = ACTIONS(472), + [anon_sym_SEMI_SEMI] = ACTIONS(526), + [anon_sym_SEMI_AMP] = ACTIONS(528), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(530), + [anon_sym_function] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(438), + [anon_sym_typeset] = ACTIONS(438), + [anon_sym_export] = ACTIONS(438), + [anon_sym_readonly] = ACTIONS(438), + [anon_sym_local] = ACTIONS(438), + [anon_sym_unset] = ACTIONS(440), + [anon_sym_unsetenv] = ACTIONS(440), + [anon_sym_AMP_GT] = ACTIONS(410), + [anon_sym_AMP_GT_GT] = ACTIONS(408), + [anon_sym_LT_AMP] = ACTIONS(408), + [anon_sym_GT_AMP] = ACTIONS(408), + [anon_sym_GT_PIPE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(442), + [sym__special_character] = ACTIONS(444), + [anon_sym_DQUOTE] = ACTIONS(446), + [sym_raw_string] = ACTIONS(448), + [sym_ansi_c_string] = ACTIONS(448), + [aux_sym_number_token1] = ACTIONS(450), + [aux_sym_number_token2] = ACTIONS(452), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), + [anon_sym_BQUOTE] = ACTIONS(458), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), + [anon_sym_LT_LPAREN] = ACTIONS(462), + [anon_sym_GT_LPAREN] = ACTIONS(462), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(490), - [sym_file_descriptor] = ACTIONS(492), - [sym_variable_name] = ACTIONS(494), - [sym__brace_start] = ACTIONS(496), + [sym_test_operator] = ACTIONS(464), + [sym_file_descriptor] = ACTIONS(466), + [sym_variable_name] = ACTIONS(468), + [sym__brace_start] = ACTIONS(470), }, [33] = { - [sym__statements] = STATE(3959), - [sym_redirected_statement] = STATE(2503), - [sym_for_statement] = STATE(2503), - [sym_c_style_for_statement] = STATE(2503), - [sym_while_statement] = STATE(2503), - [sym_if_statement] = STATE(2503), - [sym_case_statement] = STATE(2503), - [sym_function_definition] = STATE(2503), - [sym_compound_statement] = STATE(2503), - [sym_subshell] = STATE(2503), - [sym_pipeline] = STATE(2503), - [sym_list] = STATE(2503), - [sym_negated_command] = STATE(2503), - [sym_test_command] = STATE(2503), - [sym_declaration_command] = STATE(2503), - [sym_unset_command] = STATE(2503), - [sym_command] = STATE(2503), - [sym_command_name] = STATE(448), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2503), - [sym_subscript] = STATE(4152), - [sym_file_redirect] = STATE(1302), - [sym_arithmetic_expansion] = STATE(688), - [sym_brace_expression] = STATE(688), - [sym_concatenation] = STATE(1020), - [sym_string] = STATE(688), - [sym_translated_string] = STATE(688), - [sym_number] = STATE(688), - [sym_simple_expansion] = STATE(688), - [sym_expansion] = STATE(688), - [sym_command_substitution] = STATE(688), - [sym_process_substitution] = STATE(688), - [aux_sym__statements_repeat1] = STATE(311), - [aux_sym_redirected_statement_repeat2] = STATE(2729), - [aux_sym_command_repeat1] = STATE(1023), - [aux_sym__literal_repeat1] = STATE(823), - [sym_word] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_GT] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_esac] = ACTIONS(530), - [anon_sym_SEMI_SEMI] = ACTIONS(532), - [anon_sym_SEMI_AMP] = ACTIONS(534), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(534), - [anon_sym_function] = ACTIONS(452), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(462), - [anon_sym_typeset] = ACTIONS(462), - [anon_sym_export] = ACTIONS(462), - [anon_sym_readonly] = ACTIONS(462), - [anon_sym_local] = ACTIONS(462), - [anon_sym_unset] = ACTIONS(464), - [anon_sym_unsetenv] = ACTIONS(464), - [anon_sym_AMP_GT] = ACTIONS(434), - [anon_sym_AMP_GT_GT] = ACTIONS(432), - [anon_sym_LT_AMP] = ACTIONS(432), - [anon_sym_GT_AMP] = ACTIONS(432), - [anon_sym_GT_PIPE] = ACTIONS(432), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(466), - [anon_sym_DOLLAR] = ACTIONS(468), - [sym__special_character] = ACTIONS(470), - [anon_sym_DQUOTE] = ACTIONS(472), - [sym_raw_string] = ACTIONS(474), - [sym_ansi_c_string] = ACTIONS(474), - [aux_sym_number_token1] = ACTIONS(476), - [aux_sym_number_token2] = ACTIONS(478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(482), - [anon_sym_BQUOTE] = ACTIONS(484), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(486), - [anon_sym_LT_LPAREN] = ACTIONS(488), - [anon_sym_GT_LPAREN] = ACTIONS(488), + [sym__statements] = STATE(4135), + [sym_redirected_statement] = STATE(2711), + [sym_for_statement] = STATE(2711), + [sym_c_style_for_statement] = STATE(2711), + [sym_while_statement] = STATE(2711), + [sym_if_statement] = STATE(2711), + [sym_case_statement] = STATE(2711), + [sym_function_definition] = STATE(2711), + [sym_compound_statement] = STATE(2711), + [sym_subshell] = STATE(2711), + [sym_pipeline] = STATE(2711), + [sym_list] = STATE(2711), + [sym_negated_command] = STATE(2711), + [sym_test_command] = STATE(2711), + [sym_declaration_command] = STATE(2711), + [sym_unset_command] = STATE(2711), + [sym_command] = STATE(2711), + [sym_command_name] = STATE(446), + [sym_variable_assignment] = STATE(613), + [sym_variable_assignments] = STATE(2711), + [sym_subscript] = STATE(4372), + [sym_file_redirect] = STATE(1291), + [sym_arithmetic_expansion] = STATE(665), + [sym_brace_expression] = STATE(665), + [sym_concatenation] = STATE(1003), + [sym_string] = STATE(665), + [sym_translated_string] = STATE(665), + [sym_number] = STATE(665), + [sym_simple_expansion] = STATE(665), + [sym_expansion] = STATE(665), + [sym_command_substitution] = STATE(665), + [sym_process_substitution] = STATE(665), + [aux_sym__statements_repeat1] = STATE(297), + [aux_sym_redirected_statement_repeat2] = STATE(2799), + [aux_sym_command_repeat1] = STATE(1002), + [aux_sym__literal_repeat1] = STATE(831), + [sym_word] = ACTIONS(400), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(410), + [anon_sym_GT] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_esac] = ACTIONS(532), + [anon_sym_SEMI_SEMI] = ACTIONS(534), + [anon_sym_SEMI_AMP] = ACTIONS(536), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(536), + [anon_sym_function] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(438), + [anon_sym_typeset] = ACTIONS(438), + [anon_sym_export] = ACTIONS(438), + [anon_sym_readonly] = ACTIONS(438), + [anon_sym_local] = ACTIONS(438), + [anon_sym_unset] = ACTIONS(440), + [anon_sym_unsetenv] = ACTIONS(440), + [anon_sym_AMP_GT] = ACTIONS(410), + [anon_sym_AMP_GT_GT] = ACTIONS(408), + [anon_sym_LT_AMP] = ACTIONS(408), + [anon_sym_GT_AMP] = ACTIONS(408), + [anon_sym_GT_PIPE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(442), + [sym__special_character] = ACTIONS(444), + [anon_sym_DQUOTE] = ACTIONS(446), + [sym_raw_string] = ACTIONS(448), + [sym_ansi_c_string] = ACTIONS(448), + [aux_sym_number_token1] = ACTIONS(450), + [aux_sym_number_token2] = ACTIONS(452), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), + [anon_sym_BQUOTE] = ACTIONS(458), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), + [anon_sym_LT_LPAREN] = ACTIONS(462), + [anon_sym_GT_LPAREN] = ACTIONS(462), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(490), - [sym_file_descriptor] = ACTIONS(492), - [sym_variable_name] = ACTIONS(494), - [sym__brace_start] = ACTIONS(496), + [sym_test_operator] = ACTIONS(464), + [sym_file_descriptor] = ACTIONS(466), + [sym_variable_name] = ACTIONS(468), + [sym__brace_start] = ACTIONS(470), }, [34] = { - [sym__statements] = STATE(3975), - [sym_redirected_statement] = STATE(2503), - [sym_for_statement] = STATE(2503), - [sym_c_style_for_statement] = STATE(2503), - [sym_while_statement] = STATE(2503), - [sym_if_statement] = STATE(2503), - [sym_case_statement] = STATE(2503), - [sym_function_definition] = STATE(2503), - [sym_compound_statement] = STATE(2503), - [sym_subshell] = STATE(2503), - [sym_pipeline] = STATE(2503), - [sym_list] = STATE(2503), - [sym_negated_command] = STATE(2503), - [sym_test_command] = STATE(2503), - [sym_declaration_command] = STATE(2503), - [sym_unset_command] = STATE(2503), - [sym_command] = STATE(2503), - [sym_command_name] = STATE(448), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2503), - [sym_subscript] = STATE(4152), - [sym_file_redirect] = STATE(1302), - [sym_arithmetic_expansion] = STATE(688), - [sym_brace_expression] = STATE(688), - [sym_concatenation] = STATE(1020), - [sym_string] = STATE(688), - [sym_translated_string] = STATE(688), - [sym_number] = STATE(688), - [sym_simple_expansion] = STATE(688), - [sym_expansion] = STATE(688), - [sym_command_substitution] = STATE(688), - [sym_process_substitution] = STATE(688), - [aux_sym__statements_repeat1] = STATE(311), - [aux_sym_redirected_statement_repeat2] = STATE(2729), - [aux_sym_command_repeat1] = STATE(1023), - [aux_sym__literal_repeat1] = STATE(823), - [sym_word] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_GT] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_esac] = ACTIONS(444), - [anon_sym_SEMI_SEMI] = ACTIONS(536), - [anon_sym_SEMI_AMP] = ACTIONS(538), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(540), - [anon_sym_function] = ACTIONS(452), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(462), - [anon_sym_typeset] = ACTIONS(462), - [anon_sym_export] = ACTIONS(462), - [anon_sym_readonly] = ACTIONS(462), - [anon_sym_local] = ACTIONS(462), - [anon_sym_unset] = ACTIONS(464), - [anon_sym_unsetenv] = ACTIONS(464), - [anon_sym_AMP_GT] = ACTIONS(434), - [anon_sym_AMP_GT_GT] = ACTIONS(432), - [anon_sym_LT_AMP] = ACTIONS(432), - [anon_sym_GT_AMP] = ACTIONS(432), - [anon_sym_GT_PIPE] = ACTIONS(432), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(466), - [anon_sym_DOLLAR] = ACTIONS(468), - [sym__special_character] = ACTIONS(470), - [anon_sym_DQUOTE] = ACTIONS(472), - [sym_raw_string] = ACTIONS(474), - [sym_ansi_c_string] = ACTIONS(474), - [aux_sym_number_token1] = ACTIONS(476), - [aux_sym_number_token2] = ACTIONS(478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(482), - [anon_sym_BQUOTE] = ACTIONS(484), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(486), - [anon_sym_LT_LPAREN] = ACTIONS(488), - [anon_sym_GT_LPAREN] = ACTIONS(488), + [sym__statements] = STATE(4147), + [sym_redirected_statement] = STATE(2711), + [sym_for_statement] = STATE(2711), + [sym_c_style_for_statement] = STATE(2711), + [sym_while_statement] = STATE(2711), + [sym_if_statement] = STATE(2711), + [sym_case_statement] = STATE(2711), + [sym_function_definition] = STATE(2711), + [sym_compound_statement] = STATE(2711), + [sym_subshell] = STATE(2711), + [sym_pipeline] = STATE(2711), + [sym_list] = STATE(2711), + [sym_negated_command] = STATE(2711), + [sym_test_command] = STATE(2711), + [sym_declaration_command] = STATE(2711), + [sym_unset_command] = STATE(2711), + [sym_command] = STATE(2711), + [sym_command_name] = STATE(446), + [sym_variable_assignment] = STATE(613), + [sym_variable_assignments] = STATE(2711), + [sym_subscript] = STATE(4372), + [sym_file_redirect] = STATE(1291), + [sym_arithmetic_expansion] = STATE(665), + [sym_brace_expression] = STATE(665), + [sym_concatenation] = STATE(1003), + [sym_string] = STATE(665), + [sym_translated_string] = STATE(665), + [sym_number] = STATE(665), + [sym_simple_expansion] = STATE(665), + [sym_expansion] = STATE(665), + [sym_command_substitution] = STATE(665), + [sym_process_substitution] = STATE(665), + [aux_sym__statements_repeat1] = STATE(297), + [aux_sym_redirected_statement_repeat2] = STATE(2799), + [aux_sym_command_repeat1] = STATE(1002), + [aux_sym__literal_repeat1] = STATE(831), + [sym_word] = ACTIONS(400), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(410), + [anon_sym_GT] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_esac] = ACTIONS(538), + [anon_sym_SEMI_SEMI] = ACTIONS(540), + [anon_sym_SEMI_AMP] = ACTIONS(542), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(542), + [anon_sym_function] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(438), + [anon_sym_typeset] = ACTIONS(438), + [anon_sym_export] = ACTIONS(438), + [anon_sym_readonly] = ACTIONS(438), + [anon_sym_local] = ACTIONS(438), + [anon_sym_unset] = ACTIONS(440), + [anon_sym_unsetenv] = ACTIONS(440), + [anon_sym_AMP_GT] = ACTIONS(410), + [anon_sym_AMP_GT_GT] = ACTIONS(408), + [anon_sym_LT_AMP] = ACTIONS(408), + [anon_sym_GT_AMP] = ACTIONS(408), + [anon_sym_GT_PIPE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(442), + [sym__special_character] = ACTIONS(444), + [anon_sym_DQUOTE] = ACTIONS(446), + [sym_raw_string] = ACTIONS(448), + [sym_ansi_c_string] = ACTIONS(448), + [aux_sym_number_token1] = ACTIONS(450), + [aux_sym_number_token2] = ACTIONS(452), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), + [anon_sym_BQUOTE] = ACTIONS(458), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), + [anon_sym_LT_LPAREN] = ACTIONS(462), + [anon_sym_GT_LPAREN] = ACTIONS(462), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(490), - [sym_file_descriptor] = ACTIONS(492), - [sym_variable_name] = ACTIONS(494), - [sym__brace_start] = ACTIONS(496), + [sym_test_operator] = ACTIONS(464), + [sym_file_descriptor] = ACTIONS(466), + [sym_variable_name] = ACTIONS(468), + [sym__brace_start] = ACTIONS(470), }, [35] = { - [sym__statements] = STATE(3943), - [sym_redirected_statement] = STATE(2503), - [sym_for_statement] = STATE(2503), - [sym_c_style_for_statement] = STATE(2503), - [sym_while_statement] = STATE(2503), - [sym_if_statement] = STATE(2503), - [sym_case_statement] = STATE(2503), - [sym_function_definition] = STATE(2503), - [sym_compound_statement] = STATE(2503), - [sym_subshell] = STATE(2503), - [sym_pipeline] = STATE(2503), - [sym_list] = STATE(2503), - [sym_negated_command] = STATE(2503), - [sym_test_command] = STATE(2503), - [sym_declaration_command] = STATE(2503), - [sym_unset_command] = STATE(2503), - [sym_command] = STATE(2503), - [sym_command_name] = STATE(448), + [sym__statements] = STATE(4275), + [sym_redirected_statement] = STATE(2748), + [sym_for_statement] = STATE(2748), + [sym_c_style_for_statement] = STATE(2748), + [sym_while_statement] = STATE(2748), + [sym_if_statement] = STATE(2748), + [sym_case_statement] = STATE(2748), + [sym_function_definition] = STATE(2748), + [sym_compound_statement] = STATE(2748), + [sym_subshell] = STATE(2748), + [sym_pipeline] = STATE(2748), + [sym_list] = STATE(2748), + [sym_negated_command] = STATE(2748), + [sym_test_command] = STATE(2748), + [sym_declaration_command] = STATE(2748), + [sym_unset_command] = STATE(2748), + [sym_command] = STATE(2748), + [sym_command_name] = STATE(450), [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2503), - [sym_subscript] = STATE(4152), - [sym_file_redirect] = STATE(1302), - [sym_arithmetic_expansion] = STATE(688), - [sym_brace_expression] = STATE(688), - [sym_concatenation] = STATE(1020), - [sym_string] = STATE(688), - [sym_translated_string] = STATE(688), - [sym_number] = STATE(688), - [sym_simple_expansion] = STATE(688), - [sym_expansion] = STATE(688), - [sym_command_substitution] = STATE(688), - [sym_process_substitution] = STATE(688), - [aux_sym__statements_repeat1] = STATE(311), - [aux_sym_redirected_statement_repeat2] = STATE(2729), - [aux_sym_command_repeat1] = STATE(1023), - [aux_sym__literal_repeat1] = STATE(823), - [sym_word] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_GT] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_esac] = ACTIONS(542), - [anon_sym_SEMI_SEMI] = ACTIONS(544), - [anon_sym_SEMI_AMP] = ACTIONS(546), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(548), - [anon_sym_function] = ACTIONS(452), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(462), - [anon_sym_typeset] = ACTIONS(462), - [anon_sym_export] = ACTIONS(462), - [anon_sym_readonly] = ACTIONS(462), - [anon_sym_local] = ACTIONS(462), - [anon_sym_unset] = ACTIONS(464), - [anon_sym_unsetenv] = ACTIONS(464), - [anon_sym_AMP_GT] = ACTIONS(434), - [anon_sym_AMP_GT_GT] = ACTIONS(432), - [anon_sym_LT_AMP] = ACTIONS(432), - [anon_sym_GT_AMP] = ACTIONS(432), - [anon_sym_GT_PIPE] = ACTIONS(432), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(466), - [anon_sym_DOLLAR] = ACTIONS(468), - [sym__special_character] = ACTIONS(470), - [anon_sym_DQUOTE] = ACTIONS(472), - [sym_raw_string] = ACTIONS(474), - [sym_ansi_c_string] = ACTIONS(474), - [aux_sym_number_token1] = ACTIONS(476), - [aux_sym_number_token2] = ACTIONS(478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(482), - [anon_sym_BQUOTE] = ACTIONS(484), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(486), - [anon_sym_LT_LPAREN] = ACTIONS(488), - [anon_sym_GT_LPAREN] = ACTIONS(488), + [sym_variable_assignments] = STATE(2748), + [sym_subscript] = STATE(4360), + [sym_file_redirect] = STATE(1365), + [sym_arithmetic_expansion] = STATE(734), + [sym_brace_expression] = STATE(734), + [sym_concatenation] = STATE(1200), + [sym_string] = STATE(734), + [sym_translated_string] = STATE(734), + [sym_number] = STATE(734), + [sym_simple_expansion] = STATE(734), + [sym_expansion] = STATE(734), + [sym_command_substitution] = STATE(734), + [sym_process_substitution] = STATE(734), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(2974), + [aux_sym_command_repeat1] = STATE(941), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(544), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_SEMI_SEMI] = ACTIONS(552), + [anon_sym_SEMI_AMP] = ACTIONS(542), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(542), + [anon_sym_function] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(558), + [anon_sym_typeset] = ACTIONS(558), + [anon_sym_export] = ACTIONS(558), + [anon_sym_readonly] = ACTIONS(558), + [anon_sym_local] = ACTIONS(558), + [anon_sym_unset] = ACTIONS(560), + [anon_sym_unsetenv] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(550), + [anon_sym_AMP_GT_GT] = ACTIONS(548), + [anon_sym_LT_AMP] = ACTIONS(548), + [anon_sym_GT_AMP] = ACTIONS(548), + [anon_sym_GT_PIPE] = ACTIONS(548), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_DOLLAR] = ACTIONS(562), + [sym__special_character] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [sym_raw_string] = ACTIONS(568), + [sym_ansi_c_string] = ACTIONS(568), + [aux_sym_number_token1] = ACTIONS(570), + [aux_sym_number_token2] = ACTIONS(572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(578), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), + [anon_sym_LT_LPAREN] = ACTIONS(582), + [anon_sym_GT_LPAREN] = ACTIONS(582), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(490), - [sym_file_descriptor] = ACTIONS(492), - [sym_variable_name] = ACTIONS(494), - [sym__brace_start] = ACTIONS(496), + [sym_test_operator] = ACTIONS(584), + [sym_file_descriptor] = ACTIONS(586), + [sym_variable_name] = ACTIONS(588), + [sym__brace_start] = ACTIONS(590), }, [36] = { - [sym__statements] = STATE(3951), - [sym_redirected_statement] = STATE(2503), - [sym_for_statement] = STATE(2503), - [sym_c_style_for_statement] = STATE(2503), - [sym_while_statement] = STATE(2503), - [sym_if_statement] = STATE(2503), - [sym_case_statement] = STATE(2503), - [sym_function_definition] = STATE(2503), - [sym_compound_statement] = STATE(2503), - [sym_subshell] = STATE(2503), - [sym_pipeline] = STATE(2503), - [sym_list] = STATE(2503), - [sym_negated_command] = STATE(2503), - [sym_test_command] = STATE(2503), - [sym_declaration_command] = STATE(2503), - [sym_unset_command] = STATE(2503), - [sym_command] = STATE(2503), - [sym_command_name] = STATE(448), + [sym__statements] = STATE(4181), + [sym_redirected_statement] = STATE(2748), + [sym_for_statement] = STATE(2748), + [sym_c_style_for_statement] = STATE(2748), + [sym_while_statement] = STATE(2748), + [sym_if_statement] = STATE(2748), + [sym_case_statement] = STATE(2748), + [sym_function_definition] = STATE(2748), + [sym_compound_statement] = STATE(2748), + [sym_subshell] = STATE(2748), + [sym_pipeline] = STATE(2748), + [sym_list] = STATE(2748), + [sym_negated_command] = STATE(2748), + [sym_test_command] = STATE(2748), + [sym_declaration_command] = STATE(2748), + [sym_unset_command] = STATE(2748), + [sym_command] = STATE(2748), + [sym_command_name] = STATE(450), [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2503), - [sym_subscript] = STATE(4152), - [sym_file_redirect] = STATE(1302), - [sym_arithmetic_expansion] = STATE(688), - [sym_brace_expression] = STATE(688), - [sym_concatenation] = STATE(1020), - [sym_string] = STATE(688), - [sym_translated_string] = STATE(688), - [sym_number] = STATE(688), - [sym_simple_expansion] = STATE(688), - [sym_expansion] = STATE(688), - [sym_command_substitution] = STATE(688), - [sym_process_substitution] = STATE(688), - [aux_sym__statements_repeat1] = STATE(311), - [aux_sym_redirected_statement_repeat2] = STATE(2729), - [aux_sym_command_repeat1] = STATE(1023), - [aux_sym__literal_repeat1] = STATE(823), - [sym_word] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_GT] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_esac] = ACTIONS(542), - [anon_sym_SEMI_SEMI] = ACTIONS(550), - [anon_sym_SEMI_AMP] = ACTIONS(552), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(554), - [anon_sym_function] = ACTIONS(452), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(462), - [anon_sym_typeset] = ACTIONS(462), - [anon_sym_export] = ACTIONS(462), - [anon_sym_readonly] = ACTIONS(462), - [anon_sym_local] = ACTIONS(462), - [anon_sym_unset] = ACTIONS(464), - [anon_sym_unsetenv] = ACTIONS(464), - [anon_sym_AMP_GT] = ACTIONS(434), - [anon_sym_AMP_GT_GT] = ACTIONS(432), - [anon_sym_LT_AMP] = ACTIONS(432), - [anon_sym_GT_AMP] = ACTIONS(432), - [anon_sym_GT_PIPE] = ACTIONS(432), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(466), - [anon_sym_DOLLAR] = ACTIONS(468), - [sym__special_character] = ACTIONS(470), - [anon_sym_DQUOTE] = ACTIONS(472), - [sym_raw_string] = ACTIONS(474), - [sym_ansi_c_string] = ACTIONS(474), - [aux_sym_number_token1] = ACTIONS(476), - [aux_sym_number_token2] = ACTIONS(478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(482), - [anon_sym_BQUOTE] = ACTIONS(484), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(486), - [anon_sym_LT_LPAREN] = ACTIONS(488), - [anon_sym_GT_LPAREN] = ACTIONS(488), + [sym_variable_assignments] = STATE(2748), + [sym_subscript] = STATE(4360), + [sym_file_redirect] = STATE(1365), + [sym_arithmetic_expansion] = STATE(734), + [sym_brace_expression] = STATE(734), + [sym_concatenation] = STATE(1200), + [sym_string] = STATE(734), + [sym_translated_string] = STATE(734), + [sym_number] = STATE(734), + [sym_simple_expansion] = STATE(734), + [sym_expansion] = STATE(734), + [sym_command_substitution] = STATE(734), + [sym_process_substitution] = STATE(734), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(2974), + [aux_sym_command_repeat1] = STATE(941), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(544), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_SEMI_SEMI] = ACTIONS(592), + [anon_sym_SEMI_AMP] = ACTIONS(424), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(426), + [anon_sym_function] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(558), + [anon_sym_typeset] = ACTIONS(558), + [anon_sym_export] = ACTIONS(558), + [anon_sym_readonly] = ACTIONS(558), + [anon_sym_local] = ACTIONS(558), + [anon_sym_unset] = ACTIONS(560), + [anon_sym_unsetenv] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(550), + [anon_sym_AMP_GT_GT] = ACTIONS(548), + [anon_sym_LT_AMP] = ACTIONS(548), + [anon_sym_GT_AMP] = ACTIONS(548), + [anon_sym_GT_PIPE] = ACTIONS(548), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_DOLLAR] = ACTIONS(562), + [sym__special_character] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [sym_raw_string] = ACTIONS(568), + [sym_ansi_c_string] = ACTIONS(568), + [aux_sym_number_token1] = ACTIONS(570), + [aux_sym_number_token2] = ACTIONS(572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(578), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), + [anon_sym_LT_LPAREN] = ACTIONS(582), + [anon_sym_GT_LPAREN] = ACTIONS(582), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(490), - [sym_file_descriptor] = ACTIONS(492), - [sym_variable_name] = ACTIONS(494), - [sym__brace_start] = ACTIONS(496), + [sym_test_operator] = ACTIONS(584), + [sym_file_descriptor] = ACTIONS(586), + [sym_variable_name] = ACTIONS(588), + [sym__brace_start] = ACTIONS(590), }, [37] = { - [sym__statements] = STATE(3983), - [sym_redirected_statement] = STATE(2503), - [sym_for_statement] = STATE(2503), - [sym_c_style_for_statement] = STATE(2503), - [sym_while_statement] = STATE(2503), - [sym_if_statement] = STATE(2503), - [sym_case_statement] = STATE(2503), - [sym_function_definition] = STATE(2503), - [sym_compound_statement] = STATE(2503), - [sym_subshell] = STATE(2503), - [sym_pipeline] = STATE(2503), - [sym_list] = STATE(2503), - [sym_negated_command] = STATE(2503), - [sym_test_command] = STATE(2503), - [sym_declaration_command] = STATE(2503), - [sym_unset_command] = STATE(2503), - [sym_command] = STATE(2503), - [sym_command_name] = STATE(448), + [sym__statements] = STATE(4177), + [sym_redirected_statement] = STATE(2748), + [sym_for_statement] = STATE(2748), + [sym_c_style_for_statement] = STATE(2748), + [sym_while_statement] = STATE(2748), + [sym_if_statement] = STATE(2748), + [sym_case_statement] = STATE(2748), + [sym_function_definition] = STATE(2748), + [sym_compound_statement] = STATE(2748), + [sym_subshell] = STATE(2748), + [sym_pipeline] = STATE(2748), + [sym_list] = STATE(2748), + [sym_negated_command] = STATE(2748), + [sym_test_command] = STATE(2748), + [sym_declaration_command] = STATE(2748), + [sym_unset_command] = STATE(2748), + [sym_command] = STATE(2748), + [sym_command_name] = STATE(450), [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2503), - [sym_subscript] = STATE(4152), - [sym_file_redirect] = STATE(1302), - [sym_arithmetic_expansion] = STATE(688), - [sym_brace_expression] = STATE(688), - [sym_concatenation] = STATE(1020), - [sym_string] = STATE(688), - [sym_translated_string] = STATE(688), - [sym_number] = STATE(688), - [sym_simple_expansion] = STATE(688), - [sym_expansion] = STATE(688), - [sym_command_substitution] = STATE(688), - [sym_process_substitution] = STATE(688), - [aux_sym__statements_repeat1] = STATE(311), - [aux_sym_redirected_statement_repeat2] = STATE(2729), - [aux_sym_command_repeat1] = STATE(1023), - [aux_sym__literal_repeat1] = STATE(823), - [sym_word] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_GT] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_esac] = ACTIONS(556), - [anon_sym_SEMI_SEMI] = ACTIONS(558), - [anon_sym_SEMI_AMP] = ACTIONS(560), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(562), - [anon_sym_function] = ACTIONS(452), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(462), - [anon_sym_typeset] = ACTIONS(462), - [anon_sym_export] = ACTIONS(462), - [anon_sym_readonly] = ACTIONS(462), - [anon_sym_local] = ACTIONS(462), - [anon_sym_unset] = ACTIONS(464), - [anon_sym_unsetenv] = ACTIONS(464), - [anon_sym_AMP_GT] = ACTIONS(434), - [anon_sym_AMP_GT_GT] = ACTIONS(432), - [anon_sym_LT_AMP] = ACTIONS(432), - [anon_sym_GT_AMP] = ACTIONS(432), - [anon_sym_GT_PIPE] = ACTIONS(432), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(466), - [anon_sym_DOLLAR] = ACTIONS(468), - [sym__special_character] = ACTIONS(470), - [anon_sym_DQUOTE] = ACTIONS(472), - [sym_raw_string] = ACTIONS(474), - [sym_ansi_c_string] = ACTIONS(474), - [aux_sym_number_token1] = ACTIONS(476), - [aux_sym_number_token2] = ACTIONS(478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(482), - [anon_sym_BQUOTE] = ACTIONS(484), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(486), - [anon_sym_LT_LPAREN] = ACTIONS(488), - [anon_sym_GT_LPAREN] = ACTIONS(488), + [sym_variable_assignments] = STATE(2748), + [sym_subscript] = STATE(4360), + [sym_file_redirect] = STATE(1365), + [sym_arithmetic_expansion] = STATE(734), + [sym_brace_expression] = STATE(734), + [sym_concatenation] = STATE(1200), + [sym_string] = STATE(734), + [sym_translated_string] = STATE(734), + [sym_number] = STATE(734), + [sym_simple_expansion] = STATE(734), + [sym_expansion] = STATE(734), + [sym_command_substitution] = STATE(734), + [sym_process_substitution] = STATE(734), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(2974), + [aux_sym_command_repeat1] = STATE(941), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(544), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_SEMI_SEMI] = ACTIONS(594), + [anon_sym_SEMI_AMP] = ACTIONS(484), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(484), + [anon_sym_function] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(558), + [anon_sym_typeset] = ACTIONS(558), + [anon_sym_export] = ACTIONS(558), + [anon_sym_readonly] = ACTIONS(558), + [anon_sym_local] = ACTIONS(558), + [anon_sym_unset] = ACTIONS(560), + [anon_sym_unsetenv] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(550), + [anon_sym_AMP_GT_GT] = ACTIONS(548), + [anon_sym_LT_AMP] = ACTIONS(548), + [anon_sym_GT_AMP] = ACTIONS(548), + [anon_sym_GT_PIPE] = ACTIONS(548), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_DOLLAR] = ACTIONS(562), + [sym__special_character] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [sym_raw_string] = ACTIONS(568), + [sym_ansi_c_string] = ACTIONS(568), + [aux_sym_number_token1] = ACTIONS(570), + [aux_sym_number_token2] = ACTIONS(572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(578), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), + [anon_sym_LT_LPAREN] = ACTIONS(582), + [anon_sym_GT_LPAREN] = ACTIONS(582), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(490), - [sym_file_descriptor] = ACTIONS(492), - [sym_variable_name] = ACTIONS(494), - [sym__brace_start] = ACTIONS(496), + [sym_test_operator] = ACTIONS(584), + [sym_file_descriptor] = ACTIONS(586), + [sym_variable_name] = ACTIONS(588), + [sym__brace_start] = ACTIONS(590), }, [38] = { - [sym__statements] = STATE(3957), - [sym_redirected_statement] = STATE(2503), - [sym_for_statement] = STATE(2503), - [sym_c_style_for_statement] = STATE(2503), - [sym_while_statement] = STATE(2503), - [sym_if_statement] = STATE(2503), - [sym_case_statement] = STATE(2503), - [sym_function_definition] = STATE(2503), - [sym_compound_statement] = STATE(2503), - [sym_subshell] = STATE(2503), - [sym_pipeline] = STATE(2503), - [sym_list] = STATE(2503), - [sym_negated_command] = STATE(2503), - [sym_test_command] = STATE(2503), - [sym_declaration_command] = STATE(2503), - [sym_unset_command] = STATE(2503), - [sym_command] = STATE(2503), - [sym_command_name] = STATE(448), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2503), - [sym_subscript] = STATE(4152), - [sym_file_redirect] = STATE(1302), - [sym_arithmetic_expansion] = STATE(688), - [sym_brace_expression] = STATE(688), - [sym_concatenation] = STATE(1020), - [sym_string] = STATE(688), - [sym_translated_string] = STATE(688), - [sym_number] = STATE(688), - [sym_simple_expansion] = STATE(688), - [sym_expansion] = STATE(688), - [sym_command_substitution] = STATE(688), - [sym_process_substitution] = STATE(688), - [aux_sym__statements_repeat1] = STATE(311), - [aux_sym_redirected_statement_repeat2] = STATE(2729), - [aux_sym_command_repeat1] = STATE(1023), - [aux_sym__literal_repeat1] = STATE(823), - [sym_word] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_GT] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_esac] = ACTIONS(556), - [anon_sym_SEMI_SEMI] = ACTIONS(564), - [anon_sym_SEMI_AMP] = ACTIONS(566), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(568), - [anon_sym_function] = ACTIONS(452), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(462), - [anon_sym_typeset] = ACTIONS(462), - [anon_sym_export] = ACTIONS(462), - [anon_sym_readonly] = ACTIONS(462), - [anon_sym_local] = ACTIONS(462), - [anon_sym_unset] = ACTIONS(464), - [anon_sym_unsetenv] = ACTIONS(464), - [anon_sym_AMP_GT] = ACTIONS(434), - [anon_sym_AMP_GT_GT] = ACTIONS(432), - [anon_sym_LT_AMP] = ACTIONS(432), - [anon_sym_GT_AMP] = ACTIONS(432), - [anon_sym_GT_PIPE] = ACTIONS(432), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(466), - [anon_sym_DOLLAR] = ACTIONS(468), - [sym__special_character] = ACTIONS(470), - [anon_sym_DQUOTE] = ACTIONS(472), - [sym_raw_string] = ACTIONS(474), - [sym_ansi_c_string] = ACTIONS(474), - [aux_sym_number_token1] = ACTIONS(476), - [aux_sym_number_token2] = ACTIONS(478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(482), - [anon_sym_BQUOTE] = ACTIONS(484), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(486), - [anon_sym_LT_LPAREN] = ACTIONS(488), - [anon_sym_GT_LPAREN] = ACTIONS(488), + [sym__expression] = STATE(2096), + [sym_binary_expression] = STATE(2073), + [sym_ternary_expression] = STATE(2073), + [sym_unary_expression] = STATE(2073), + [sym_postfix_expression] = STATE(2073), + [sym_parenthesized_expression] = STATE(2073), + [sym_arithmetic_expansion] = STATE(1635), + [sym_brace_expression] = STATE(1635), + [sym_concatenation] = STATE(2073), + [sym_string] = STATE(1635), + [sym_translated_string] = STATE(1635), + [sym_number] = STATE(1635), + [sym_simple_expansion] = STATE(1635), + [sym_expansion] = STATE(1635), + [sym_command_substitution] = STATE(1635), + [sym_process_substitution] = STATE(1635), + [aux_sym__literal_repeat1] = STATE(1923), + [aux_sym_concatenation_repeat1] = STATE(408), + [sym_word] = ACTIONS(596), + [anon_sym_LPAREN_LPAREN] = ACTIONS(598), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_DASH_DASH] = ACTIONS(143), + [anon_sym_PLUS_EQ] = ACTIONS(143), + [anon_sym_DASH_EQ] = ACTIONS(143), + [anon_sym_STAR_EQ] = ACTIONS(143), + [anon_sym_SLASH_EQ] = ACTIONS(143), + [anon_sym_PERCENT_EQ] = ACTIONS(143), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(143), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(602), + [anon_sym_PIPE_PIPE] = ACTIONS(602), + [anon_sym_LT_LT] = ACTIONS(147), + [anon_sym_GT_GT] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_STAR_STAR] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_PIPE_AMP] = ACTIONS(178), + [anon_sym_BANG] = ACTIONS(607), + [anon_sym_RBRACK] = ACTIONS(600), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_AMP_GT] = ACTIONS(145), + [anon_sym_AMP_GT_GT] = ACTIONS(178), + [anon_sym_LT_AMP] = ACTIONS(178), + [anon_sym_GT_AMP] = ACTIONS(178), + [anon_sym_GT_PIPE] = ACTIONS(178), + [anon_sym_LT_LT_DASH] = ACTIONS(178), + [anon_sym_LT_LT_LT] = ACTIONS(178), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(143), + [aux_sym_unary_expression_token1] = ACTIONS(302), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(598), + [aux_sym_concatenation_token1] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(611), + [sym__special_character] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_raw_string] = ACTIONS(617), + [sym_ansi_c_string] = ACTIONS(617), + [aux_sym_number_token1] = ACTIONS(619), + [aux_sym_number_token2] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), + [anon_sym_LT_LPAREN] = ACTIONS(631), + [anon_sym_GT_LPAREN] = ACTIONS(631), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(490), - [sym_file_descriptor] = ACTIONS(492), - [sym_variable_name] = ACTIONS(494), - [sym__brace_start] = ACTIONS(496), + [sym_test_operator] = ACTIONS(633), + [sym_file_descriptor] = ACTIONS(178), + [sym__concat] = ACTIONS(609), + [sym__bare_dollar] = ACTIONS(178), + [sym__brace_start] = ACTIONS(635), }, [39] = { - [sym__statements] = STATE(4040), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(463), - [sym_variable_assignment] = STATE(643), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(4145), + [sym__statements] = STATE(4290), + [sym_redirected_statement] = STATE(2748), + [sym_for_statement] = STATE(2748), + [sym_c_style_for_statement] = STATE(2748), + [sym_while_statement] = STATE(2748), + [sym_if_statement] = STATE(2748), + [sym_case_statement] = STATE(2748), + [sym_function_definition] = STATE(2748), + [sym_compound_statement] = STATE(2748), + [sym_subshell] = STATE(2748), + [sym_pipeline] = STATE(2748), + [sym_list] = STATE(2748), + [sym_negated_command] = STATE(2748), + [sym_test_command] = STATE(2748), + [sym_declaration_command] = STATE(2748), + [sym_unset_command] = STATE(2748), + [sym_command] = STATE(2748), + [sym_command_name] = STATE(450), + [sym_variable_assignment] = STATE(624), + [sym_variable_assignments] = STATE(2748), + [sym_subscript] = STATE(4360), [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(725), - [sym_brace_expression] = STATE(725), - [sym_concatenation] = STATE(1170), - [sym_string] = STATE(725), - [sym_translated_string] = STATE(725), - [sym_number] = STATE(725), - [sym_simple_expansion] = STATE(725), - [sym_expansion] = STATE(725), - [sym_command_substitution] = STATE(725), - [sym_process_substitution] = STATE(725), - [aux_sym__statements_repeat1] = STATE(313), - [aux_sym_redirected_statement_repeat2] = STATE(2771), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(896), - [sym_word] = ACTIONS(570), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_SEMI_SEMI] = ACTIONS(576), - [anon_sym_SEMI_AMP] = ACTIONS(534), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(534), - [anon_sym_function] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(582), - [anon_sym_typeset] = ACTIONS(582), - [anon_sym_export] = ACTIONS(582), - [anon_sym_readonly] = ACTIONS(582), - [anon_sym_local] = ACTIONS(582), - [anon_sym_unset] = ACTIONS(584), - [anon_sym_unsetenv] = ACTIONS(584), - [anon_sym_AMP_GT] = ACTIONS(574), - [anon_sym_AMP_GT_GT] = ACTIONS(572), - [anon_sym_LT_AMP] = ACTIONS(572), - [anon_sym_GT_AMP] = ACTIONS(572), - [anon_sym_GT_PIPE] = ACTIONS(572), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [sym__special_character] = ACTIONS(590), - [anon_sym_DQUOTE] = ACTIONS(592), - [sym_raw_string] = ACTIONS(594), - [sym_ansi_c_string] = ACTIONS(594), - [aux_sym_number_token1] = ACTIONS(596), - [aux_sym_number_token2] = ACTIONS(598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(602), - [anon_sym_BQUOTE] = ACTIONS(604), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(608), - [anon_sym_GT_LPAREN] = ACTIONS(608), + [sym_arithmetic_expansion] = STATE(734), + [sym_brace_expression] = STATE(734), + [sym_concatenation] = STATE(1200), + [sym_string] = STATE(734), + [sym_translated_string] = STATE(734), + [sym_number] = STATE(734), + [sym_simple_expansion] = STATE(734), + [sym_expansion] = STATE(734), + [sym_command_substitution] = STATE(734), + [sym_process_substitution] = STATE(734), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(2974), + [aux_sym_command_repeat1] = STATE(941), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(544), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_SEMI_SEMI] = ACTIONS(637), + [anon_sym_SEMI_AMP] = ACTIONS(476), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(478), + [anon_sym_function] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(558), + [anon_sym_typeset] = ACTIONS(558), + [anon_sym_export] = ACTIONS(558), + [anon_sym_readonly] = ACTIONS(558), + [anon_sym_local] = ACTIONS(558), + [anon_sym_unset] = ACTIONS(560), + [anon_sym_unsetenv] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(550), + [anon_sym_AMP_GT_GT] = ACTIONS(548), + [anon_sym_LT_AMP] = ACTIONS(548), + [anon_sym_GT_AMP] = ACTIONS(548), + [anon_sym_GT_PIPE] = ACTIONS(548), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_DOLLAR] = ACTIONS(562), + [sym__special_character] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [sym_raw_string] = ACTIONS(568), + [sym_ansi_c_string] = ACTIONS(568), + [aux_sym_number_token1] = ACTIONS(570), + [aux_sym_number_token2] = ACTIONS(572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(578), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), + [anon_sym_LT_LPAREN] = ACTIONS(582), + [anon_sym_GT_LPAREN] = ACTIONS(582), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(610), - [sym_file_descriptor] = ACTIONS(612), - [sym_variable_name] = ACTIONS(614), - [sym__brace_start] = ACTIONS(616), + [sym_test_operator] = ACTIONS(584), + [sym_file_descriptor] = ACTIONS(586), + [sym_variable_name] = ACTIONS(588), + [sym__brace_start] = ACTIONS(590), }, [40] = { - [sym__statements] = STATE(4086), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(463), - [sym_variable_assignment] = STATE(643), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(4145), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(725), - [sym_brace_expression] = STATE(725), - [sym_concatenation] = STATE(1170), - [sym_string] = STATE(725), - [sym_translated_string] = STATE(725), - [sym_number] = STATE(725), - [sym_simple_expansion] = STATE(725), - [sym_expansion] = STATE(725), - [sym_command_substitution] = STATE(725), - [sym_process_substitution] = STATE(725), - [aux_sym__statements_repeat1] = STATE(313), - [aux_sym_redirected_statement_repeat2] = STATE(2771), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(896), - [sym_word] = ACTIONS(570), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_SEMI_SEMI] = ACTIONS(618), - [anon_sym_SEMI_AMP] = ACTIONS(502), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(502), - [anon_sym_function] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(582), - [anon_sym_typeset] = ACTIONS(582), - [anon_sym_export] = ACTIONS(582), - [anon_sym_readonly] = ACTIONS(582), - [anon_sym_local] = ACTIONS(582), - [anon_sym_unset] = ACTIONS(584), - [anon_sym_unsetenv] = ACTIONS(584), - [anon_sym_AMP_GT] = ACTIONS(574), - [anon_sym_AMP_GT_GT] = ACTIONS(572), - [anon_sym_LT_AMP] = ACTIONS(572), - [anon_sym_GT_AMP] = ACTIONS(572), - [anon_sym_GT_PIPE] = ACTIONS(572), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [sym__special_character] = ACTIONS(590), - [anon_sym_DQUOTE] = ACTIONS(592), - [sym_raw_string] = ACTIONS(594), - [sym_ansi_c_string] = ACTIONS(594), - [aux_sym_number_token1] = ACTIONS(596), - [aux_sym_number_token2] = ACTIONS(598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(602), - [anon_sym_BQUOTE] = ACTIONS(604), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(608), - [anon_sym_GT_LPAREN] = ACTIONS(608), + [aux_sym__statements2] = STATE(40), + [sym_redirected_statement] = STATE(2934), + [sym_for_statement] = STATE(2934), + [sym_c_style_for_statement] = STATE(2934), + [sym_while_statement] = STATE(2934), + [sym_if_statement] = STATE(2934), + [sym_case_statement] = STATE(2934), + [sym_function_definition] = STATE(2934), + [sym_compound_statement] = STATE(2934), + [sym_subshell] = STATE(2934), + [sym_pipeline] = STATE(2934), + [sym_list] = STATE(2934), + [sym_negated_command] = STATE(2934), + [sym_test_command] = STATE(2934), + [sym_declaration_command] = STATE(2934), + [sym_unset_command] = STATE(2934), + [sym_command] = STATE(2934), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(759), + [sym_variable_assignments] = STATE(2934), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(639), + [anon_sym_for] = ACTIONS(642), + [anon_sym_select] = ACTIONS(645), + [anon_sym_LPAREN_LPAREN] = ACTIONS(648), + [anon_sym_GT_GT] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_while] = ACTIONS(660), + [anon_sym_until] = ACTIONS(660), + [anon_sym_done] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_fi] = ACTIONS(663), + [anon_sym_elif] = ACTIONS(663), + [anon_sym_else] = ACTIONS(663), + [anon_sym_case] = ACTIONS(668), + [anon_sym_function] = ACTIONS(671), + [anon_sym_LBRACE] = ACTIONS(674), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_LBRACK_LBRACK] = ACTIONS(683), + [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_unset] = ACTIONS(689), + [anon_sym_unsetenv] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(654), + [anon_sym_AMP_GT_GT] = ACTIONS(651), + [anon_sym_LT_AMP] = ACTIONS(651), + [anon_sym_GT_AMP] = ACTIONS(651), + [anon_sym_GT_PIPE] = ACTIONS(651), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(648), + [anon_sym_DOLLAR] = ACTIONS(692), + [sym__special_character] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(698), + [sym_raw_string] = ACTIONS(701), + [sym_ansi_c_string] = ACTIONS(701), + [aux_sym_number_token1] = ACTIONS(704), + [aux_sym_number_token2] = ACTIONS(707), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(716), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(719), + [anon_sym_LT_LPAREN] = ACTIONS(722), + [anon_sym_GT_LPAREN] = ACTIONS(722), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(610), - [sym_file_descriptor] = ACTIONS(612), - [sym_variable_name] = ACTIONS(614), - [sym__brace_start] = ACTIONS(616), + [sym_test_operator] = ACTIONS(725), + [sym_file_descriptor] = ACTIONS(728), + [sym_variable_name] = ACTIONS(731), + [sym__brace_start] = ACTIONS(734), }, [41] = { - [sym__statements] = STATE(4076), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(463), - [sym_variable_assignment] = STATE(643), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(4145), + [sym__statements] = STATE(4229), + [sym_redirected_statement] = STATE(2748), + [sym_for_statement] = STATE(2748), + [sym_c_style_for_statement] = STATE(2748), + [sym_while_statement] = STATE(2748), + [sym_if_statement] = STATE(2748), + [sym_case_statement] = STATE(2748), + [sym_function_definition] = STATE(2748), + [sym_compound_statement] = STATE(2748), + [sym_subshell] = STATE(2748), + [sym_pipeline] = STATE(2748), + [sym_list] = STATE(2748), + [sym_negated_command] = STATE(2748), + [sym_test_command] = STATE(2748), + [sym_declaration_command] = STATE(2748), + [sym_unset_command] = STATE(2748), + [sym_command] = STATE(2748), + [sym_command_name] = STATE(450), + [sym_variable_assignment] = STATE(624), + [sym_variable_assignments] = STATE(2748), + [sym_subscript] = STATE(4360), [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(725), - [sym_brace_expression] = STATE(725), - [sym_concatenation] = STATE(1170), - [sym_string] = STATE(725), - [sym_translated_string] = STATE(725), - [sym_number] = STATE(725), - [sym_simple_expansion] = STATE(725), - [sym_expansion] = STATE(725), - [sym_command_substitution] = STATE(725), - [sym_process_substitution] = STATE(725), - [aux_sym__statements_repeat1] = STATE(313), - [aux_sym_redirected_statement_repeat2] = STATE(2771), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(896), - [sym_word] = ACTIONS(570), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_SEMI_SEMI] = ACTIONS(620), - [anon_sym_SEMI_AMP] = ACTIONS(448), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(450), - [anon_sym_function] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(582), - [anon_sym_typeset] = ACTIONS(582), - [anon_sym_export] = ACTIONS(582), - [anon_sym_readonly] = ACTIONS(582), - [anon_sym_local] = ACTIONS(582), - [anon_sym_unset] = ACTIONS(584), - [anon_sym_unsetenv] = ACTIONS(584), - [anon_sym_AMP_GT] = ACTIONS(574), - [anon_sym_AMP_GT_GT] = ACTIONS(572), - [anon_sym_LT_AMP] = ACTIONS(572), - [anon_sym_GT_AMP] = ACTIONS(572), - [anon_sym_GT_PIPE] = ACTIONS(572), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [sym__special_character] = ACTIONS(590), - [anon_sym_DQUOTE] = ACTIONS(592), - [sym_raw_string] = ACTIONS(594), - [sym_ansi_c_string] = ACTIONS(594), - [aux_sym_number_token1] = ACTIONS(596), - [aux_sym_number_token2] = ACTIONS(598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(602), - [anon_sym_BQUOTE] = ACTIONS(604), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(608), - [anon_sym_GT_LPAREN] = ACTIONS(608), + [sym_arithmetic_expansion] = STATE(734), + [sym_brace_expression] = STATE(734), + [sym_concatenation] = STATE(1200), + [sym_string] = STATE(734), + [sym_translated_string] = STATE(734), + [sym_number] = STATE(734), + [sym_simple_expansion] = STATE(734), + [sym_expansion] = STATE(734), + [sym_command_substitution] = STATE(734), + [sym_process_substitution] = STATE(734), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(2974), + [aux_sym_command_repeat1] = STATE(941), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(544), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_SEMI_SEMI] = ACTIONS(737), + [anon_sym_SEMI_AMP] = ACTIONS(490), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(492), + [anon_sym_function] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(558), + [anon_sym_typeset] = ACTIONS(558), + [anon_sym_export] = ACTIONS(558), + [anon_sym_readonly] = ACTIONS(558), + [anon_sym_local] = ACTIONS(558), + [anon_sym_unset] = ACTIONS(560), + [anon_sym_unsetenv] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(550), + [anon_sym_AMP_GT_GT] = ACTIONS(548), + [anon_sym_LT_AMP] = ACTIONS(548), + [anon_sym_GT_AMP] = ACTIONS(548), + [anon_sym_GT_PIPE] = ACTIONS(548), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_DOLLAR] = ACTIONS(562), + [sym__special_character] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [sym_raw_string] = ACTIONS(568), + [sym_ansi_c_string] = ACTIONS(568), + [aux_sym_number_token1] = ACTIONS(570), + [aux_sym_number_token2] = ACTIONS(572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(578), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), + [anon_sym_LT_LPAREN] = ACTIONS(582), + [anon_sym_GT_LPAREN] = ACTIONS(582), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(610), - [sym_file_descriptor] = ACTIONS(612), - [sym_variable_name] = ACTIONS(614), - [sym__brace_start] = ACTIONS(616), + [sym_test_operator] = ACTIONS(584), + [sym_file_descriptor] = ACTIONS(586), + [sym_variable_name] = ACTIONS(588), + [sym__brace_start] = ACTIONS(590), }, [42] = { - [sym__expression] = STATE(2011), - [sym_binary_expression] = STATE(1898), - [sym_ternary_expression] = STATE(1898), - [sym_unary_expression] = STATE(1898), - [sym_postfix_expression] = STATE(1898), - [sym_parenthesized_expression] = STATE(1898), - [sym_arithmetic_expansion] = STATE(1559), - [sym_brace_expression] = STATE(1559), - [sym_concatenation] = STATE(1898), - [sym_string] = STATE(1559), - [sym_translated_string] = STATE(1559), - [sym_number] = STATE(1559), - [sym_simple_expansion] = STATE(1559), - [sym_expansion] = STATE(1559), - [sym_command_substitution] = STATE(1559), - [sym_process_substitution] = STATE(1559), - [aux_sym__literal_repeat1] = STATE(1584), - [aux_sym_concatenation_repeat1] = STATE(415), - [sym_word] = ACTIONS(622), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_PLUS_PLUS] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(197), - [anon_sym_PLUS_EQ] = ACTIONS(197), - [anon_sym_DASH_EQ] = ACTIONS(197), - [anon_sym_STAR_EQ] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(197), - [anon_sym_LT_LT_EQ] = ACTIONS(624), - [anon_sym_GT_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_EQ] = ACTIONS(624), - [anon_sym_CARET_EQ] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(624), - [anon_sym_EQ_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_AMP] = ACTIONS(626), - [anon_sym_PIPE_PIPE] = ACTIONS(626), - [anon_sym_LT_LT] = ACTIONS(199), - [anon_sym_GT_GT] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_STAR_STAR] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_PIPE_AMP] = ACTIONS(232), - [anon_sym_BANG] = ACTIONS(631), - [anon_sym_RBRACK] = ACTIONS(624), - [anon_sym_EQ_TILDE] = ACTIONS(199), - [anon_sym_AMP_GT] = ACTIONS(195), - [anon_sym_AMP_GT_GT] = ACTIONS(232), - [anon_sym_LT_AMP] = ACTIONS(232), - [anon_sym_GT_AMP] = ACTIONS(232), - [anon_sym_GT_PIPE] = ACTIONS(232), - [anon_sym_LT_LT_DASH] = ACTIONS(232), - [anon_sym_LT_LT_LT] = ACTIONS(232), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(197), - [aux_sym_unary_expression_token1] = ACTIONS(282), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(633), - [aux_sym_concatenation_token1] = ACTIONS(635), - [anon_sym_DOLLAR] = ACTIONS(637), - [sym__special_character] = ACTIONS(639), - [anon_sym_DQUOTE] = ACTIONS(641), - [sym_raw_string] = ACTIONS(643), - [sym_ansi_c_string] = ACTIONS(643), - [aux_sym_number_token1] = ACTIONS(645), - [aux_sym_number_token2] = ACTIONS(647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(649), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(651), - [anon_sym_BQUOTE] = ACTIONS(653), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(655), - [anon_sym_LT_LPAREN] = ACTIONS(657), - [anon_sym_GT_LPAREN] = ACTIONS(657), + [sym__statements] = STATE(4261), + [sym_redirected_statement] = STATE(2748), + [sym_for_statement] = STATE(2748), + [sym_c_style_for_statement] = STATE(2748), + [sym_while_statement] = STATE(2748), + [sym_if_statement] = STATE(2748), + [sym_case_statement] = STATE(2748), + [sym_function_definition] = STATE(2748), + [sym_compound_statement] = STATE(2748), + [sym_subshell] = STATE(2748), + [sym_pipeline] = STATE(2748), + [sym_list] = STATE(2748), + [sym_negated_command] = STATE(2748), + [sym_test_command] = STATE(2748), + [sym_declaration_command] = STATE(2748), + [sym_unset_command] = STATE(2748), + [sym_command] = STATE(2748), + [sym_command_name] = STATE(450), + [sym_variable_assignment] = STATE(624), + [sym_variable_assignments] = STATE(2748), + [sym_subscript] = STATE(4360), + [sym_file_redirect] = STATE(1365), + [sym_arithmetic_expansion] = STATE(734), + [sym_brace_expression] = STATE(734), + [sym_concatenation] = STATE(1200), + [sym_string] = STATE(734), + [sym_translated_string] = STATE(734), + [sym_number] = STATE(734), + [sym_simple_expansion] = STATE(734), + [sym_expansion] = STATE(734), + [sym_command_substitution] = STATE(734), + [sym_process_substitution] = STATE(734), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(2974), + [aux_sym_command_repeat1] = STATE(941), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(544), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_SEMI_SEMI] = ACTIONS(739), + [anon_sym_SEMI_AMP] = ACTIONS(518), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(518), + [anon_sym_function] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(558), + [anon_sym_typeset] = ACTIONS(558), + [anon_sym_export] = ACTIONS(558), + [anon_sym_readonly] = ACTIONS(558), + [anon_sym_local] = ACTIONS(558), + [anon_sym_unset] = ACTIONS(560), + [anon_sym_unsetenv] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(550), + [anon_sym_AMP_GT_GT] = ACTIONS(548), + [anon_sym_LT_AMP] = ACTIONS(548), + [anon_sym_GT_AMP] = ACTIONS(548), + [anon_sym_GT_PIPE] = ACTIONS(548), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_DOLLAR] = ACTIONS(562), + [sym__special_character] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [sym_raw_string] = ACTIONS(568), + [sym_ansi_c_string] = ACTIONS(568), + [aux_sym_number_token1] = ACTIONS(570), + [aux_sym_number_token2] = ACTIONS(572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(578), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), + [anon_sym_LT_LPAREN] = ACTIONS(582), + [anon_sym_GT_LPAREN] = ACTIONS(582), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(659), - [sym_file_descriptor] = ACTIONS(232), - [sym__concat] = ACTIONS(635), - [sym__bare_dollar] = ACTIONS(232), - [sym__brace_start] = ACTIONS(661), + [sym_test_operator] = ACTIONS(584), + [sym_file_descriptor] = ACTIONS(586), + [sym_variable_name] = ACTIONS(588), + [sym__brace_start] = ACTIONS(590), }, [43] = { - [sym__statements] = STATE(4058), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(463), - [sym_variable_assignment] = STATE(643), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(4145), + [sym__statements] = STATE(4211), + [sym_redirected_statement] = STATE(2748), + [sym_for_statement] = STATE(2748), + [sym_c_style_for_statement] = STATE(2748), + [sym_while_statement] = STATE(2748), + [sym_if_statement] = STATE(2748), + [sym_case_statement] = STATE(2748), + [sym_function_definition] = STATE(2748), + [sym_compound_statement] = STATE(2748), + [sym_subshell] = STATE(2748), + [sym_pipeline] = STATE(2748), + [sym_list] = STATE(2748), + [sym_negated_command] = STATE(2748), + [sym_test_command] = STATE(2748), + [sym_declaration_command] = STATE(2748), + [sym_unset_command] = STATE(2748), + [sym_command] = STATE(2748), + [sym_command_name] = STATE(450), + [sym_variable_assignment] = STATE(624), + [sym_variable_assignments] = STATE(2748), + [sym_subscript] = STATE(4360), [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(725), - [sym_brace_expression] = STATE(725), - [sym_concatenation] = STATE(1170), - [sym_string] = STATE(725), - [sym_translated_string] = STATE(725), - [sym_number] = STATE(725), - [sym_simple_expansion] = STATE(725), - [sym_expansion] = STATE(725), - [sym_command_substitution] = STATE(725), - [sym_process_substitution] = STATE(725), - [aux_sym__statements_repeat1] = STATE(313), - [aux_sym_redirected_statement_repeat2] = STATE(2771), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(896), - [sym_word] = ACTIONS(570), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_SEMI_SEMI] = ACTIONS(663), - [anon_sym_SEMI_AMP] = ACTIONS(526), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(528), - [anon_sym_function] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(582), - [anon_sym_typeset] = ACTIONS(582), - [anon_sym_export] = ACTIONS(582), - [anon_sym_readonly] = ACTIONS(582), - [anon_sym_local] = ACTIONS(582), - [anon_sym_unset] = ACTIONS(584), - [anon_sym_unsetenv] = ACTIONS(584), - [anon_sym_AMP_GT] = ACTIONS(574), - [anon_sym_AMP_GT_GT] = ACTIONS(572), - [anon_sym_LT_AMP] = ACTIONS(572), - [anon_sym_GT_AMP] = ACTIONS(572), - [anon_sym_GT_PIPE] = ACTIONS(572), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [sym__special_character] = ACTIONS(590), - [anon_sym_DQUOTE] = ACTIONS(592), - [sym_raw_string] = ACTIONS(594), - [sym_ansi_c_string] = ACTIONS(594), - [aux_sym_number_token1] = ACTIONS(596), - [aux_sym_number_token2] = ACTIONS(598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(602), - [anon_sym_BQUOTE] = ACTIONS(604), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(608), - [anon_sym_GT_LPAREN] = ACTIONS(608), + [sym_arithmetic_expansion] = STATE(734), + [sym_brace_expression] = STATE(734), + [sym_concatenation] = STATE(1200), + [sym_string] = STATE(734), + [sym_translated_string] = STATE(734), + [sym_number] = STATE(734), + [sym_simple_expansion] = STATE(734), + [sym_expansion] = STATE(734), + [sym_command_substitution] = STATE(734), + [sym_process_substitution] = STATE(734), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(2974), + [aux_sym_command_repeat1] = STATE(941), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(544), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_SEMI_SEMI] = ACTIONS(741), + [anon_sym_SEMI_AMP] = ACTIONS(496), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(498), + [anon_sym_function] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(558), + [anon_sym_typeset] = ACTIONS(558), + [anon_sym_export] = ACTIONS(558), + [anon_sym_readonly] = ACTIONS(558), + [anon_sym_local] = ACTIONS(558), + [anon_sym_unset] = ACTIONS(560), + [anon_sym_unsetenv] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(550), + [anon_sym_AMP_GT_GT] = ACTIONS(548), + [anon_sym_LT_AMP] = ACTIONS(548), + [anon_sym_GT_AMP] = ACTIONS(548), + [anon_sym_GT_PIPE] = ACTIONS(548), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_DOLLAR] = ACTIONS(562), + [sym__special_character] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [sym_raw_string] = ACTIONS(568), + [sym_ansi_c_string] = ACTIONS(568), + [aux_sym_number_token1] = ACTIONS(570), + [aux_sym_number_token2] = ACTIONS(572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(578), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), + [anon_sym_LT_LPAREN] = ACTIONS(582), + [anon_sym_GT_LPAREN] = ACTIONS(582), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(610), - [sym_file_descriptor] = ACTIONS(612), - [sym_variable_name] = ACTIONS(614), - [sym__brace_start] = ACTIONS(616), + [sym_test_operator] = ACTIONS(584), + [sym_file_descriptor] = ACTIONS(586), + [sym_variable_name] = ACTIONS(588), + [sym__brace_start] = ACTIONS(590), }, [44] = { - [sym__statements] = STATE(3989), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(463), - [sym_variable_assignment] = STATE(643), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(4145), + [sym__statements] = STATE(4240), + [sym_redirected_statement] = STATE(2748), + [sym_for_statement] = STATE(2748), + [sym_c_style_for_statement] = STATE(2748), + [sym_while_statement] = STATE(2748), + [sym_if_statement] = STATE(2748), + [sym_case_statement] = STATE(2748), + [sym_function_definition] = STATE(2748), + [sym_compound_statement] = STATE(2748), + [sym_subshell] = STATE(2748), + [sym_pipeline] = STATE(2748), + [sym_list] = STATE(2748), + [sym_negated_command] = STATE(2748), + [sym_test_command] = STATE(2748), + [sym_declaration_command] = STATE(2748), + [sym_unset_command] = STATE(2748), + [sym_command] = STATE(2748), + [sym_command_name] = STATE(450), + [sym_variable_assignment] = STATE(624), + [sym_variable_assignments] = STATE(2748), + [sym_subscript] = STATE(4360), [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(725), - [sym_brace_expression] = STATE(725), - [sym_concatenation] = STATE(1170), - [sym_string] = STATE(725), - [sym_translated_string] = STATE(725), - [sym_number] = STATE(725), - [sym_simple_expansion] = STATE(725), - [sym_expansion] = STATE(725), - [sym_command_substitution] = STATE(725), - [sym_process_substitution] = STATE(725), - [aux_sym__statements_repeat1] = STATE(313), - [aux_sym_redirected_statement_repeat2] = STATE(2771), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(896), - [sym_word] = ACTIONS(570), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_SEMI_SEMI] = ACTIONS(665), - [anon_sym_SEMI_AMP] = ACTIONS(546), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(548), - [anon_sym_function] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(582), - [anon_sym_typeset] = ACTIONS(582), - [anon_sym_export] = ACTIONS(582), - [anon_sym_readonly] = ACTIONS(582), - [anon_sym_local] = ACTIONS(582), - [anon_sym_unset] = ACTIONS(584), - [anon_sym_unsetenv] = ACTIONS(584), - [anon_sym_AMP_GT] = ACTIONS(574), - [anon_sym_AMP_GT_GT] = ACTIONS(572), - [anon_sym_LT_AMP] = ACTIONS(572), - [anon_sym_GT_AMP] = ACTIONS(572), - [anon_sym_GT_PIPE] = ACTIONS(572), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [sym__special_character] = ACTIONS(590), - [anon_sym_DQUOTE] = ACTIONS(592), - [sym_raw_string] = ACTIONS(594), - [sym_ansi_c_string] = ACTIONS(594), - [aux_sym_number_token1] = ACTIONS(596), - [aux_sym_number_token2] = ACTIONS(598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(602), - [anon_sym_BQUOTE] = ACTIONS(604), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(608), - [anon_sym_GT_LPAREN] = ACTIONS(608), + [sym_arithmetic_expansion] = STATE(734), + [sym_brace_expression] = STATE(734), + [sym_concatenation] = STATE(1200), + [sym_string] = STATE(734), + [sym_translated_string] = STATE(734), + [sym_number] = STATE(734), + [sym_simple_expansion] = STATE(734), + [sym_expansion] = STATE(734), + [sym_command_substitution] = STATE(734), + [sym_process_substitution] = STATE(734), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(2974), + [aux_sym_command_repeat1] = STATE(941), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(544), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_SEMI_SEMI] = ACTIONS(743), + [anon_sym_SEMI_AMP] = ACTIONS(536), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(536), + [anon_sym_function] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(558), + [anon_sym_typeset] = ACTIONS(558), + [anon_sym_export] = ACTIONS(558), + [anon_sym_readonly] = ACTIONS(558), + [anon_sym_local] = ACTIONS(558), + [anon_sym_unset] = ACTIONS(560), + [anon_sym_unsetenv] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(550), + [anon_sym_AMP_GT_GT] = ACTIONS(548), + [anon_sym_LT_AMP] = ACTIONS(548), + [anon_sym_GT_AMP] = ACTIONS(548), + [anon_sym_GT_PIPE] = ACTIONS(548), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_DOLLAR] = ACTIONS(562), + [sym__special_character] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [sym_raw_string] = ACTIONS(568), + [sym_ansi_c_string] = ACTIONS(568), + [aux_sym_number_token1] = ACTIONS(570), + [aux_sym_number_token2] = ACTIONS(572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(578), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), + [anon_sym_LT_LPAREN] = ACTIONS(582), + [anon_sym_GT_LPAREN] = ACTIONS(582), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(610), - [sym_file_descriptor] = ACTIONS(612), - [sym_variable_name] = ACTIONS(614), - [sym__brace_start] = ACTIONS(616), + [sym_test_operator] = ACTIONS(584), + [sym_file_descriptor] = ACTIONS(586), + [sym_variable_name] = ACTIONS(588), + [sym__brace_start] = ACTIONS(590), }, [45] = { - [sym__statements] = STATE(3994), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(463), - [sym_variable_assignment] = STATE(643), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(4145), + [sym__statements] = STATE(4269), + [sym_redirected_statement] = STATE(2748), + [sym_for_statement] = STATE(2748), + [sym_c_style_for_statement] = STATE(2748), + [sym_while_statement] = STATE(2748), + [sym_if_statement] = STATE(2748), + [sym_case_statement] = STATE(2748), + [sym_function_definition] = STATE(2748), + [sym_compound_statement] = STATE(2748), + [sym_subshell] = STATE(2748), + [sym_pipeline] = STATE(2748), + [sym_list] = STATE(2748), + [sym_negated_command] = STATE(2748), + [sym_test_command] = STATE(2748), + [sym_declaration_command] = STATE(2748), + [sym_unset_command] = STATE(2748), + [sym_command] = STATE(2748), + [sym_command_name] = STATE(450), + [sym_variable_assignment] = STATE(624), + [sym_variable_assignments] = STATE(2748), + [sym_subscript] = STATE(4360), [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(725), - [sym_brace_expression] = STATE(725), - [sym_concatenation] = STATE(1170), - [sym_string] = STATE(725), - [sym_translated_string] = STATE(725), - [sym_number] = STATE(725), - [sym_simple_expansion] = STATE(725), - [sym_expansion] = STATE(725), - [sym_command_substitution] = STATE(725), - [sym_process_substitution] = STATE(725), - [aux_sym__statements_repeat1] = STATE(313), - [aux_sym_redirected_statement_repeat2] = STATE(2771), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(896), - [sym_word] = ACTIONS(570), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_SEMI_SEMI] = ACTIONS(667), - [anon_sym_SEMI_AMP] = ACTIONS(552), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(554), - [anon_sym_function] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(582), - [anon_sym_typeset] = ACTIONS(582), - [anon_sym_export] = ACTIONS(582), - [anon_sym_readonly] = ACTIONS(582), - [anon_sym_local] = ACTIONS(582), - [anon_sym_unset] = ACTIONS(584), - [anon_sym_unsetenv] = ACTIONS(584), - [anon_sym_AMP_GT] = ACTIONS(574), - [anon_sym_AMP_GT_GT] = ACTIONS(572), - [anon_sym_LT_AMP] = ACTIONS(572), - [anon_sym_GT_AMP] = ACTIONS(572), - [anon_sym_GT_PIPE] = ACTIONS(572), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [sym__special_character] = ACTIONS(590), - [anon_sym_DQUOTE] = ACTIONS(592), - [sym_raw_string] = ACTIONS(594), - [sym_ansi_c_string] = ACTIONS(594), - [aux_sym_number_token1] = ACTIONS(596), - [aux_sym_number_token2] = ACTIONS(598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(602), - [anon_sym_BQUOTE] = ACTIONS(604), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(608), - [anon_sym_GT_LPAREN] = ACTIONS(608), + [sym_arithmetic_expansion] = STATE(734), + [sym_brace_expression] = STATE(734), + [sym_concatenation] = STATE(1200), + [sym_string] = STATE(734), + [sym_translated_string] = STATE(734), + [sym_number] = STATE(734), + [sym_simple_expansion] = STATE(734), + [sym_expansion] = STATE(734), + [sym_command_substitution] = STATE(734), + [sym_process_substitution] = STATE(734), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(2974), + [aux_sym_command_repeat1] = STATE(941), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(544), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_SEMI_SEMI] = ACTIONS(745), + [anon_sym_SEMI_AMP] = ACTIONS(504), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(506), + [anon_sym_function] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(558), + [anon_sym_typeset] = ACTIONS(558), + [anon_sym_export] = ACTIONS(558), + [anon_sym_readonly] = ACTIONS(558), + [anon_sym_local] = ACTIONS(558), + [anon_sym_unset] = ACTIONS(560), + [anon_sym_unsetenv] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(550), + [anon_sym_AMP_GT_GT] = ACTIONS(548), + [anon_sym_LT_AMP] = ACTIONS(548), + [anon_sym_GT_AMP] = ACTIONS(548), + [anon_sym_GT_PIPE] = ACTIONS(548), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_DOLLAR] = ACTIONS(562), + [sym__special_character] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [sym_raw_string] = ACTIONS(568), + [sym_ansi_c_string] = ACTIONS(568), + [aux_sym_number_token1] = ACTIONS(570), + [aux_sym_number_token2] = ACTIONS(572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(578), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), + [anon_sym_LT_LPAREN] = ACTIONS(582), + [anon_sym_GT_LPAREN] = ACTIONS(582), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(610), - [sym_file_descriptor] = ACTIONS(612), - [sym_variable_name] = ACTIONS(614), - [sym__brace_start] = ACTIONS(616), + [sym_test_operator] = ACTIONS(584), + [sym_file_descriptor] = ACTIONS(586), + [sym_variable_name] = ACTIONS(588), + [sym__brace_start] = ACTIONS(590), }, [46] = { - [sym__statements] = STATE(4019), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(463), - [sym_variable_assignment] = STATE(643), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(4145), + [sym__statements] = STATE(4220), + [sym_redirected_statement] = STATE(2748), + [sym_for_statement] = STATE(2748), + [sym_c_style_for_statement] = STATE(2748), + [sym_while_statement] = STATE(2748), + [sym_if_statement] = STATE(2748), + [sym_case_statement] = STATE(2748), + [sym_function_definition] = STATE(2748), + [sym_compound_statement] = STATE(2748), + [sym_subshell] = STATE(2748), + [sym_pipeline] = STATE(2748), + [sym_list] = STATE(2748), + [sym_negated_command] = STATE(2748), + [sym_test_command] = STATE(2748), + [sym_declaration_command] = STATE(2748), + [sym_unset_command] = STATE(2748), + [sym_command] = STATE(2748), + [sym_command_name] = STATE(450), + [sym_variable_assignment] = STATE(624), + [sym_variable_assignments] = STATE(2748), + [sym_subscript] = STATE(4360), [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(725), - [sym_brace_expression] = STATE(725), - [sym_concatenation] = STATE(1170), - [sym_string] = STATE(725), - [sym_translated_string] = STATE(725), - [sym_number] = STATE(725), - [sym_simple_expansion] = STATE(725), - [sym_expansion] = STATE(725), - [sym_command_substitution] = STATE(725), - [sym_process_substitution] = STATE(725), - [aux_sym__statements_repeat1] = STATE(313), - [aux_sym_redirected_statement_repeat2] = STATE(2771), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(896), - [sym_word] = ACTIONS(570), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_SEMI_SEMI] = ACTIONS(669), - [anon_sym_SEMI_AMP] = ACTIONS(508), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(508), - [anon_sym_function] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(582), - [anon_sym_typeset] = ACTIONS(582), - [anon_sym_export] = ACTIONS(582), - [anon_sym_readonly] = ACTIONS(582), - [anon_sym_local] = ACTIONS(582), - [anon_sym_unset] = ACTIONS(584), - [anon_sym_unsetenv] = ACTIONS(584), - [anon_sym_AMP_GT] = ACTIONS(574), - [anon_sym_AMP_GT_GT] = ACTIONS(572), - [anon_sym_LT_AMP] = ACTIONS(572), - [anon_sym_GT_AMP] = ACTIONS(572), - [anon_sym_GT_PIPE] = ACTIONS(572), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [sym__special_character] = ACTIONS(590), - [anon_sym_DQUOTE] = ACTIONS(592), - [sym_raw_string] = ACTIONS(594), - [sym_ansi_c_string] = ACTIONS(594), - [aux_sym_number_token1] = ACTIONS(596), - [aux_sym_number_token2] = ACTIONS(598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(602), - [anon_sym_BQUOTE] = ACTIONS(604), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(608), - [anon_sym_GT_LPAREN] = ACTIONS(608), + [sym_arithmetic_expansion] = STATE(734), + [sym_brace_expression] = STATE(734), + [sym_concatenation] = STATE(1200), + [sym_string] = STATE(734), + [sym_translated_string] = STATE(734), + [sym_number] = STATE(734), + [sym_simple_expansion] = STATE(734), + [sym_expansion] = STATE(734), + [sym_command_substitution] = STATE(734), + [sym_process_substitution] = STATE(734), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(2974), + [aux_sym_command_repeat1] = STATE(941), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(544), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_SEMI_SEMI] = ACTIONS(747), + [anon_sym_SEMI_AMP] = ACTIONS(528), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(530), + [anon_sym_function] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(558), + [anon_sym_typeset] = ACTIONS(558), + [anon_sym_export] = ACTIONS(558), + [anon_sym_readonly] = ACTIONS(558), + [anon_sym_local] = ACTIONS(558), + [anon_sym_unset] = ACTIONS(560), + [anon_sym_unsetenv] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(550), + [anon_sym_AMP_GT_GT] = ACTIONS(548), + [anon_sym_LT_AMP] = ACTIONS(548), + [anon_sym_GT_AMP] = ACTIONS(548), + [anon_sym_GT_PIPE] = ACTIONS(548), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_DOLLAR] = ACTIONS(562), + [sym__special_character] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [sym_raw_string] = ACTIONS(568), + [sym_ansi_c_string] = ACTIONS(568), + [aux_sym_number_token1] = ACTIONS(570), + [aux_sym_number_token2] = ACTIONS(572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(578), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), + [anon_sym_LT_LPAREN] = ACTIONS(582), + [anon_sym_GT_LPAREN] = ACTIONS(582), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(610), - [sym_file_descriptor] = ACTIONS(612), - [sym_variable_name] = ACTIONS(614), - [sym__brace_start] = ACTIONS(616), + [sym_test_operator] = ACTIONS(584), + [sym_file_descriptor] = ACTIONS(586), + [sym_variable_name] = ACTIONS(588), + [sym__brace_start] = ACTIONS(590), }, [47] = { - [sym__statements] = STATE(4005), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(463), - [sym_variable_assignment] = STATE(643), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(4145), + [sym__statements] = STATE(4265), + [sym_redirected_statement] = STATE(2748), + [sym_for_statement] = STATE(2748), + [sym_c_style_for_statement] = STATE(2748), + [sym_while_statement] = STATE(2748), + [sym_if_statement] = STATE(2748), + [sym_case_statement] = STATE(2748), + [sym_function_definition] = STATE(2748), + [sym_compound_statement] = STATE(2748), + [sym_subshell] = STATE(2748), + [sym_pipeline] = STATE(2748), + [sym_list] = STATE(2748), + [sym_negated_command] = STATE(2748), + [sym_test_command] = STATE(2748), + [sym_declaration_command] = STATE(2748), + [sym_unset_command] = STATE(2748), + [sym_command] = STATE(2748), + [sym_command_name] = STATE(450), + [sym_variable_assignment] = STATE(624), + [sym_variable_assignments] = STATE(2748), + [sym_subscript] = STATE(4360), [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(725), - [sym_brace_expression] = STATE(725), - [sym_concatenation] = STATE(1170), - [sym_string] = STATE(725), - [sym_translated_string] = STATE(725), - [sym_number] = STATE(725), - [sym_simple_expansion] = STATE(725), - [sym_expansion] = STATE(725), - [sym_command_substitution] = STATE(725), - [sym_process_substitution] = STATE(725), - [aux_sym__statements_repeat1] = STATE(313), - [aux_sym_redirected_statement_repeat2] = STATE(2771), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(896), - [sym_word] = ACTIONS(570), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_SEMI_SEMI] = ACTIONS(671), - [anon_sym_SEMI_AMP] = ACTIONS(566), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(568), - [anon_sym_function] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(582), - [anon_sym_typeset] = ACTIONS(582), - [anon_sym_export] = ACTIONS(582), - [anon_sym_readonly] = ACTIONS(582), - [anon_sym_local] = ACTIONS(582), - [anon_sym_unset] = ACTIONS(584), - [anon_sym_unsetenv] = ACTIONS(584), - [anon_sym_AMP_GT] = ACTIONS(574), - [anon_sym_AMP_GT_GT] = ACTIONS(572), - [anon_sym_LT_AMP] = ACTIONS(572), - [anon_sym_GT_AMP] = ACTIONS(572), - [anon_sym_GT_PIPE] = ACTIONS(572), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [sym__special_character] = ACTIONS(590), - [anon_sym_DQUOTE] = ACTIONS(592), - [sym_raw_string] = ACTIONS(594), - [sym_ansi_c_string] = ACTIONS(594), - [aux_sym_number_token1] = ACTIONS(596), - [aux_sym_number_token2] = ACTIONS(598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(602), - [anon_sym_BQUOTE] = ACTIONS(604), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(608), - [anon_sym_GT_LPAREN] = ACTIONS(608), + [sym_arithmetic_expansion] = STATE(734), + [sym_brace_expression] = STATE(734), + [sym_concatenation] = STATE(1200), + [sym_string] = STATE(734), + [sym_translated_string] = STATE(734), + [sym_number] = STATE(734), + [sym_simple_expansion] = STATE(734), + [sym_expansion] = STATE(734), + [sym_command_substitution] = STATE(734), + [sym_process_substitution] = STATE(734), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(2974), + [aux_sym_command_repeat1] = STATE(941), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(544), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_SEMI_SEMI] = ACTIONS(749), + [anon_sym_SEMI_AMP] = ACTIONS(522), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(524), + [anon_sym_function] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(558), + [anon_sym_typeset] = ACTIONS(558), + [anon_sym_export] = ACTIONS(558), + [anon_sym_readonly] = ACTIONS(558), + [anon_sym_local] = ACTIONS(558), + [anon_sym_unset] = ACTIONS(560), + [anon_sym_unsetenv] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(550), + [anon_sym_AMP_GT_GT] = ACTIONS(548), + [anon_sym_LT_AMP] = ACTIONS(548), + [anon_sym_GT_AMP] = ACTIONS(548), + [anon_sym_GT_PIPE] = ACTIONS(548), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_DOLLAR] = ACTIONS(562), + [sym__special_character] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [sym_raw_string] = ACTIONS(568), + [sym_ansi_c_string] = ACTIONS(568), + [aux_sym_number_token1] = ACTIONS(570), + [aux_sym_number_token2] = ACTIONS(572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(578), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), + [anon_sym_LT_LPAREN] = ACTIONS(582), + [anon_sym_GT_LPAREN] = ACTIONS(582), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(610), - [sym_file_descriptor] = ACTIONS(612), - [sym_variable_name] = ACTIONS(614), - [sym__brace_start] = ACTIONS(616), + [sym_test_operator] = ACTIONS(584), + [sym_file_descriptor] = ACTIONS(586), + [sym_variable_name] = ACTIONS(588), + [sym__brace_start] = ACTIONS(590), }, [48] = { - [sym__statements] = STATE(4041), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(463), - [sym_variable_assignment] = STATE(643), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(4145), + [sym__statements] = STATE(4221), + [sym_redirected_statement] = STATE(2748), + [sym_for_statement] = STATE(2748), + [sym_c_style_for_statement] = STATE(2748), + [sym_while_statement] = STATE(2748), + [sym_if_statement] = STATE(2748), + [sym_case_statement] = STATE(2748), + [sym_function_definition] = STATE(2748), + [sym_compound_statement] = STATE(2748), + [sym_subshell] = STATE(2748), + [sym_pipeline] = STATE(2748), + [sym_list] = STATE(2748), + [sym_negated_command] = STATE(2748), + [sym_test_command] = STATE(2748), + [sym_declaration_command] = STATE(2748), + [sym_unset_command] = STATE(2748), + [sym_command] = STATE(2748), + [sym_command_name] = STATE(450), + [sym_variable_assignment] = STATE(624), + [sym_variable_assignments] = STATE(2748), + [sym_subscript] = STATE(4360), [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(725), - [sym_brace_expression] = STATE(725), - [sym_concatenation] = STATE(1170), - [sym_string] = STATE(725), - [sym_translated_string] = STATE(725), - [sym_number] = STATE(725), - [sym_simple_expansion] = STATE(725), - [sym_expansion] = STATE(725), - [sym_command_substitution] = STATE(725), - [sym_process_substitution] = STATE(725), - [aux_sym__statements_repeat1] = STATE(313), - [aux_sym_redirected_statement_repeat2] = STATE(2771), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(896), - [sym_word] = ACTIONS(570), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_SEMI_SEMI] = ACTIONS(673), - [anon_sym_SEMI_AMP] = ACTIONS(514), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(514), - [anon_sym_function] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(582), - [anon_sym_typeset] = ACTIONS(582), - [anon_sym_export] = ACTIONS(582), - [anon_sym_readonly] = ACTIONS(582), - [anon_sym_local] = ACTIONS(582), - [anon_sym_unset] = ACTIONS(584), - [anon_sym_unsetenv] = ACTIONS(584), - [anon_sym_AMP_GT] = ACTIONS(574), - [anon_sym_AMP_GT_GT] = ACTIONS(572), - [anon_sym_LT_AMP] = ACTIONS(572), - [anon_sym_GT_AMP] = ACTIONS(572), - [anon_sym_GT_PIPE] = ACTIONS(572), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [sym__special_character] = ACTIONS(590), - [anon_sym_DQUOTE] = ACTIONS(592), - [sym_raw_string] = ACTIONS(594), - [sym_ansi_c_string] = ACTIONS(594), - [aux_sym_number_token1] = ACTIONS(596), - [aux_sym_number_token2] = ACTIONS(598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(602), - [anon_sym_BQUOTE] = ACTIONS(604), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(608), - [anon_sym_GT_LPAREN] = ACTIONS(608), + [sym_arithmetic_expansion] = STATE(734), + [sym_brace_expression] = STATE(734), + [sym_concatenation] = STATE(1200), + [sym_string] = STATE(734), + [sym_translated_string] = STATE(734), + [sym_number] = STATE(734), + [sym_simple_expansion] = STATE(734), + [sym_expansion] = STATE(734), + [sym_command_substitution] = STATE(734), + [sym_process_substitution] = STATE(734), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(2974), + [aux_sym_command_repeat1] = STATE(941), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(544), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_SEMI_SEMI] = ACTIONS(751), + [anon_sym_SEMI_AMP] = ACTIONS(510), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(512), + [anon_sym_function] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(558), + [anon_sym_typeset] = ACTIONS(558), + [anon_sym_export] = ACTIONS(558), + [anon_sym_readonly] = ACTIONS(558), + [anon_sym_local] = ACTIONS(558), + [anon_sym_unset] = ACTIONS(560), + [anon_sym_unsetenv] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(550), + [anon_sym_AMP_GT_GT] = ACTIONS(548), + [anon_sym_LT_AMP] = ACTIONS(548), + [anon_sym_GT_AMP] = ACTIONS(548), + [anon_sym_GT_PIPE] = ACTIONS(548), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_DOLLAR] = ACTIONS(562), + [sym__special_character] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [sym_raw_string] = ACTIONS(568), + [sym_ansi_c_string] = ACTIONS(568), + [aux_sym_number_token1] = ACTIONS(570), + [aux_sym_number_token2] = ACTIONS(572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(578), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), + [anon_sym_LT_LPAREN] = ACTIONS(582), + [anon_sym_GT_LPAREN] = ACTIONS(582), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(610), - [sym_file_descriptor] = ACTIONS(612), - [sym_variable_name] = ACTIONS(614), - [sym__brace_start] = ACTIONS(616), + [sym_test_operator] = ACTIONS(584), + [sym_file_descriptor] = ACTIONS(586), + [sym_variable_name] = ACTIONS(588), + [sym__brace_start] = ACTIONS(590), }, [49] = { - [aux_sym__statements2] = STATE(49), - [sym_redirected_statement] = STATE(2786), - [sym_for_statement] = STATE(2786), - [sym_c_style_for_statement] = STATE(2786), - [sym_while_statement] = STATE(2786), - [sym_if_statement] = STATE(2786), - [sym_case_statement] = STATE(2786), - [sym_function_definition] = STATE(2786), - [sym_compound_statement] = STATE(2786), - [sym_subshell] = STATE(2786), - [sym_pipeline] = STATE(2786), - [sym_list] = STATE(2786), - [sym_negated_command] = STATE(2786), - [sym_test_command] = STATE(2786), - [sym_declaration_command] = STATE(2786), - [sym_unset_command] = STATE(2786), - [sym_command] = STATE(2786), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(750), - [sym_variable_assignments] = STATE(2786), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(675), - [anon_sym_for] = ACTIONS(678), - [anon_sym_select] = ACTIONS(681), - [anon_sym_GT_GT] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(690), - [anon_sym_while] = ACTIONS(693), - [anon_sym_until] = ACTIONS(693), - [anon_sym_done] = ACTIONS(696), - [anon_sym_if] = ACTIONS(698), - [anon_sym_fi] = ACTIONS(696), - [anon_sym_elif] = ACTIONS(696), - [anon_sym_else] = ACTIONS(696), - [anon_sym_case] = ACTIONS(701), - [anon_sym_function] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(707), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_LBRACK] = ACTIONS(713), - [anon_sym_LBRACK_LBRACK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(719), - [anon_sym_typeset] = ACTIONS(719), - [anon_sym_export] = ACTIONS(719), - [anon_sym_readonly] = ACTIONS(719), - [anon_sym_local] = ACTIONS(719), - [anon_sym_unset] = ACTIONS(722), - [anon_sym_unsetenv] = ACTIONS(722), - [anon_sym_AMP_GT] = ACTIONS(687), - [anon_sym_AMP_GT_GT] = ACTIONS(684), - [anon_sym_LT_AMP] = ACTIONS(684), - [anon_sym_GT_AMP] = ACTIONS(684), - [anon_sym_GT_PIPE] = ACTIONS(684), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(725), - [anon_sym_DOLLAR] = ACTIONS(728), - [sym__special_character] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(734), - [sym_raw_string] = ACTIONS(737), - [sym_ansi_c_string] = ACTIONS(737), - [aux_sym_number_token1] = ACTIONS(740), - [aux_sym_number_token2] = ACTIONS(743), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(746), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(749), - [anon_sym_BQUOTE] = ACTIONS(752), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(758), - [anon_sym_GT_LPAREN] = ACTIONS(758), + [sym__terminated_statement] = STATE(59), + [sym_redirected_statement] = STATE(2912), + [sym_for_statement] = STATE(2912), + [sym_c_style_for_statement] = STATE(2912), + [sym_while_statement] = STATE(2912), + [sym_do_group] = STATE(3008), + [sym_if_statement] = STATE(2912), + [sym_case_statement] = STATE(2912), + [sym_function_definition] = STATE(2912), + [sym_compound_statement] = STATE(2912), + [sym_subshell] = STATE(3370), + [sym_pipeline] = STATE(2912), + [sym_list] = STATE(2912), + [sym_negated_command] = STATE(2912), + [sym_test_command] = STATE(2912), + [sym_declaration_command] = STATE(2912), + [sym_unset_command] = STATE(2912), + [sym_command] = STATE(2912), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(765), + [sym_variable_assignments] = STATE(2912), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_while_statement_repeat1] = STATE(59), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_do] = ACTIONS(755), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(761), - [sym_file_descriptor] = ACTIONS(764), - [sym_variable_name] = ACTIONS(767), - [sym__brace_start] = ACTIONS(770), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [50] = { - [sym__statements] = STATE(4021), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(463), - [sym_variable_assignment] = STATE(643), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(4145), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(725), - [sym_brace_expression] = STATE(725), - [sym_concatenation] = STATE(1170), - [sym_string] = STATE(725), - [sym_translated_string] = STATE(725), - [sym_number] = STATE(725), - [sym_simple_expansion] = STATE(725), - [sym_expansion] = STATE(725), - [sym_command_substitution] = STATE(725), - [sym_process_substitution] = STATE(725), - [aux_sym__statements_repeat1] = STATE(313), - [aux_sym_redirected_statement_repeat2] = STATE(2771), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(896), - [sym_word] = ACTIONS(570), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_SEMI_AMP] = ACTIONS(520), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(522), - [anon_sym_function] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(582), - [anon_sym_typeset] = ACTIONS(582), - [anon_sym_export] = ACTIONS(582), - [anon_sym_readonly] = ACTIONS(582), - [anon_sym_local] = ACTIONS(582), - [anon_sym_unset] = ACTIONS(584), - [anon_sym_unsetenv] = ACTIONS(584), - [anon_sym_AMP_GT] = ACTIONS(574), - [anon_sym_AMP_GT_GT] = ACTIONS(572), - [anon_sym_LT_AMP] = ACTIONS(572), - [anon_sym_GT_AMP] = ACTIONS(572), - [anon_sym_GT_PIPE] = ACTIONS(572), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [sym__special_character] = ACTIONS(590), - [anon_sym_DQUOTE] = ACTIONS(592), - [sym_raw_string] = ACTIONS(594), - [sym_ansi_c_string] = ACTIONS(594), - [aux_sym_number_token1] = ACTIONS(596), - [aux_sym_number_token2] = ACTIONS(598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(602), - [anon_sym_BQUOTE] = ACTIONS(604), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(608), - [anon_sym_GT_LPAREN] = ACTIONS(608), + [aux_sym__statements2] = STATE(51), + [sym_redirected_statement] = STATE(2934), + [sym_for_statement] = STATE(2934), + [sym_c_style_for_statement] = STATE(2934), + [sym_while_statement] = STATE(2934), + [sym_if_statement] = STATE(2934), + [sym_case_statement] = STATE(2934), + [sym_function_definition] = STATE(2934), + [sym_compound_statement] = STATE(2934), + [sym_subshell] = STATE(2934), + [sym_pipeline] = STATE(2934), + [sym_list] = STATE(2934), + [sym_negated_command] = STATE(2934), + [sym_test_command] = STATE(2934), + [sym_declaration_command] = STATE(2934), + [sym_unset_command] = STATE(2934), + [sym_command] = STATE(2934), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(759), + [sym_variable_assignments] = STATE(2934), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(757), + [anon_sym_elif] = ACTIONS(757), + [anon_sym_else] = ACTIONS(757), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(610), - [sym_file_descriptor] = ACTIONS(612), - [sym_variable_name] = ACTIONS(614), - [sym__brace_start] = ACTIONS(616), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [51] = { - [sym__statements] = STATE(4012), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(463), - [sym_variable_assignment] = STATE(643), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(4145), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(725), - [sym_brace_expression] = STATE(725), - [sym_concatenation] = STATE(1170), - [sym_string] = STATE(725), - [sym_translated_string] = STATE(725), - [sym_number] = STATE(725), - [sym_simple_expansion] = STATE(725), - [sym_expansion] = STATE(725), - [sym_command_substitution] = STATE(725), - [sym_process_substitution] = STATE(725), - [aux_sym__statements_repeat1] = STATE(313), - [aux_sym_redirected_statement_repeat2] = STATE(2771), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(896), - [sym_word] = ACTIONS(570), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_SEMI_SEMI] = ACTIONS(775), - [anon_sym_SEMI_AMP] = ACTIONS(560), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(562), - [anon_sym_function] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(582), - [anon_sym_typeset] = ACTIONS(582), - [anon_sym_export] = ACTIONS(582), - [anon_sym_readonly] = ACTIONS(582), - [anon_sym_local] = ACTIONS(582), - [anon_sym_unset] = ACTIONS(584), - [anon_sym_unsetenv] = ACTIONS(584), - [anon_sym_AMP_GT] = ACTIONS(574), - [anon_sym_AMP_GT_GT] = ACTIONS(572), - [anon_sym_LT_AMP] = ACTIONS(572), - [anon_sym_GT_AMP] = ACTIONS(572), - [anon_sym_GT_PIPE] = ACTIONS(572), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [sym__special_character] = ACTIONS(590), - [anon_sym_DQUOTE] = ACTIONS(592), - [sym_raw_string] = ACTIONS(594), - [sym_ansi_c_string] = ACTIONS(594), - [aux_sym_number_token1] = ACTIONS(596), - [aux_sym_number_token2] = ACTIONS(598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(602), - [anon_sym_BQUOTE] = ACTIONS(604), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(608), - [anon_sym_GT_LPAREN] = ACTIONS(608), + [aux_sym__statements2] = STATE(40), + [sym_redirected_statement] = STATE(2934), + [sym_for_statement] = STATE(2934), + [sym_c_style_for_statement] = STATE(2934), + [sym_while_statement] = STATE(2934), + [sym_if_statement] = STATE(2934), + [sym_case_statement] = STATE(2934), + [sym_function_definition] = STATE(2934), + [sym_compound_statement] = STATE(2934), + [sym_subshell] = STATE(2934), + [sym_pipeline] = STATE(2934), + [sym_list] = STATE(2934), + [sym_negated_command] = STATE(2934), + [sym_test_command] = STATE(2934), + [sym_declaration_command] = STATE(2934), + [sym_unset_command] = STATE(2934), + [sym_command] = STATE(2934), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(759), + [sym_variable_assignments] = STATE(2934), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(759), + [anon_sym_elif] = ACTIONS(759), + [anon_sym_else] = ACTIONS(759), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(610), - [sym_file_descriptor] = ACTIONS(612), - [sym_variable_name] = ACTIONS(614), - [sym__brace_start] = ACTIONS(616), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [52] = { - [sym__statements] = STATE(4085), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(463), - [sym_variable_assignment] = STATE(643), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(4145), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(725), - [sym_brace_expression] = STATE(725), - [sym_concatenation] = STATE(1170), - [sym_string] = STATE(725), - [sym_translated_string] = STATE(725), - [sym_number] = STATE(725), - [sym_simple_expansion] = STATE(725), - [sym_expansion] = STATE(725), - [sym_command_substitution] = STATE(725), - [sym_process_substitution] = STATE(725), - [aux_sym__statements_repeat1] = STATE(313), - [aux_sym_redirected_statement_repeat2] = STATE(2771), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(896), - [sym_word] = ACTIONS(570), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_SEMI_SEMI] = ACTIONS(777), - [anon_sym_SEMI_AMP] = ACTIONS(538), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(540), - [anon_sym_function] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(582), - [anon_sym_typeset] = ACTIONS(582), - [anon_sym_export] = ACTIONS(582), - [anon_sym_readonly] = ACTIONS(582), - [anon_sym_local] = ACTIONS(582), - [anon_sym_unset] = ACTIONS(584), - [anon_sym_unsetenv] = ACTIONS(584), - [anon_sym_AMP_GT] = ACTIONS(574), - [anon_sym_AMP_GT_GT] = ACTIONS(572), - [anon_sym_LT_AMP] = ACTIONS(572), - [anon_sym_GT_AMP] = ACTIONS(572), - [anon_sym_GT_PIPE] = ACTIONS(572), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [sym__special_character] = ACTIONS(590), - [anon_sym_DQUOTE] = ACTIONS(592), - [sym_raw_string] = ACTIONS(594), - [sym_ansi_c_string] = ACTIONS(594), - [aux_sym_number_token1] = ACTIONS(596), - [aux_sym_number_token2] = ACTIONS(598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(602), - [anon_sym_BQUOTE] = ACTIONS(604), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(608), - [anon_sym_GT_LPAREN] = ACTIONS(608), + [sym__terminated_statement] = STATE(59), + [sym_redirected_statement] = STATE(2912), + [sym_for_statement] = STATE(2912), + [sym_c_style_for_statement] = STATE(2912), + [sym_while_statement] = STATE(2912), + [sym_do_group] = STATE(3605), + [sym_if_statement] = STATE(2912), + [sym_case_statement] = STATE(2912), + [sym_function_definition] = STATE(2912), + [sym_compound_statement] = STATE(2912), + [sym_subshell] = STATE(3370), + [sym_pipeline] = STATE(2912), + [sym_list] = STATE(2912), + [sym_negated_command] = STATE(2912), + [sym_test_command] = STATE(2912), + [sym_declaration_command] = STATE(2912), + [sym_unset_command] = STATE(2912), + [sym_command] = STATE(2912), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(765), + [sym_variable_assignments] = STATE(2912), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_while_statement_repeat1] = STATE(59), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_do] = ACTIONS(761), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(610), - [sym_file_descriptor] = ACTIONS(612), - [sym_variable_name] = ACTIONS(614), - [sym__brace_start] = ACTIONS(616), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [53] = { - [sym__terminated_statement] = STATE(60), - [sym_redirected_statement] = STATE(2800), - [sym_for_statement] = STATE(2800), - [sym_c_style_for_statement] = STATE(2800), - [sym_while_statement] = STATE(2800), - [sym_do_group] = STATE(3062), - [sym_if_statement] = STATE(2800), - [sym_case_statement] = STATE(2800), - [sym_function_definition] = STATE(2800), - [sym_compound_statement] = STATE(2800), - [sym_subshell] = STATE(3170), - [sym_pipeline] = STATE(2800), - [sym_list] = STATE(2800), - [sym_negated_command] = STATE(2800), - [sym_test_command] = STATE(2800), - [sym_declaration_command] = STATE(2800), - [sym_unset_command] = STATE(2800), - [sym_command] = STATE(2800), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(741), - [sym_variable_assignments] = STATE(2800), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_while_statement_repeat1] = STATE(60), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_do] = ACTIONS(781), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__terminated_statement] = STATE(59), + [sym_redirected_statement] = STATE(2912), + [sym_for_statement] = STATE(2912), + [sym_c_style_for_statement] = STATE(2912), + [sym_while_statement] = STATE(2912), + [sym_do_group] = STATE(2993), + [sym_if_statement] = STATE(2912), + [sym_case_statement] = STATE(2912), + [sym_function_definition] = STATE(2912), + [sym_compound_statement] = STATE(2912), + [sym_subshell] = STATE(3370), + [sym_pipeline] = STATE(2912), + [sym_list] = STATE(2912), + [sym_negated_command] = STATE(2912), + [sym_test_command] = STATE(2912), + [sym_declaration_command] = STATE(2912), + [sym_unset_command] = STATE(2912), + [sym_command] = STATE(2912), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(765), + [sym_variable_assignments] = STATE(2912), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_while_statement_repeat1] = STATE(59), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_do] = ACTIONS(763), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [54] = { - [sym__terminated_statement] = STATE(60), - [sym_redirected_statement] = STATE(2800), - [sym_for_statement] = STATE(2800), - [sym_c_style_for_statement] = STATE(2800), - [sym_while_statement] = STATE(2800), - [sym_do_group] = STATE(3484), - [sym_if_statement] = STATE(2800), - [sym_case_statement] = STATE(2800), - [sym_function_definition] = STATE(2800), - [sym_compound_statement] = STATE(2800), - [sym_subshell] = STATE(3170), - [sym_pipeline] = STATE(2800), - [sym_list] = STATE(2800), - [sym_negated_command] = STATE(2800), - [sym_test_command] = STATE(2800), - [sym_declaration_command] = STATE(2800), - [sym_unset_command] = STATE(2800), - [sym_command] = STATE(2800), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(741), - [sym_variable_assignments] = STATE(2800), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_while_statement_repeat1] = STATE(60), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_do] = ACTIONS(783), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4521), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [55] = { - [sym__terminated_statement] = STATE(60), - [sym_redirected_statement] = STATE(2800), - [sym_for_statement] = STATE(2800), - [sym_c_style_for_statement] = STATE(2800), - [sym_while_statement] = STATE(2800), - [sym_do_group] = STATE(2885), - [sym_if_statement] = STATE(2800), - [sym_case_statement] = STATE(2800), - [sym_function_definition] = STATE(2800), - [sym_compound_statement] = STATE(2800), - [sym_subshell] = STATE(3170), - [sym_pipeline] = STATE(2800), - [sym_list] = STATE(2800), - [sym_negated_command] = STATE(2800), - [sym_test_command] = STATE(2800), - [sym_declaration_command] = STATE(2800), - [sym_unset_command] = STATE(2800), - [sym_command] = STATE(2800), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(741), - [sym_variable_assignments] = STATE(2800), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_while_statement_repeat1] = STATE(60), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), + [sym__statements] = STATE(4670), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_do] = ACTIONS(785), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [anon_sym_RPAREN] = ACTIONS(781), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [56] = { - [sym__terminated_statement] = STATE(60), - [sym_redirected_statement] = STATE(2800), - [sym_for_statement] = STATE(2800), - [sym_c_style_for_statement] = STATE(2800), - [sym_while_statement] = STATE(2800), - [sym_do_group] = STATE(3002), - [sym_if_statement] = STATE(2800), - [sym_case_statement] = STATE(2800), - [sym_function_definition] = STATE(2800), - [sym_compound_statement] = STATE(2800), - [sym_subshell] = STATE(3170), - [sym_pipeline] = STATE(2800), - [sym_list] = STATE(2800), - [sym_negated_command] = STATE(2800), - [sym_test_command] = STATE(2800), - [sym_declaration_command] = STATE(2800), - [sym_unset_command] = STATE(2800), - [sym_command] = STATE(2800), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(741), - [sym_variable_assignments] = STATE(2800), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_while_statement_repeat1] = STATE(60), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_do] = ACTIONS(787), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4763), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_RPAREN] = ACTIONS(785), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [57] = { - [aux_sym__statements2] = STATE(49), - [sym_redirected_statement] = STATE(2786), - [sym_for_statement] = STATE(2786), - [sym_c_style_for_statement] = STATE(2786), - [sym_while_statement] = STATE(2786), - [sym_if_statement] = STATE(2786), - [sym_case_statement] = STATE(2786), - [sym_function_definition] = STATE(2786), - [sym_compound_statement] = STATE(2786), - [sym_subshell] = STATE(2786), - [sym_pipeline] = STATE(2786), - [sym_list] = STATE(2786), - [sym_negated_command] = STATE(2786), - [sym_test_command] = STATE(2786), - [sym_declaration_command] = STATE(2786), - [sym_unset_command] = STATE(2786), - [sym_command] = STATE(2786), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(750), - [sym_variable_assignments] = STATE(2786), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_fi] = ACTIONS(789), - [anon_sym_elif] = ACTIONS(789), - [anon_sym_else] = ACTIONS(789), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4763), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_RPAREN] = ACTIONS(787), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [58] = { - [aux_sym__statements2] = STATE(57), - [sym_redirected_statement] = STATE(2786), - [sym_for_statement] = STATE(2786), - [sym_c_style_for_statement] = STATE(2786), - [sym_while_statement] = STATE(2786), - [sym_if_statement] = STATE(2786), - [sym_case_statement] = STATE(2786), - [sym_function_definition] = STATE(2786), - [sym_compound_statement] = STATE(2786), - [sym_subshell] = STATE(2786), - [sym_pipeline] = STATE(2786), - [sym_list] = STATE(2786), - [sym_negated_command] = STATE(2786), - [sym_test_command] = STATE(2786), - [sym_declaration_command] = STATE(2786), - [sym_unset_command] = STATE(2786), - [sym_command] = STATE(2786), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(750), - [sym_variable_assignments] = STATE(2786), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_fi] = ACTIONS(791), - [anon_sym_elif] = ACTIONS(791), - [anon_sym_else] = ACTIONS(791), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4521), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_RPAREN] = ACTIONS(789), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [59] = { - [sym__statements] = STATE(4634), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_RPAREN] = ACTIONS(797), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__terminated_statement] = STATE(59), + [sym_redirected_statement] = STATE(2912), + [sym_for_statement] = STATE(2912), + [sym_c_style_for_statement] = STATE(2912), + [sym_while_statement] = STATE(2912), + [sym_if_statement] = STATE(2912), + [sym_case_statement] = STATE(2912), + [sym_function_definition] = STATE(2912), + [sym_compound_statement] = STATE(2912), + [sym_subshell] = STATE(3370), + [sym_pipeline] = STATE(2912), + [sym_list] = STATE(2912), + [sym_negated_command] = STATE(2912), + [sym_test_command] = STATE(2912), + [sym_declaration_command] = STATE(2912), + [sym_unset_command] = STATE(2912), + [sym_command] = STATE(2912), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(765), + [sym_variable_assignments] = STATE(2912), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_while_statement_repeat1] = STATE(59), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(791), + [anon_sym_for] = ACTIONS(794), + [anon_sym_select] = ACTIONS(797), + [anon_sym_LPAREN_LPAREN] = ACTIONS(800), + [anon_sym_GT_GT] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(809), + [anon_sym_while] = ACTIONS(812), + [anon_sym_until] = ACTIONS(812), + [anon_sym_do] = ACTIONS(815), + [anon_sym_if] = ACTIONS(817), + [anon_sym_case] = ACTIONS(820), + [anon_sym_function] = ACTIONS(823), + [anon_sym_LBRACE] = ACTIONS(826), + [anon_sym_BANG] = ACTIONS(829), + [anon_sym_LBRACK] = ACTIONS(832), + [anon_sym_LBRACK_LBRACK] = ACTIONS(835), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_typeset] = ACTIONS(838), + [anon_sym_export] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_local] = ACTIONS(838), + [anon_sym_unset] = ACTIONS(841), + [anon_sym_unsetenv] = ACTIONS(841), + [anon_sym_AMP_GT] = ACTIONS(806), + [anon_sym_AMP_GT_GT] = ACTIONS(803), + [anon_sym_LT_AMP] = ACTIONS(803), + [anon_sym_GT_AMP] = ACTIONS(803), + [anon_sym_GT_PIPE] = ACTIONS(803), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(800), + [anon_sym_DOLLAR] = ACTIONS(844), + [sym__special_character] = ACTIONS(847), + [anon_sym_DQUOTE] = ACTIONS(850), + [sym_raw_string] = ACTIONS(853), + [sym_ansi_c_string] = ACTIONS(853), + [aux_sym_number_token1] = ACTIONS(856), + [aux_sym_number_token2] = ACTIONS(859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(862), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(868), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(871), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(877), + [sym_file_descriptor] = ACTIONS(880), + [sym_variable_name] = ACTIONS(883), + [sym__brace_start] = ACTIONS(886), }, [60] = { - [sym__terminated_statement] = STATE(60), - [sym_redirected_statement] = STATE(2800), - [sym_for_statement] = STATE(2800), - [sym_c_style_for_statement] = STATE(2800), - [sym_while_statement] = STATE(2800), - [sym_if_statement] = STATE(2800), - [sym_case_statement] = STATE(2800), - [sym_function_definition] = STATE(2800), - [sym_compound_statement] = STATE(2800), - [sym_subshell] = STATE(3170), - [sym_pipeline] = STATE(2800), - [sym_list] = STATE(2800), - [sym_negated_command] = STATE(2800), - [sym_test_command] = STATE(2800), - [sym_declaration_command] = STATE(2800), - [sym_unset_command] = STATE(2800), - [sym_command] = STATE(2800), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(741), - [sym_variable_assignments] = STATE(2800), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_while_statement_repeat1] = STATE(60), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(807), - [anon_sym_for] = ACTIONS(810), - [anon_sym_select] = ACTIONS(813), - [anon_sym_GT_GT] = ACTIONS(816), - [anon_sym_LT] = ACTIONS(819), - [anon_sym_GT] = ACTIONS(819), - [anon_sym_LPAREN] = ACTIONS(822), - [anon_sym_while] = ACTIONS(825), - [anon_sym_until] = ACTIONS(825), - [anon_sym_do] = ACTIONS(828), - [anon_sym_if] = ACTIONS(830), - [anon_sym_case] = ACTIONS(833), - [anon_sym_function] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(842), - [anon_sym_LBRACK] = ACTIONS(845), - [anon_sym_LBRACK_LBRACK] = ACTIONS(848), - [anon_sym_declare] = ACTIONS(851), - [anon_sym_typeset] = ACTIONS(851), - [anon_sym_export] = ACTIONS(851), - [anon_sym_readonly] = ACTIONS(851), - [anon_sym_local] = ACTIONS(851), - [anon_sym_unset] = ACTIONS(854), - [anon_sym_unsetenv] = ACTIONS(854), - [anon_sym_AMP_GT] = ACTIONS(819), - [anon_sym_AMP_GT_GT] = ACTIONS(816), - [anon_sym_LT_AMP] = ACTIONS(816), - [anon_sym_GT_AMP] = ACTIONS(816), - [anon_sym_GT_PIPE] = ACTIONS(816), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(857), - [anon_sym_DOLLAR] = ACTIONS(860), - [sym__special_character] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(866), - [sym_raw_string] = ACTIONS(869), - [sym_ansi_c_string] = ACTIONS(869), - [aux_sym_number_token1] = ACTIONS(872), - [aux_sym_number_token2] = ACTIONS(875), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(881), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(887), - [anon_sym_LT_LPAREN] = ACTIONS(890), - [anon_sym_GT_LPAREN] = ACTIONS(890), + [sym__statements] = STATE(4763), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_RPAREN] = ACTIONS(889), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(893), - [sym_file_descriptor] = ACTIONS(896), - [sym_variable_name] = ACTIONS(899), - [sym__brace_start] = ACTIONS(902), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [61] = { - [sym__statements] = STATE(4449), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(907), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4763), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_RPAREN] = ACTIONS(891), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [62] = { - [sym__statements] = STATE(4708), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(911), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4763), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_RPAREN] = ACTIONS(893), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [63] = { - [sym__statements] = STATE(4449), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(913), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4898), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [64] = { - [sym__statements] = STATE(4449), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(915), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4466), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [65] = { - [sym__statements] = STATE(4609), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(919), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4652), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [66] = { - [sym__statements] = STATE(4708), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(921), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4421), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [67] = { - [sym__statements] = STATE(4233), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4423), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [68] = { - [sym__statements] = STATE(4298), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4428), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1568), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [69] = { - [sym__statements] = STATE(4566), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4433), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [70] = { - [sym__statements] = STATE(4512), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4651), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [71] = { - [sym__statements] = STATE(4596), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4436), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [72] = { - [aux_sym__statements2] = STATE(73), - [sym_redirected_statement] = STATE(2814), - [sym_for_statement] = STATE(2814), - [sym_c_style_for_statement] = STATE(2814), - [sym_while_statement] = STATE(2814), - [sym_if_statement] = STATE(2814), - [sym_case_statement] = STATE(2814), - [sym_function_definition] = STATE(2814), - [sym_compound_statement] = STATE(2814), - [sym_subshell] = STATE(2814), - [sym_pipeline] = STATE(2814), - [sym_list] = STATE(2814), - [sym_negated_command] = STATE(2814), - [sym_test_command] = STATE(2814), - [sym_declaration_command] = STATE(2814), - [sym_unset_command] = STATE(2814), - [sym_command] = STATE(2814), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(710), - [sym_variable_assignments] = STATE(2814), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4439), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1562), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [73] = { - [aux_sym__statements2] = STATE(193), + [sym__statements] = STATE(4446), [sym_redirected_statement] = STATE(2807), [sym_for_statement] = STATE(2807), [sym_c_style_for_statement] = STATE(2807), @@ -26685,1010 +28291,1108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(2807), [sym_unset_command] = STATE(2807), [sym_command] = STATE(2807), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(718), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(935), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [74] = { - [aux_sym__statements2] = STATE(75), - [sym_redirected_statement] = STATE(2786), - [sym_for_statement] = STATE(2786), - [sym_c_style_for_statement] = STATE(2786), - [sym_while_statement] = STATE(2786), - [sym_if_statement] = STATE(2786), - [sym_case_statement] = STATE(2786), - [sym_function_definition] = STATE(2786), - [sym_compound_statement] = STATE(2786), - [sym_subshell] = STATE(2786), - [sym_pipeline] = STATE(2786), - [sym_list] = STATE(2786), - [sym_negated_command] = STATE(2786), - [sym_test_command] = STATE(2786), - [sym_declaration_command] = STATE(2786), - [sym_unset_command] = STATE(2786), - [sym_command] = STATE(2786), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(750), - [sym_variable_assignments] = STATE(2786), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_done] = ACTIONS(937), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4447), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [75] = { - [aux_sym__statements2] = STATE(49), - [sym_redirected_statement] = STATE(2786), - [sym_for_statement] = STATE(2786), - [sym_c_style_for_statement] = STATE(2786), - [sym_while_statement] = STATE(2786), - [sym_if_statement] = STATE(2786), - [sym_case_statement] = STATE(2786), - [sym_function_definition] = STATE(2786), - [sym_compound_statement] = STATE(2786), - [sym_subshell] = STATE(2786), - [sym_pipeline] = STATE(2786), - [sym_list] = STATE(2786), - [sym_negated_command] = STATE(2786), - [sym_test_command] = STATE(2786), - [sym_declaration_command] = STATE(2786), - [sym_unset_command] = STATE(2786), - [sym_command] = STATE(2786), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(750), - [sym_variable_assignments] = STATE(2786), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_done] = ACTIONS(939), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4449), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1552), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [76] = { - [sym__statements] = STATE(4595), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4456), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [77] = { - [sym__statements] = STATE(4652), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4457), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [78] = { - [sym__statements] = STATE(4660), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [aux_sym__statements2] = STATE(201), + [sym_redirected_statement] = STATE(2914), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_if_statement] = STATE(2914), + [sym_case_statement] = STATE(2914), + [sym_function_definition] = STATE(2914), + [sym_compound_statement] = STATE(2914), + [sym_subshell] = STATE(2914), + [sym_pipeline] = STATE(2914), + [sym_list] = STATE(2914), + [sym_negated_command] = STATE(2914), + [sym_test_command] = STATE(2914), + [sym_declaration_command] = STATE(2914), + [sym_unset_command] = STATE(2914), + [sym_command] = STATE(2914), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(764), + [sym_variable_assignments] = STATE(2914), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [79] = { - [sym__statements] = STATE(4676), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1524), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4461), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1550), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [80] = { - [sym__statements] = STATE(4707), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4649), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [81] = { - [sym__statements] = STATE(4709), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4471), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [82] = { - [sym__statements] = STATE(4719), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1521), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4472), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [83] = { - [sym__statements] = STATE(4661), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4473), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1514), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [84] = { - [sym__statements] = STATE(4680), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4670), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [85] = { - [aux_sym__statements2] = STATE(193), + [sym__statements] = STATE(4485), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), + }, + [86] = { + [sym__statements] = STATE(4487), [sym_redirected_statement] = STATE(2807), [sym_for_statement] = STATE(2807), [sym_c_style_for_statement] = STATE(2807), @@ -27705,1435 +29409,1194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(2807), [sym_unset_command] = STATE(2807), [sym_command] = STATE(2807), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(718), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), - }, - [86] = { - [sym__statements] = STATE(4711), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1520), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [87] = { - [sym__statements] = STATE(4550), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__terminated_statement] = STATE(52), + [sym_redirected_statement] = STATE(2912), + [sym_for_statement] = STATE(2912), + [sym_c_style_for_statement] = STATE(2912), + [sym_while_statement] = STATE(2912), + [sym_if_statement] = STATE(2912), + [sym_case_statement] = STATE(2912), + [sym_function_definition] = STATE(2912), + [sym_compound_statement] = STATE(2912), + [sym_subshell] = STATE(3370), + [sym_pipeline] = STATE(2912), + [sym_list] = STATE(2912), + [sym_negated_command] = STATE(2912), + [sym_test_command] = STATE(2912), + [sym_declaration_command] = STATE(2912), + [sym_unset_command] = STATE(2912), + [sym_command] = STATE(2912), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(765), + [sym_variable_assignments] = STATE(2912), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_while_statement_repeat1] = STATE(52), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [88] = { - [sym__statements] = STATE(4540), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [aux_sym__statements2] = STATE(40), + [sym_redirected_statement] = STATE(2934), + [sym_for_statement] = STATE(2934), + [sym_c_style_for_statement] = STATE(2934), + [sym_while_statement] = STATE(2934), + [sym_if_statement] = STATE(2934), + [sym_case_statement] = STATE(2934), + [sym_function_definition] = STATE(2934), + [sym_compound_statement] = STATE(2934), + [sym_subshell] = STATE(2934), + [sym_pipeline] = STATE(2934), + [sym_list] = STATE(2934), + [sym_negated_command] = STATE(2934), + [sym_test_command] = STATE(2934), + [sym_declaration_command] = STATE(2934), + [sym_unset_command] = STATE(2934), + [sym_command] = STATE(2934), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(759), + [sym_variable_assignments] = STATE(2934), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(907), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [89] = { - [sym__statements] = STATE(4533), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1515), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4490), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [90] = { - [sym__statements] = STATE(4514), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4491), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1490), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [91] = { - [sym__statements] = STATE(4553), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4505), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [92] = { - [aux_sym__statements2] = STATE(102), - [sym_redirected_statement] = STATE(2757), - [sym_for_statement] = STATE(2757), - [sym_c_style_for_statement] = STATE(2757), - [sym_while_statement] = STATE(2757), - [sym_if_statement] = STATE(2757), - [sym_case_statement] = STATE(2757), - [sym_function_definition] = STATE(2757), - [sym_compound_statement] = STATE(2757), - [sym_subshell] = STATE(2757), - [sym_pipeline] = STATE(2757), - [sym_list] = STATE(2757), - [sym_negated_command] = STATE(2757), - [sym_test_command] = STATE(2757), - [sym_declaration_command] = STATE(2757), - [sym_unset_command] = STATE(2757), - [sym_command] = STATE(2757), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(771), - [sym_variable_assignments] = STATE(2757), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4508), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [93] = { - [sym__statements] = STATE(4500), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1514), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [aux_sym__statements2] = STATE(88), + [sym_redirected_statement] = STATE(2934), + [sym_for_statement] = STATE(2934), + [sym_c_style_for_statement] = STATE(2934), + [sym_while_statement] = STATE(2934), + [sym_if_statement] = STATE(2934), + [sym_case_statement] = STATE(2934), + [sym_function_definition] = STATE(2934), + [sym_compound_statement] = STATE(2934), + [sym_subshell] = STATE(2934), + [sym_pipeline] = STATE(2934), + [sym_list] = STATE(2934), + [sym_negated_command] = STATE(2934), + [sym_test_command] = STATE(2934), + [sym_declaration_command] = STATE(2934), + [sym_unset_command] = STATE(2934), + [sym_command] = STATE(2934), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(759), + [sym_variable_assignments] = STATE(2934), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(909), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [94] = { - [sym__statements] = STATE(4462), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [aux_sym__statements2] = STATE(201), + [sym_redirected_statement] = STATE(2914), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_if_statement] = STATE(2914), + [sym_case_statement] = STATE(2914), + [sym_function_definition] = STATE(2914), + [sym_compound_statement] = STATE(2914), + [sym_subshell] = STATE(2914), + [sym_pipeline] = STATE(2914), + [sym_list] = STATE(2914), + [sym_negated_command] = STATE(2914), + [sym_test_command] = STATE(2914), + [sym_declaration_command] = STATE(2914), + [sym_unset_command] = STATE(2914), + [sym_command] = STATE(2914), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(764), + [sym_variable_assignments] = STATE(2914), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [95] = { - [sym__statements] = STATE(4452), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4509), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [96] = { - [sym__statements] = STATE(4442), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1512), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4510), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1543), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [97] = { - [sym__statements] = STATE(4416), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4518), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [98] = { - [sym__statements] = STATE(4414), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [aux_sym__statements2] = STATE(94), + [sym_redirected_statement] = STATE(2956), + [sym_for_statement] = STATE(2956), + [sym_c_style_for_statement] = STATE(2956), + [sym_while_statement] = STATE(2956), + [sym_if_statement] = STATE(2956), + [sym_case_statement] = STATE(2956), + [sym_function_definition] = STATE(2956), + [sym_compound_statement] = STATE(2956), + [sym_subshell] = STATE(2956), + [sym_pipeline] = STATE(2956), + [sym_list] = STATE(2956), + [sym_negated_command] = STATE(2956), + [sym_test_command] = STATE(2956), + [sym_declaration_command] = STATE(2956), + [sym_unset_command] = STATE(2956), + [sym_command] = STATE(2956), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(755), + [sym_variable_assignments] = STATE(2956), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [99] = { - [sym__statements] = STATE(4406), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4520), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [100] = { - [sym__statements] = STATE(4398), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1510), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), - }, - [101] = { - [sym__statements] = STATE(4383), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), - }, - [102] = { - [aux_sym__statements2] = STATE(193), + [sym__statements] = STATE(4522), [sym_redirected_statement] = STATE(2807), [sym_for_statement] = STATE(2807), [sym_c_style_for_statement] = STATE(2807), @@ -29150,1520 +30613,1710 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(2807), [sym_unset_command] = STATE(2807), [sym_command] = STATE(2807), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(718), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(945), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), + }, + [101] = { + [sym__statements] = STATE(4527), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1474), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), + }, + [102] = { + [sym__statements] = STATE(4538), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [103] = { - [aux_sym__statements2] = STATE(105), - [sym_redirected_statement] = STATE(2786), - [sym_for_statement] = STATE(2786), - [sym_c_style_for_statement] = STATE(2786), - [sym_while_statement] = STATE(2786), - [sym_if_statement] = STATE(2786), - [sym_case_statement] = STATE(2786), - [sym_function_definition] = STATE(2786), - [sym_compound_statement] = STATE(2786), - [sym_subshell] = STATE(2786), - [sym_pipeline] = STATE(2786), - [sym_list] = STATE(2786), - [sym_negated_command] = STATE(2786), - [sym_test_command] = STATE(2786), - [sym_declaration_command] = STATE(2786), - [sym_unset_command] = STATE(2786), - [sym_command] = STATE(2786), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(750), - [sym_variable_assignments] = STATE(2786), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_done] = ACTIONS(947), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4670), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [104] = { - [sym__statements] = STATE(4381), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4539), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [105] = { - [aux_sym__statements2] = STATE(49), - [sym_redirected_statement] = STATE(2786), - [sym_for_statement] = STATE(2786), - [sym_c_style_for_statement] = STATE(2786), - [sym_while_statement] = STATE(2786), - [sym_if_statement] = STATE(2786), - [sym_case_statement] = STATE(2786), - [sym_function_definition] = STATE(2786), - [sym_compound_statement] = STATE(2786), - [sym_subshell] = STATE(2786), - [sym_pipeline] = STATE(2786), - [sym_list] = STATE(2786), - [sym_negated_command] = STATE(2786), - [sym_test_command] = STATE(2786), - [sym_declaration_command] = STATE(2786), - [sym_unset_command] = STATE(2786), - [sym_command] = STATE(2786), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(750), - [sym_variable_assignments] = STATE(2786), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_done] = ACTIONS(949), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4540), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [106] = { - [sym__statements] = STATE(4380), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4545), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1477), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [107] = { - [sym__statements] = STATE(4372), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1507), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__terminated_statement] = STATE(49), + [sym_redirected_statement] = STATE(2912), + [sym_for_statement] = STATE(2912), + [sym_c_style_for_statement] = STATE(2912), + [sym_while_statement] = STATE(2912), + [sym_if_statement] = STATE(2912), + [sym_case_statement] = STATE(2912), + [sym_function_definition] = STATE(2912), + [sym_compound_statement] = STATE(2912), + [sym_subshell] = STATE(3370), + [sym_pipeline] = STATE(2912), + [sym_list] = STATE(2912), + [sym_negated_command] = STATE(2912), + [sym_test_command] = STATE(2912), + [sym_declaration_command] = STATE(2912), + [sym_unset_command] = STATE(2912), + [sym_command] = STATE(2912), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(765), + [sym_variable_assignments] = STATE(2912), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_while_statement_repeat1] = STATE(49), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [108] = { - [sym__statements] = STATE(4348), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4555), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [109] = { - [sym__statements] = STATE(4345), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4557), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [110] = { - [sym__statements] = STATE(4338), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4558), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [111] = { - [sym__statements] = STATE(4229), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1506), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4561), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1481), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [112] = { - [sym__statements] = STATE(4315), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4570), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [113] = { - [sym__statements] = STATE(4313), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4501), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1553), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [114] = { - [sym__statements] = STATE(4303), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4573), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [115] = { - [aux_sym__statements2] = STATE(120), - [sym_redirected_statement] = STATE(2831), - [sym_for_statement] = STATE(2831), - [sym_c_style_for_statement] = STATE(2831), - [sym_while_statement] = STATE(2831), - [sym_if_statement] = STATE(2831), - [sym_case_statement] = STATE(2831), - [sym_function_definition] = STATE(2831), - [sym_compound_statement] = STATE(2831), - [sym_subshell] = STATE(2831), - [sym_pipeline] = STATE(2831), - [sym_list] = STATE(2831), - [sym_negated_command] = STATE(2831), - [sym_test_command] = STATE(2831), - [sym_declaration_command] = STATE(2831), - [sym_unset_command] = STATE(2831), - [sym_command] = STATE(2831), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(769), - [sym_variable_assignments] = STATE(2831), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4574), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [116] = { - [sym__statements] = STATE(4301), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1505), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4582), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1494), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [117] = { - [sym__statements] = STATE(4279), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4603), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [118] = { - [sym__statements] = STATE(4271), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4492), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [119] = { - [sym__statements] = STATE(4258), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4605), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [120] = { - [aux_sym__statements2] = STATE(193), + [sym__statements] = STATE(4606), [sym_redirected_statement] = STATE(2807), [sym_for_statement] = STATE(2807), [sym_c_style_for_statement] = STATE(2807), @@ -30680,6195 +32333,6268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(2807), [sym_unset_command] = STATE(2807), [sym_command] = STATE(2807), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(718), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [121] = { - [aux_sym__statements2] = STATE(123), - [sym_redirected_statement] = STATE(2786), - [sym_for_statement] = STATE(2786), - [sym_c_style_for_statement] = STATE(2786), - [sym_while_statement] = STATE(2786), - [sym_if_statement] = STATE(2786), - [sym_case_statement] = STATE(2786), - [sym_function_definition] = STATE(2786), - [sym_compound_statement] = STATE(2786), - [sym_subshell] = STATE(2786), - [sym_pipeline] = STATE(2786), - [sym_list] = STATE(2786), - [sym_negated_command] = STATE(2786), - [sym_test_command] = STATE(2786), - [sym_declaration_command] = STATE(2786), - [sym_unset_command] = STATE(2786), - [sym_command] = STATE(2786), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(750), - [sym_variable_assignments] = STATE(2786), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_done] = ACTIONS(955), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4486), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [122] = { - [sym__statements] = STATE(4253), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1504), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4607), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1508), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [123] = { - [aux_sym__statements2] = STATE(49), - [sym_redirected_statement] = STATE(2786), - [sym_for_statement] = STATE(2786), - [sym_c_style_for_statement] = STATE(2786), - [sym_while_statement] = STATE(2786), - [sym_if_statement] = STATE(2786), - [sym_case_statement] = STATE(2786), - [sym_function_definition] = STATE(2786), - [sym_compound_statement] = STATE(2786), - [sym_subshell] = STATE(2786), - [sym_pipeline] = STATE(2786), - [sym_list] = STATE(2786), - [sym_negated_command] = STATE(2786), - [sym_test_command] = STATE(2786), - [sym_declaration_command] = STATE(2786), - [sym_unset_command] = STATE(2786), - [sym_command] = STATE(2786), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(750), - [sym_variable_assignments] = STATE(2786), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_done] = ACTIONS(957), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4763), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [124] = { - [sym__statements] = STATE(4188), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4616), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [125] = { - [sym__statements] = STATE(4191), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4529), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [126] = { - [sym__statements] = STATE(4192), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4623), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [127] = { - [sym__statements] = STATE(4193), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1503), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4627), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1509), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [128] = { - [sym__statements] = STATE(4197), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4642), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [129] = { - [sym__statements] = STATE(4199), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4643), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [130] = { - [sym__statements] = STATE(4200), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4645), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [131] = { - [sym__statements] = STATE(4201), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1488), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4653), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1536), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [132] = { - [sym__statements] = STATE(4205), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4672), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [133] = { - [sym__statements] = STATE(4593), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4484), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [134] = { - [sym__statements] = STATE(4609), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(905), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [aux_sym__statements2] = STATE(40), + [sym_redirected_statement] = STATE(2934), + [sym_for_statement] = STATE(2934), + [sym_c_style_for_statement] = STATE(2934), + [sym_while_statement] = STATE(2934), + [sym_if_statement] = STATE(2934), + [sym_case_statement] = STATE(2934), + [sym_function_definition] = STATE(2934), + [sym_compound_statement] = STATE(2934), + [sym_subshell] = STATE(2934), + [sym_pipeline] = STATE(2934), + [sym_list] = STATE(2934), + [sym_negated_command] = STATE(2934), + [sym_test_command] = STATE(2934), + [sym_declaration_command] = STATE(2934), + [sym_unset_command] = STATE(2934), + [sym_command] = STATE(2934), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(759), + [sym_variable_assignments] = STATE(2934), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(915), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [135] = { - [sym__terminated_statement] = STATE(56), - [sym_redirected_statement] = STATE(2800), - [sym_for_statement] = STATE(2800), - [sym_c_style_for_statement] = STATE(2800), - [sym_while_statement] = STATE(2800), - [sym_if_statement] = STATE(2800), - [sym_case_statement] = STATE(2800), - [sym_function_definition] = STATE(2800), - [sym_compound_statement] = STATE(2800), - [sym_subshell] = STATE(3170), - [sym_pipeline] = STATE(2800), - [sym_list] = STATE(2800), - [sym_negated_command] = STATE(2800), - [sym_test_command] = STATE(2800), - [sym_declaration_command] = STATE(2800), - [sym_unset_command] = STATE(2800), - [sym_command] = STATE(2800), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(741), - [sym_variable_assignments] = STATE(2800), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_while_statement_repeat1] = STATE(56), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4676), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [136] = { - [sym__statements] = STATE(4207), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [aux_sym__statements2] = STATE(40), + [sym_redirected_statement] = STATE(2934), + [sym_for_statement] = STATE(2934), + [sym_c_style_for_statement] = STATE(2934), + [sym_while_statement] = STATE(2934), + [sym_if_statement] = STATE(2934), + [sym_case_statement] = STATE(2934), + [sym_function_definition] = STATE(2934), + [sym_compound_statement] = STATE(2934), + [sym_subshell] = STATE(2934), + [sym_pipeline] = STATE(2934), + [sym_list] = STATE(2934), + [sym_negated_command] = STATE(2934), + [sym_test_command] = STATE(2934), + [sym_declaration_command] = STATE(2934), + [sym_unset_command] = STATE(2934), + [sym_command] = STATE(2934), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(759), + [sym_variable_assignments] = STATE(2934), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(917), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [137] = { - [sym__statements] = STATE(4485), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1484), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4677), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [138] = { - [sym__statements] = STATE(4209), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4678), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1571), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [139] = { - [sym__statements] = STATE(4213), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1443), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4688), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [140] = { - [sym__statements] = STATE(4217), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4689), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [141] = { - [sym__statements] = STATE(4218), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [aux_sym__statements2] = STATE(134), + [sym_redirected_statement] = STATE(2934), + [sym_for_statement] = STATE(2934), + [sym_c_style_for_statement] = STATE(2934), + [sym_while_statement] = STATE(2934), + [sym_if_statement] = STATE(2934), + [sym_case_statement] = STATE(2934), + [sym_function_definition] = STATE(2934), + [sym_compound_statement] = STATE(2934), + [sym_subshell] = STATE(2934), + [sym_pipeline] = STATE(2934), + [sym_list] = STATE(2934), + [sym_negated_command] = STATE(2934), + [sym_test_command] = STATE(2934), + [sym_declaration_command] = STATE(2934), + [sym_unset_command] = STATE(2934), + [sym_command] = STATE(2934), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(759), + [sym_variable_assignments] = STATE(2934), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(919), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [142] = { - [sym__statements] = STATE(4487), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [aux_sym__statements2] = STATE(201), + [sym_redirected_statement] = STATE(2914), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_if_statement] = STATE(2914), + [sym_case_statement] = STATE(2914), + [sym_function_definition] = STATE(2914), + [sym_compound_statement] = STATE(2914), + [sym_subshell] = STATE(2914), + [sym_pipeline] = STATE(2914), + [sym_list] = STATE(2914), + [sym_negated_command] = STATE(2914), + [sym_test_command] = STATE(2914), + [sym_declaration_command] = STATE(2914), + [sym_unset_command] = STATE(2914), + [sym_command] = STATE(2914), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(764), + [sym_variable_assignments] = STATE(2914), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [143] = { - [sym__statements] = STATE(4488), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [aux_sym__statements2] = STATE(142), + [sym_redirected_statement] = STATE(2936), + [sym_for_statement] = STATE(2936), + [sym_c_style_for_statement] = STATE(2936), + [sym_while_statement] = STATE(2936), + [sym_if_statement] = STATE(2936), + [sym_case_statement] = STATE(2936), + [sym_function_definition] = STATE(2936), + [sym_compound_statement] = STATE(2936), + [sym_subshell] = STATE(2936), + [sym_pipeline] = STATE(2936), + [sym_list] = STATE(2936), + [sym_negated_command] = STATE(2936), + [sym_test_command] = STATE(2936), + [sym_declaration_command] = STATE(2936), + [sym_unset_command] = STATE(2936), + [sym_command] = STATE(2936), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(732), + [sym_variable_assignments] = STATE(2936), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [144] = { - [sym__statements] = STATE(4571), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1469), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4690), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [145] = { - [sym__statements] = STATE(4490), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4694), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1556), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [146] = { - [sym__statements] = STATE(4219), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4713), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [147] = { - [sym__statements] = STATE(4220), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1437), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4521), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [148] = { - [sym__statements] = STATE(4587), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1573), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4497), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1563), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [149] = { - [sym__statements] = STATE(4586), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4715), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [150] = { - [sym__statements] = STATE(4224), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4500), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [151] = { - [sym__statements] = STATE(4584), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4717), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [152] = { - [sym__statements] = STATE(4225), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4718), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1554), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [153] = { - [sym__statements] = STATE(4226), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4733), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [154] = { - [aux_sym__statements2] = STATE(85), - [sym_redirected_statement] = STATE(2837), - [sym_for_statement] = STATE(2837), - [sym_c_style_for_statement] = STATE(2837), - [sym_while_statement] = STATE(2837), - [sym_if_statement] = STATE(2837), - [sym_case_statement] = STATE(2837), - [sym_function_definition] = STATE(2837), - [sym_compound_statement] = STATE(2837), - [sym_subshell] = STATE(2837), - [sym_pipeline] = STATE(2837), - [sym_list] = STATE(2837), - [sym_negated_command] = STATE(2837), - [sym_test_command] = STATE(2837), - [sym_declaration_command] = STATE(2837), - [sym_unset_command] = STATE(2837), - [sym_command] = STATE(2837), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(714), - [sym_variable_assignments] = STATE(2837), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4511), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [155] = { - [aux_sym__statements2] = STATE(49), - [sym_redirected_statement] = STATE(2786), - [sym_for_statement] = STATE(2786), - [sym_c_style_for_statement] = STATE(2786), - [sym_while_statement] = STATE(2786), - [sym_if_statement] = STATE(2786), - [sym_case_statement] = STATE(2786), - [sym_function_definition] = STATE(2786), - [sym_compound_statement] = STATE(2786), - [sym_subshell] = STATE(2786), - [sym_pipeline] = STATE(2786), - [sym_list] = STATE(2786), - [sym_negated_command] = STATE(2786), - [sym_test_command] = STATE(2786), - [sym_declaration_command] = STATE(2786), - [sym_unset_command] = STATE(2786), - [sym_command] = STATE(2786), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(750), - [sym_variable_assignments] = STATE(2786), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_fi] = ACTIONS(961), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4735), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [156] = { - [sym__statements] = STATE(4227), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1482), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4736), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [157] = { - [sym__statements] = STATE(4232), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4738), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1541), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [158] = { - [sym__statements] = STATE(4449), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(905), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4749), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [159] = { - [sym__terminated_statement] = STATE(54), - [sym_redirected_statement] = STATE(2800), - [sym_for_statement] = STATE(2800), - [sym_c_style_for_statement] = STATE(2800), - [sym_while_statement] = STATE(2800), - [sym_if_statement] = STATE(2800), - [sym_case_statement] = STATE(2800), - [sym_function_definition] = STATE(2800), - [sym_compound_statement] = STATE(2800), - [sym_subshell] = STATE(3170), - [sym_pipeline] = STATE(2800), - [sym_list] = STATE(2800), - [sym_negated_command] = STATE(2800), - [sym_test_command] = STATE(2800), - [sym_declaration_command] = STATE(2800), - [sym_unset_command] = STATE(2800), - [sym_command] = STATE(2800), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(741), - [sym_variable_assignments] = STATE(2800), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_while_statement_repeat1] = STATE(54), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4750), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [160] = { - [sym__statements] = STATE(4598), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1567), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4751), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [161] = { - [sym__statements] = STATE(4234), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4523), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [162] = { - [sym__statements] = STATE(4620), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1441), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4754), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1500), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [163] = { - [sym__statements] = STATE(4235), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1483), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4764), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [164] = { - [sym__statements] = STATE(4240), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4765), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [165] = { - [sym__statements] = STATE(4242), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4766), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [166] = { - [sym__statements] = STATE(4243), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4772), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1493), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [167] = { - [sym__statements] = STATE(4244), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1457), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4782), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [168] = { - [sym__statements] = STATE(4250), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4783), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [169] = { - [sym__statements] = STATE(4251), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4784), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [170] = { - [sym__statements] = STATE(4252), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4786), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1478), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [171] = { - [sym__statements] = STATE(4189), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1433), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4793), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [172] = { - [sym__statements] = STATE(4261), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4794), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [173] = { - [sym__statements] = STATE(4262), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4795), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [174] = { - [sym__statements] = STATE(4263), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4796), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1476), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [175] = { - [sym__statements] = STATE(4265), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1434), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4803), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [176] = { - [sym__statements] = STATE(4626), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4804), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [177] = { - [sym__statements] = STATE(4274), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4805), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [178] = { - [sym__statements] = STATE(4583), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4806), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1464), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [179] = { - [sym__statements] = STATE(4275), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4816), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [180] = { - [sym__statements] = STATE(4276), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4817), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [181] = { - [sym__statements] = STATE(4628), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4818), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [182] = { - [aux_sym__statements2] = STATE(291), - [sym_redirected_statement] = STATE(2786), - [sym_for_statement] = STATE(2786), - [sym_c_style_for_statement] = STATE(2786), - [sym_while_statement] = STATE(2786), - [sym_if_statement] = STATE(2786), - [sym_case_statement] = STATE(2786), - [sym_function_definition] = STATE(2786), - [sym_compound_statement] = STATE(2786), - [sym_subshell] = STATE(2786), - [sym_pipeline] = STATE(2786), - [sym_list] = STATE(2786), - [sym_negated_command] = STATE(2786), - [sym_test_command] = STATE(2786), - [sym_declaration_command] = STATE(2786), - [sym_unset_command] = STATE(2786), - [sym_command] = STATE(2786), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(750), - [sym_variable_assignments] = STATE(2786), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_done] = ACTIONS(963), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4819), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1453), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [183] = { - [sym__statements] = STATE(4277), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1435), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4826), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [184] = { - [sym__terminated_statement] = STATE(53), - [sym_redirected_statement] = STATE(2800), - [sym_for_statement] = STATE(2800), - [sym_c_style_for_statement] = STATE(2800), - [sym_while_statement] = STATE(2800), - [sym_if_statement] = STATE(2800), - [sym_case_statement] = STATE(2800), - [sym_function_definition] = STATE(2800), - [sym_compound_statement] = STATE(2800), - [sym_subshell] = STATE(3170), - [sym_pipeline] = STATE(2800), - [sym_list] = STATE(2800), - [sym_negated_command] = STATE(2800), - [sym_test_command] = STATE(2800), - [sym_declaration_command] = STATE(2800), - [sym_unset_command] = STATE(2800), - [sym_command] = STATE(2800), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(741), - [sym_variable_assignments] = STATE(2800), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_while_statement_repeat1] = STATE(53), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4737), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1559), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [185] = { - [sym__statements] = STATE(4634), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4827), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [186] = { - [sym__statements] = STATE(4282), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [aux_sym__statements2] = STATE(136), + [sym_redirected_statement] = STATE(2934), + [sym_for_statement] = STATE(2934), + [sym_c_style_for_statement] = STATE(2934), + [sym_while_statement] = STATE(2934), + [sym_if_statement] = STATE(2934), + [sym_case_statement] = STATE(2934), + [sym_function_definition] = STATE(2934), + [sym_compound_statement] = STATE(2934), + [sym_subshell] = STATE(2934), + [sym_pipeline] = STATE(2934), + [sym_list] = STATE(2934), + [sym_negated_command] = STATE(2934), + [sym_test_command] = STATE(2934), + [sym_declaration_command] = STATE(2934), + [sym_unset_command] = STATE(2934), + [sym_command] = STATE(2934), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(759), + [sym_variable_assignments] = STATE(2934), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(925), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [187] = { - [sym__statements] = STATE(4283), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4828), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [188] = { - [sym__statements] = STATE(4285), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4831), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1450), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [189] = { - [sym__statements] = STATE(4287), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1446), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4744), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [190] = { - [sym__statements] = STATE(4559), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1574), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [aux_sym__statements2] = STATE(198), + [sym_redirected_statement] = STATE(2934), + [sym_for_statement] = STATE(2934), + [sym_c_style_for_statement] = STATE(2934), + [sym_while_statement] = STATE(2934), + [sym_if_statement] = STATE(2934), + [sym_case_statement] = STATE(2934), + [sym_function_definition] = STATE(2934), + [sym_compound_statement] = STATE(2934), + [sym_subshell] = STATE(2934), + [sym_pipeline] = STATE(2934), + [sym_list] = STATE(2934), + [sym_negated_command] = STATE(2934), + [sym_test_command] = STATE(2934), + [sym_declaration_command] = STATE(2934), + [sym_unset_command] = STATE(2934), + [sym_command] = STATE(2934), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(759), + [sym_variable_assignments] = STATE(2934), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(927), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [191] = { - [sym__statements] = STATE(4295), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4837), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [192] = { - [sym__statements] = STATE(4296), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4409), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [193] = { - [aux_sym__statements2] = STATE(193), + [sym__statements] = STATE(4408), [sym_redirected_statement] = STATE(2807), [sym_for_statement] = STATE(2807), [sym_c_style_for_statement] = STATE(2807), @@ -36885,10753 +38611,10851 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(2807), [sym_unset_command] = STATE(2807), [sym_command] = STATE(2807), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(718), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(675), - [anon_sym_for] = ACTIONS(678), - [anon_sym_select] = ACTIONS(681), - [anon_sym_GT_GT] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(690), - [anon_sym_while] = ACTIONS(693), - [anon_sym_until] = ACTIONS(693), - [anon_sym_if] = ACTIONS(698), - [anon_sym_case] = ACTIONS(701), - [anon_sym_function] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(707), - [anon_sym_RBRACE] = ACTIONS(965), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_LBRACK] = ACTIONS(713), - [anon_sym_LBRACK_LBRACK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(719), - [anon_sym_typeset] = ACTIONS(719), - [anon_sym_export] = ACTIONS(719), - [anon_sym_readonly] = ACTIONS(719), - [anon_sym_local] = ACTIONS(719), - [anon_sym_unset] = ACTIONS(722), - [anon_sym_unsetenv] = ACTIONS(722), - [anon_sym_AMP_GT] = ACTIONS(687), - [anon_sym_AMP_GT_GT] = ACTIONS(684), - [anon_sym_LT_AMP] = ACTIONS(684), - [anon_sym_GT_AMP] = ACTIONS(684), - [anon_sym_GT_PIPE] = ACTIONS(684), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(725), - [anon_sym_DOLLAR] = ACTIONS(728), - [sym__special_character] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(734), - [sym_raw_string] = ACTIONS(737), - [sym_ansi_c_string] = ACTIONS(737), - [aux_sym_number_token1] = ACTIONS(740), - [aux_sym_number_token2] = ACTIONS(743), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(746), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(749), - [anon_sym_BQUOTE] = ACTIONS(752), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(758), - [anon_sym_GT_LPAREN] = ACTIONS(758), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(761), - [sym_file_descriptor] = ACTIONS(764), - [sym_variable_name] = ACTIONS(767), - [sym__brace_start] = ACTIONS(770), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [194] = { - [sym__statements] = STATE(4569), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4838), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [195] = { - [sym__statements] = STATE(4629), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4839), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [196] = { - [sym__statements] = STATE(4557), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4840), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1452), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [197] = { - [sym__statements] = STATE(4609), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4857), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [198] = { - [sym__statements] = STATE(4299), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1447), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [aux_sym__statements2] = STATE(40), + [sym_redirected_statement] = STATE(2934), + [sym_for_statement] = STATE(2934), + [sym_c_style_for_statement] = STATE(2934), + [sym_while_statement] = STATE(2934), + [sym_if_statement] = STATE(2934), + [sym_case_statement] = STATE(2934), + [sym_function_definition] = STATE(2934), + [sym_compound_statement] = STATE(2934), + [sym_subshell] = STATE(2934), + [sym_pipeline] = STATE(2934), + [sym_list] = STATE(2934), + [sym_negated_command] = STATE(2934), + [sym_test_command] = STATE(2934), + [sym_declaration_command] = STATE(2934), + [sym_unset_command] = STATE(2934), + [sym_command] = STATE(2934), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(759), + [sym_variable_assignments] = STATE(2934), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(929), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [199] = { - [sym__statements] = STATE(4307), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4858), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [200] = { - [sym__statements] = STATE(4308), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4859), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [201] = { - [sym__statements] = STATE(4310), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [aux_sym__statements2] = STATE(201), + [sym_redirected_statement] = STATE(2914), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_if_statement] = STATE(2914), + [sym_case_statement] = STATE(2914), + [sym_function_definition] = STATE(2914), + [sym_compound_statement] = STATE(2914), + [sym_subshell] = STATE(2914), + [sym_pipeline] = STATE(2914), + [sym_list] = STATE(2914), + [sym_negated_command] = STATE(2914), + [sym_test_command] = STATE(2914), + [sym_declaration_command] = STATE(2914), + [sym_unset_command] = STATE(2914), + [sym_command] = STATE(2914), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(764), + [sym_variable_assignments] = STATE(2914), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(639), + [anon_sym_for] = ACTIONS(642), + [anon_sym_select] = ACTIONS(645), + [anon_sym_LPAREN_LPAREN] = ACTIONS(648), + [anon_sym_GT_GT] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_while] = ACTIONS(660), + [anon_sym_until] = ACTIONS(660), + [anon_sym_if] = ACTIONS(665), + [anon_sym_case] = ACTIONS(668), + [anon_sym_function] = ACTIONS(671), + [anon_sym_LBRACE] = ACTIONS(674), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_LBRACK_LBRACK] = ACTIONS(683), + [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_unset] = ACTIONS(689), + [anon_sym_unsetenv] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(654), + [anon_sym_AMP_GT_GT] = ACTIONS(651), + [anon_sym_LT_AMP] = ACTIONS(651), + [anon_sym_GT_AMP] = ACTIONS(651), + [anon_sym_GT_PIPE] = ACTIONS(651), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(648), + [anon_sym_DOLLAR] = ACTIONS(692), + [sym__special_character] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(698), + [sym_raw_string] = ACTIONS(701), + [sym_ansi_c_string] = ACTIONS(701), + [aux_sym_number_token1] = ACTIONS(704), + [aux_sym_number_token2] = ACTIONS(707), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(716), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(719), + [anon_sym_LT_LPAREN] = ACTIONS(722), + [anon_sym_GT_LPAREN] = ACTIONS(722), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(725), + [sym_file_descriptor] = ACTIONS(728), + [sym_variable_name] = ACTIONS(731), + [sym__brace_start] = ACTIONS(734), }, [202] = { - [sym__statements] = STATE(4311), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1449), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4860), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1456), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [203] = { - [sym__statements] = STATE(4319), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4758), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [204] = { - [sym__statements] = STATE(4320), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4767), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [205] = { - [sym__terminated_statement] = STATE(55), - [sym_redirected_statement] = STATE(2800), - [sym_for_statement] = STATE(2800), - [sym_c_style_for_statement] = STATE(2800), - [sym_while_statement] = STATE(2800), - [sym_if_statement] = STATE(2800), - [sym_case_statement] = STATE(2800), - [sym_function_definition] = STATE(2800), - [sym_compound_statement] = STATE(2800), - [sym_subshell] = STATE(3170), - [sym_pipeline] = STATE(2800), - [sym_list] = STATE(2800), - [sym_negated_command] = STATE(2800), - [sym_test_command] = STATE(2800), - [sym_declaration_command] = STATE(2800), - [sym_unset_command] = STATE(2800), - [sym_command] = STATE(2800), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(741), - [sym_variable_assignments] = STATE(2800), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_while_statement_repeat1] = STATE(55), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4869), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [206] = { - [sym__statements] = STATE(4697), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1519), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4870), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [207] = { - [sym__statements] = STATE(4321), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4871), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [208] = { - [sym__statements] = STATE(4322), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1451), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4872), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1462), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [209] = { - [sym__statements] = STATE(4331), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4882), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [210] = { - [sym__statements] = STATE(4363), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4883), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [211] = { - [sym__statements] = STATE(4332), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4884), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [212] = { - [sym__statements] = STATE(4333), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4912), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1549), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [213] = { - [sym__statements] = STATE(4334), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1454), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4924), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [214] = { - [sym__statements] = STATE(4644), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4886), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1466), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [215] = { - [sym__statements] = STATE(4768), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4895), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [216] = { - [sym__statements] = STATE(4341), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4897), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [217] = { - [sym__statements] = STATE(4708), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4930), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [218] = { - [sym__statements] = STATE(4671), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1553), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4931), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [219] = { - [sym__statements] = STATE(4342), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4899), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1469), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [220] = { - [sym__statements] = STATE(4343), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4911), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [221] = { - [sym__statements] = STATE(4344), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1458), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4849), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [222] = { - [sym__statements] = STATE(4351), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4915), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [223] = { - [sym__statements] = STATE(4352), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4917), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1479), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [224] = { - [sym__statements] = STATE(4353), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4929), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [225] = { - [sym__statements] = STATE(4670), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4932), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [226] = { - [sym__statements] = STATE(4356), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1459), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4980), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [227] = { - [sym__statements] = STATE(4669), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4982), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1483), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [228] = { - [sym__statements] = STATE(4362), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4925), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [229] = { - [sym__statements] = STATE(4365), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4922), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [230] = { - [sym__statements] = STATE(4668), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4921), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [231] = { - [sym__statements] = STATE(4655), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1558), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [aux_sym__statements2] = STATE(78), + [sym_redirected_statement] = STATE(2909), + [sym_for_statement] = STATE(2909), + [sym_c_style_for_statement] = STATE(2909), + [sym_while_statement] = STATE(2909), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym_function_definition] = STATE(2909), + [sym_compound_statement] = STATE(2909), + [sym_subshell] = STATE(2909), + [sym_pipeline] = STATE(2909), + [sym_list] = STATE(2909), + [sym_negated_command] = STATE(2909), + [sym_test_command] = STATE(2909), + [sym_declaration_command] = STATE(2909), + [sym_unset_command] = STATE(2909), + [sym_command] = STATE(2909), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(763), + [sym_variable_assignments] = STATE(2909), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [232] = { - [sym__statements] = STATE(4654), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4918), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1489), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [233] = { - [sym__statements] = STATE(4653), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4889), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [234] = { - [sym__statements] = STATE(4366), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4887), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [235] = { - [sym__statements] = STATE(4367), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1463), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4885), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [236] = { - [sym__statements] = STATE(4651), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4879), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1492), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [237] = { - [sym__statements] = STATE(4570), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1562), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4853), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [238] = { - [sym__statements] = STATE(4640), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4852), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [239] = { - [sym__statements] = STATE(4374), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4785), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [240] = { - [sym__statements] = STATE(4375), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4666), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1540), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [241] = { - [sym__statements] = STATE(4376), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4846), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1498), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [242] = { - [sym__statements] = STATE(4378), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1464), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4811), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [243] = { - [sym__statements] = STATE(4386), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4923), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [244] = { - [sym__statements] = STATE(4387), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4992), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [245] = { - [sym__statements] = STATE(4388), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__terminated_statement] = STATE(53), + [sym_redirected_statement] = STATE(2912), + [sym_for_statement] = STATE(2912), + [sym_c_style_for_statement] = STATE(2912), + [sym_while_statement] = STATE(2912), + [sym_if_statement] = STATE(2912), + [sym_case_statement] = STATE(2912), + [sym_function_definition] = STATE(2912), + [sym_compound_statement] = STATE(2912), + [sym_subshell] = STATE(3370), + [sym_pipeline] = STATE(2912), + [sym_list] = STATE(2912), + [sym_negated_command] = STATE(2912), + [sym_test_command] = STATE(2912), + [sym_declaration_command] = STATE(2912), + [sym_unset_command] = STATE(2912), + [sym_command] = STATE(2912), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(765), + [sym_variable_assignments] = STATE(2912), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_while_statement_repeat1] = STATE(53), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [246] = { - [sym__statements] = STATE(4639), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4810), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [247] = { - [sym__statements] = STATE(4389), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1467), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4808), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [248] = { - [sym__statements] = STATE(4397), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4800), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1501), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [249] = { - [sym__statements] = STATE(4638), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4776), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [250] = { - [sym__statements] = STATE(4400), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4773), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [251] = { - [sym__statements] = STATE(4401), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4769), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [252] = { - [sym__statements] = STATE(4402), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1473), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4759), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1503), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [253] = { - [sym__statements] = STATE(4409), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4729), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [254] = { - [sym__statements] = STATE(4410), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4725), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [255] = { - [sym__statements] = STATE(4411), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4719), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [256] = { - [sym__statements] = STATE(4621), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1563), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4703), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1510), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [257] = { - [sym__statements] = STATE(4619), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(5040), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [258] = { - [sym__statements] = STATE(4618), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4664), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [259] = { - [sym__statements] = STATE(4617), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4663), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [260] = { - [sym__statements] = STATE(4412), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1485), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4876), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1538), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [261] = { - [sym__statements] = STATE(4610), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1564), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4619), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [262] = { - [sym__statements] = STATE(4608), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4648), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1512), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [263] = { - [sym__statements] = STATE(4420), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4597), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [264] = { - [sym__statements] = STATE(4607), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4594), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [265] = { - [sym__statements] = STATE(4606), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4589), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [266] = { - [sym__statements] = STATE(4421), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4586), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1516), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [267] = { - [sym__statements] = STATE(4424), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4865), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [268] = { - [sym__statements] = STATE(4425), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1486), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4702), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1455), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [269] = { - [sym__statements] = STATE(4434), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4544), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [270] = { - [sym__statements] = STATE(4436), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4700), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [271] = { - [sym__statements] = STATE(4437), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4535), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [272] = { - [sym__statements] = STATE(4438), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1490), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4697), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [273] = { - [sym__statements] = STATE(4445), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4530), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [274] = { - [sym__statements] = STATE(4446), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4658), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [275] = { - [sym__statements] = STATE(4448), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4416), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1567), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [276] = { - [sym__statements] = STATE(4450), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1495), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4528), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1523), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [277] = { - [sym__statements] = STATE(4456), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4655), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1535), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [278] = { - [sym__statements] = STATE(4457), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4465), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [279] = { - [sym__statements] = STATE(4458), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4462), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [280] = { - [sym__statements] = STATE(4460), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1432), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4459), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1526), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [281] = { - [sym__statements] = STATE(4467), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4413), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [282] = { - [sym__statements] = STATE(4468), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4634), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [283] = { - [sym__statements] = STATE(4470), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4448), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [284] = { - [sym__statements] = STATE(4472), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1526), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4468), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1529), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [285] = { - [sym__statements] = STATE(4479), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4595), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [286] = { - [sym__statements] = STATE(4480), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4609), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [287] = { - [sym__statements] = STATE(4481), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4901), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [288] = { - [sym__statements] = STATE(4404), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1527), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4646), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1531), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [289] = { - [sym__statements] = STATE(4494), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4726), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [290] = { - [sym__statements] = STATE(4496), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4753), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [291] = { - [aux_sym__statements2] = STATE(49), - [sym_redirected_statement] = STATE(2786), - [sym_for_statement] = STATE(2786), - [sym_c_style_for_statement] = STATE(2786), - [sym_while_statement] = STATE(2786), - [sym_if_statement] = STATE(2786), - [sym_case_statement] = STATE(2786), - [sym_function_definition] = STATE(2786), - [sym_compound_statement] = STATE(2786), - [sym_subshell] = STATE(2786), - [sym_pipeline] = STATE(2786), - [sym_list] = STATE(2786), - [sym_negated_command] = STATE(2786), - [sym_test_command] = STATE(2786), - [sym_declaration_command] = STATE(2786), - [sym_unset_command] = STATE(2786), - [sym_command] = STATE(2786), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(750), - [sym_variable_assignments] = STATE(2786), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_done] = ACTIONS(967), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4777), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [292] = { - [sym__statements] = STATE(4497), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4667), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1534), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [293] = { - [sym__statements] = STATE(4556), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4843), + [sym_redirected_statement] = STATE(2833), + [sym_for_statement] = STATE(2833), + [sym_c_style_for_statement] = STATE(2833), + [sym_while_statement] = STATE(2833), + [sym_if_statement] = STATE(2833), + [sym_case_statement] = STATE(2833), + [sym_function_definition] = STATE(2833), + [sym_compound_statement] = STATE(2833), + [sym_subshell] = STATE(2833), + [sym_pipeline] = STATE(2833), + [sym_list] = STATE(2833), + [sym_negated_command] = STATE(2833), + [sym_test_command] = STATE(2833), + [sym_declaration_command] = STATE(2833), + [sym_unset_command] = STATE(2833), + [sym_command] = STATE(2833), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(644), + [sym_variable_assignments] = STATE(2833), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [294] = { - [aux_sym__statements2] = STATE(155), - [sym_redirected_statement] = STATE(2786), - [sym_for_statement] = STATE(2786), - [sym_c_style_for_statement] = STATE(2786), - [sym_while_statement] = STATE(2786), - [sym_if_statement] = STATE(2786), - [sym_case_statement] = STATE(2786), - [sym_function_definition] = STATE(2786), - [sym_compound_statement] = STATE(2786), - [sym_subshell] = STATE(2786), - [sym_pipeline] = STATE(2786), - [sym_list] = STATE(2786), - [sym_negated_command] = STATE(2786), - [sym_test_command] = STATE(2786), - [sym_declaration_command] = STATE(2786), - [sym_unset_command] = STATE(2786), - [sym_command] = STATE(2786), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(750), - [sym_variable_assignments] = STATE(2786), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_fi] = ACTIONS(969), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__statements] = STATE(4850), + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(742), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [295] = { - [sym__statements] = STATE(4554), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym_redirected_statement] = STATE(2798), + [sym_for_statement] = STATE(2798), + [sym_c_style_for_statement] = STATE(2798), + [sym_while_statement] = STATE(2798), + [sym_if_statement] = STATE(2798), + [sym_case_statement] = STATE(2798), + [sym_function_definition] = STATE(2798), + [sym_compound_statement] = STATE(2798), + [sym_subshell] = STATE(2798), + [sym_pipeline] = STATE(2798), + [sym_list] = STATE(2798), + [sym_negated_command] = STATE(2798), + [sym_test_command] = STATE(2798), + [sym_declaration_command] = STATE(2798), + [sym_unset_command] = STATE(2798), + [sym_command] = STATE(2798), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(653), + [sym_variable_assignments] = STATE(2798), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym__statements_repeat1] = STATE(299), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [296] = { - [sym__statements] = STATE(4498), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1528), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym_redirected_statement] = STATE(2855), + [sym_for_statement] = STATE(2855), + [sym_c_style_for_statement] = STATE(2855), + [sym_while_statement] = STATE(2855), + [sym_if_statement] = STATE(2855), + [sym_case_statement] = STATE(2855), + [sym_function_definition] = STATE(2855), + [sym_compound_statement] = STATE(2855), + [sym_subshell] = STATE(2855), + [sym_pipeline] = STATE(2855), + [sym_list] = STATE(2855), + [sym_negated_command] = STATE(2855), + [sym_test_command] = STATE(2855), + [sym_declaration_command] = STATE(2855), + [sym_unset_command] = STATE(2855), + [sym_command] = STATE(2855), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(743), + [sym_variable_assignments] = STATE(2855), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(299), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [297] = { - [sym__statements] = STATE(4506), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym_redirected_statement] = STATE(2716), + [sym_for_statement] = STATE(2716), + [sym_c_style_for_statement] = STATE(2716), + [sym_while_statement] = STATE(2716), + [sym_if_statement] = STATE(2716), + [sym_case_statement] = STATE(2716), + [sym_function_definition] = STATE(2716), + [sym_compound_statement] = STATE(2716), + [sym_subshell] = STATE(2716), + [sym_pipeline] = STATE(2716), + [sym_list] = STATE(2716), + [sym_negated_command] = STATE(2716), + [sym_test_command] = STATE(2716), + [sym_declaration_command] = STATE(2716), + [sym_unset_command] = STATE(2716), + [sym_command] = STATE(2716), + [sym_command_name] = STATE(446), + [sym_variable_assignment] = STATE(608), + [sym_variable_assignments] = STATE(2716), + [sym_subscript] = STATE(4372), + [sym_file_redirect] = STATE(1291), + [sym_arithmetic_expansion] = STATE(665), + [sym_brace_expression] = STATE(665), + [sym_concatenation] = STATE(1003), + [sym_string] = STATE(665), + [sym_translated_string] = STATE(665), + [sym_number] = STATE(665), + [sym_simple_expansion] = STATE(665), + [sym_expansion] = STATE(665), + [sym_command_substitution] = STATE(665), + [sym_process_substitution] = STATE(665), + [aux_sym__statements_repeat1] = STATE(299), + [aux_sym_redirected_statement_repeat2] = STATE(2799), + [aux_sym_command_repeat1] = STATE(1002), + [aux_sym__literal_repeat1] = STATE(831), + [sym_word] = ACTIONS(400), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(410), + [anon_sym_GT] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_function] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(438), + [anon_sym_typeset] = ACTIONS(438), + [anon_sym_export] = ACTIONS(438), + [anon_sym_readonly] = ACTIONS(438), + [anon_sym_local] = ACTIONS(438), + [anon_sym_unset] = ACTIONS(440), + [anon_sym_unsetenv] = ACTIONS(440), + [anon_sym_AMP_GT] = ACTIONS(410), + [anon_sym_AMP_GT_GT] = ACTIONS(408), + [anon_sym_LT_AMP] = ACTIONS(408), + [anon_sym_GT_AMP] = ACTIONS(408), + [anon_sym_GT_PIPE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(442), + [sym__special_character] = ACTIONS(444), + [anon_sym_DQUOTE] = ACTIONS(446), + [sym_raw_string] = ACTIONS(448), + [sym_ansi_c_string] = ACTIONS(448), + [aux_sym_number_token1] = ACTIONS(450), + [aux_sym_number_token2] = ACTIONS(452), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), + [anon_sym_BQUOTE] = ACTIONS(458), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), + [anon_sym_LT_LPAREN] = ACTIONS(462), + [anon_sym_GT_LPAREN] = ACTIONS(462), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(464), + [sym_file_descriptor] = ACTIONS(466), + [sym_variable_name] = ACTIONS(468), + [sym__brace_start] = ACTIONS(470), }, [298] = { - [sym__statements] = STATE(4508), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym_redirected_statement] = STATE(2727), + [sym_for_statement] = STATE(2727), + [sym_c_style_for_statement] = STATE(2727), + [sym_while_statement] = STATE(2727), + [sym_if_statement] = STATE(2727), + [sym_case_statement] = STATE(2727), + [sym_function_definition] = STATE(2727), + [sym_compound_statement] = STATE(2727), + [sym_subshell] = STATE(2727), + [sym_pipeline] = STATE(2727), + [sym_list] = STATE(2727), + [sym_negated_command] = STATE(2727), + [sym_test_command] = STATE(2727), + [sym_declaration_command] = STATE(2727), + [sym_unset_command] = STATE(2727), + [sym_command] = STATE(2727), + [sym_command_name] = STATE(450), + [sym_variable_assignment] = STATE(632), + [sym_variable_assignments] = STATE(2727), + [sym_subscript] = STATE(4360), + [sym_file_redirect] = STATE(1365), + [sym_arithmetic_expansion] = STATE(734), + [sym_brace_expression] = STATE(734), + [sym_concatenation] = STATE(1200), + [sym_string] = STATE(734), + [sym_translated_string] = STATE(734), + [sym_number] = STATE(734), + [sym_simple_expansion] = STATE(734), + [sym_expansion] = STATE(734), + [sym_command_substitution] = STATE(734), + [sym_process_substitution] = STATE(734), + [aux_sym__statements_repeat1] = STATE(299), + [aux_sym_redirected_statement_repeat2] = STATE(2974), + [aux_sym_command_repeat1] = STATE(941), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(544), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_function] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(558), + [anon_sym_typeset] = ACTIONS(558), + [anon_sym_export] = ACTIONS(558), + [anon_sym_readonly] = ACTIONS(558), + [anon_sym_local] = ACTIONS(558), + [anon_sym_unset] = ACTIONS(560), + [anon_sym_unsetenv] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(550), + [anon_sym_AMP_GT_GT] = ACTIONS(548), + [anon_sym_LT_AMP] = ACTIONS(548), + [anon_sym_GT_AMP] = ACTIONS(548), + [anon_sym_GT_PIPE] = ACTIONS(548), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_DOLLAR] = ACTIONS(562), + [sym__special_character] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [sym_raw_string] = ACTIONS(568), + [sym_ansi_c_string] = ACTIONS(568), + [aux_sym_number_token1] = ACTIONS(570), + [aux_sym_number_token2] = ACTIONS(572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(578), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), + [anon_sym_LT_LPAREN] = ACTIONS(582), + [anon_sym_GT_LPAREN] = ACTIONS(582), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(584), + [sym_file_descriptor] = ACTIONS(586), + [sym_variable_name] = ACTIONS(588), + [sym__brace_start] = ACTIONS(590), }, [299] = { - [sym__statements] = STATE(4509), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym_redirected_statement] = STATE(2954), + [sym_for_statement] = STATE(2954), + [sym_c_style_for_statement] = STATE(2954), + [sym_while_statement] = STATE(2954), + [sym_if_statement] = STATE(2954), + [sym_case_statement] = STATE(2954), + [sym_function_definition] = STATE(2954), + [sym_compound_statement] = STATE(2954), + [sym_subshell] = STATE(2954), + [sym_pipeline] = STATE(2954), + [sym_list] = STATE(2954), + [sym_negated_command] = STATE(2954), + [sym_test_command] = STATE(2954), + [sym_declaration_command] = STATE(2954), + [sym_unset_command] = STATE(2954), + [sym_command] = STATE(2954), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(709), + [sym_variable_assignments] = STATE(2954), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym__statements_repeat1] = STATE(299), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(935), + [anon_sym_for] = ACTIONS(938), + [anon_sym_select] = ACTIONS(941), + [anon_sym_LPAREN_LPAREN] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(950), + [anon_sym_GT] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(953), + [anon_sym_while] = ACTIONS(956), + [anon_sym_until] = ACTIONS(956), + [anon_sym_if] = ACTIONS(959), + [anon_sym_case] = ACTIONS(962), + [anon_sym_function] = ACTIONS(965), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_LBRACK_LBRACK] = ACTIONS(977), + [anon_sym_declare] = ACTIONS(980), + [anon_sym_typeset] = ACTIONS(980), + [anon_sym_export] = ACTIONS(980), + [anon_sym_readonly] = ACTIONS(980), + [anon_sym_local] = ACTIONS(980), + [anon_sym_unset] = ACTIONS(983), + [anon_sym_unsetenv] = ACTIONS(983), + [anon_sym_AMP_GT] = ACTIONS(950), + [anon_sym_AMP_GT_GT] = ACTIONS(947), + [anon_sym_LT_AMP] = ACTIONS(947), + [anon_sym_GT_AMP] = ACTIONS(947), + [anon_sym_GT_PIPE] = ACTIONS(947), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(944), + [anon_sym_DOLLAR] = ACTIONS(986), + [sym__special_character] = ACTIONS(989), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym_raw_string] = ACTIONS(995), + [sym_ansi_c_string] = ACTIONS(995), + [aux_sym_number_token1] = ACTIONS(998), + [aux_sym_number_token2] = ACTIONS(1001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1004), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1007), + [anon_sym_BQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1013), + [anon_sym_LT_LPAREN] = ACTIONS(1016), + [anon_sym_GT_LPAREN] = ACTIONS(1016), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(1019), + [sym_file_descriptor] = ACTIONS(1022), + [sym_variable_name] = ACTIONS(1025), + [sym__brace_start] = ACTIONS(1028), }, [300] = { - [sym__statements] = STATE(4510), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1529), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__terminated_statement] = STATE(4546), + [sym_redirected_statement] = STATE(2959), + [sym_for_statement] = STATE(2959), + [sym_c_style_for_statement] = STATE(2959), + [sym_while_statement] = STATE(2959), + [sym_if_statement] = STATE(2959), + [sym_case_statement] = STATE(2959), + [sym_function_definition] = STATE(2959), + [sym_compound_statement] = STATE(2959), + [sym_subshell] = STATE(3370), + [sym_pipeline] = STATE(2959), + [sym_list] = STATE(2959), + [sym_negated_command] = STATE(2959), + [sym_test_command] = STATE(2959), + [sym_declaration_command] = STATE(2959), + [sym_unset_command] = STATE(2959), + [sym_command] = STATE(2959), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(753), + [sym_variable_assignments] = STATE(2959), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [301] = { - [sym__statements] = STATE(4521), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__terminated_statement] = STATE(4903), + [sym_redirected_statement] = STATE(2959), + [sym_for_statement] = STATE(2959), + [sym_c_style_for_statement] = STATE(2959), + [sym_while_statement] = STATE(2959), + [sym_if_statement] = STATE(2959), + [sym_case_statement] = STATE(2959), + [sym_function_definition] = STATE(2959), + [sym_compound_statement] = STATE(2959), + [sym_subshell] = STATE(3370), + [sym_pipeline] = STATE(2959), + [sym_list] = STATE(2959), + [sym_negated_command] = STATE(2959), + [sym_test_command] = STATE(2959), + [sym_declaration_command] = STATE(2959), + [sym_unset_command] = STATE(2959), + [sym_command] = STATE(2959), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(753), + [sym_variable_assignments] = STATE(2959), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [302] = { - [sym__statements] = STATE(4522), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__terminated_statement] = STATE(4639), + [sym_redirected_statement] = STATE(2959), + [sym_for_statement] = STATE(2959), + [sym_c_style_for_statement] = STATE(2959), + [sym_while_statement] = STATE(2959), + [sym_if_statement] = STATE(2959), + [sym_case_statement] = STATE(2959), + [sym_function_definition] = STATE(2959), + [sym_compound_statement] = STATE(2959), + [sym_subshell] = STATE(3370), + [sym_pipeline] = STATE(2959), + [sym_list] = STATE(2959), + [sym_negated_command] = STATE(2959), + [sym_test_command] = STATE(2959), + [sym_declaration_command] = STATE(2959), + [sym_unset_command] = STATE(2959), + [sym_command] = STATE(2959), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(753), + [sym_variable_assignments] = STATE(2959), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [303] = { - [sym__statements] = STATE(4524), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym_redirected_statement] = STATE(2821), + [sym_for_statement] = STATE(2821), + [sym_c_style_for_statement] = STATE(2821), + [sym_while_statement] = STATE(2821), + [sym_if_statement] = STATE(2821), + [sym_case_statement] = STATE(2821), + [sym_function_definition] = STATE(2821), + [sym_compound_statement] = STATE(2821), + [sym_subshell] = STATE(2821), + [sym_pipeline] = STATE(2821), + [sym_list] = STATE(2821), + [sym_negated_command] = STATE(2821), + [sym_test_command] = STATE(2821), + [sym_declaration_command] = STATE(2821), + [sym_unset_command] = STATE(2821), + [sym_command] = STATE(2821), + [sym_command_name] = STATE(473), + [sym_variable_assignment] = STATE(676), + [sym_variable_assignments] = STATE(2821), + [sym_subscript] = STATE(4317), + [sym_file_redirect] = STATE(1499), + [sym_arithmetic_expansion] = STATE(794), + [sym_brace_expression] = STATE(794), + [sym_concatenation] = STATE(1275), + [sym_string] = STATE(794), + [sym_translated_string] = STATE(794), + [sym_number] = STATE(794), + [sym_simple_expansion] = STATE(794), + [sym_expansion] = STATE(794), + [sym_command_substitution] = STATE(794), + [sym_process_substitution] = STATE(794), + [aux_sym__statements_repeat1] = STATE(299), + [aux_sym_redirected_statement_repeat2] = STATE(2998), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1104), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_GT_GT] = ACTIONS(15), + [anon_sym_LT] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(37), + [anon_sym_typeset] = ACTIONS(37), + [anon_sym_export] = ACTIONS(37), + [anon_sym_readonly] = ACTIONS(37), + [anon_sym_local] = ACTIONS(37), + [anon_sym_unset] = ACTIONS(39), + [anon_sym_unsetenv] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(17), + [anon_sym_AMP_GT_GT] = ACTIONS(15), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(15), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym__special_character] = ACTIONS(43), + [anon_sym_DQUOTE] = ACTIONS(45), + [sym_raw_string] = ACTIONS(47), + [sym_ansi_c_string] = ACTIONS(47), + [aux_sym_number_token1] = ACTIONS(49), + [aux_sym_number_token2] = ACTIONS(51), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(55), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(59), + [anon_sym_LT_LPAREN] = ACTIONS(61), + [anon_sym_GT_LPAREN] = ACTIONS(61), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(65), + [sym_file_descriptor] = ACTIONS(67), + [sym_variable_name] = ACTIONS(69), + [sym__brace_start] = ACTIONS(71), }, [304] = { - [sym__statements] = STATE(4527), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1530), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym__terminated_statement] = STATE(4760), + [sym_redirected_statement] = STATE(2959), + [sym_for_statement] = STATE(2959), + [sym_c_style_for_statement] = STATE(2959), + [sym_while_statement] = STATE(2959), + [sym_if_statement] = STATE(2959), + [sym_case_statement] = STATE(2959), + [sym_function_definition] = STATE(2959), + [sym_compound_statement] = STATE(2959), + [sym_subshell] = STATE(3370), + [sym_pipeline] = STATE(2959), + [sym_list] = STATE(2959), + [sym_negated_command] = STATE(2959), + [sym_test_command] = STATE(2959), + [sym_declaration_command] = STATE(2959), + [sym_unset_command] = STATE(2959), + [sym_command] = STATE(2959), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(753), + [sym_variable_assignments] = STATE(2959), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [305] = { - [sym__statements] = STATE(4539), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym_redirected_statement] = STATE(2845), + [sym_for_statement] = STATE(2845), + [sym_c_style_for_statement] = STATE(2845), + [sym_while_statement] = STATE(2845), + [sym_if_statement] = STATE(2845), + [sym_case_statement] = STATE(2845), + [sym_function_definition] = STATE(2845), + [sym_compound_statement] = STATE(2845), + [sym_subshell] = STATE(2845), + [sym_pipeline] = STATE(2845), + [sym_list] = STATE(2845), + [sym_negated_command] = STATE(2845), + [sym_test_command] = STATE(2845), + [sym_declaration_command] = STATE(2845), + [sym_unset_command] = STATE(2845), + [sym_command] = STATE(2845), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(663), + [sym_variable_assignments] = STATE(2845), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [306] = { - [sym__statements] = STATE(4541), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym_redirected_statement] = STATE(2719), + [sym_for_statement] = STATE(2719), + [sym_c_style_for_statement] = STATE(2719), + [sym_while_statement] = STATE(2719), + [sym_if_statement] = STATE(2719), + [sym_case_statement] = STATE(2719), + [sym_function_definition] = STATE(2719), + [sym_compound_statement] = STATE(2719), + [sym_subshell] = STATE(2719), + [sym_pipeline] = STATE(2719), + [sym_list] = STATE(2719), + [sym_negated_command] = STATE(2719), + [sym_test_command] = STATE(2719), + [sym_declaration_command] = STATE(2719), + [sym_unset_command] = STATE(2719), + [sym_command] = STATE(2719), + [sym_command_name] = STATE(446), + [sym_variable_assignment] = STATE(610), + [sym_variable_assignments] = STATE(2719), + [sym_subscript] = STATE(4372), + [sym_file_redirect] = STATE(1291), + [sym_arithmetic_expansion] = STATE(665), + [sym_brace_expression] = STATE(665), + [sym_concatenation] = STATE(1003), + [sym_string] = STATE(665), + [sym_translated_string] = STATE(665), + [sym_number] = STATE(665), + [sym_simple_expansion] = STATE(665), + [sym_expansion] = STATE(665), + [sym_command_substitution] = STATE(665), + [sym_process_substitution] = STATE(665), + [aux_sym_redirected_statement_repeat2] = STATE(2799), + [aux_sym_command_repeat1] = STATE(1002), + [aux_sym__literal_repeat1] = STATE(831), + [sym_word] = ACTIONS(400), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(410), + [anon_sym_GT] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_function] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(438), + [anon_sym_typeset] = ACTIONS(438), + [anon_sym_export] = ACTIONS(438), + [anon_sym_readonly] = ACTIONS(438), + [anon_sym_local] = ACTIONS(438), + [anon_sym_unset] = ACTIONS(440), + [anon_sym_unsetenv] = ACTIONS(440), + [anon_sym_AMP_GT] = ACTIONS(410), + [anon_sym_AMP_GT_GT] = ACTIONS(408), + [anon_sym_LT_AMP] = ACTIONS(408), + [anon_sym_GT_AMP] = ACTIONS(408), + [anon_sym_GT_PIPE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(442), + [sym__special_character] = ACTIONS(444), + [anon_sym_DQUOTE] = ACTIONS(446), + [sym_raw_string] = ACTIONS(448), + [sym_ansi_c_string] = ACTIONS(448), + [aux_sym_number_token1] = ACTIONS(450), + [aux_sym_number_token2] = ACTIONS(452), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), + [anon_sym_BQUOTE] = ACTIONS(458), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), + [anon_sym_LT_LPAREN] = ACTIONS(462), + [anon_sym_GT_LPAREN] = ACTIONS(462), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(464), + [sym_file_descriptor] = ACTIONS(466), + [sym_variable_name] = ACTIONS(468), + [sym__brace_start] = ACTIONS(470), }, [307] = { - [sym__statements] = STATE(4542), - [sym_redirected_statement] = STATE(2650), - [sym_for_statement] = STATE(2650), - [sym_c_style_for_statement] = STATE(2650), - [sym_while_statement] = STATE(2650), - [sym_if_statement] = STATE(2650), - [sym_case_statement] = STATE(2650), - [sym_function_definition] = STATE(2650), - [sym_compound_statement] = STATE(2650), - [sym_subshell] = STATE(2650), - [sym_pipeline] = STATE(2650), - [sym_list] = STATE(2650), - [sym_negated_command] = STATE(2650), - [sym_test_command] = STATE(2650), - [sym_declaration_command] = STATE(2650), - [sym_unset_command] = STATE(2650), - [sym_command] = STATE(2650), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(762), - [sym_variable_assignments] = STATE(2650), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(314), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym_redirected_statement] = STATE(3368), + [sym_for_statement] = STATE(3368), + [sym_c_style_for_statement] = STATE(3368), + [sym_while_statement] = STATE(3368), + [sym_if_statement] = STATE(3368), + [sym_case_statement] = STATE(3368), + [sym_function_definition] = STATE(3368), + [sym_compound_statement] = STATE(3368), + [sym_subshell] = STATE(3368), + [sym_pipeline] = STATE(3368), + [sym_list] = STATE(3368), + [sym_negated_command] = STATE(3368), + [sym_test_command] = STATE(3368), + [sym_declaration_command] = STATE(3368), + [sym_unset_command] = STATE(3368), + [sym_command] = STATE(3368), + [sym_command_name] = STATE(611), + [sym_variable_assignment] = STATE(1322), + [sym_variable_assignments] = STATE(3368), + [sym_subscript] = STATE(4307), + [sym_file_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1544), + [sym_brace_expression] = STATE(1544), + [sym_concatenation] = STATE(1970), + [sym_string] = STATE(1544), + [sym_translated_string] = STATE(1544), + [sym_number] = STATE(1544), + [sym_simple_expansion] = STATE(1544), + [sym_expansion] = STATE(1544), + [sym_command_substitution] = STATE(1544), + [sym_process_substitution] = STATE(1544), + [aux_sym_redirected_statement_repeat2] = STATE(3568), + [aux_sym_command_repeat1] = STATE(896), + [aux_sym__literal_repeat1] = STATE(1731), + [sym_word] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(268), + [anon_sym_select] = ACTIONS(270), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(280), + [anon_sym_until] = ACTIONS(280), + [anon_sym_if] = ACTIONS(282), + [anon_sym_case] = ACTIONS(284), + [anon_sym_function] = ACTIONS(286), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(296), + [anon_sym_declare] = ACTIONS(298), + [anon_sym_typeset] = ACTIONS(298), + [anon_sym_export] = ACTIONS(298), + [anon_sym_readonly] = ACTIONS(298), + [anon_sym_local] = ACTIONS(298), + [anon_sym_unset] = ACTIONS(300), + [anon_sym_unsetenv] = ACTIONS(300), + [anon_sym_AMP_GT] = ACTIONS(1037), + [anon_sym_AMP_GT_GT] = ACTIONS(1035), + [anon_sym_LT_AMP] = ACTIONS(1035), + [anon_sym_GT_AMP] = ACTIONS(1035), + [anon_sym_GT_PIPE] = ACTIONS(1035), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1043), + [sym__special_character] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym_raw_string] = ACTIONS(1049), + [sym_ansi_c_string] = ACTIONS(1049), + [aux_sym_number_token1] = ACTIONS(1051), + [aux_sym_number_token2] = ACTIONS(1053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1057), + [anon_sym_BQUOTE] = ACTIONS(1059), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1061), + [anon_sym_LT_LPAREN] = ACTIONS(1063), + [anon_sym_GT_LPAREN] = ACTIONS(1063), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(1065), + [sym_file_descriptor] = ACTIONS(1067), + [sym_variable_name] = ACTIONS(330), + [sym__brace_start] = ACTIONS(1069), }, [308] = { - [sym__statements] = STATE(4545), - [sym_redirected_statement] = STATE(2714), - [sym_for_statement] = STATE(2714), - [sym_c_style_for_statement] = STATE(2714), - [sym_while_statement] = STATE(2714), - [sym_if_statement] = STATE(2714), - [sym_case_statement] = STATE(2714), - [sym_function_definition] = STATE(2714), - [sym_compound_statement] = STATE(2714), - [sym_subshell] = STATE(2714), - [sym_pipeline] = STATE(2714), - [sym_list] = STATE(2714), - [sym_negated_command] = STATE(2714), - [sym_test_command] = STATE(2714), - [sym_declaration_command] = STATE(2714), - [sym_unset_command] = STATE(2714), - [sym_command] = STATE(2714), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(680), - [sym_variable_assignments] = STATE(2714), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1544), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym_redirected_statement] = STATE(3360), + [sym_for_statement] = STATE(3360), + [sym_c_style_for_statement] = STATE(3360), + [sym_while_statement] = STATE(3360), + [sym_if_statement] = STATE(3360), + [sym_case_statement] = STATE(3360), + [sym_function_definition] = STATE(3360), + [sym_compound_statement] = STATE(3360), + [sym_subshell] = STATE(3360), + [sym_pipeline] = STATE(3360), + [sym_list] = STATE(3360), + [sym_negated_command] = STATE(3360), + [sym_test_command] = STATE(3360), + [sym_declaration_command] = STATE(3360), + [sym_unset_command] = STATE(3360), + [sym_command] = STATE(3360), + [sym_command_name] = STATE(611), + [sym_variable_assignment] = STATE(1324), + [sym_variable_assignments] = STATE(3360), + [sym_subscript] = STATE(4307), + [sym_file_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1544), + [sym_brace_expression] = STATE(1544), + [sym_concatenation] = STATE(1970), + [sym_string] = STATE(1544), + [sym_translated_string] = STATE(1544), + [sym_number] = STATE(1544), + [sym_simple_expansion] = STATE(1544), + [sym_expansion] = STATE(1544), + [sym_command_substitution] = STATE(1544), + [sym_process_substitution] = STATE(1544), + [aux_sym_redirected_statement_repeat2] = STATE(3568), + [aux_sym_command_repeat1] = STATE(896), + [aux_sym__literal_repeat1] = STATE(1731), + [sym_word] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(268), + [anon_sym_select] = ACTIONS(270), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(280), + [anon_sym_until] = ACTIONS(280), + [anon_sym_if] = ACTIONS(282), + [anon_sym_case] = ACTIONS(284), + [anon_sym_function] = ACTIONS(286), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(296), + [anon_sym_declare] = ACTIONS(298), + [anon_sym_typeset] = ACTIONS(298), + [anon_sym_export] = ACTIONS(298), + [anon_sym_readonly] = ACTIONS(298), + [anon_sym_local] = ACTIONS(298), + [anon_sym_unset] = ACTIONS(300), + [anon_sym_unsetenv] = ACTIONS(300), + [anon_sym_AMP_GT] = ACTIONS(1037), + [anon_sym_AMP_GT_GT] = ACTIONS(1035), + [anon_sym_LT_AMP] = ACTIONS(1035), + [anon_sym_GT_AMP] = ACTIONS(1035), + [anon_sym_GT_PIPE] = ACTIONS(1035), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1043), + [sym__special_character] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym_raw_string] = ACTIONS(1049), + [sym_ansi_c_string] = ACTIONS(1049), + [aux_sym_number_token1] = ACTIONS(1051), + [aux_sym_number_token2] = ACTIONS(1053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1057), + [anon_sym_BQUOTE] = ACTIONS(1059), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1061), + [anon_sym_LT_LPAREN] = ACTIONS(1063), + [anon_sym_GT_LPAREN] = ACTIONS(1063), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(1065), + [sym_file_descriptor] = ACTIONS(1067), + [sym_variable_name] = ACTIONS(330), + [sym__brace_start] = ACTIONS(1069), }, [309] = { - [sym__terminated_statement] = STATE(4256), - [sym_redirected_statement] = STATE(2745), - [sym_for_statement] = STATE(2745), - [sym_c_style_for_statement] = STATE(2745), - [sym_while_statement] = STATE(2745), - [sym_if_statement] = STATE(2745), - [sym_case_statement] = STATE(2745), - [sym_function_definition] = STATE(2745), - [sym_compound_statement] = STATE(2745), - [sym_subshell] = STATE(3170), - [sym_pipeline] = STATE(2745), - [sym_list] = STATE(2745), - [sym_negated_command] = STATE(2745), - [sym_test_command] = STATE(2745), - [sym_declaration_command] = STATE(2745), - [sym_unset_command] = STATE(2745), - [sym_command] = STATE(2745), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(730), - [sym_variable_assignments] = STATE(2745), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym_redirected_statement] = STATE(3269), + [sym_for_statement] = STATE(3269), + [sym_c_style_for_statement] = STATE(3269), + [sym_while_statement] = STATE(3269), + [sym_if_statement] = STATE(3269), + [sym_case_statement] = STATE(3269), + [sym_function_definition] = STATE(3269), + [sym_compound_statement] = STATE(3269), + [sym_subshell] = STATE(3269), + [sym_pipeline] = STATE(3269), + [sym_list] = STATE(3269), + [sym_negated_command] = STATE(3269), + [sym_test_command] = STATE(3269), + [sym_declaration_command] = STATE(3269), + [sym_unset_command] = STATE(3269), + [sym_command] = STATE(3269), + [sym_command_name] = STATE(597), + [sym_variable_assignment] = STATE(1044), + [sym_variable_assignments] = STATE(3269), + [sym_subscript] = STATE(4311), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(1407), + [sym_brace_expression] = STATE(1407), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(1407), + [sym_translated_string] = STATE(1407), + [sym_number] = STATE(1407), + [sym_simple_expansion] = STATE(1407), + [sym_expansion] = STATE(1407), + [sym_command_substitution] = STATE(1407), + [sym_process_substitution] = STATE(1407), + [aux_sym_redirected_statement_repeat2] = STATE(3487), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(1071), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(1075), + [anon_sym_GT] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(1079), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(1081), + [anon_sym_typeset] = ACTIONS(1081), + [anon_sym_export] = ACTIONS(1081), + [anon_sym_readonly] = ACTIONS(1081), + [anon_sym_local] = ACTIONS(1081), + [anon_sym_unset] = ACTIONS(1083), + [anon_sym_unsetenv] = ACTIONS(1083), + [anon_sym_AMP_GT] = ACTIONS(1075), + [anon_sym_AMP_GT_GT] = ACTIONS(1073), + [anon_sym_LT_AMP] = ACTIONS(1073), + [anon_sym_GT_AMP] = ACTIONS(1073), + [anon_sym_GT_PIPE] = ACTIONS(1073), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(1087), + [sym_ansi_c_string] = ACTIONS(1087), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(1091), + [sym_variable_name] = ACTIONS(1093), + [sym__brace_start] = ACTIONS(388), }, [310] = { - [sym__terminated_statement] = STATE(4453), - [sym_redirected_statement] = STATE(2745), - [sym_for_statement] = STATE(2745), - [sym_c_style_for_statement] = STATE(2745), - [sym_while_statement] = STATE(2745), - [sym_if_statement] = STATE(2745), - [sym_case_statement] = STATE(2745), - [sym_function_definition] = STATE(2745), - [sym_compound_statement] = STATE(2745), - [sym_subshell] = STATE(3170), - [sym_pipeline] = STATE(2745), - [sym_list] = STATE(2745), - [sym_negated_command] = STATE(2745), - [sym_test_command] = STATE(2745), - [sym_declaration_command] = STATE(2745), - [sym_unset_command] = STATE(2745), - [sym_command] = STATE(2745), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(730), - [sym_variable_assignments] = STATE(2745), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym_redirected_statement] = STATE(2945), + [sym_for_statement] = STATE(2945), + [sym_c_style_for_statement] = STATE(2945), + [sym_while_statement] = STATE(2945), + [sym_if_statement] = STATE(2945), + [sym_case_statement] = STATE(2945), + [sym_function_definition] = STATE(2945), + [sym_compound_statement] = STATE(2945), + [sym_subshell] = STATE(2945), + [sym_pipeline] = STATE(2945), + [sym_list] = STATE(2945), + [sym_negated_command] = STATE(2945), + [sym_test_command] = STATE(2945), + [sym_declaration_command] = STATE(2945), + [sym_unset_command] = STATE(2945), + [sym_command] = STATE(2945), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(756), + [sym_variable_assignments] = STATE(2945), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [311] = { - [sym_redirected_statement] = STATE(2465), - [sym_for_statement] = STATE(2465), - [sym_c_style_for_statement] = STATE(2465), - [sym_while_statement] = STATE(2465), - [sym_if_statement] = STATE(2465), - [sym_case_statement] = STATE(2465), - [sym_function_definition] = STATE(2465), - [sym_compound_statement] = STATE(2465), - [sym_subshell] = STATE(2465), - [sym_pipeline] = STATE(2465), - [sym_list] = STATE(2465), - [sym_negated_command] = STATE(2465), - [sym_test_command] = STATE(2465), - [sym_declaration_command] = STATE(2465), - [sym_unset_command] = STATE(2465), - [sym_command] = STATE(2465), - [sym_command_name] = STATE(448), - [sym_variable_assignment] = STATE(628), - [sym_variable_assignments] = STATE(2465), - [sym_subscript] = STATE(4152), - [sym_file_redirect] = STATE(1302), - [sym_arithmetic_expansion] = STATE(688), - [sym_brace_expression] = STATE(688), - [sym_concatenation] = STATE(1020), - [sym_string] = STATE(688), - [sym_translated_string] = STATE(688), - [sym_number] = STATE(688), - [sym_simple_expansion] = STATE(688), - [sym_expansion] = STATE(688), - [sym_command_substitution] = STATE(688), - [sym_process_substitution] = STATE(688), - [aux_sym__statements_repeat1] = STATE(315), - [aux_sym_redirected_statement_repeat2] = STATE(2729), - [aux_sym_command_repeat1] = STATE(1023), - [aux_sym__literal_repeat1] = STATE(823), - [sym_word] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_GT] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_function] = ACTIONS(452), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(462), - [anon_sym_typeset] = ACTIONS(462), - [anon_sym_export] = ACTIONS(462), - [anon_sym_readonly] = ACTIONS(462), - [anon_sym_local] = ACTIONS(462), - [anon_sym_unset] = ACTIONS(464), - [anon_sym_unsetenv] = ACTIONS(464), - [anon_sym_AMP_GT] = ACTIONS(434), - [anon_sym_AMP_GT_GT] = ACTIONS(432), - [anon_sym_LT_AMP] = ACTIONS(432), - [anon_sym_GT_AMP] = ACTIONS(432), - [anon_sym_GT_PIPE] = ACTIONS(432), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(466), - [anon_sym_DOLLAR] = ACTIONS(468), - [sym__special_character] = ACTIONS(470), - [anon_sym_DQUOTE] = ACTIONS(472), - [sym_raw_string] = ACTIONS(474), - [sym_ansi_c_string] = ACTIONS(474), - [aux_sym_number_token1] = ACTIONS(476), - [aux_sym_number_token2] = ACTIONS(478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(482), - [anon_sym_BQUOTE] = ACTIONS(484), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(486), - [anon_sym_LT_LPAREN] = ACTIONS(488), - [anon_sym_GT_LPAREN] = ACTIONS(488), + [sym_redirected_statement] = STATE(2905), + [sym_for_statement] = STATE(2905), + [sym_c_style_for_statement] = STATE(2905), + [sym_while_statement] = STATE(2905), + [sym_if_statement] = STATE(2905), + [sym_case_statement] = STATE(2905), + [sym_function_definition] = STATE(2905), + [sym_compound_statement] = STATE(2905), + [sym_subshell] = STATE(2905), + [sym_pipeline] = STATE(2905), + [sym_list] = STATE(2905), + [sym_negated_command] = STATE(2905), + [sym_test_command] = STATE(2905), + [sym_declaration_command] = STATE(2905), + [sym_unset_command] = STATE(2905), + [sym_command] = STATE(2905), + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(754), + [sym_variable_assignments] = STATE(2905), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3101), + [aux_sym_command_repeat1] = STATE(957), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(338), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(356), + [anon_sym_typeset] = ACTIONS(356), + [anon_sym_export] = ACTIONS(356), + [anon_sym_readonly] = ACTIONS(356), + [anon_sym_local] = ACTIONS(356), + [anon_sym_unset] = ACTIONS(358), + [anon_sym_unsetenv] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(490), - [sym_file_descriptor] = ACTIONS(492), - [sym_variable_name] = ACTIONS(494), - [sym__brace_start] = ACTIONS(496), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [312] = { - [sym__terminated_statement] = STATE(4198), - [sym_redirected_statement] = STATE(2745), - [sym_for_statement] = STATE(2745), - [sym_c_style_for_statement] = STATE(2745), - [sym_while_statement] = STATE(2745), - [sym_if_statement] = STATE(2745), - [sym_case_statement] = STATE(2745), - [sym_function_definition] = STATE(2745), - [sym_compound_statement] = STATE(2745), - [sym_subshell] = STATE(3170), - [sym_pipeline] = STATE(2745), - [sym_list] = STATE(2745), - [sym_negated_command] = STATE(2745), - [sym_test_command] = STATE(2745), - [sym_declaration_command] = STATE(2745), - [sym_unset_command] = STATE(2745), - [sym_command] = STATE(2745), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(730), - [sym_variable_assignments] = STATE(2745), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym_redirected_statement] = STATE(2750), + [sym_for_statement] = STATE(2750), + [sym_c_style_for_statement] = STATE(2750), + [sym_while_statement] = STATE(2750), + [sym_if_statement] = STATE(2750), + [sym_case_statement] = STATE(2750), + [sym_function_definition] = STATE(2750), + [sym_compound_statement] = STATE(2750), + [sym_subshell] = STATE(2750), + [sym_pipeline] = STATE(2750), + [sym_list] = STATE(2750), + [sym_negated_command] = STATE(2750), + [sym_test_command] = STATE(2750), + [sym_declaration_command] = STATE(2750), + [sym_unset_command] = STATE(2750), + [sym_command] = STATE(2750), + [sym_command_name] = STATE(450), + [sym_variable_assignment] = STATE(631), + [sym_variable_assignments] = STATE(2750), + [sym_subscript] = STATE(4360), + [sym_file_redirect] = STATE(1365), + [sym_arithmetic_expansion] = STATE(734), + [sym_brace_expression] = STATE(734), + [sym_concatenation] = STATE(1200), + [sym_string] = STATE(734), + [sym_translated_string] = STATE(734), + [sym_number] = STATE(734), + [sym_simple_expansion] = STATE(734), + [sym_expansion] = STATE(734), + [sym_command_substitution] = STATE(734), + [sym_process_substitution] = STATE(734), + [aux_sym_redirected_statement_repeat2] = STATE(2974), + [aux_sym_command_repeat1] = STATE(941), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(544), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_function] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(558), + [anon_sym_typeset] = ACTIONS(558), + [anon_sym_export] = ACTIONS(558), + [anon_sym_readonly] = ACTIONS(558), + [anon_sym_local] = ACTIONS(558), + [anon_sym_unset] = ACTIONS(560), + [anon_sym_unsetenv] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(550), + [anon_sym_AMP_GT_GT] = ACTIONS(548), + [anon_sym_LT_AMP] = ACTIONS(548), + [anon_sym_GT_AMP] = ACTIONS(548), + [anon_sym_GT_PIPE] = ACTIONS(548), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_DOLLAR] = ACTIONS(562), + [sym__special_character] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [sym_raw_string] = ACTIONS(568), + [sym_ansi_c_string] = ACTIONS(568), + [aux_sym_number_token1] = ACTIONS(570), + [aux_sym_number_token2] = ACTIONS(572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(578), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), + [anon_sym_LT_LPAREN] = ACTIONS(582), + [anon_sym_GT_LPAREN] = ACTIONS(582), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(584), + [sym_file_descriptor] = ACTIONS(586), + [sym_variable_name] = ACTIONS(588), + [sym__brace_start] = ACTIONS(590), }, [313] = { - [sym_redirected_statement] = STATE(2610), - [sym_for_statement] = STATE(2610), - [sym_c_style_for_statement] = STATE(2610), - [sym_while_statement] = STATE(2610), - [sym_if_statement] = STATE(2610), - [sym_case_statement] = STATE(2610), - [sym_function_definition] = STATE(2610), - [sym_compound_statement] = STATE(2610), - [sym_subshell] = STATE(2610), - [sym_pipeline] = STATE(2610), - [sym_list] = STATE(2610), - [sym_negated_command] = STATE(2610), - [sym_test_command] = STATE(2610), - [sym_declaration_command] = STATE(2610), - [sym_unset_command] = STATE(2610), - [sym_command] = STATE(2610), - [sym_command_name] = STATE(463), - [sym_variable_assignment] = STATE(641), - [sym_variable_assignments] = STATE(2610), - [sym_subscript] = STATE(4145), + [sym_redirected_statement] = STATE(2759), + [sym_for_statement] = STATE(2759), + [sym_c_style_for_statement] = STATE(2759), + [sym_while_statement] = STATE(2759), + [sym_if_statement] = STATE(2759), + [sym_case_statement] = STATE(2759), + [sym_function_definition] = STATE(2759), + [sym_compound_statement] = STATE(2759), + [sym_subshell] = STATE(2759), + [sym_pipeline] = STATE(2759), + [sym_list] = STATE(2759), + [sym_negated_command] = STATE(2759), + [sym_test_command] = STATE(2759), + [sym_declaration_command] = STATE(2759), + [sym_unset_command] = STATE(2759), + [sym_command] = STATE(2759), + [sym_command_name] = STATE(450), + [sym_variable_assignment] = STATE(625), + [sym_variable_assignments] = STATE(2759), + [sym_subscript] = STATE(4360), [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(725), - [sym_brace_expression] = STATE(725), - [sym_concatenation] = STATE(1170), - [sym_string] = STATE(725), - [sym_translated_string] = STATE(725), - [sym_number] = STATE(725), - [sym_simple_expansion] = STATE(725), - [sym_expansion] = STATE(725), - [sym_command_substitution] = STATE(725), - [sym_process_substitution] = STATE(725), - [aux_sym__statements_repeat1] = STATE(315), - [aux_sym_redirected_statement_repeat2] = STATE(2771), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(896), - [sym_word] = ACTIONS(570), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_function] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(582), - [anon_sym_typeset] = ACTIONS(582), - [anon_sym_export] = ACTIONS(582), - [anon_sym_readonly] = ACTIONS(582), - [anon_sym_local] = ACTIONS(582), - [anon_sym_unset] = ACTIONS(584), - [anon_sym_unsetenv] = ACTIONS(584), - [anon_sym_AMP_GT] = ACTIONS(574), - [anon_sym_AMP_GT_GT] = ACTIONS(572), - [anon_sym_LT_AMP] = ACTIONS(572), - [anon_sym_GT_AMP] = ACTIONS(572), - [anon_sym_GT_PIPE] = ACTIONS(572), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [sym__special_character] = ACTIONS(590), - [anon_sym_DQUOTE] = ACTIONS(592), - [sym_raw_string] = ACTIONS(594), - [sym_ansi_c_string] = ACTIONS(594), - [aux_sym_number_token1] = ACTIONS(596), - [aux_sym_number_token2] = ACTIONS(598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(602), - [anon_sym_BQUOTE] = ACTIONS(604), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(608), - [anon_sym_GT_LPAREN] = ACTIONS(608), + [sym_arithmetic_expansion] = STATE(734), + [sym_brace_expression] = STATE(734), + [sym_concatenation] = STATE(1200), + [sym_string] = STATE(734), + [sym_translated_string] = STATE(734), + [sym_number] = STATE(734), + [sym_simple_expansion] = STATE(734), + [sym_expansion] = STATE(734), + [sym_command_substitution] = STATE(734), + [sym_process_substitution] = STATE(734), + [aux_sym_redirected_statement_repeat2] = STATE(2974), + [aux_sym_command_repeat1] = STATE(941), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(544), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_function] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(558), + [anon_sym_typeset] = ACTIONS(558), + [anon_sym_export] = ACTIONS(558), + [anon_sym_readonly] = ACTIONS(558), + [anon_sym_local] = ACTIONS(558), + [anon_sym_unset] = ACTIONS(560), + [anon_sym_unsetenv] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(550), + [anon_sym_AMP_GT_GT] = ACTIONS(548), + [anon_sym_LT_AMP] = ACTIONS(548), + [anon_sym_GT_AMP] = ACTIONS(548), + [anon_sym_GT_PIPE] = ACTIONS(548), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), + [anon_sym_DOLLAR] = ACTIONS(562), + [sym__special_character] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [sym_raw_string] = ACTIONS(568), + [sym_ansi_c_string] = ACTIONS(568), + [aux_sym_number_token1] = ACTIONS(570), + [aux_sym_number_token2] = ACTIONS(572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(578), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), + [anon_sym_LT_LPAREN] = ACTIONS(582), + [anon_sym_GT_LPAREN] = ACTIONS(582), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(610), - [sym_file_descriptor] = ACTIONS(612), - [sym_variable_name] = ACTIONS(614), - [sym__brace_start] = ACTIONS(616), + [sym_test_operator] = ACTIONS(584), + [sym_file_descriptor] = ACTIONS(586), + [sym_variable_name] = ACTIONS(588), + [sym__brace_start] = ACTIONS(590), }, [314] = { - [sym_redirected_statement] = STATE(2654), - [sym_for_statement] = STATE(2654), - [sym_c_style_for_statement] = STATE(2654), - [sym_while_statement] = STATE(2654), - [sym_if_statement] = STATE(2654), - [sym_case_statement] = STATE(2654), - [sym_function_definition] = STATE(2654), - [sym_compound_statement] = STATE(2654), - [sym_subshell] = STATE(2654), - [sym_pipeline] = STATE(2654), - [sym_list] = STATE(2654), - [sym_negated_command] = STATE(2654), - [sym_test_command] = STATE(2654), - [sym_declaration_command] = STATE(2654), - [sym_unset_command] = STATE(2654), - [sym_command] = STATE(2654), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(736), - [sym_variable_assignments] = STATE(2654), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(315), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym_redirected_statement] = STATE(2796), + [sym_for_statement] = STATE(2796), + [sym_c_style_for_statement] = STATE(2796), + [sym_while_statement] = STATE(2796), + [sym_if_statement] = STATE(2796), + [sym_case_statement] = STATE(2796), + [sym_function_definition] = STATE(2796), + [sym_compound_statement] = STATE(2796), + [sym_subshell] = STATE(2796), + [sym_pipeline] = STATE(2796), + [sym_list] = STATE(2796), + [sym_negated_command] = STATE(2796), + [sym_test_command] = STATE(2796), + [sym_declaration_command] = STATE(2796), + [sym_unset_command] = STATE(2796), + [sym_command] = STATE(2796), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(674), + [sym_variable_assignments] = STATE(2796), + [sym_subscript] = STATE(4373), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(778), + [sym_brace_expression] = STATE(778), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(778), + [sym_translated_string] = STATE(778), + [sym_number] = STATE(778), + [sym_simple_expansion] = STATE(778), + [sym_expansion] = STATE(778), + [sym_command_substitution] = STATE(778), + [sym_process_substitution] = STATE(778), + [aux_sym_redirected_statement_repeat2] = STATE(3049), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(765), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym__brace_start] = ACTIONS(388), }, [315] = { - [sym_redirected_statement] = STATE(2799), - [sym_for_statement] = STATE(2799), - [sym_c_style_for_statement] = STATE(2799), - [sym_while_statement] = STATE(2799), - [sym_if_statement] = STATE(2799), - [sym_case_statement] = STATE(2799), - [sym_function_definition] = STATE(2799), - [sym_compound_statement] = STATE(2799), - [sym_subshell] = STATE(2799), - [sym_pipeline] = STATE(2799), - [sym_list] = STATE(2799), - [sym_negated_command] = STATE(2799), - [sym_test_command] = STATE(2799), - [sym_declaration_command] = STATE(2799), - [sym_unset_command] = STATE(2799), - [sym_command] = STATE(2799), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(721), - [sym_variable_assignments] = STATE(2799), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym__statements_repeat1] = STATE(315), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(971), - [anon_sym_for] = ACTIONS(974), - [anon_sym_select] = ACTIONS(977), - [anon_sym_GT_GT] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_while] = ACTIONS(989), - [anon_sym_until] = ACTIONS(989), - [anon_sym_if] = ACTIONS(992), - [anon_sym_case] = ACTIONS(995), - [anon_sym_function] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_LBRACK] = ACTIONS(1007), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), - [anon_sym_declare] = ACTIONS(1013), - [anon_sym_typeset] = ACTIONS(1013), - [anon_sym_export] = ACTIONS(1013), - [anon_sym_readonly] = ACTIONS(1013), - [anon_sym_local] = ACTIONS(1013), - [anon_sym_unset] = ACTIONS(1016), - [anon_sym_unsetenv] = ACTIONS(1016), - [anon_sym_AMP_GT] = ACTIONS(983), - [anon_sym_AMP_GT_GT] = ACTIONS(980), - [anon_sym_LT_AMP] = ACTIONS(980), - [anon_sym_GT_AMP] = ACTIONS(980), - [anon_sym_GT_PIPE] = ACTIONS(980), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1022), - [sym__special_character] = ACTIONS(1025), - [anon_sym_DQUOTE] = ACTIONS(1028), - [sym_raw_string] = ACTIONS(1031), - [sym_ansi_c_string] = ACTIONS(1031), - [aux_sym_number_token1] = ACTIONS(1034), - [aux_sym_number_token2] = ACTIONS(1037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), - [anon_sym_BQUOTE] = ACTIONS(1046), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1049), - [anon_sym_LT_LPAREN] = ACTIONS(1052), - [anon_sym_GT_LPAREN] = ACTIONS(1052), + [sym_redirected_statement] = STATE(3224), + [sym_for_statement] = STATE(3224), + [sym_c_style_for_statement] = STATE(3224), + [sym_while_statement] = STATE(3224), + [sym_if_statement] = STATE(3224), + [sym_case_statement] = STATE(3224), + [sym_function_definition] = STATE(3224), + [sym_compound_statement] = STATE(3224), + [sym_subshell] = STATE(3224), + [sym_pipeline] = STATE(3224), + [sym_list] = STATE(3224), + [sym_negated_command] = STATE(3224), + [sym_test_command] = STATE(3224), + [sym_declaration_command] = STATE(3224), + [sym_unset_command] = STATE(3224), + [sym_command] = STATE(3224), + [sym_command_name] = STATE(597), + [sym_variable_assignment] = STATE(1090), + [sym_variable_assignments] = STATE(3224), + [sym_subscript] = STATE(4311), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(1407), + [sym_brace_expression] = STATE(1407), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(1407), + [sym_translated_string] = STATE(1407), + [sym_number] = STATE(1407), + [sym_simple_expansion] = STATE(1407), + [sym_expansion] = STATE(1407), + [sym_command_substitution] = STATE(1407), + [sym_process_substitution] = STATE(1407), + [aux_sym_redirected_statement_repeat2] = STATE(3487), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(1071), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(1075), + [anon_sym_GT] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(1079), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(1081), + [anon_sym_typeset] = ACTIONS(1081), + [anon_sym_export] = ACTIONS(1081), + [anon_sym_readonly] = ACTIONS(1081), + [anon_sym_local] = ACTIONS(1081), + [anon_sym_unset] = ACTIONS(1083), + [anon_sym_unsetenv] = ACTIONS(1083), + [anon_sym_AMP_GT] = ACTIONS(1075), + [anon_sym_AMP_GT_GT] = ACTIONS(1073), + [anon_sym_LT_AMP] = ACTIONS(1073), + [anon_sym_GT_AMP] = ACTIONS(1073), + [anon_sym_GT_PIPE] = ACTIONS(1073), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(1087), + [sym_ansi_c_string] = ACTIONS(1087), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1055), - [sym_file_descriptor] = ACTIONS(1058), - [sym_variable_name] = ACTIONS(1061), - [sym__brace_start] = ACTIONS(1064), + [sym_test_operator] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(1091), + [sym_variable_name] = ACTIONS(1093), + [sym__brace_start] = ACTIONS(388), }, [316] = { - [sym_redirected_statement] = STATE(2659), - [sym_for_statement] = STATE(2659), - [sym_c_style_for_statement] = STATE(2659), - [sym_while_statement] = STATE(2659), - [sym_if_statement] = STATE(2659), - [sym_case_statement] = STATE(2659), - [sym_function_definition] = STATE(2659), - [sym_compound_statement] = STATE(2659), - [sym_subshell] = STATE(2659), - [sym_pipeline] = STATE(2659), - [sym_list] = STATE(2659), - [sym_negated_command] = STATE(2659), - [sym_test_command] = STATE(2659), - [sym_declaration_command] = STATE(2659), - [sym_unset_command] = STATE(2659), - [sym_command] = STATE(2659), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(692), - [sym_variable_assignments] = STATE(2659), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(315), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym_redirected_statement] = STATE(2871), + [sym_for_statement] = STATE(2871), + [sym_c_style_for_statement] = STATE(2871), + [sym_while_statement] = STATE(2871), + [sym_if_statement] = STATE(2871), + [sym_case_statement] = STATE(2871), + [sym_function_definition] = STATE(2871), + [sym_compound_statement] = STATE(2871), + [sym_subshell] = STATE(2871), + [sym_pipeline] = STATE(2871), + [sym_list] = STATE(2871), + [sym_negated_command] = STATE(2871), + [sym_test_command] = STATE(2871), + [sym_declaration_command] = STATE(2871), + [sym_unset_command] = STATE(2871), + [sym_command] = STATE(2871), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(703), + [sym_variable_assignments] = STATE(2871), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [317] = { - [sym__terminated_statement] = STATE(4622), - [sym_redirected_statement] = STATE(2745), - [sym_for_statement] = STATE(2745), - [sym_c_style_for_statement] = STATE(2745), - [sym_while_statement] = STATE(2745), - [sym_if_statement] = STATE(2745), - [sym_case_statement] = STATE(2745), - [sym_function_definition] = STATE(2745), - [sym_compound_statement] = STATE(2745), - [sym_subshell] = STATE(3170), - [sym_pipeline] = STATE(2745), - [sym_list] = STATE(2745), - [sym_negated_command] = STATE(2745), - [sym_test_command] = STATE(2745), - [sym_declaration_command] = STATE(2745), - [sym_unset_command] = STATE(2745), - [sym_command] = STATE(2745), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(730), - [sym_variable_assignments] = STATE(2745), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym_redirected_statement] = STATE(2874), + [sym_for_statement] = STATE(2874), + [sym_c_style_for_statement] = STATE(2874), + [sym_while_statement] = STATE(2874), + [sym_if_statement] = STATE(2874), + [sym_case_statement] = STATE(2874), + [sym_function_definition] = STATE(2874), + [sym_compound_statement] = STATE(2874), + [sym_subshell] = STATE(2874), + [sym_pipeline] = STATE(2874), + [sym_list] = STATE(2874), + [sym_negated_command] = STATE(2874), + [sym_test_command] = STATE(2874), + [sym_declaration_command] = STATE(2874), + [sym_unset_command] = STATE(2874), + [sym_command] = STATE(2874), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(701), + [sym_variable_assignments] = STATE(2874), + [sym_subscript] = STATE(4321), + [sym_file_redirect] = STATE(1618), + [sym_arithmetic_expansion] = STATE(959), + [sym_brace_expression] = STATE(959), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(959), + [sym_translated_string] = STATE(959), + [sym_number] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [aux_sym_redirected_statement_repeat2] = STATE(3083), + [aux_sym_command_repeat1] = STATE(949), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(895), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(901), + [anon_sym_typeset] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_readonly] = ACTIONS(901), + [anon_sym_local] = ACTIONS(901), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(344), + [anon_sym_AMP_GT_GT] = ACTIONS(342), + [anon_sym_LT_AMP] = ACTIONS(342), + [anon_sym_GT_AMP] = ACTIONS(342), + [anon_sym_GT_PIPE] = ACTIONS(342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(366), + [sym_ansi_c_string] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(382), + [sym_file_descriptor] = ACTIONS(384), + [sym_variable_name] = ACTIONS(386), + [sym__brace_start] = ACTIONS(388), }, [318] = { - [sym__terminated_statement] = STATE(4673), - [sym_redirected_statement] = STATE(2745), - [sym_for_statement] = STATE(2745), - [sym_c_style_for_statement] = STATE(2745), - [sym_while_statement] = STATE(2745), - [sym_if_statement] = STATE(2745), - [sym_case_statement] = STATE(2745), - [sym_function_definition] = STATE(2745), - [sym_compound_statement] = STATE(2745), - [sym_subshell] = STATE(3170), - [sym_pipeline] = STATE(2745), - [sym_list] = STATE(2745), - [sym_negated_command] = STATE(2745), - [sym_test_command] = STATE(2745), - [sym_declaration_command] = STATE(2745), - [sym_unset_command] = STATE(2745), - [sym_command] = STATE(2745), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(730), - [sym_variable_assignments] = STATE(2745), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [sym_redirected_statement] = STATE(2710), + [sym_for_statement] = STATE(2710), + [sym_c_style_for_statement] = STATE(2710), + [sym_while_statement] = STATE(2710), + [sym_if_statement] = STATE(2710), + [sym_case_statement] = STATE(2710), + [sym_function_definition] = STATE(2710), + [sym_compound_statement] = STATE(2710), + [sym_subshell] = STATE(2710), + [sym_pipeline] = STATE(2710), + [sym_list] = STATE(2710), + [sym_negated_command] = STATE(2710), + [sym_test_command] = STATE(2710), + [sym_declaration_command] = STATE(2710), + [sym_unset_command] = STATE(2710), + [sym_command] = STATE(2710), + [sym_command_name] = STATE(446), + [sym_variable_assignment] = STATE(616), + [sym_variable_assignments] = STATE(2710), + [sym_subscript] = STATE(4372), + [sym_file_redirect] = STATE(1291), + [sym_arithmetic_expansion] = STATE(665), + [sym_brace_expression] = STATE(665), + [sym_concatenation] = STATE(1003), + [sym_string] = STATE(665), + [sym_translated_string] = STATE(665), + [sym_number] = STATE(665), + [sym_simple_expansion] = STATE(665), + [sym_expansion] = STATE(665), + [sym_command_substitution] = STATE(665), + [sym_process_substitution] = STATE(665), + [aux_sym_redirected_statement_repeat2] = STATE(2799), + [aux_sym_command_repeat1] = STATE(1002), + [aux_sym__literal_repeat1] = STATE(831), + [sym_word] = ACTIONS(400), + [anon_sym_for] = ACTIONS(402), + [anon_sym_select] = ACTIONS(404), + [anon_sym_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(410), + [anon_sym_GT] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [anon_sym_until] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_function] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(436), + [anon_sym_declare] = ACTIONS(438), + [anon_sym_typeset] = ACTIONS(438), + [anon_sym_export] = ACTIONS(438), + [anon_sym_readonly] = ACTIONS(438), + [anon_sym_local] = ACTIONS(438), + [anon_sym_unset] = ACTIONS(440), + [anon_sym_unsetenv] = ACTIONS(440), + [anon_sym_AMP_GT] = ACTIONS(410), + [anon_sym_AMP_GT_GT] = ACTIONS(408), + [anon_sym_LT_AMP] = ACTIONS(408), + [anon_sym_GT_AMP] = ACTIONS(408), + [anon_sym_GT_PIPE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(442), + [sym__special_character] = ACTIONS(444), + [anon_sym_DQUOTE] = ACTIONS(446), + [sym_raw_string] = ACTIONS(448), + [sym_ansi_c_string] = ACTIONS(448), + [aux_sym_number_token1] = ACTIONS(450), + [aux_sym_number_token2] = ACTIONS(452), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), + [anon_sym_BQUOTE] = ACTIONS(458), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), + [anon_sym_LT_LPAREN] = ACTIONS(462), + [anon_sym_GT_LPAREN] = ACTIONS(462), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(464), + [sym_file_descriptor] = ACTIONS(466), + [sym_variable_name] = ACTIONS(468), + [sym__brace_start] = ACTIONS(470), }, [319] = { - [sym_redirected_statement] = STATE(2670), - [sym_for_statement] = STATE(2670), - [sym_c_style_for_statement] = STATE(2670), - [sym_while_statement] = STATE(2670), - [sym_if_statement] = STATE(2670), - [sym_case_statement] = STATE(2670), - [sym_function_definition] = STATE(2670), - [sym_compound_statement] = STATE(2670), - [sym_subshell] = STATE(2670), - [sym_pipeline] = STATE(2670), - [sym_list] = STATE(2670), - [sym_negated_command] = STATE(2670), - [sym_test_command] = STATE(2670), - [sym_declaration_command] = STATE(2670), - [sym_unset_command] = STATE(2670), - [sym_command] = STATE(2670), - [sym_command_name] = STATE(483), - [sym_variable_assignment] = STATE(706), - [sym_variable_assignments] = STATE(2670), - [sym_subscript] = STATE(4112), - [sym_file_redirect] = STATE(1550), - [sym_arithmetic_expansion] = STATE(852), - [sym_brace_expression] = STATE(852), - [sym_concatenation] = STATE(1197), - [sym_string] = STATE(852), - [sym_translated_string] = STATE(852), - [sym_number] = STATE(852), - [sym_simple_expansion] = STATE(852), - [sym_expansion] = STATE(852), - [sym_command_substitution] = STATE(852), - [sym_process_substitution] = STATE(852), - [aux_sym__statements_repeat1] = STATE(315), - [aux_sym_redirected_statement_repeat2] = STATE(2930), - [aux_sym_command_repeat1] = STATE(975), - [aux_sym__literal_repeat1] = STATE(1106), + [sym_redirected_statement] = STATE(2814), + [sym_for_statement] = STATE(2814), + [sym_c_style_for_statement] = STATE(2814), + [sym_while_statement] = STATE(2814), + [sym_if_statement] = STATE(2814), + [sym_case_statement] = STATE(2814), + [sym_function_definition] = STATE(2814), + [sym_compound_statement] = STATE(2814), + [sym_subshell] = STATE(2814), + [sym_pipeline] = STATE(2814), + [sym_list] = STATE(2814), + [sym_negated_command] = STATE(2814), + [sym_test_command] = STATE(2814), + [sym_declaration_command] = STATE(2814), + [sym_unset_command] = STATE(2814), + [sym_command] = STATE(2814), + [sym_command_name] = STATE(473), + [sym_variable_assignment] = STATE(656), + [sym_variable_assignments] = STATE(2814), + [sym_subscript] = STATE(4317), + [sym_file_redirect] = STATE(1499), + [sym_arithmetic_expansion] = STATE(794), + [sym_brace_expression] = STATE(794), + [sym_concatenation] = STATE(1275), + [sym_string] = STATE(794), + [sym_translated_string] = STATE(794), + [sym_number] = STATE(794), + [sym_simple_expansion] = STATE(794), + [sym_expansion] = STATE(794), + [sym_command_substitution] = STATE(794), + [sym_process_substitution] = STATE(794), + [aux_sym_redirected_statement_repeat2] = STATE(2998), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1104), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_GT_GT] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(15), - [anon_sym_GT] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_while] = ACTIONS(19), - [anon_sym_until] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_case] = ACTIONS(23), - [anon_sym_function] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym_declare] = ACTIONS(35), - [anon_sym_typeset] = ACTIONS(35), - [anon_sym_export] = ACTIONS(35), - [anon_sym_readonly] = ACTIONS(35), - [anon_sym_local] = ACTIONS(35), - [anon_sym_unset] = ACTIONS(37), - [anon_sym_unsetenv] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(15), - [anon_sym_AMP_GT_GT] = ACTIONS(13), - [anon_sym_LT_AMP] = ACTIONS(13), - [anon_sym_GT_AMP] = ACTIONS(13), - [anon_sym_GT_PIPE] = ACTIONS(13), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(39), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_GT_GT] = ACTIONS(15), + [anon_sym_LT] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(37), + [anon_sym_typeset] = ACTIONS(37), + [anon_sym_export] = ACTIONS(37), + [anon_sym_readonly] = ACTIONS(37), + [anon_sym_local] = ACTIONS(37), + [anon_sym_unset] = ACTIONS(39), + [anon_sym_unsetenv] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(17), + [anon_sym_AMP_GT_GT] = ACTIONS(15), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(15), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(13), [anon_sym_DOLLAR] = ACTIONS(41), [sym__special_character] = ACTIONS(43), [anon_sym_DQUOTE] = ACTIONS(45), @@ -47652,650 +49476,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(71), }, [320] = { - [sym_redirected_statement] = STATE(3130), - [sym_for_statement] = STATE(3130), - [sym_c_style_for_statement] = STATE(3130), - [sym_while_statement] = STATE(3130), - [sym_if_statement] = STATE(3130), - [sym_case_statement] = STATE(3130), - [sym_function_definition] = STATE(3130), - [sym_compound_statement] = STATE(3130), - [sym_subshell] = STATE(3130), - [sym_pipeline] = STATE(3130), - [sym_list] = STATE(3130), - [sym_negated_command] = STATE(3130), - [sym_test_command] = STATE(3130), - [sym_declaration_command] = STATE(3130), - [sym_unset_command] = STATE(3130), - [sym_command] = STATE(3130), - [sym_command_name] = STATE(626), - [sym_variable_assignment] = STATE(1253), - [sym_variable_assignments] = STATE(3130), - [sym_subscript] = STATE(4091), - [sym_file_redirect] = STATE(2103), - [sym_arithmetic_expansion] = STATE(1555), - [sym_brace_expression] = STATE(1555), - [sym_concatenation] = STATE(1977), - [sym_string] = STATE(1555), - [sym_translated_string] = STATE(1555), - [sym_number] = STATE(1555), - [sym_simple_expansion] = STATE(1555), - [sym_expansion] = STATE(1555), - [sym_command_substitution] = STATE(1555), - [sym_process_substitution] = STATE(1555), - [aux_sym_redirected_statement_repeat2] = STATE(3444), - [aux_sym_command_repeat1] = STATE(978), - [aux_sym__literal_repeat1] = STATE(1722), - [sym_word] = ACTIONS(1067), - [anon_sym_for] = ACTIONS(250), - [anon_sym_select] = ACTIONS(252), - [anon_sym_GT_GT] = ACTIONS(1069), - [anon_sym_LT] = ACTIONS(1071), - [anon_sym_GT] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(1073), - [anon_sym_while] = ACTIONS(260), - [anon_sym_until] = ACTIONS(260), - [anon_sym_if] = ACTIONS(262), - [anon_sym_case] = ACTIONS(264), - [anon_sym_function] = ACTIONS(266), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(276), - [anon_sym_declare] = ACTIONS(278), - [anon_sym_typeset] = ACTIONS(278), - [anon_sym_export] = ACTIONS(278), - [anon_sym_readonly] = ACTIONS(278), - [anon_sym_local] = ACTIONS(278), - [anon_sym_unset] = ACTIONS(280), - [anon_sym_unsetenv] = ACTIONS(280), - [anon_sym_AMP_GT] = ACTIONS(1071), - [anon_sym_AMP_GT_GT] = ACTIONS(1069), - [anon_sym_LT_AMP] = ACTIONS(1069), - [anon_sym_GT_AMP] = ACTIONS(1069), - [anon_sym_GT_PIPE] = ACTIONS(1069), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1077), - [anon_sym_DOLLAR] = ACTIONS(1079), - [sym__special_character] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(1083), - [sym_raw_string] = ACTIONS(1085), - [sym_ansi_c_string] = ACTIONS(1085), - [aux_sym_number_token1] = ACTIONS(1087), - [aux_sym_number_token2] = ACTIONS(1089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1091), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(1095), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1097), - [anon_sym_LT_LPAREN] = ACTIONS(1099), - [anon_sym_GT_LPAREN] = ACTIONS(1099), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1101), - [sym_file_descriptor] = ACTIONS(1103), - [sym_variable_name] = ACTIONS(312), - [sym__brace_start] = ACTIONS(1105), - }, - [321] = { - [sym_redirected_statement] = STATE(2787), - [sym_for_statement] = STATE(2787), - [sym_c_style_for_statement] = STATE(2787), - [sym_while_statement] = STATE(2787), - [sym_if_statement] = STATE(2787), - [sym_case_statement] = STATE(2787), - [sym_function_definition] = STATE(2787), - [sym_compound_statement] = STATE(2787), - [sym_subshell] = STATE(2787), - [sym_pipeline] = STATE(2787), - [sym_list] = STATE(2787), - [sym_negated_command] = STATE(2787), - [sym_test_command] = STATE(2787), - [sym_declaration_command] = STATE(2787), - [sym_unset_command] = STATE(2787), - [sym_command] = STATE(2787), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(733), - [sym_variable_assignments] = STATE(2787), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), - }, - [322] = { - [sym_redirected_statement] = STATE(2417), - [sym_for_statement] = STATE(2417), - [sym_c_style_for_statement] = STATE(2417), - [sym_while_statement] = STATE(2417), - [sym_if_statement] = STATE(2417), - [sym_case_statement] = STATE(2417), - [sym_function_definition] = STATE(2417), - [sym_compound_statement] = STATE(2417), - [sym_subshell] = STATE(2417), - [sym_pipeline] = STATE(2417), - [sym_list] = STATE(2417), - [sym_negated_command] = STATE(2417), - [sym_test_command] = STATE(2417), - [sym_declaration_command] = STATE(2417), - [sym_unset_command] = STATE(2417), - [sym_command] = STATE(2417), - [sym_command_name] = STATE(448), - [sym_variable_assignment] = STATE(636), - [sym_variable_assignments] = STATE(2417), - [sym_subscript] = STATE(4152), - [sym_file_redirect] = STATE(1302), - [sym_arithmetic_expansion] = STATE(688), - [sym_brace_expression] = STATE(688), - [sym_concatenation] = STATE(1020), - [sym_string] = STATE(688), - [sym_translated_string] = STATE(688), - [sym_number] = STATE(688), - [sym_simple_expansion] = STATE(688), - [sym_expansion] = STATE(688), - [sym_command_substitution] = STATE(688), - [sym_process_substitution] = STATE(688), - [aux_sym_redirected_statement_repeat2] = STATE(2729), - [aux_sym_command_repeat1] = STATE(1023), - [aux_sym__literal_repeat1] = STATE(823), - [sym_word] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_GT] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_function] = ACTIONS(452), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(462), - [anon_sym_typeset] = ACTIONS(462), - [anon_sym_export] = ACTIONS(462), - [anon_sym_readonly] = ACTIONS(462), - [anon_sym_local] = ACTIONS(462), - [anon_sym_unset] = ACTIONS(464), - [anon_sym_unsetenv] = ACTIONS(464), - [anon_sym_AMP_GT] = ACTIONS(434), - [anon_sym_AMP_GT_GT] = ACTIONS(432), - [anon_sym_LT_AMP] = ACTIONS(432), - [anon_sym_GT_AMP] = ACTIONS(432), - [anon_sym_GT_PIPE] = ACTIONS(432), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(466), - [anon_sym_DOLLAR] = ACTIONS(468), - [sym__special_character] = ACTIONS(470), - [anon_sym_DQUOTE] = ACTIONS(472), - [sym_raw_string] = ACTIONS(474), - [sym_ansi_c_string] = ACTIONS(474), - [aux_sym_number_token1] = ACTIONS(476), - [aux_sym_number_token2] = ACTIONS(478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(482), - [anon_sym_BQUOTE] = ACTIONS(484), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(486), - [anon_sym_LT_LPAREN] = ACTIONS(488), - [anon_sym_GT_LPAREN] = ACTIONS(488), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(490), - [sym_file_descriptor] = ACTIONS(492), - [sym_variable_name] = ACTIONS(494), - [sym__brace_start] = ACTIONS(496), - }, - [323] = { - [sym_redirected_statement] = STATE(2534), - [sym_for_statement] = STATE(2534), - [sym_c_style_for_statement] = STATE(2534), - [sym_while_statement] = STATE(2534), - [sym_if_statement] = STATE(2534), - [sym_case_statement] = STATE(2534), - [sym_function_definition] = STATE(2534), - [sym_compound_statement] = STATE(2534), - [sym_subshell] = STATE(2534), - [sym_pipeline] = STATE(2534), - [sym_list] = STATE(2534), - [sym_negated_command] = STATE(2534), - [sym_test_command] = STATE(2534), - [sym_declaration_command] = STATE(2534), - [sym_unset_command] = STATE(2534), - [sym_command] = STATE(2534), - [sym_command_name] = STATE(448), - [sym_variable_assignment] = STATE(625), - [sym_variable_assignments] = STATE(2534), - [sym_subscript] = STATE(4152), - [sym_file_redirect] = STATE(1302), - [sym_arithmetic_expansion] = STATE(688), - [sym_brace_expression] = STATE(688), - [sym_concatenation] = STATE(1020), - [sym_string] = STATE(688), - [sym_translated_string] = STATE(688), - [sym_number] = STATE(688), - [sym_simple_expansion] = STATE(688), - [sym_expansion] = STATE(688), - [sym_command_substitution] = STATE(688), - [sym_process_substitution] = STATE(688), - [aux_sym_redirected_statement_repeat2] = STATE(2729), - [aux_sym_command_repeat1] = STATE(1023), - [aux_sym__literal_repeat1] = STATE(823), - [sym_word] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_GT] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_function] = ACTIONS(452), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(462), - [anon_sym_typeset] = ACTIONS(462), - [anon_sym_export] = ACTIONS(462), - [anon_sym_readonly] = ACTIONS(462), - [anon_sym_local] = ACTIONS(462), - [anon_sym_unset] = ACTIONS(464), - [anon_sym_unsetenv] = ACTIONS(464), - [anon_sym_AMP_GT] = ACTIONS(434), - [anon_sym_AMP_GT_GT] = ACTIONS(432), - [anon_sym_LT_AMP] = ACTIONS(432), - [anon_sym_GT_AMP] = ACTIONS(432), - [anon_sym_GT_PIPE] = ACTIONS(432), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(466), - [anon_sym_DOLLAR] = ACTIONS(468), - [sym__special_character] = ACTIONS(470), - [anon_sym_DQUOTE] = ACTIONS(472), - [sym_raw_string] = ACTIONS(474), - [sym_ansi_c_string] = ACTIONS(474), - [aux_sym_number_token1] = ACTIONS(476), - [aux_sym_number_token2] = ACTIONS(478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(482), - [anon_sym_BQUOTE] = ACTIONS(484), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(486), - [anon_sym_LT_LPAREN] = ACTIONS(488), - [anon_sym_GT_LPAREN] = ACTIONS(488), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(490), - [sym_file_descriptor] = ACTIONS(492), - [sym_variable_name] = ACTIONS(494), - [sym__brace_start] = ACTIONS(496), - }, - [324] = { - [sym_redirected_statement] = STATE(3221), - [sym_for_statement] = STATE(3221), - [sym_c_style_for_statement] = STATE(3221), - [sym_while_statement] = STATE(3221), - [sym_if_statement] = STATE(3221), - [sym_case_statement] = STATE(3221), - [sym_function_definition] = STATE(3221), - [sym_compound_statement] = STATE(3221), - [sym_subshell] = STATE(3221), - [sym_pipeline] = STATE(3221), - [sym_list] = STATE(3221), - [sym_negated_command] = STATE(3221), - [sym_test_command] = STATE(3221), - [sym_declaration_command] = STATE(3221), - [sym_unset_command] = STATE(3221), - [sym_command] = STATE(3221), - [sym_command_name] = STATE(626), - [sym_variable_assignment] = STATE(1250), - [sym_variable_assignments] = STATE(3221), - [sym_subscript] = STATE(4091), - [sym_file_redirect] = STATE(2103), - [sym_arithmetic_expansion] = STATE(1555), - [sym_brace_expression] = STATE(1555), - [sym_concatenation] = STATE(1977), - [sym_string] = STATE(1555), - [sym_translated_string] = STATE(1555), - [sym_number] = STATE(1555), - [sym_simple_expansion] = STATE(1555), - [sym_expansion] = STATE(1555), - [sym_command_substitution] = STATE(1555), - [sym_process_substitution] = STATE(1555), - [aux_sym_redirected_statement_repeat2] = STATE(3444), - [aux_sym_command_repeat1] = STATE(978), - [aux_sym__literal_repeat1] = STATE(1722), - [sym_word] = ACTIONS(1067), - [anon_sym_for] = ACTIONS(250), - [anon_sym_select] = ACTIONS(252), - [anon_sym_GT_GT] = ACTIONS(1069), - [anon_sym_LT] = ACTIONS(1071), - [anon_sym_GT] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(1073), - [anon_sym_while] = ACTIONS(260), - [anon_sym_until] = ACTIONS(260), - [anon_sym_if] = ACTIONS(262), - [anon_sym_case] = ACTIONS(264), - [anon_sym_function] = ACTIONS(266), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(276), - [anon_sym_declare] = ACTIONS(278), - [anon_sym_typeset] = ACTIONS(278), - [anon_sym_export] = ACTIONS(278), - [anon_sym_readonly] = ACTIONS(278), - [anon_sym_local] = ACTIONS(278), - [anon_sym_unset] = ACTIONS(280), - [anon_sym_unsetenv] = ACTIONS(280), - [anon_sym_AMP_GT] = ACTIONS(1071), - [anon_sym_AMP_GT_GT] = ACTIONS(1069), - [anon_sym_LT_AMP] = ACTIONS(1069), - [anon_sym_GT_AMP] = ACTIONS(1069), - [anon_sym_GT_PIPE] = ACTIONS(1069), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1077), - [anon_sym_DOLLAR] = ACTIONS(1079), - [sym__special_character] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(1083), - [sym_raw_string] = ACTIONS(1085), - [sym_ansi_c_string] = ACTIONS(1085), - [aux_sym_number_token1] = ACTIONS(1087), - [aux_sym_number_token2] = ACTIONS(1089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1091), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(1095), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1097), - [anon_sym_LT_LPAREN] = ACTIONS(1099), - [anon_sym_GT_LPAREN] = ACTIONS(1099), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1101), - [sym_file_descriptor] = ACTIONS(1103), - [sym_variable_name] = ACTIONS(312), - [sym__brace_start] = ACTIONS(1105), - }, - [325] = { - [sym_redirected_statement] = STATE(2785), - [sym_for_statement] = STATE(2785), - [sym_c_style_for_statement] = STATE(2785), - [sym_while_statement] = STATE(2785), - [sym_if_statement] = STATE(2785), - [sym_case_statement] = STATE(2785), - [sym_function_definition] = STATE(2785), - [sym_compound_statement] = STATE(2785), - [sym_subshell] = STATE(2785), - [sym_pipeline] = STATE(2785), - [sym_list] = STATE(2785), - [sym_negated_command] = STATE(2785), - [sym_test_command] = STATE(2785), - [sym_declaration_command] = STATE(2785), - [sym_unset_command] = STATE(2785), - [sym_command] = STATE(2785), - [sym_command_name] = STATE(521), - [sym_variable_assignment] = STATE(735), - [sym_variable_assignments] = STATE(2785), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2976), - [aux_sym_command_repeat1] = STATE(964), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(358), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(376), - [anon_sym_typeset] = ACTIONS(376), - [anon_sym_export] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_local] = ACTIONS(376), - [anon_sym_unset] = ACTIONS(378), - [anon_sym_unsetenv] = ACTIONS(378), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), - }, - [326] = { - [sym_redirected_statement] = STATE(2667), - [sym_for_statement] = STATE(2667), - [sym_c_style_for_statement] = STATE(2667), - [sym_while_statement] = STATE(2667), - [sym_if_statement] = STATE(2667), - [sym_case_statement] = STATE(2667), - [sym_function_definition] = STATE(2667), - [sym_compound_statement] = STATE(2667), - [sym_subshell] = STATE(2667), - [sym_pipeline] = STATE(2667), - [sym_list] = STATE(2667), - [sym_negated_command] = STATE(2667), - [sym_test_command] = STATE(2667), - [sym_declaration_command] = STATE(2667), - [sym_unset_command] = STATE(2667), - [sym_command] = STATE(2667), - [sym_command_name] = STATE(483), - [sym_variable_assignment] = STATE(686), - [sym_variable_assignments] = STATE(2667), - [sym_subscript] = STATE(4112), - [sym_file_redirect] = STATE(1550), - [sym_arithmetic_expansion] = STATE(852), - [sym_brace_expression] = STATE(852), - [sym_concatenation] = STATE(1197), - [sym_string] = STATE(852), - [sym_translated_string] = STATE(852), - [sym_number] = STATE(852), - [sym_simple_expansion] = STATE(852), - [sym_expansion] = STATE(852), - [sym_command_substitution] = STATE(852), - [sym_process_substitution] = STATE(852), - [aux_sym_redirected_statement_repeat2] = STATE(2930), - [aux_sym_command_repeat1] = STATE(975), - [aux_sym__literal_repeat1] = STATE(1106), - [sym_word] = ACTIONS(7), + [sym_redirected_statement] = STATE(3225), + [sym_for_statement] = STATE(3225), + [sym_c_style_for_statement] = STATE(3225), + [sym_while_statement] = STATE(3225), + [sym_if_statement] = STATE(3225), + [sym_case_statement] = STATE(3225), + [sym_function_definition] = STATE(3225), + [sym_compound_statement] = STATE(3225), + [sym_subshell] = STATE(3225), + [sym_pipeline] = STATE(3225), + [sym_list] = STATE(3225), + [sym_negated_command] = STATE(3225), + [sym_test_command] = STATE(3225), + [sym_declaration_command] = STATE(3225), + [sym_unset_command] = STATE(3225), + [sym_command] = STATE(3225), + [sym_command_name] = STATE(597), + [sym_variable_assignment] = STATE(1184), + [sym_variable_assignments] = STATE(3225), + [sym_subscript] = STATE(4311), + [sym_file_redirect] = STATE(1570), + [sym_arithmetic_expansion] = STATE(1407), + [sym_brace_expression] = STATE(1407), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(1407), + [sym_translated_string] = STATE(1407), + [sym_number] = STATE(1407), + [sym_simple_expansion] = STATE(1407), + [sym_expansion] = STATE(1407), + [sym_command_substitution] = STATE(1407), + [sym_process_substitution] = STATE(1407), + [aux_sym_redirected_statement_repeat2] = STATE(3487), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1096), + [sym_word] = ACTIONS(1071), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_GT_GT] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(15), - [anon_sym_GT] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_while] = ACTIONS(19), - [anon_sym_until] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_case] = ACTIONS(23), - [anon_sym_function] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym_declare] = ACTIONS(35), - [anon_sym_typeset] = ACTIONS(35), - [anon_sym_export] = ACTIONS(35), - [anon_sym_readonly] = ACTIONS(35), - [anon_sym_local] = ACTIONS(35), - [anon_sym_unset] = ACTIONS(37), - [anon_sym_unsetenv] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(15), - [anon_sym_AMP_GT_GT] = ACTIONS(13), - [anon_sym_LT_AMP] = ACTIONS(13), - [anon_sym_GT_AMP] = ACTIONS(13), - [anon_sym_GT_PIPE] = ACTIONS(13), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym__special_character] = ACTIONS(43), - [anon_sym_DQUOTE] = ACTIONS(45), - [sym_raw_string] = ACTIONS(47), - [sym_ansi_c_string] = ACTIONS(47), - [aux_sym_number_token1] = ACTIONS(49), - [aux_sym_number_token2] = ACTIONS(51), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(55), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(59), - [anon_sym_LT_LPAREN] = ACTIONS(61), - [anon_sym_GT_LPAREN] = ACTIONS(61), + [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(1075), + [anon_sym_GT] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(1079), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(1081), + [anon_sym_typeset] = ACTIONS(1081), + [anon_sym_export] = ACTIONS(1081), + [anon_sym_readonly] = ACTIONS(1081), + [anon_sym_local] = ACTIONS(1081), + [anon_sym_unset] = ACTIONS(1083), + [anon_sym_unsetenv] = ACTIONS(1083), + [anon_sym_AMP_GT] = ACTIONS(1075), + [anon_sym_AMP_GT_GT] = ACTIONS(1073), + [anon_sym_LT_AMP] = ACTIONS(1073), + [anon_sym_GT_AMP] = ACTIONS(1073), + [anon_sym_GT_PIPE] = ACTIONS(1073), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(360), + [sym__special_character] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(364), + [sym_raw_string] = ACTIONS(1087), + [sym_ansi_c_string] = ACTIONS(1087), + [aux_sym_number_token1] = ACTIONS(368), + [aux_sym_number_token2] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(65), - [sym_file_descriptor] = ACTIONS(67), - [sym_variable_name] = ACTIONS(69), - [sym__brace_start] = ACTIONS(71), + [sym_test_operator] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(1091), + [sym_variable_name] = ACTIONS(1093), + [sym__brace_start] = ACTIONS(388), }, - [327] = { - [sym_redirected_statement] = STATE(2661), - [sym_for_statement] = STATE(2661), - [sym_c_style_for_statement] = STATE(2661), - [sym_while_statement] = STATE(2661), - [sym_if_statement] = STATE(2661), - [sym_case_statement] = STATE(2661), - [sym_function_definition] = STATE(2661), - [sym_compound_statement] = STATE(2661), - [sym_subshell] = STATE(2661), - [sym_pipeline] = STATE(2661), - [sym_list] = STATE(2661), - [sym_negated_command] = STATE(2661), - [sym_test_command] = STATE(2661), - [sym_declaration_command] = STATE(2661), - [sym_unset_command] = STATE(2661), - [sym_command] = STATE(2661), - [sym_command_name] = STATE(483), - [sym_variable_assignment] = STATE(683), - [sym_variable_assignments] = STATE(2661), - [sym_subscript] = STATE(4112), - [sym_file_redirect] = STATE(1550), - [sym_arithmetic_expansion] = STATE(852), - [sym_brace_expression] = STATE(852), - [sym_concatenation] = STATE(1197), - [sym_string] = STATE(852), - [sym_translated_string] = STATE(852), - [sym_number] = STATE(852), - [sym_simple_expansion] = STATE(852), - [sym_expansion] = STATE(852), - [sym_command_substitution] = STATE(852), - [sym_process_substitution] = STATE(852), - [aux_sym_redirected_statement_repeat2] = STATE(2930), - [aux_sym_command_repeat1] = STATE(975), - [aux_sym__literal_repeat1] = STATE(1106), + [321] = { + [sym_redirected_statement] = STATE(2825), + [sym_for_statement] = STATE(2825), + [sym_c_style_for_statement] = STATE(2825), + [sym_while_statement] = STATE(2825), + [sym_if_statement] = STATE(2825), + [sym_case_statement] = STATE(2825), + [sym_function_definition] = STATE(2825), + [sym_compound_statement] = STATE(2825), + [sym_subshell] = STATE(2825), + [sym_pipeline] = STATE(2825), + [sym_list] = STATE(2825), + [sym_negated_command] = STATE(2825), + [sym_test_command] = STATE(2825), + [sym_declaration_command] = STATE(2825), + [sym_unset_command] = STATE(2825), + [sym_command] = STATE(2825), + [sym_command_name] = STATE(473), + [sym_variable_assignment] = STATE(648), + [sym_variable_assignments] = STATE(2825), + [sym_subscript] = STATE(4317), + [sym_file_redirect] = STATE(1499), + [sym_arithmetic_expansion] = STATE(794), + [sym_brace_expression] = STATE(794), + [sym_concatenation] = STATE(1275), + [sym_string] = STATE(794), + [sym_translated_string] = STATE(794), + [sym_number] = STATE(794), + [sym_simple_expansion] = STATE(794), + [sym_expansion] = STATE(794), + [sym_command_substitution] = STATE(794), + [sym_process_substitution] = STATE(794), + [aux_sym_redirected_statement_repeat2] = STATE(2998), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1104), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_GT_GT] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(15), - [anon_sym_GT] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_while] = ACTIONS(19), - [anon_sym_until] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_case] = ACTIONS(23), - [anon_sym_function] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym_declare] = ACTIONS(35), - [anon_sym_typeset] = ACTIONS(35), - [anon_sym_export] = ACTIONS(35), - [anon_sym_readonly] = ACTIONS(35), - [anon_sym_local] = ACTIONS(35), - [anon_sym_unset] = ACTIONS(37), - [anon_sym_unsetenv] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(15), - [anon_sym_AMP_GT_GT] = ACTIONS(13), - [anon_sym_LT_AMP] = ACTIONS(13), - [anon_sym_GT_AMP] = ACTIONS(13), - [anon_sym_GT_PIPE] = ACTIONS(13), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(39), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_GT_GT] = ACTIONS(15), + [anon_sym_LT] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(37), + [anon_sym_typeset] = ACTIONS(37), + [anon_sym_export] = ACTIONS(37), + [anon_sym_readonly] = ACTIONS(37), + [anon_sym_local] = ACTIONS(37), + [anon_sym_unset] = ACTIONS(39), + [anon_sym_unsetenv] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(17), + [anon_sym_AMP_GT_GT] = ACTIONS(15), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(15), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(13), [anon_sym_DOLLAR] = ACTIONS(41), [sym__special_character] = ACTIONS(43), [anon_sym_DQUOTE] = ACTIONS(45), @@ -48315,2042 +49643,1929 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(69), [sym__brace_start] = ACTIONS(71), }, - [328] = { - [sym_redirected_statement] = STATE(2685), - [sym_for_statement] = STATE(2685), - [sym_c_style_for_statement] = STATE(2685), - [sym_while_statement] = STATE(2685), - [sym_if_statement] = STATE(2685), - [sym_case_statement] = STATE(2685), - [sym_function_definition] = STATE(2685), - [sym_compound_statement] = STATE(2685), - [sym_subshell] = STATE(2685), - [sym_pipeline] = STATE(2685), - [sym_list] = STATE(2685), - [sym_negated_command] = STATE(2685), - [sym_test_command] = STATE(2685), - [sym_declaration_command] = STATE(2685), - [sym_unset_command] = STATE(2685), - [sym_command] = STATE(2685), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(685), - [sym_variable_assignments] = STATE(2685), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), - }, - [329] = { - [sym_redirected_statement] = STATE(2599), - [sym_for_statement] = STATE(2599), - [sym_c_style_for_statement] = STATE(2599), - [sym_while_statement] = STATE(2599), - [sym_if_statement] = STATE(2599), - [sym_case_statement] = STATE(2599), - [sym_function_definition] = STATE(2599), - [sym_compound_statement] = STATE(2599), - [sym_subshell] = STATE(2599), - [sym_pipeline] = STATE(2599), - [sym_list] = STATE(2599), - [sym_negated_command] = STATE(2599), - [sym_test_command] = STATE(2599), - [sym_declaration_command] = STATE(2599), - [sym_unset_command] = STATE(2599), - [sym_command] = STATE(2599), - [sym_command_name] = STATE(463), - [sym_variable_assignment] = STATE(649), - [sym_variable_assignments] = STATE(2599), - [sym_subscript] = STATE(4145), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(725), - [sym_brace_expression] = STATE(725), - [sym_concatenation] = STATE(1170), - [sym_string] = STATE(725), - [sym_translated_string] = STATE(725), - [sym_number] = STATE(725), - [sym_simple_expansion] = STATE(725), - [sym_expansion] = STATE(725), - [sym_command_substitution] = STATE(725), - [sym_process_substitution] = STATE(725), - [aux_sym_redirected_statement_repeat2] = STATE(2771), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(896), - [sym_word] = ACTIONS(570), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_function] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(582), - [anon_sym_typeset] = ACTIONS(582), - [anon_sym_export] = ACTIONS(582), - [anon_sym_readonly] = ACTIONS(582), - [anon_sym_local] = ACTIONS(582), - [anon_sym_unset] = ACTIONS(584), - [anon_sym_unsetenv] = ACTIONS(584), - [anon_sym_AMP_GT] = ACTIONS(574), - [anon_sym_AMP_GT_GT] = ACTIONS(572), - [anon_sym_LT_AMP] = ACTIONS(572), - [anon_sym_GT_AMP] = ACTIONS(572), - [anon_sym_GT_PIPE] = ACTIONS(572), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [sym__special_character] = ACTIONS(590), - [anon_sym_DQUOTE] = ACTIONS(592), - [sym_raw_string] = ACTIONS(594), - [sym_ansi_c_string] = ACTIONS(594), - [aux_sym_number_token1] = ACTIONS(596), - [aux_sym_number_token2] = ACTIONS(598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(602), - [anon_sym_BQUOTE] = ACTIONS(604), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(608), - [anon_sym_GT_LPAREN] = ACTIONS(608), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(610), - [sym_file_descriptor] = ACTIONS(612), - [sym_variable_name] = ACTIONS(614), - [sym__brace_start] = ACTIONS(616), - }, - [330] = { - [sym_redirected_statement] = STATE(2630), - [sym_for_statement] = STATE(2630), - [sym_c_style_for_statement] = STATE(2630), - [sym_while_statement] = STATE(2630), - [sym_if_statement] = STATE(2630), - [sym_case_statement] = STATE(2630), - [sym_function_definition] = STATE(2630), - [sym_compound_statement] = STATE(2630), - [sym_subshell] = STATE(2630), - [sym_pipeline] = STATE(2630), - [sym_list] = STATE(2630), - [sym_negated_command] = STATE(2630), - [sym_test_command] = STATE(2630), - [sym_declaration_command] = STATE(2630), - [sym_unset_command] = STATE(2630), - [sym_command] = STATE(2630), - [sym_command_name] = STATE(463), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2630), - [sym_subscript] = STATE(4145), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(725), - [sym_brace_expression] = STATE(725), - [sym_concatenation] = STATE(1170), - [sym_string] = STATE(725), - [sym_translated_string] = STATE(725), - [sym_number] = STATE(725), - [sym_simple_expansion] = STATE(725), - [sym_expansion] = STATE(725), - [sym_command_substitution] = STATE(725), - [sym_process_substitution] = STATE(725), - [aux_sym_redirected_statement_repeat2] = STATE(2771), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(896), - [sym_word] = ACTIONS(570), - [anon_sym_for] = ACTIONS(428), - [anon_sym_select] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_while] = ACTIONS(438), - [anon_sym_until] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_function] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(460), - [anon_sym_declare] = ACTIONS(582), - [anon_sym_typeset] = ACTIONS(582), - [anon_sym_export] = ACTIONS(582), - [anon_sym_readonly] = ACTIONS(582), - [anon_sym_local] = ACTIONS(582), - [anon_sym_unset] = ACTIONS(584), - [anon_sym_unsetenv] = ACTIONS(584), - [anon_sym_AMP_GT] = ACTIONS(574), - [anon_sym_AMP_GT_GT] = ACTIONS(572), - [anon_sym_LT_AMP] = ACTIONS(572), - [anon_sym_GT_AMP] = ACTIONS(572), - [anon_sym_GT_PIPE] = ACTIONS(572), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [sym__special_character] = ACTIONS(590), - [anon_sym_DQUOTE] = ACTIONS(592), - [sym_raw_string] = ACTIONS(594), - [sym_ansi_c_string] = ACTIONS(594), - [aux_sym_number_token1] = ACTIONS(596), - [aux_sym_number_token2] = ACTIONS(598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(602), - [anon_sym_BQUOTE] = ACTIONS(604), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(608), - [anon_sym_GT_LPAREN] = ACTIONS(608), + [322] = { + [sym__expression] = STATE(1990), + [sym_binary_expression] = STATE(1623), + [sym_ternary_expression] = STATE(1623), + [sym_unary_expression] = STATE(1623), + [sym_postfix_expression] = STATE(1623), + [sym_parenthesized_expression] = STATE(1623), + [sym_arithmetic_expansion] = STATE(1557), + [sym_brace_expression] = STATE(1557), + [sym_concatenation] = STATE(1623), + [sym_string] = STATE(1557), + [sym_translated_string] = STATE(1557), + [sym_number] = STATE(1557), + [sym_simple_expansion] = STATE(1557), + [sym_expansion] = STATE(1557), + [sym_command_substitution] = STATE(1557), + [sym_process_substitution] = STATE(1557), + [aux_sym__literal_repeat1] = STATE(1636), + [aux_sym_concatenation_repeat1] = STATE(1546), + [sym_word] = ACTIONS(220), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1095), + [anon_sym_RPAREN_RPAREN] = ACTIONS(600), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_DASH_DASH] = ACTIONS(143), + [anon_sym_PLUS_EQ] = ACTIONS(143), + [anon_sym_DASH_EQ] = ACTIONS(143), + [anon_sym_STAR_EQ] = ACTIONS(143), + [anon_sym_SLASH_EQ] = ACTIONS(143), + [anon_sym_PERCENT_EQ] = ACTIONS(143), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(143), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_EQ_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_STAR_STAR] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_RPAREN] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(222), + [anon_sym_EQ_TILDE] = ACTIONS(143), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(143), + [aux_sym_unary_expression_token1] = ACTIONS(93), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1095), + [aux_sym_concatenation_token1] = ACTIONS(1097), + [anon_sym_DOLLAR] = ACTIONS(156), + [sym__special_character] = ACTIONS(1099), + [anon_sym_DQUOTE] = ACTIONS(1101), + [sym_raw_string] = ACTIONS(1103), + [sym_ansi_c_string] = ACTIONS(1103), + [aux_sym_number_token1] = ACTIONS(162), + [aux_sym_number_token2] = ACTIONS(164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1105), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(168), + [anon_sym_BQUOTE] = ACTIONS(170), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1107), + [anon_sym_LT_LPAREN] = ACTIONS(1109), + [anon_sym_GT_LPAREN] = ACTIONS(1109), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(610), - [sym_file_descriptor] = ACTIONS(612), - [sym_variable_name] = ACTIONS(614), - [sym__brace_start] = ACTIONS(616), + [sym_test_operator] = ACTIONS(1111), + [sym__concat] = ACTIONS(1097), + [sym__brace_start] = ACTIONS(182), }, - [331] = { - [sym_redirected_statement] = STATE(2699), - [sym_for_statement] = STATE(2699), - [sym_c_style_for_statement] = STATE(2699), - [sym_while_statement] = STATE(2699), - [sym_if_statement] = STATE(2699), - [sym_case_statement] = STATE(2699), - [sym_function_definition] = STATE(2699), - [sym_compound_statement] = STATE(2699), - [sym_subshell] = STATE(2699), - [sym_pipeline] = STATE(2699), - [sym_list] = STATE(2699), - [sym_negated_command] = STATE(2699), - [sym_test_command] = STATE(2699), - [sym_declaration_command] = STATE(2699), - [sym_unset_command] = STATE(2699), - [sym_command] = STATE(2699), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(738), - [sym_variable_assignments] = STATE(2699), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [323] = { + [sym__expression] = STATE(2003), + [sym_binary_expression] = STATE(1978), + [sym_ternary_expression] = STATE(1978), + [sym_unary_expression] = STATE(1978), + [sym_postfix_expression] = STATE(1978), + [sym_parenthesized_expression] = STATE(1978), + [sym_arithmetic_expansion] = STATE(1584), + [sym_brace_expression] = STATE(1584), + [sym_concatenation] = STATE(1978), + [sym_string] = STATE(1584), + [sym_translated_string] = STATE(1584), + [sym_number] = STATE(1584), + [sym_simple_expansion] = STATE(1584), + [sym_expansion] = STATE(1584), + [sym_command_substitution] = STATE(1584), + [sym_process_substitution] = STATE(1584), + [aux_sym__literal_repeat1] = STATE(1641), + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym_word] = ACTIONS(1113), + [anon_sym_LPAREN_LPAREN] = ACTIONS(598), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_DASH_DASH] = ACTIONS(143), + [anon_sym_PLUS_EQ] = ACTIONS(143), + [anon_sym_DASH_EQ] = ACTIONS(143), + [anon_sym_STAR_EQ] = ACTIONS(143), + [anon_sym_SLASH_EQ] = ACTIONS(143), + [anon_sym_PERCENT_EQ] = ACTIONS(143), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(143), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_EQ_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_STAR_STAR] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_RBRACK] = ACTIONS(1119), + [anon_sym_EQ_TILDE] = ACTIONS(143), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(143), + [aux_sym_unary_expression_token1] = ACTIONS(1121), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(598), + [aux_sym_concatenation_token1] = ACTIONS(1123), + [anon_sym_DOLLAR] = ACTIONS(611), + [sym__special_character] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_raw_string] = ACTIONS(1127), + [sym_ansi_c_string] = ACTIONS(1127), + [aux_sym_number_token1] = ACTIONS(619), + [aux_sym_number_token2] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), + [anon_sym_LT_LPAREN] = ACTIONS(631), + [anon_sym_GT_LPAREN] = ACTIONS(631), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(1129), + [sym__concat] = ACTIONS(1131), + [sym__brace_start] = ACTIONS(635), }, - [332] = { - [sym_redirected_statement] = STATE(2684), - [sym_for_statement] = STATE(2684), - [sym_c_style_for_statement] = STATE(2684), - [sym_while_statement] = STATE(2684), - [sym_if_statement] = STATE(2684), - [sym_case_statement] = STATE(2684), - [sym_function_definition] = STATE(2684), - [sym_compound_statement] = STATE(2684), - [sym_subshell] = STATE(2684), - [sym_pipeline] = STATE(2684), - [sym_list] = STATE(2684), - [sym_negated_command] = STATE(2684), - [sym_test_command] = STATE(2684), - [sym_declaration_command] = STATE(2684), - [sym_unset_command] = STATE(2684), - [sym_command] = STATE(2684), - [sym_command_name] = STATE(512), - [sym_variable_assignment] = STATE(729), - [sym_variable_assignments] = STATE(2684), - [sym_subscript] = STATE(4106), - [sym_file_redirect] = STATE(1579), - [sym_arithmetic_expansion] = STATE(1012), - [sym_brace_expression] = STATE(1012), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1012), - [sym_translated_string] = STATE(1012), - [sym_number] = STATE(1012), - [sym_simple_expansion] = STATE(1012), - [sym_expansion] = STATE(1012), - [sym_command_substitution] = STATE(1012), - [sym_process_substitution] = STATE(1012), - [aux_sym_redirected_statement_repeat2] = STATE(2924), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(923), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(929), - [anon_sym_typeset] = ACTIONS(929), - [anon_sym_export] = ACTIONS(929), - [anon_sym_readonly] = ACTIONS(929), - [anon_sym_local] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(931), - [anon_sym_unsetenv] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(362), - [anon_sym_AMP_GT_GT] = ACTIONS(360), - [anon_sym_LT_AMP] = ACTIONS(360), - [anon_sym_GT_AMP] = ACTIONS(360), - [anon_sym_GT_PIPE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(388), - [sym_ansi_c_string] = ACTIONS(388), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [324] = { + [sym__expression] = STATE(2003), + [sym_binary_expression] = STATE(1978), + [sym_ternary_expression] = STATE(1978), + [sym_unary_expression] = STATE(1978), + [sym_postfix_expression] = STATE(1978), + [sym_parenthesized_expression] = STATE(1978), + [sym_arithmetic_expansion] = STATE(1584), + [sym_brace_expression] = STATE(1584), + [sym_concatenation] = STATE(1978), + [sym_string] = STATE(1584), + [sym_translated_string] = STATE(1584), + [sym_number] = STATE(1584), + [sym_simple_expansion] = STATE(1584), + [sym_expansion] = STATE(1584), + [sym_command_substitution] = STATE(1584), + [sym_process_substitution] = STATE(1584), + [aux_sym__literal_repeat1] = STATE(1641), + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym_word] = ACTIONS(1113), + [anon_sym_LPAREN_LPAREN] = ACTIONS(598), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_DASH_DASH] = ACTIONS(143), + [anon_sym_PLUS_EQ] = ACTIONS(143), + [anon_sym_DASH_EQ] = ACTIONS(143), + [anon_sym_STAR_EQ] = ACTIONS(143), + [anon_sym_SLASH_EQ] = ACTIONS(143), + [anon_sym_PERCENT_EQ] = ACTIONS(143), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(143), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_EQ_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_STAR_STAR] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_RBRACK] = ACTIONS(1133), + [anon_sym_EQ_TILDE] = ACTIONS(143), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(143), + [aux_sym_unary_expression_token1] = ACTIONS(1121), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(598), + [aux_sym_concatenation_token1] = ACTIONS(1123), + [anon_sym_DOLLAR] = ACTIONS(611), + [sym__special_character] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_raw_string] = ACTIONS(1127), + [sym_ansi_c_string] = ACTIONS(1127), + [aux_sym_number_token1] = ACTIONS(619), + [aux_sym_number_token2] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), + [anon_sym_LT_LPAREN] = ACTIONS(631), + [anon_sym_GT_LPAREN] = ACTIONS(631), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(404), - [sym_file_descriptor] = ACTIONS(406), - [sym_variable_name] = ACTIONS(408), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(1129), + [sym__concat] = ACTIONS(1135), + [sym__brace_start] = ACTIONS(635), }, - [333] = { - [sym_redirected_statement] = STATE(2688), - [sym_for_statement] = STATE(2688), - [sym_c_style_for_statement] = STATE(2688), - [sym_while_statement] = STATE(2688), - [sym_if_statement] = STATE(2688), - [sym_case_statement] = STATE(2688), - [sym_function_definition] = STATE(2688), - [sym_compound_statement] = STATE(2688), - [sym_subshell] = STATE(2688), - [sym_pipeline] = STATE(2688), - [sym_list] = STATE(2688), - [sym_negated_command] = STATE(2688), - [sym_test_command] = STATE(2688), - [sym_declaration_command] = STATE(2688), - [sym_unset_command] = STATE(2688), - [sym_command] = STATE(2688), - [sym_command_name] = STATE(479), - [sym_variable_assignment] = STATE(682), - [sym_variable_assignments] = STATE(2688), - [sym_subscript] = STATE(4092), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym_redirected_statement_repeat2] = STATE(2919), - [aux_sym_command_repeat1] = STATE(886), - [aux_sym__literal_repeat1] = STATE(1172), - [sym_word] = ACTIONS(793), - [anon_sym_for] = ACTIONS(75), - [anon_sym_select] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_while] = ACTIONS(87), - [anon_sym_until] = ACTIONS(87), - [anon_sym_if] = ACTIONS(89), - [anon_sym_case] = ACTIONS(91), - [anon_sym_function] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LBRACK_LBRACK] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_unset] = ACTIONS(105), - [anon_sym_unsetenv] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(81), - [anon_sym_GT_AMP] = ACTIONS(81), - [anon_sym_GT_PIPE] = ACTIONS(81), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym__special_character] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(386), - [sym_raw_string] = ACTIONS(803), - [sym_ansi_c_string] = ACTIONS(803), - [aux_sym_number_token1] = ACTIONS(390), - [aux_sym_number_token2] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(398), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [325] = { + [sym__expression] = STATE(2003), + [sym_binary_expression] = STATE(1978), + [sym_ternary_expression] = STATE(1978), + [sym_unary_expression] = STATE(1978), + [sym_postfix_expression] = STATE(1978), + [sym_parenthesized_expression] = STATE(1978), + [sym_arithmetic_expansion] = STATE(1584), + [sym_brace_expression] = STATE(1584), + [sym_concatenation] = STATE(1978), + [sym_string] = STATE(1584), + [sym_translated_string] = STATE(1584), + [sym_number] = STATE(1584), + [sym_simple_expansion] = STATE(1584), + [sym_expansion] = STATE(1584), + [sym_command_substitution] = STATE(1584), + [sym_process_substitution] = STATE(1584), + [aux_sym__literal_repeat1] = STATE(1641), + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym_word] = ACTIONS(1113), + [anon_sym_LPAREN_LPAREN] = ACTIONS(598), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_DASH_DASH] = ACTIONS(143), + [anon_sym_PLUS_EQ] = ACTIONS(143), + [anon_sym_DASH_EQ] = ACTIONS(143), + [anon_sym_STAR_EQ] = ACTIONS(143), + [anon_sym_SLASH_EQ] = ACTIONS(143), + [anon_sym_PERCENT_EQ] = ACTIONS(143), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(143), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_EQ_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_STAR_STAR] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_RBRACK] = ACTIONS(1137), + [anon_sym_EQ_TILDE] = ACTIONS(143), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(143), + [aux_sym_unary_expression_token1] = ACTIONS(1121), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(598), + [aux_sym_concatenation_token1] = ACTIONS(1123), + [anon_sym_DOLLAR] = ACTIONS(611), + [sym__special_character] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_raw_string] = ACTIONS(1127), + [sym_ansi_c_string] = ACTIONS(1127), + [aux_sym_number_token1] = ACTIONS(619), + [aux_sym_number_token2] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), + [anon_sym_LT_LPAREN] = ACTIONS(631), + [anon_sym_GT_LPAREN] = ACTIONS(631), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym__brace_start] = ACTIONS(410), + [sym_test_operator] = ACTIONS(1129), + [sym__concat] = ACTIONS(1139), + [sym__brace_start] = ACTIONS(635), }, - [334] = { - [sym__expression] = STATE(1739), - [sym_binary_expression] = STATE(1557), - [sym_ternary_expression] = STATE(1557), - [sym_unary_expression] = STATE(1557), - [sym_postfix_expression] = STATE(1557), - [sym_parenthesized_expression] = STATE(1557), - [sym_arithmetic_expansion] = STATE(1394), - [sym_brace_expression] = STATE(1394), - [sym_concatenation] = STATE(1557), - [sym_string] = STATE(1394), - [sym_translated_string] = STATE(1394), - [sym_number] = STATE(1394), - [sym_simple_expansion] = STATE(1394), - [sym_expansion] = STATE(1394), - [sym_command_substitution] = STATE(1394), - [sym_process_substitution] = STATE(1394), - [aux_sym__literal_repeat1] = STATE(1468), - [aux_sym_concatenation_repeat1] = STATE(1391), - [sym_word] = ACTIONS(193), - [anon_sym_RPAREN_RPAREN] = ACTIONS(624), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_PLUS_PLUS] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(197), - [anon_sym_PLUS_EQ] = ACTIONS(197), - [anon_sym_DASH_EQ] = ACTIONS(197), - [anon_sym_STAR_EQ] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(197), - [anon_sym_LT_LT_EQ] = ACTIONS(624), - [anon_sym_GT_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_EQ] = ACTIONS(624), - [anon_sym_CARET_EQ] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(624), - [anon_sym_EQ_EQ] = ACTIONS(197), - [anon_sym_BANG_EQ] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_STAR_STAR] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(197), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(197), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(204), - [anon_sym_EQ_TILDE] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(197), - [aux_sym_unary_expression_token1] = ACTIONS(107), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1109), - [aux_sym_concatenation_token1] = ACTIONS(1111), - [anon_sym_DOLLAR] = ACTIONS(210), - [sym__special_character] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1115), - [sym_raw_string] = ACTIONS(1117), - [sym_ansi_c_string] = ACTIONS(1117), - [aux_sym_number_token1] = ACTIONS(216), - [aux_sym_number_token2] = ACTIONS(218), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), - [anon_sym_BQUOTE] = ACTIONS(224), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1121), - [anon_sym_LT_LPAREN] = ACTIONS(1123), - [anon_sym_GT_LPAREN] = ACTIONS(1123), + [326] = { + [sym__expression] = STATE(2060), + [sym_binary_expression] = STATE(1623), + [sym_ternary_expression] = STATE(1623), + [sym_unary_expression] = STATE(1623), + [sym_postfix_expression] = STATE(1623), + [sym_parenthesized_expression] = STATE(1623), + [sym_arithmetic_expansion] = STATE(1637), + [sym_brace_expression] = STATE(1637), + [sym_concatenation] = STATE(1623), + [sym_string] = STATE(1637), + [sym_translated_string] = STATE(1637), + [sym_number] = STATE(1637), + [sym_simple_expansion] = STATE(1637), + [sym_expansion] = STATE(1637), + [sym_command_substitution] = STATE(1637), + [sym_process_substitution] = STATE(1637), + [aux_sym__literal_repeat1] = STATE(1636), + [aux_sym_concatenation_repeat1] = STATE(1606), + [sym_word] = ACTIONS(139), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1095), + [anon_sym_RPAREN_RPAREN] = ACTIONS(600), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_DASH_DASH] = ACTIONS(143), + [anon_sym_PLUS_EQ] = ACTIONS(143), + [anon_sym_DASH_EQ] = ACTIONS(143), + [anon_sym_STAR_EQ] = ACTIONS(143), + [anon_sym_SLASH_EQ] = ACTIONS(143), + [anon_sym_PERCENT_EQ] = ACTIONS(143), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(143), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_EQ_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_STAR_STAR] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(152), + [anon_sym_EQ_TILDE] = ACTIONS(143), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(143), + [aux_sym_unary_expression_token1] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1095), + [aux_sym_concatenation_token1] = ACTIONS(1097), + [anon_sym_DOLLAR] = ACTIONS(156), + [sym__special_character] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1101), + [sym_raw_string] = ACTIONS(1143), + [sym_ansi_c_string] = ACTIONS(1143), + [aux_sym_number_token1] = ACTIONS(162), + [aux_sym_number_token2] = ACTIONS(164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1105), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(168), + [anon_sym_BQUOTE] = ACTIONS(170), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1107), + [anon_sym_LT_LPAREN] = ACTIONS(1109), + [anon_sym_GT_LPAREN] = ACTIONS(1109), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1125), - [sym__concat] = ACTIONS(1111), - [sym__brace_start] = ACTIONS(236), + [sym_test_operator] = ACTIONS(1145), + [sym__concat] = ACTIONS(1097), + [sym__brace_start] = ACTIONS(182), }, - [335] = { - [sym__expression] = STATE(1670), - [sym_binary_expression] = STATE(1698), - [sym_ternary_expression] = STATE(1698), - [sym_unary_expression] = STATE(1698), - [sym_postfix_expression] = STATE(1698), - [sym_parenthesized_expression] = STATE(1698), - [sym_arithmetic_expansion] = STATE(1455), - [sym_brace_expression] = STATE(1455), - [sym_concatenation] = STATE(1698), - [sym_string] = STATE(1455), - [sym_translated_string] = STATE(1455), - [sym_number] = STATE(1455), - [sym_simple_expansion] = STATE(1455), - [sym_expansion] = STATE(1455), - [sym_command_substitution] = STATE(1455), - [sym_process_substitution] = STATE(1455), - [aux_sym__literal_repeat1] = STATE(1533), - [aux_sym_concatenation_repeat1] = STATE(1450), - [sym_word] = ACTIONS(1127), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_PLUS_PLUS] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(197), - [anon_sym_PLUS_EQ] = ACTIONS(197), - [anon_sym_DASH_EQ] = ACTIONS(197), - [anon_sym_STAR_EQ] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(197), - [anon_sym_LT_LT_EQ] = ACTIONS(624), - [anon_sym_GT_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_EQ] = ACTIONS(624), - [anon_sym_CARET_EQ] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(624), - [anon_sym_EQ_EQ] = ACTIONS(197), - [anon_sym_BANG_EQ] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_STAR_STAR] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(197), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_RBRACK] = ACTIONS(1133), - [anon_sym_EQ_TILDE] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(197), - [aux_sym_unary_expression_token1] = ACTIONS(1135), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(633), - [aux_sym_concatenation_token1] = ACTIONS(1137), - [anon_sym_DOLLAR] = ACTIONS(637), - [sym__special_character] = ACTIONS(1139), - [anon_sym_DQUOTE] = ACTIONS(641), - [sym_raw_string] = ACTIONS(1141), - [sym_ansi_c_string] = ACTIONS(1141), - [aux_sym_number_token1] = ACTIONS(645), - [aux_sym_number_token2] = ACTIONS(647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(649), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(651), - [anon_sym_BQUOTE] = ACTIONS(653), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(655), - [anon_sym_LT_LPAREN] = ACTIONS(657), - [anon_sym_GT_LPAREN] = ACTIONS(657), + [327] = { + [sym__expression] = STATE(2054), + [sym_binary_expression] = STATE(1623), + [sym_ternary_expression] = STATE(1623), + [sym_unary_expression] = STATE(1623), + [sym_postfix_expression] = STATE(1623), + [sym_parenthesized_expression] = STATE(1623), + [sym_arithmetic_expansion] = STATE(1583), + [sym_brace_expression] = STATE(1583), + [sym_concatenation] = STATE(1623), + [sym_string] = STATE(1583), + [sym_translated_string] = STATE(1583), + [sym_number] = STATE(1583), + [sym_simple_expansion] = STATE(1583), + [sym_expansion] = STATE(1583), + [sym_command_substitution] = STATE(1583), + [sym_process_substitution] = STATE(1583), + [aux_sym__literal_repeat1] = STATE(1586), + [aux_sym_concatenation_repeat1] = STATE(1706), + [sym_word] = ACTIONS(1147), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1149), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_DASH_DASH] = ACTIONS(143), + [anon_sym_PLUS_EQ] = ACTIONS(143), + [anon_sym_DASH_EQ] = ACTIONS(143), + [anon_sym_STAR_EQ] = ACTIONS(143), + [anon_sym_SLASH_EQ] = ACTIONS(143), + [anon_sym_PERCENT_EQ] = ACTIONS(143), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(143), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_EQ_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_STAR_STAR] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(1151), + [anon_sym_EQ_TILDE] = ACTIONS(143), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_COLON] = ACTIONS(143), + [aux_sym_unary_expression_token1] = ACTIONS(1153), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1149), + [aux_sym_concatenation_token1] = ACTIONS(1155), + [anon_sym_DOLLAR] = ACTIONS(240), + [sym__special_character] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_raw_string] = ACTIONS(1161), + [sym_ansi_c_string] = ACTIONS(1161), + [aux_sym_number_token1] = ACTIONS(246), + [aux_sym_number_token2] = ACTIONS(248), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1163), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(254), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1165), + [anon_sym_LT_LPAREN] = ACTIONS(1167), + [anon_sym_GT_LPAREN] = ACTIONS(1167), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1143), - [sym__concat] = ACTIONS(1145), - [sym__brace_start] = ACTIONS(661), + [sym_test_operator] = ACTIONS(1169), + [sym__concat] = ACTIONS(1155), + [sym__brace_start] = ACTIONS(264), }, - [336] = { - [sym__expression] = STATE(1670), - [sym_binary_expression] = STATE(1698), - [sym_ternary_expression] = STATE(1698), - [sym_unary_expression] = STATE(1698), - [sym_postfix_expression] = STATE(1698), - [sym_parenthesized_expression] = STATE(1698), - [sym_arithmetic_expansion] = STATE(1455), - [sym_brace_expression] = STATE(1455), - [sym_concatenation] = STATE(1698), - [sym_string] = STATE(1455), - [sym_translated_string] = STATE(1455), - [sym_number] = STATE(1455), - [sym_simple_expansion] = STATE(1455), - [sym_expansion] = STATE(1455), - [sym_command_substitution] = STATE(1455), - [sym_process_substitution] = STATE(1455), - [aux_sym__literal_repeat1] = STATE(1533), - [aux_sym_concatenation_repeat1] = STATE(1450), - [sym_word] = ACTIONS(1127), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_PLUS_PLUS] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(197), - [anon_sym_PLUS_EQ] = ACTIONS(197), - [anon_sym_DASH_EQ] = ACTIONS(197), - [anon_sym_STAR_EQ] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(197), - [anon_sym_LT_LT_EQ] = ACTIONS(624), - [anon_sym_GT_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_EQ] = ACTIONS(624), - [anon_sym_CARET_EQ] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(624), - [anon_sym_EQ_EQ] = ACTIONS(197), - [anon_sym_BANG_EQ] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_STAR_STAR] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(197), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_RBRACK] = ACTIONS(1147), - [anon_sym_EQ_TILDE] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(197), - [aux_sym_unary_expression_token1] = ACTIONS(1135), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(633), - [aux_sym_concatenation_token1] = ACTIONS(1137), - [anon_sym_DOLLAR] = ACTIONS(637), - [sym__special_character] = ACTIONS(1139), - [anon_sym_DQUOTE] = ACTIONS(641), - [sym_raw_string] = ACTIONS(1141), - [sym_ansi_c_string] = ACTIONS(1141), - [aux_sym_number_token1] = ACTIONS(645), - [aux_sym_number_token2] = ACTIONS(647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(649), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(651), - [anon_sym_BQUOTE] = ACTIONS(653), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(655), - [anon_sym_LT_LPAREN] = ACTIONS(657), - [anon_sym_GT_LPAREN] = ACTIONS(657), + [328] = { + [sym__expression] = STATE(2096), + [sym_binary_expression] = STATE(2073), + [sym_ternary_expression] = STATE(2073), + [sym_unary_expression] = STATE(2073), + [sym_postfix_expression] = STATE(2073), + [sym_parenthesized_expression] = STATE(2073), + [sym_arithmetic_expansion] = STATE(1635), + [sym_brace_expression] = STATE(1635), + [sym_concatenation] = STATE(2073), + [sym_string] = STATE(1635), + [sym_translated_string] = STATE(1635), + [sym_number] = STATE(1635), + [sym_simple_expansion] = STATE(1635), + [sym_expansion] = STATE(1635), + [sym_command_substitution] = STATE(1635), + [sym_process_substitution] = STATE(1635), + [aux_sym__literal_repeat1] = STATE(1923), + [aux_sym_concatenation_repeat1] = STATE(1648), + [sym_word] = ACTIONS(596), + [anon_sym_LPAREN_LPAREN] = ACTIONS(598), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_DASH_DASH] = ACTIONS(143), + [anon_sym_PLUS_EQ] = ACTIONS(143), + [anon_sym_DASH_EQ] = ACTIONS(143), + [anon_sym_STAR_EQ] = ACTIONS(143), + [anon_sym_SLASH_EQ] = ACTIONS(143), + [anon_sym_PERCENT_EQ] = ACTIONS(143), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(143), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_EQ_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_STAR_STAR] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(607), + [anon_sym_RBRACK] = ACTIONS(600), + [anon_sym_EQ_TILDE] = ACTIONS(143), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(143), + [aux_sym_unary_expression_token1] = ACTIONS(302), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(598), + [aux_sym_concatenation_token1] = ACTIONS(1123), + [anon_sym_DOLLAR] = ACTIONS(611), + [sym__special_character] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_raw_string] = ACTIONS(617), + [sym_ansi_c_string] = ACTIONS(617), + [aux_sym_number_token1] = ACTIONS(619), + [aux_sym_number_token2] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), + [anon_sym_LT_LPAREN] = ACTIONS(631), + [anon_sym_GT_LPAREN] = ACTIONS(631), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1143), - [sym__concat] = ACTIONS(1149), - [sym__brace_start] = ACTIONS(661), + [sym_test_operator] = ACTIONS(633), + [sym__concat] = ACTIONS(1123), + [sym__brace_start] = ACTIONS(635), }, - [337] = { + [329] = { [sym__expression] = STATE(2003), - [sym_binary_expression] = STATE(1557), - [sym_ternary_expression] = STATE(1557), - [sym_unary_expression] = STATE(1557), - [sym_postfix_expression] = STATE(1557), - [sym_parenthesized_expression] = STATE(1557), - [sym_arithmetic_expansion] = STATE(1438), - [sym_brace_expression] = STATE(1438), - [sym_concatenation] = STATE(1557), - [sym_string] = STATE(1438), - [sym_translated_string] = STATE(1438), - [sym_number] = STATE(1438), - [sym_simple_expansion] = STATE(1438), - [sym_expansion] = STATE(1438), - [sym_command_substitution] = STATE(1438), - [sym_process_substitution] = STATE(1438), - [aux_sym__literal_repeat1] = STATE(1660), - [aux_sym_concatenation_repeat1] = STATE(1442), - [sym_word] = ACTIONS(1151), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_PLUS_PLUS] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(197), - [anon_sym_PLUS_EQ] = ACTIONS(197), - [anon_sym_DASH_EQ] = ACTIONS(197), - [anon_sym_STAR_EQ] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(197), - [anon_sym_LT_LT_EQ] = ACTIONS(624), - [anon_sym_GT_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_EQ] = ACTIONS(624), - [anon_sym_CARET_EQ] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(624), - [anon_sym_EQ_EQ] = ACTIONS(197), - [anon_sym_BANG_EQ] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_STAR_STAR] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(197), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(1153), - [anon_sym_RBRACK_RBRACK] = ACTIONS(624), - [anon_sym_EQ_TILDE] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(197), - [aux_sym_unary_expression_token1] = ACTIONS(1155), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1157), - [aux_sym_concatenation_token1] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(326), - [sym__special_character] = ACTIONS(1161), - [anon_sym_DQUOTE] = ACTIONS(1163), - [sym_raw_string] = ACTIONS(1165), - [sym_ansi_c_string] = ACTIONS(1165), - [aux_sym_number_token1] = ACTIONS(332), - [aux_sym_number_token2] = ACTIONS(334), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(338), - [anon_sym_BQUOTE] = ACTIONS(340), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1169), - [anon_sym_LT_LPAREN] = ACTIONS(1171), - [anon_sym_GT_LPAREN] = ACTIONS(1171), + [sym_binary_expression] = STATE(1978), + [sym_ternary_expression] = STATE(1978), + [sym_unary_expression] = STATE(1978), + [sym_postfix_expression] = STATE(1978), + [sym_parenthesized_expression] = STATE(1978), + [sym_arithmetic_expansion] = STATE(1584), + [sym_brace_expression] = STATE(1584), + [sym_concatenation] = STATE(1978), + [sym_string] = STATE(1584), + [sym_translated_string] = STATE(1584), + [sym_number] = STATE(1584), + [sym_simple_expansion] = STATE(1584), + [sym_expansion] = STATE(1584), + [sym_command_substitution] = STATE(1584), + [sym_process_substitution] = STATE(1584), + [aux_sym__literal_repeat1] = STATE(1641), + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym_word] = ACTIONS(1113), + [anon_sym_LPAREN_LPAREN] = ACTIONS(598), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_DASH_DASH] = ACTIONS(143), + [anon_sym_PLUS_EQ] = ACTIONS(143), + [anon_sym_DASH_EQ] = ACTIONS(143), + [anon_sym_STAR_EQ] = ACTIONS(143), + [anon_sym_SLASH_EQ] = ACTIONS(143), + [anon_sym_PERCENT_EQ] = ACTIONS(143), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(143), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_EQ_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_STAR_STAR] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_RBRACK] = ACTIONS(600), + [anon_sym_EQ_TILDE] = ACTIONS(143), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(143), + [aux_sym_unary_expression_token1] = ACTIONS(1121), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(598), + [aux_sym_concatenation_token1] = ACTIONS(1123), + [anon_sym_DOLLAR] = ACTIONS(611), + [sym__special_character] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_raw_string] = ACTIONS(1127), + [sym_ansi_c_string] = ACTIONS(1127), + [aux_sym_number_token1] = ACTIONS(619), + [aux_sym_number_token2] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), + [anon_sym_LT_LPAREN] = ACTIONS(631), + [anon_sym_GT_LPAREN] = ACTIONS(631), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1173), - [sym__concat] = ACTIONS(1159), - [sym__brace_start] = ACTIONS(350), + [sym_test_operator] = ACTIONS(1129), + [sym__concat] = ACTIONS(600), + [sym__brace_start] = ACTIONS(635), }, - [338] = { - [sym__expression] = STATE(2011), - [sym_binary_expression] = STATE(1898), - [sym_ternary_expression] = STATE(1898), - [sym_unary_expression] = STATE(1898), - [sym_postfix_expression] = STATE(1898), - [sym_parenthesized_expression] = STATE(1898), - [sym_arithmetic_expansion] = STATE(1559), - [sym_brace_expression] = STATE(1559), - [sym_concatenation] = STATE(1898), - [sym_string] = STATE(1559), - [sym_translated_string] = STATE(1559), - [sym_number] = STATE(1559), - [sym_simple_expansion] = STATE(1559), - [sym_expansion] = STATE(1559), - [sym_command_substitution] = STATE(1559), - [sym_process_substitution] = STATE(1559), - [aux_sym__literal_repeat1] = STATE(1584), - [aux_sym_concatenation_repeat1] = STATE(1551), - [sym_word] = ACTIONS(622), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_PLUS_PLUS] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(197), - [anon_sym_PLUS_EQ] = ACTIONS(197), - [anon_sym_DASH_EQ] = ACTIONS(197), - [anon_sym_STAR_EQ] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(197), - [anon_sym_LT_LT_EQ] = ACTIONS(624), - [anon_sym_GT_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_EQ] = ACTIONS(624), - [anon_sym_CARET_EQ] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(624), - [anon_sym_EQ_EQ] = ACTIONS(197), - [anon_sym_BANG_EQ] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_STAR_STAR] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(197), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(631), - [anon_sym_RBRACK] = ACTIONS(624), - [anon_sym_EQ_TILDE] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(197), - [aux_sym_unary_expression_token1] = ACTIONS(282), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(633), - [aux_sym_concatenation_token1] = ACTIONS(1137), - [anon_sym_DOLLAR] = ACTIONS(637), - [sym__special_character] = ACTIONS(639), - [anon_sym_DQUOTE] = ACTIONS(641), - [sym_raw_string] = ACTIONS(643), - [sym_ansi_c_string] = ACTIONS(643), - [aux_sym_number_token1] = ACTIONS(645), - [aux_sym_number_token2] = ACTIONS(647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(649), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(651), - [anon_sym_BQUOTE] = ACTIONS(653), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(655), - [anon_sym_LT_LPAREN] = ACTIONS(657), - [anon_sym_GT_LPAREN] = ACTIONS(657), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(659), - [sym__concat] = ACTIONS(1137), - [sym__brace_start] = ACTIONS(661), - }, - [339] = { - [sym__expression] = STATE(1895), - [sym_binary_expression] = STATE(1911), - [sym_ternary_expression] = STATE(1911), - [sym_unary_expression] = STATE(1911), - [sym_postfix_expression] = STATE(1911), - [sym_parenthesized_expression] = STATE(1911), - [sym_arithmetic_expansion] = STATE(1489), - [sym_brace_expression] = STATE(1489), - [sym_concatenation] = STATE(1911), - [sym_string] = STATE(1489), - [sym_translated_string] = STATE(1489), - [sym_number] = STATE(1489), - [sym_simple_expansion] = STATE(1489), - [sym_expansion] = STATE(1489), - [sym_command_substitution] = STATE(1489), - [sym_process_substitution] = STATE(1489), - [aux_sym__literal_repeat1] = STATE(1461), - [aux_sym_concatenation_repeat1] = STATE(1542), - [sym_word] = ACTIONS(316), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_PLUS_PLUS] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(197), - [anon_sym_PLUS_EQ] = ACTIONS(197), - [anon_sym_DASH_EQ] = ACTIONS(197), - [anon_sym_STAR_EQ] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(197), - [anon_sym_LT_LT_EQ] = ACTIONS(624), - [anon_sym_GT_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_EQ] = ACTIONS(624), - [anon_sym_CARET_EQ] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(624), - [anon_sym_EQ_EQ] = ACTIONS(197), - [anon_sym_BANG_EQ] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_STAR_STAR] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(197), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(1175), - [anon_sym_RPAREN] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(320), - [anon_sym_EQ_TILDE] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(197), - [aux_sym_unary_expression_token1] = ACTIONS(163), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1157), - [aux_sym_concatenation_token1] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(326), + [330] = { + [sym__expression] = STATE(2130), + [sym_binary_expression] = STATE(1623), + [sym_ternary_expression] = STATE(1623), + [sym_unary_expression] = STATE(1623), + [sym_postfix_expression] = STATE(1623), + [sym_parenthesized_expression] = STATE(1623), + [sym_arithmetic_expansion] = STATE(1599), + [sym_brace_expression] = STATE(1599), + [sym_concatenation] = STATE(1623), + [sym_string] = STATE(1599), + [sym_translated_string] = STATE(1599), + [sym_number] = STATE(1599), + [sym_simple_expansion] = STATE(1599), + [sym_expansion] = STATE(1599), + [sym_command_substitution] = STATE(1599), + [sym_process_substitution] = STATE(1599), + [aux_sym__literal_repeat1] = STATE(1831), + [aux_sym_concatenation_repeat1] = STATE(1619), + [sym_word] = ACTIONS(1171), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1149), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_DASH_DASH] = ACTIONS(143), + [anon_sym_PLUS_EQ] = ACTIONS(143), + [anon_sym_DASH_EQ] = ACTIONS(143), + [anon_sym_STAR_EQ] = ACTIONS(143), + [anon_sym_SLASH_EQ] = ACTIONS(143), + [anon_sym_PERCENT_EQ] = ACTIONS(143), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(143), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_EQ_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_STAR_STAR] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(1173), + [anon_sym_RBRACK_RBRACK] = ACTIONS(600), + [anon_sym_EQ_TILDE] = ACTIONS(143), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(143), + [aux_sym_unary_expression_token1] = ACTIONS(1175), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1149), + [aux_sym_concatenation_token1] = ACTIONS(1155), + [anon_sym_DOLLAR] = ACTIONS(240), [sym__special_character] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(1163), + [anon_sym_DQUOTE] = ACTIONS(1159), [sym_raw_string] = ACTIONS(1179), [sym_ansi_c_string] = ACTIONS(1179), - [aux_sym_number_token1] = ACTIONS(332), - [aux_sym_number_token2] = ACTIONS(334), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(338), - [anon_sym_BQUOTE] = ACTIONS(340), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1169), - [anon_sym_LT_LPAREN] = ACTIONS(1171), - [anon_sym_GT_LPAREN] = ACTIONS(1171), + [aux_sym_number_token1] = ACTIONS(246), + [aux_sym_number_token2] = ACTIONS(248), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1163), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(254), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1165), + [anon_sym_LT_LPAREN] = ACTIONS(1167), + [anon_sym_GT_LPAREN] = ACTIONS(1167), [sym_comment] = ACTIONS(63), [sym_test_operator] = ACTIONS(1181), - [sym__concat] = ACTIONS(1159), - [sym__brace_start] = ACTIONS(350), - }, - [340] = { - [sym__expression] = STATE(1670), - [sym_binary_expression] = STATE(1698), - [sym_ternary_expression] = STATE(1698), - [sym_unary_expression] = STATE(1698), - [sym_postfix_expression] = STATE(1698), - [sym_parenthesized_expression] = STATE(1698), - [sym_arithmetic_expansion] = STATE(1455), - [sym_brace_expression] = STATE(1455), - [sym_concatenation] = STATE(1698), - [sym_string] = STATE(1455), - [sym_translated_string] = STATE(1455), - [sym_number] = STATE(1455), - [sym_simple_expansion] = STATE(1455), - [sym_expansion] = STATE(1455), - [sym_command_substitution] = STATE(1455), - [sym_process_substitution] = STATE(1455), - [aux_sym__literal_repeat1] = STATE(1533), - [aux_sym_concatenation_repeat1] = STATE(1450), - [sym_word] = ACTIONS(1127), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_PLUS_PLUS] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(197), - [anon_sym_PLUS_EQ] = ACTIONS(197), - [anon_sym_DASH_EQ] = ACTIONS(197), - [anon_sym_STAR_EQ] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(197), - [anon_sym_LT_LT_EQ] = ACTIONS(624), - [anon_sym_GT_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_EQ] = ACTIONS(624), - [anon_sym_CARET_EQ] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(624), - [anon_sym_EQ_EQ] = ACTIONS(197), - [anon_sym_BANG_EQ] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_STAR_STAR] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(197), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_RBRACK] = ACTIONS(624), - [anon_sym_EQ_TILDE] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(197), - [aux_sym_unary_expression_token1] = ACTIONS(1135), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(633), - [aux_sym_concatenation_token1] = ACTIONS(1137), - [anon_sym_DOLLAR] = ACTIONS(637), - [sym__special_character] = ACTIONS(1139), - [anon_sym_DQUOTE] = ACTIONS(641), - [sym_raw_string] = ACTIONS(1141), - [sym_ansi_c_string] = ACTIONS(1141), - [aux_sym_number_token1] = ACTIONS(645), - [aux_sym_number_token2] = ACTIONS(647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(649), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(651), - [anon_sym_BQUOTE] = ACTIONS(653), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(655), - [anon_sym_LT_LPAREN] = ACTIONS(657), - [anon_sym_GT_LPAREN] = ACTIONS(657), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1143), - [sym__concat] = ACTIONS(624), - [sym__brace_start] = ACTIONS(661), + [sym__concat] = ACTIONS(1155), + [sym__brace_start] = ACTIONS(264), }, - [341] = { - [sym__expression] = STATE(1670), - [sym_binary_expression] = STATE(1698), - [sym_ternary_expression] = STATE(1698), - [sym_unary_expression] = STATE(1698), - [sym_postfix_expression] = STATE(1698), - [sym_parenthesized_expression] = STATE(1698), - [sym_arithmetic_expansion] = STATE(1455), - [sym_brace_expression] = STATE(1455), - [sym_concatenation] = STATE(1698), - [sym_string] = STATE(1455), - [sym_translated_string] = STATE(1455), - [sym_number] = STATE(1455), - [sym_simple_expansion] = STATE(1455), - [sym_expansion] = STATE(1455), - [sym_command_substitution] = STATE(1455), - [sym_process_substitution] = STATE(1455), - [aux_sym__literal_repeat1] = STATE(1533), - [aux_sym_concatenation_repeat1] = STATE(1450), - [sym_word] = ACTIONS(1127), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_PLUS_PLUS] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(197), - [anon_sym_PLUS_EQ] = ACTIONS(197), - [anon_sym_DASH_EQ] = ACTIONS(197), - [anon_sym_STAR_EQ] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(197), - [anon_sym_LT_LT_EQ] = ACTIONS(624), - [anon_sym_GT_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_EQ] = ACTIONS(624), - [anon_sym_CARET_EQ] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(624), - [anon_sym_EQ_EQ] = ACTIONS(197), - [anon_sym_BANG_EQ] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_STAR_STAR] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(197), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(1131), + [331] = { + [sym__expression] = STATE(2003), + [sym_binary_expression] = STATE(1978), + [sym_ternary_expression] = STATE(1978), + [sym_unary_expression] = STATE(1978), + [sym_postfix_expression] = STATE(1978), + [sym_parenthesized_expression] = STATE(1978), + [sym_arithmetic_expansion] = STATE(1584), + [sym_brace_expression] = STATE(1584), + [sym_concatenation] = STATE(1978), + [sym_string] = STATE(1584), + [sym_translated_string] = STATE(1584), + [sym_number] = STATE(1584), + [sym_simple_expansion] = STATE(1584), + [sym_expansion] = STATE(1584), + [sym_command_substitution] = STATE(1584), + [sym_process_substitution] = STATE(1584), + [aux_sym__literal_repeat1] = STATE(1641), + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym_word] = ACTIONS(1113), + [anon_sym_LPAREN_LPAREN] = ACTIONS(598), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_DASH_DASH] = ACTIONS(143), + [anon_sym_PLUS_EQ] = ACTIONS(143), + [anon_sym_DASH_EQ] = ACTIONS(143), + [anon_sym_STAR_EQ] = ACTIONS(143), + [anon_sym_SLASH_EQ] = ACTIONS(143), + [anon_sym_PERCENT_EQ] = ACTIONS(143), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(143), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_EQ_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_STAR_STAR] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(1117), [anon_sym_RBRACK] = ACTIONS(1183), - [anon_sym_EQ_TILDE] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(197), - [aux_sym_unary_expression_token1] = ACTIONS(1135), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(633), - [aux_sym_concatenation_token1] = ACTIONS(1137), - [anon_sym_DOLLAR] = ACTIONS(637), - [sym__special_character] = ACTIONS(1139), - [anon_sym_DQUOTE] = ACTIONS(641), - [sym_raw_string] = ACTIONS(1141), - [sym_ansi_c_string] = ACTIONS(1141), - [aux_sym_number_token1] = ACTIONS(645), - [aux_sym_number_token2] = ACTIONS(647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(649), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(651), - [anon_sym_BQUOTE] = ACTIONS(653), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(655), - [anon_sym_LT_LPAREN] = ACTIONS(657), - [anon_sym_GT_LPAREN] = ACTIONS(657), + [anon_sym_EQ_TILDE] = ACTIONS(143), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(143), + [aux_sym_unary_expression_token1] = ACTIONS(1121), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(598), + [aux_sym_concatenation_token1] = ACTIONS(1123), + [anon_sym_DOLLAR] = ACTIONS(611), + [sym__special_character] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_raw_string] = ACTIONS(1127), + [sym_ansi_c_string] = ACTIONS(1127), + [aux_sym_number_token1] = ACTIONS(619), + [aux_sym_number_token2] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), + [anon_sym_LT_LPAREN] = ACTIONS(631), + [anon_sym_GT_LPAREN] = ACTIONS(631), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1143), + [sym_test_operator] = ACTIONS(1129), [sym__concat] = ACTIONS(1185), - [sym__brace_start] = ACTIONS(661), + [sym__brace_start] = ACTIONS(635), }, - [342] = { - [sym__expression] = STATE(1670), - [sym_binary_expression] = STATE(1698), - [sym_ternary_expression] = STATE(1698), - [sym_unary_expression] = STATE(1698), - [sym_postfix_expression] = STATE(1698), - [sym_parenthesized_expression] = STATE(1698), - [sym_arithmetic_expansion] = STATE(1455), - [sym_brace_expression] = STATE(1455), - [sym_concatenation] = STATE(1698), - [sym_string] = STATE(1455), - [sym_translated_string] = STATE(1455), - [sym_number] = STATE(1455), - [sym_simple_expansion] = STATE(1455), - [sym_expansion] = STATE(1455), - [sym_command_substitution] = STATE(1455), - [sym_process_substitution] = STATE(1455), - [aux_sym__literal_repeat1] = STATE(1533), - [aux_sym_concatenation_repeat1] = STATE(1450), - [sym_word] = ACTIONS(1127), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_PLUS_PLUS] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(197), - [anon_sym_PLUS_EQ] = ACTIONS(197), - [anon_sym_DASH_EQ] = ACTIONS(197), - [anon_sym_STAR_EQ] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(197), - [anon_sym_LT_LT_EQ] = ACTIONS(624), - [anon_sym_GT_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_EQ] = ACTIONS(624), - [anon_sym_CARET_EQ] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(624), - [anon_sym_EQ_EQ] = ACTIONS(197), - [anon_sym_BANG_EQ] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_STAR_STAR] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(197), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_RBRACK] = ACTIONS(1187), - [anon_sym_EQ_TILDE] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(197), - [aux_sym_unary_expression_token1] = ACTIONS(1135), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(633), - [aux_sym_concatenation_token1] = ACTIONS(1137), - [anon_sym_DOLLAR] = ACTIONS(637), - [sym__special_character] = ACTIONS(1139), - [anon_sym_DQUOTE] = ACTIONS(641), - [sym_raw_string] = ACTIONS(1141), - [sym_ansi_c_string] = ACTIONS(1141), - [aux_sym_number_token1] = ACTIONS(645), - [aux_sym_number_token2] = ACTIONS(647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(649), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(651), - [anon_sym_BQUOTE] = ACTIONS(653), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(655), - [anon_sym_LT_LPAREN] = ACTIONS(657), - [anon_sym_GT_LPAREN] = ACTIONS(657), + [332] = { + [sym__expression] = STATE(2122), + [sym_binary_expression] = STATE(2117), + [sym_ternary_expression] = STATE(2117), + [sym_unary_expression] = STATE(2117), + [sym_postfix_expression] = STATE(2117), + [sym_parenthesized_expression] = STATE(2117), + [sym_arithmetic_expansion] = STATE(1593), + [sym_brace_expression] = STATE(1593), + [sym_concatenation] = STATE(2117), + [sym_string] = STATE(1593), + [sym_translated_string] = STATE(1593), + [sym_number] = STATE(1593), + [sym_simple_expansion] = STATE(1593), + [sym_expansion] = STATE(1593), + [sym_command_substitution] = STATE(1593), + [sym_process_substitution] = STATE(1593), + [aux_sym__literal_repeat1] = STATE(1586), + [aux_sym_concatenation_repeat1] = STATE(1626), + [sym_word] = ACTIONS(230), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1149), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_DASH_DASH] = ACTIONS(143), + [anon_sym_PLUS_EQ] = ACTIONS(143), + [anon_sym_DASH_EQ] = ACTIONS(143), + [anon_sym_STAR_EQ] = ACTIONS(143), + [anon_sym_SLASH_EQ] = ACTIONS(143), + [anon_sym_PERCENT_EQ] = ACTIONS(143), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(143), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_EQ_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_STAR_STAR] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(234), + [anon_sym_RPAREN] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(236), + [anon_sym_EQ_TILDE] = ACTIONS(143), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(143), + [aux_sym_unary_expression_token1] = ACTIONS(192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1149), + [aux_sym_concatenation_token1] = ACTIONS(1155), + [anon_sym_DOLLAR] = ACTIONS(240), + [sym__special_character] = ACTIONS(1187), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_raw_string] = ACTIONS(1189), + [sym_ansi_c_string] = ACTIONS(1189), + [aux_sym_number_token1] = ACTIONS(246), + [aux_sym_number_token2] = ACTIONS(248), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1163), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(254), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1165), + [anon_sym_LT_LPAREN] = ACTIONS(1167), + [anon_sym_GT_LPAREN] = ACTIONS(1167), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1143), - [sym__concat] = ACTIONS(1189), - [sym__brace_start] = ACTIONS(661), + [sym_test_operator] = ACTIONS(1191), + [sym__concat] = ACTIONS(1155), + [sym__brace_start] = ACTIONS(264), }, - [343] = { - [sym__expression] = STATE(1853), - [sym_binary_expression] = STATE(1557), - [sym_ternary_expression] = STATE(1557), - [sym_unary_expression] = STATE(1557), - [sym_postfix_expression] = STATE(1557), - [sym_parenthesized_expression] = STATE(1557), - [sym_arithmetic_expansion] = STATE(1453), - [sym_brace_expression] = STATE(1453), - [sym_concatenation] = STATE(1557), - [sym_string] = STATE(1453), - [sym_translated_string] = STATE(1453), - [sym_number] = STATE(1453), - [sym_simple_expansion] = STATE(1453), - [sym_expansion] = STATE(1453), - [sym_command_substitution] = STATE(1453), - [sym_process_substitution] = STATE(1453), - [aux_sym__literal_repeat1] = STATE(1461), - [aux_sym_concatenation_repeat1] = STATE(1571), - [sym_word] = ACTIONS(1191), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_PLUS_PLUS] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(197), - [anon_sym_PLUS_EQ] = ACTIONS(197), - [anon_sym_DASH_EQ] = ACTIONS(197), - [anon_sym_STAR_EQ] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(197), - [anon_sym_LT_LT_EQ] = ACTIONS(624), - [anon_sym_GT_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_EQ] = ACTIONS(624), - [anon_sym_CARET_EQ] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(624), - [anon_sym_EQ_EQ] = ACTIONS(197), - [anon_sym_BANG_EQ] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_STAR_STAR] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(197), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_EQ_TILDE] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(197), - [aux_sym_unary_expression_token1] = ACTIONS(1195), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1157), - [aux_sym_concatenation_token1] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(326), - [sym__special_character] = ACTIONS(1197), - [anon_sym_DQUOTE] = ACTIONS(1163), - [sym_raw_string] = ACTIONS(1199), - [sym_ansi_c_string] = ACTIONS(1199), - [aux_sym_number_token1] = ACTIONS(332), - [aux_sym_number_token2] = ACTIONS(334), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(338), - [anon_sym_BQUOTE] = ACTIONS(340), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1169), - [anon_sym_LT_LPAREN] = ACTIONS(1171), - [anon_sym_GT_LPAREN] = ACTIONS(1171), + [333] = { + [sym__expression] = STATE(2163), + [sym_binary_expression] = STATE(1623), + [sym_ternary_expression] = STATE(1623), + [sym_unary_expression] = STATE(1623), + [sym_postfix_expression] = STATE(1623), + [sym_parenthesized_expression] = STATE(1623), + [sym_arithmetic_expansion] = STATE(1711), + [sym_brace_expression] = STATE(1711), + [sym_concatenation] = STATE(1623), + [sym_string] = STATE(1711), + [sym_translated_string] = STATE(1711), + [sym_number] = STATE(1711), + [sym_simple_expansion] = STATE(1711), + [sym_expansion] = STATE(1711), + [sym_command_substitution] = STATE(1711), + [sym_process_substitution] = STATE(1711), + [aux_sym__literal_repeat1] = STATE(1586), + [aux_sym_concatenation_repeat1] = STATE(1926), + [sym_word] = ACTIONS(1193), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1149), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_DASH_DASH] = ACTIONS(143), + [anon_sym_PLUS_EQ] = ACTIONS(143), + [anon_sym_DASH_EQ] = ACTIONS(143), + [anon_sym_STAR_EQ] = ACTIONS(143), + [anon_sym_SLASH_EQ] = ACTIONS(143), + [anon_sym_PERCENT_EQ] = ACTIONS(143), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(143), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_EQ_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_STAR_STAR] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_EQ_TILDE] = ACTIONS(143), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(143), + [aux_sym_unary_expression_token1] = ACTIONS(1197), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1149), + [aux_sym_concatenation_token1] = ACTIONS(1155), + [anon_sym_DOLLAR] = ACTIONS(240), + [sym__special_character] = ACTIONS(1199), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_raw_string] = ACTIONS(1201), + [sym_ansi_c_string] = ACTIONS(1201), + [aux_sym_number_token1] = ACTIONS(246), + [aux_sym_number_token2] = ACTIONS(248), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1163), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(254), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1165), + [anon_sym_LT_LPAREN] = ACTIONS(1167), + [anon_sym_GT_LPAREN] = ACTIONS(1167), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1201), - [sym__concat] = ACTIONS(1159), - [sym__brace_start] = ACTIONS(350), + [sym_test_operator] = ACTIONS(1203), + [sym__concat] = ACTIONS(1155), + [sym__brace_start] = ACTIONS(264), }, - [344] = { - [sym__expression] = STATE(1979), - [sym_binary_expression] = STATE(1557), - [sym_ternary_expression] = STATE(1557), - [sym_unary_expression] = STATE(1557), - [sym_postfix_expression] = STATE(1557), - [sym_parenthesized_expression] = STATE(1557), - [sym_arithmetic_expansion] = STATE(1549), - [sym_brace_expression] = STATE(1549), - [sym_concatenation] = STATE(1557), - [sym_string] = STATE(1549), - [sym_translated_string] = STATE(1549), - [sym_number] = STATE(1549), - [sym_simple_expansion] = STATE(1549), - [sym_expansion] = STATE(1549), - [sym_command_substitution] = STATE(1549), - [sym_process_substitution] = STATE(1549), - [aux_sym__literal_repeat1] = STATE(1468), - [aux_sym_concatenation_repeat1] = STATE(1565), - [sym_word] = ACTIONS(240), - [anon_sym_RPAREN_RPAREN] = ACTIONS(624), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_PLUS_PLUS] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(197), - [anon_sym_PLUS_EQ] = ACTIONS(197), - [anon_sym_DASH_EQ] = ACTIONS(197), - [anon_sym_STAR_EQ] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(197), - [anon_sym_LT_LT_EQ] = ACTIONS(624), - [anon_sym_GT_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_EQ] = ACTIONS(624), - [anon_sym_CARET_EQ] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(624), - [anon_sym_EQ_EQ] = ACTIONS(197), - [anon_sym_BANG_EQ] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_STAR_STAR] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(197), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_EQ_TILDE] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(197), - [aux_sym_unary_expression_token1] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1109), - [aux_sym_concatenation_token1] = ACTIONS(1111), - [anon_sym_DOLLAR] = ACTIONS(210), - [sym__special_character] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1115), + [334] = { + [sym_string] = STATE(354), + [sym_word] = ACTIONS(1205), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1205), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_EQ] = ACTIONS(1205), + [anon_sym_DASH_EQ] = ACTIONS(1205), + [anon_sym_STAR_EQ] = ACTIONS(1205), + [anon_sym_SLASH_EQ] = ACTIONS(1205), + [anon_sym_PERCENT_EQ] = ACTIONS(1205), + [anon_sym_LT_LT_EQ] = ACTIONS(1205), + [anon_sym_GT_GT_EQ] = ACTIONS(1205), + [anon_sym_AMP_EQ] = ACTIONS(1205), + [anon_sym_CARET_EQ] = ACTIONS(1205), + [anon_sym_PIPE_EQ] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1205), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1207), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym_PERCENT] = ACTIONS(1205), + [anon_sym_STAR_STAR] = ACTIONS(1205), + [anon_sym_LT] = ACTIONS(1205), + [anon_sym_GT] = ACTIONS(1205), + [anon_sym_RPAREN] = ACTIONS(1205), + [anon_sym_PIPE] = ACTIONS(1205), + [anon_sym_SEMI_SEMI] = ACTIONS(1205), + [anon_sym_PIPE_AMP] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_GT] = ACTIONS(1205), + [anon_sym_AMP_GT_GT] = ACTIONS(1205), + [anon_sym_LT_AMP] = ACTIONS(1205), + [anon_sym_GT_AMP] = ACTIONS(1205), + [anon_sym_GT_PIPE] = ACTIONS(1205), + [anon_sym_LT_LT_DASH] = ACTIONS(1205), + [anon_sym_LF] = ACTIONS(1205), + [anon_sym_LT_LT_LT] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1207), + [sym__special_character] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1209), [sym_raw_string] = ACTIONS(1205), [sym_ansi_c_string] = ACTIONS(1205), - [aux_sym_number_token1] = ACTIONS(216), - [aux_sym_number_token2] = ACTIONS(218), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), - [anon_sym_BQUOTE] = ACTIONS(224), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1121), - [anon_sym_LT_LPAREN] = ACTIONS(1123), - [anon_sym_GT_LPAREN] = ACTIONS(1123), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1207), - [sym__concat] = ACTIONS(1111), - [sym__brace_start] = ACTIONS(236), + [aux_sym_number_token1] = ACTIONS(1205), + [aux_sym_number_token2] = ACTIONS(1205), + [anon_sym_POUND] = ACTIONS(1207), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1205), + [anon_sym_AT] = ACTIONS(1207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1205), + [anon_sym_BQUOTE] = ACTIONS(1205), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1205), + [anon_sym_LT_LPAREN] = ACTIONS(1205), + [anon_sym_GT_LPAREN] = ACTIONS(1205), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(1211), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1211), + [anon_sym_0] = ACTIONS(1207), + [anon_sym__] = ACTIONS(1207), + [sym_test_operator] = ACTIONS(1205), + [sym_file_descriptor] = ACTIONS(1213), + [sym__bare_dollar] = ACTIONS(1213), + [sym__brace_start] = ACTIONS(1213), }, - [345] = { - [sym_string] = STATE(366), - [sym_word] = ACTIONS(1209), - [anon_sym_LF] = ACTIONS(1209), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1209), - [anon_sym_SEMI] = ACTIONS(1209), - [anon_sym_EQ] = ACTIONS(1209), - [anon_sym_PLUS_PLUS] = ACTIONS(1209), - [anon_sym_DASH_DASH] = ACTIONS(1209), - [anon_sym_PLUS_EQ] = ACTIONS(1209), - [anon_sym_DASH_EQ] = ACTIONS(1209), - [anon_sym_STAR_EQ] = ACTIONS(1209), - [anon_sym_SLASH_EQ] = ACTIONS(1209), - [anon_sym_PERCENT_EQ] = ACTIONS(1209), - [anon_sym_LT_LT_EQ] = ACTIONS(1209), - [anon_sym_GT_GT_EQ] = ACTIONS(1209), - [anon_sym_AMP_EQ] = ACTIONS(1209), - [anon_sym_CARET_EQ] = ACTIONS(1209), - [anon_sym_PIPE_EQ] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1209), - [anon_sym_PLUS] = ACTIONS(1209), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_STAR] = ACTIONS(1211), - [anon_sym_SLASH] = ACTIONS(1209), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_STAR_STAR] = ACTIONS(1209), - [anon_sym_LT] = ACTIONS(1209), - [anon_sym_GT] = ACTIONS(1209), - [anon_sym_RPAREN] = ACTIONS(1209), - [anon_sym_PIPE] = ACTIONS(1209), - [anon_sym_SEMI_SEMI] = ACTIONS(1209), - [anon_sym_PIPE_AMP] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_EQ_TILDE] = ACTIONS(1209), - [anon_sym_AMP_GT] = ACTIONS(1209), - [anon_sym_AMP_GT_GT] = ACTIONS(1209), - [anon_sym_LT_AMP] = ACTIONS(1209), - [anon_sym_GT_AMP] = ACTIONS(1209), - [anon_sym_GT_PIPE] = ACTIONS(1209), - [anon_sym_LT_LT_DASH] = ACTIONS(1209), - [anon_sym_LT_LT_LT] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1209), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1209), - [anon_sym_DOLLAR] = ACTIONS(1211), - [sym__special_character] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1213), - [sym_raw_string] = ACTIONS(1209), - [sym_ansi_c_string] = ACTIONS(1209), - [aux_sym_number_token1] = ACTIONS(1209), - [aux_sym_number_token2] = ACTIONS(1209), - [anon_sym_POUND] = ACTIONS(1211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1209), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1209), - [anon_sym_BQUOTE] = ACTIONS(1209), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1209), - [anon_sym_LT_LPAREN] = ACTIONS(1209), - [anon_sym_GT_LPAREN] = ACTIONS(1209), + [335] = { + [sym_string] = STATE(354), + [sym_word] = ACTIONS(1215), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1215), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1215), + [anon_sym_EQ] = ACTIONS(1215), + [anon_sym_PLUS_PLUS] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1215), + [anon_sym_PLUS_EQ] = ACTIONS(1215), + [anon_sym_DASH_EQ] = ACTIONS(1215), + [anon_sym_STAR_EQ] = ACTIONS(1215), + [anon_sym_SLASH_EQ] = ACTIONS(1215), + [anon_sym_PERCENT_EQ] = ACTIONS(1215), + [anon_sym_LT_LT_EQ] = ACTIONS(1215), + [anon_sym_GT_GT_EQ] = ACTIONS(1215), + [anon_sym_AMP_EQ] = ACTIONS(1215), + [anon_sym_CARET_EQ] = ACTIONS(1215), + [anon_sym_PIPE_EQ] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1215), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1207), + [anon_sym_SLASH] = ACTIONS(1215), + [anon_sym_PERCENT] = ACTIONS(1215), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(1215), + [anon_sym_GT] = ACTIONS(1215), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_SEMI_SEMI] = ACTIONS(1215), + [anon_sym_PIPE_AMP] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_GT] = ACTIONS(1215), + [anon_sym_AMP_GT_GT] = ACTIONS(1215), + [anon_sym_LT_AMP] = ACTIONS(1215), + [anon_sym_GT_AMP] = ACTIONS(1215), + [anon_sym_GT_PIPE] = ACTIONS(1215), + [anon_sym_LT_LT_DASH] = ACTIONS(1215), + [anon_sym_LF] = ACTIONS(1215), + [anon_sym_LT_LT_LT] = ACTIONS(1215), + [anon_sym_AMP] = ACTIONS(1215), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1215), + [anon_sym_DOLLAR] = ACTIONS(1207), + [sym__special_character] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym_raw_string] = ACTIONS(1215), + [sym_ansi_c_string] = ACTIONS(1215), + [aux_sym_number_token1] = ACTIONS(1215), + [aux_sym_number_token2] = ACTIONS(1215), + [anon_sym_POUND] = ACTIONS(1207), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1215), + [anon_sym_AT] = ACTIONS(1207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1215), + [anon_sym_BQUOTE] = ACTIONS(1215), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1215), + [anon_sym_LT_LPAREN] = ACTIONS(1215), + [anon_sym_GT_LPAREN] = ACTIONS(1215), [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1215), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1215), - [anon_sym_AT] = ACTIONS(1211), - [anon_sym_0] = ACTIONS(1211), - [anon_sym__] = ACTIONS(1211), - [sym_test_operator] = ACTIONS(1209), + [aux_sym__simple_variable_name_token1] = ACTIONS(1211), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1211), + [anon_sym_0] = ACTIONS(1207), + [anon_sym__] = ACTIONS(1207), + [sym_test_operator] = ACTIONS(1215), [sym_file_descriptor] = ACTIONS(1217), [sym__bare_dollar] = ACTIONS(1217), [sym__brace_start] = ACTIONS(1217), }, - [346] = { - [sym_string] = STATE(366), - [sym_word] = ACTIONS(1219), - [anon_sym_LF] = ACTIONS(1219), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1219), - [anon_sym_SEMI] = ACTIONS(1219), - [anon_sym_EQ] = ACTIONS(1219), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [anon_sym_PLUS_EQ] = ACTIONS(1219), - [anon_sym_DASH_EQ] = ACTIONS(1219), - [anon_sym_STAR_EQ] = ACTIONS(1219), - [anon_sym_SLASH_EQ] = ACTIONS(1219), - [anon_sym_PERCENT_EQ] = ACTIONS(1219), - [anon_sym_LT_LT_EQ] = ACTIONS(1219), - [anon_sym_GT_GT_EQ] = ACTIONS(1219), - [anon_sym_AMP_EQ] = ACTIONS(1219), - [anon_sym_CARET_EQ] = ACTIONS(1219), - [anon_sym_PIPE_EQ] = ACTIONS(1219), - [anon_sym_EQ_EQ] = ACTIONS(1219), - [anon_sym_BANG_EQ] = ACTIONS(1219), - [anon_sym_LT_EQ] = ACTIONS(1219), - [anon_sym_GT_EQ] = ACTIONS(1219), - [anon_sym_AMP_AMP] = ACTIONS(1219), - [anon_sym_PIPE_PIPE] = ACTIONS(1219), - [anon_sym_LT_LT] = ACTIONS(1219), - [anon_sym_GT_GT] = ACTIONS(1219), - [anon_sym_PLUS] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_STAR] = ACTIONS(1211), - [anon_sym_SLASH] = ACTIONS(1219), - [anon_sym_PERCENT] = ACTIONS(1219), - [anon_sym_STAR_STAR] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1219), - [anon_sym_GT] = ACTIONS(1219), - [anon_sym_RPAREN] = ACTIONS(1219), - [anon_sym_PIPE] = ACTIONS(1219), - [anon_sym_SEMI_SEMI] = ACTIONS(1219), - [anon_sym_PIPE_AMP] = ACTIONS(1219), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_EQ_TILDE] = ACTIONS(1219), - [anon_sym_AMP_GT] = ACTIONS(1219), - [anon_sym_AMP_GT_GT] = ACTIONS(1219), - [anon_sym_LT_AMP] = ACTIONS(1219), - [anon_sym_GT_AMP] = ACTIONS(1219), - [anon_sym_GT_PIPE] = ACTIONS(1219), - [anon_sym_LT_LT_DASH] = ACTIONS(1219), - [anon_sym_LT_LT_LT] = ACTIONS(1219), - [anon_sym_AMP] = ACTIONS(1219), - [anon_sym_CARET] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1219), - [anon_sym_DOLLAR] = ACTIONS(1211), - [sym__special_character] = ACTIONS(1219), - [anon_sym_DQUOTE] = ACTIONS(1213), - [sym_raw_string] = ACTIONS(1219), - [sym_ansi_c_string] = ACTIONS(1219), - [aux_sym_number_token1] = ACTIONS(1219), - [aux_sym_number_token2] = ACTIONS(1219), - [anon_sym_POUND] = ACTIONS(1211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1219), - [anon_sym_BQUOTE] = ACTIONS(1219), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1219), - [anon_sym_LT_LPAREN] = ACTIONS(1219), - [anon_sym_GT_LPAREN] = ACTIONS(1219), - [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1215), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1215), - [anon_sym_AT] = ACTIONS(1211), - [anon_sym_0] = ACTIONS(1211), - [anon_sym__] = ACTIONS(1211), - [sym_test_operator] = ACTIONS(1219), - [sym_file_descriptor] = ACTIONS(1221), - [sym__bare_dollar] = ACTIONS(1221), - [sym__brace_start] = ACTIONS(1221), - }, - [347] = { - [sym__expression] = STATE(2039), - [sym_binary_expression] = STATE(1557), - [sym_ternary_expression] = STATE(1557), - [sym_unary_expression] = STATE(1557), - [sym_postfix_expression] = STATE(1557), - [sym_parenthesized_expression] = STATE(1557), - [sym_arithmetic_expansion] = STATE(1662), - [sym_brace_expression] = STATE(1662), - [sym_concatenation] = STATE(1557), - [sym_string] = STATE(1662), - [sym_translated_string] = STATE(1662), - [sym_number] = STATE(1662), - [sym_simple_expansion] = STATE(1662), - [sym_expansion] = STATE(1662), - [sym_command_substitution] = STATE(1662), - [sym_process_substitution] = STATE(1662), - [aux_sym__literal_repeat1] = STATE(1461), - [aux_sym_concatenation_repeat1] = STATE(1598), - [sym_word] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_PLUS_PLUS] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(197), - [anon_sym_PLUS_EQ] = ACTIONS(197), - [anon_sym_DASH_EQ] = ACTIONS(197), - [anon_sym_STAR_EQ] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(197), - [anon_sym_LT_LT_EQ] = ACTIONS(624), - [anon_sym_GT_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_EQ] = ACTIONS(624), - [anon_sym_CARET_EQ] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(624), - [anon_sym_EQ_EQ] = ACTIONS(197), - [anon_sym_BANG_EQ] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_STAR_STAR] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(197), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(1225), - [anon_sym_EQ_TILDE] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(197), - [aux_sym_unary_expression_token1] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1157), - [aux_sym_concatenation_token1] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(326), - [sym__special_character] = ACTIONS(1229), - [anon_sym_DQUOTE] = ACTIONS(1163), - [sym_raw_string] = ACTIONS(1231), - [sym_ansi_c_string] = ACTIONS(1231), - [aux_sym_number_token1] = ACTIONS(332), - [aux_sym_number_token2] = ACTIONS(334), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(338), - [anon_sym_BQUOTE] = ACTIONS(340), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1169), - [anon_sym_LT_LPAREN] = ACTIONS(1171), - [anon_sym_GT_LPAREN] = ACTIONS(1171), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1233), - [sym__concat] = ACTIONS(1159), - [sym__brace_start] = ACTIONS(350), - }, - [348] = { - [sym_string] = STATE(388), - [sym_word] = ACTIONS(1219), - [anon_sym_LF] = ACTIONS(1219), - [anon_sym_SEMI] = ACTIONS(1219), - [anon_sym_EQ] = ACTIONS(1219), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [anon_sym_PLUS_EQ] = ACTIONS(1219), - [anon_sym_DASH_EQ] = ACTIONS(1219), - [anon_sym_STAR_EQ] = ACTIONS(1219), - [anon_sym_SLASH_EQ] = ACTIONS(1219), - [anon_sym_PERCENT_EQ] = ACTIONS(1219), - [anon_sym_LT_LT_EQ] = ACTIONS(1219), - [anon_sym_GT_GT_EQ] = ACTIONS(1219), - [anon_sym_AMP_EQ] = ACTIONS(1219), - [anon_sym_CARET_EQ] = ACTIONS(1219), - [anon_sym_PIPE_EQ] = ACTIONS(1219), - [anon_sym_EQ_EQ] = ACTIONS(1219), - [anon_sym_BANG_EQ] = ACTIONS(1219), - [anon_sym_LT_EQ] = ACTIONS(1219), - [anon_sym_GT_EQ] = ACTIONS(1219), - [anon_sym_AMP_AMP] = ACTIONS(1219), - [anon_sym_PIPE_PIPE] = ACTIONS(1219), - [anon_sym_LT_LT] = ACTIONS(1219), - [anon_sym_GT_GT] = ACTIONS(1219), - [anon_sym_PLUS] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_SLASH] = ACTIONS(1219), - [anon_sym_PERCENT] = ACTIONS(1219), - [anon_sym_STAR_STAR] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1219), - [anon_sym_GT] = ACTIONS(1219), - [anon_sym_RPAREN] = ACTIONS(1219), - [anon_sym_PIPE] = ACTIONS(1219), - [anon_sym_SEMI_SEMI] = ACTIONS(1219), - [anon_sym_PIPE_AMP] = ACTIONS(1219), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_EQ_TILDE] = ACTIONS(1219), - [anon_sym_AMP_GT] = ACTIONS(1219), - [anon_sym_AMP_GT_GT] = ACTIONS(1219), - [anon_sym_LT_AMP] = ACTIONS(1219), - [anon_sym_GT_AMP] = ACTIONS(1219), - [anon_sym_GT_PIPE] = ACTIONS(1219), - [anon_sym_LT_LT_DASH] = ACTIONS(1219), - [anon_sym_LT_LT_LT] = ACTIONS(1219), - [anon_sym_AMP] = ACTIONS(1219), - [anon_sym_CARET] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1219), - [anon_sym_DOLLAR] = ACTIONS(1235), - [sym__special_character] = ACTIONS(1219), - [anon_sym_DQUOTE] = ACTIONS(1237), - [sym_raw_string] = ACTIONS(1219), - [sym_ansi_c_string] = ACTIONS(1219), - [aux_sym_number_token1] = ACTIONS(1219), - [aux_sym_number_token2] = ACTIONS(1219), - [anon_sym_POUND] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1219), - [anon_sym_BQUOTE] = ACTIONS(1219), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1219), - [anon_sym_LT_LPAREN] = ACTIONS(1219), - [anon_sym_GT_LPAREN] = ACTIONS(1219), + [336] = { + [sym_string] = STATE(381), + [sym_word] = ACTIONS(1205), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_EQ] = ACTIONS(1205), + [anon_sym_DASH_EQ] = ACTIONS(1205), + [anon_sym_STAR_EQ] = ACTIONS(1205), + [anon_sym_SLASH_EQ] = ACTIONS(1205), + [anon_sym_PERCENT_EQ] = ACTIONS(1205), + [anon_sym_LT_LT_EQ] = ACTIONS(1205), + [anon_sym_GT_GT_EQ] = ACTIONS(1205), + [anon_sym_AMP_EQ] = ACTIONS(1205), + [anon_sym_CARET_EQ] = ACTIONS(1205), + [anon_sym_PIPE_EQ] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1205), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym_PERCENT] = ACTIONS(1205), + [anon_sym_STAR_STAR] = ACTIONS(1205), + [anon_sym_LT] = ACTIONS(1205), + [anon_sym_GT] = ACTIONS(1205), + [anon_sym_RPAREN] = ACTIONS(1205), + [anon_sym_PIPE] = ACTIONS(1205), + [anon_sym_SEMI_SEMI] = ACTIONS(1205), + [anon_sym_PIPE_AMP] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1219), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_GT] = ACTIONS(1205), + [anon_sym_AMP_GT_GT] = ACTIONS(1205), + [anon_sym_LT_AMP] = ACTIONS(1205), + [anon_sym_GT_AMP] = ACTIONS(1205), + [anon_sym_GT_PIPE] = ACTIONS(1205), + [anon_sym_LT_LT_DASH] = ACTIONS(1205), + [anon_sym_LF] = ACTIONS(1205), + [anon_sym_LT_LT_LT] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_QMARK] = ACTIONS(1219), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1219), + [sym__special_character] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym_raw_string] = ACTIONS(1205), + [sym_ansi_c_string] = ACTIONS(1205), + [aux_sym_number_token1] = ACTIONS(1205), + [aux_sym_number_token2] = ACTIONS(1205), + [anon_sym_POUND] = ACTIONS(1219), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1205), + [anon_sym_AT] = ACTIONS(1219), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1205), + [anon_sym_BQUOTE] = ACTIONS(1205), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1205), + [anon_sym_LT_LPAREN] = ACTIONS(1205), + [anon_sym_GT_LPAREN] = ACTIONS(1205), [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1239), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1239), - [anon_sym_AT] = ACTIONS(1235), - [anon_sym_0] = ACTIONS(1235), - [anon_sym__] = ACTIONS(1235), - [sym_test_operator] = ACTIONS(1219), - [sym_file_descriptor] = ACTIONS(1221), - [sym__bare_dollar] = ACTIONS(1221), - [sym__brace_start] = ACTIONS(1221), + [aux_sym__simple_variable_name_token1] = ACTIONS(1223), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1223), + [anon_sym_0] = ACTIONS(1219), + [anon_sym__] = ACTIONS(1219), + [sym_test_operator] = ACTIONS(1205), + [sym_file_descriptor] = ACTIONS(1213), + [sym__bare_dollar] = ACTIONS(1213), + [sym__brace_start] = ACTIONS(1213), }, - [349] = { - [sym_string] = STATE(388), - [sym_word] = ACTIONS(1209), - [anon_sym_LF] = ACTIONS(1209), - [anon_sym_SEMI] = ACTIONS(1209), - [anon_sym_EQ] = ACTIONS(1209), - [anon_sym_PLUS_PLUS] = ACTIONS(1209), - [anon_sym_DASH_DASH] = ACTIONS(1209), - [anon_sym_PLUS_EQ] = ACTIONS(1209), - [anon_sym_DASH_EQ] = ACTIONS(1209), - [anon_sym_STAR_EQ] = ACTIONS(1209), - [anon_sym_SLASH_EQ] = ACTIONS(1209), - [anon_sym_PERCENT_EQ] = ACTIONS(1209), - [anon_sym_LT_LT_EQ] = ACTIONS(1209), - [anon_sym_GT_GT_EQ] = ACTIONS(1209), - [anon_sym_AMP_EQ] = ACTIONS(1209), - [anon_sym_CARET_EQ] = ACTIONS(1209), - [anon_sym_PIPE_EQ] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1209), - [anon_sym_PLUS] = ACTIONS(1209), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_SLASH] = ACTIONS(1209), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_STAR_STAR] = ACTIONS(1209), - [anon_sym_LT] = ACTIONS(1209), - [anon_sym_GT] = ACTIONS(1209), - [anon_sym_RPAREN] = ACTIONS(1209), - [anon_sym_PIPE] = ACTIONS(1209), - [anon_sym_SEMI_SEMI] = ACTIONS(1209), - [anon_sym_PIPE_AMP] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_EQ_TILDE] = ACTIONS(1209), - [anon_sym_AMP_GT] = ACTIONS(1209), - [anon_sym_AMP_GT_GT] = ACTIONS(1209), - [anon_sym_LT_AMP] = ACTIONS(1209), - [anon_sym_GT_AMP] = ACTIONS(1209), - [anon_sym_GT_PIPE] = ACTIONS(1209), - [anon_sym_LT_LT_DASH] = ACTIONS(1209), - [anon_sym_LT_LT_LT] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1209), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1209), - [anon_sym_DOLLAR] = ACTIONS(1235), - [sym__special_character] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1237), - [sym_raw_string] = ACTIONS(1209), - [sym_ansi_c_string] = ACTIONS(1209), - [aux_sym_number_token1] = ACTIONS(1209), - [aux_sym_number_token2] = ACTIONS(1209), - [anon_sym_POUND] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1209), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1209), - [anon_sym_BQUOTE] = ACTIONS(1209), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1209), - [anon_sym_LT_LPAREN] = ACTIONS(1209), - [anon_sym_GT_LPAREN] = ACTIONS(1209), + [337] = { + [sym_string] = STATE(381), + [sym_word] = ACTIONS(1215), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1215), + [anon_sym_EQ] = ACTIONS(1215), + [anon_sym_PLUS_PLUS] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1215), + [anon_sym_PLUS_EQ] = ACTIONS(1215), + [anon_sym_DASH_EQ] = ACTIONS(1215), + [anon_sym_STAR_EQ] = ACTIONS(1215), + [anon_sym_SLASH_EQ] = ACTIONS(1215), + [anon_sym_PERCENT_EQ] = ACTIONS(1215), + [anon_sym_LT_LT_EQ] = ACTIONS(1215), + [anon_sym_GT_GT_EQ] = ACTIONS(1215), + [anon_sym_AMP_EQ] = ACTIONS(1215), + [anon_sym_CARET_EQ] = ACTIONS(1215), + [anon_sym_PIPE_EQ] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1215), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_SLASH] = ACTIONS(1215), + [anon_sym_PERCENT] = ACTIONS(1215), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(1215), + [anon_sym_GT] = ACTIONS(1215), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_SEMI_SEMI] = ACTIONS(1215), + [anon_sym_PIPE_AMP] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(1219), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_GT] = ACTIONS(1215), + [anon_sym_AMP_GT_GT] = ACTIONS(1215), + [anon_sym_LT_AMP] = ACTIONS(1215), + [anon_sym_GT_AMP] = ACTIONS(1215), + [anon_sym_GT_PIPE] = ACTIONS(1215), + [anon_sym_LT_LT_DASH] = ACTIONS(1215), + [anon_sym_LF] = ACTIONS(1215), + [anon_sym_LT_LT_LT] = ACTIONS(1215), + [anon_sym_AMP] = ACTIONS(1215), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_QMARK] = ACTIONS(1219), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1215), + [anon_sym_DOLLAR] = ACTIONS(1219), + [sym__special_character] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym_raw_string] = ACTIONS(1215), + [sym_ansi_c_string] = ACTIONS(1215), + [aux_sym_number_token1] = ACTIONS(1215), + [aux_sym_number_token2] = ACTIONS(1215), + [anon_sym_POUND] = ACTIONS(1219), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1215), + [anon_sym_AT] = ACTIONS(1219), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1215), + [anon_sym_BQUOTE] = ACTIONS(1215), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1215), + [anon_sym_LT_LPAREN] = ACTIONS(1215), + [anon_sym_GT_LPAREN] = ACTIONS(1215), [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1239), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1239), - [anon_sym_AT] = ACTIONS(1235), - [anon_sym_0] = ACTIONS(1235), - [anon_sym__] = ACTIONS(1235), - [sym_test_operator] = ACTIONS(1209), + [aux_sym__simple_variable_name_token1] = ACTIONS(1223), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1223), + [anon_sym_0] = ACTIONS(1219), + [anon_sym__] = ACTIONS(1219), + [sym_test_operator] = ACTIONS(1215), [sym_file_descriptor] = ACTIONS(1217), [sym__bare_dollar] = ACTIONS(1217), [sym__brace_start] = ACTIONS(1217), }, - [350] = { - [aux_sym_concatenation_repeat1] = STATE(354), - [sym_word] = ACTIONS(1241), - [anon_sym_LF] = ACTIONS(1241), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_EQ] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_STAR_EQ] = ACTIONS(1243), - [anon_sym_SLASH_EQ] = ACTIONS(1243), - [anon_sym_PERCENT_EQ] = ACTIONS(1243), - [anon_sym_LT_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_GT_EQ] = ACTIONS(1243), - [anon_sym_AMP_EQ] = ACTIONS(1243), - [anon_sym_CARET_EQ] = ACTIONS(1243), - [anon_sym_PIPE_EQ] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_PERCENT] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_RPAREN] = ACTIONS(1241), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_SEMI_SEMI] = ACTIONS(1241), - [anon_sym_PIPE_AMP] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_GT] = ACTIONS(1241), - [anon_sym_AMP_GT_GT] = ACTIONS(1241), - [anon_sym_LT_AMP] = ACTIONS(1241), - [anon_sym_GT_AMP] = ACTIONS(1241), - [anon_sym_GT_PIPE] = ACTIONS(1241), - [anon_sym_LT_LT_DASH] = ACTIONS(1241), - [anon_sym_LT_LT_LT] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_QMARK] = ACTIONS(1243), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1241), - [aux_sym_concatenation_token1] = ACTIONS(208), - [anon_sym_DOLLAR] = ACTIONS(1241), - [sym__special_character] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [sym_raw_string] = ACTIONS(1241), - [sym_ansi_c_string] = ACTIONS(1241), - [aux_sym_number_token1] = ACTIONS(1241), - [aux_sym_number_token2] = ACTIONS(1241), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1241), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1241), - [anon_sym_BQUOTE] = ACTIONS(1241), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1241), - [anon_sym_LT_LPAREN] = ACTIONS(1241), - [anon_sym_GT_LPAREN] = ACTIONS(1241), + [338] = { + [aux_sym_concatenation_repeat1] = STATE(345), + [sym_word] = ACTIONS(1225), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_PLUS_EQ] = ACTIONS(1227), + [anon_sym_DASH_EQ] = ACTIONS(1227), + [anon_sym_STAR_EQ] = ACTIONS(1227), + [anon_sym_SLASH_EQ] = ACTIONS(1227), + [anon_sym_PERCENT_EQ] = ACTIONS(1227), + [anon_sym_LT_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_GT_EQ] = ACTIONS(1227), + [anon_sym_AMP_EQ] = ACTIONS(1227), + [anon_sym_CARET_EQ] = ACTIONS(1227), + [anon_sym_PIPE_EQ] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1227), + [anon_sym_PERCENT] = ACTIONS(1227), + [anon_sym_STAR_STAR] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1232), + [anon_sym_RPAREN] = ACTIONS(1225), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_SEMI_SEMI] = ACTIONS(1225), + [anon_sym_PIPE_AMP] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(1229), + [anon_sym_AMP_GT] = ACTIONS(1225), + [anon_sym_AMP_GT_GT] = ACTIONS(1225), + [anon_sym_LT_AMP] = ACTIONS(1225), + [anon_sym_GT_AMP] = ACTIONS(1225), + [anon_sym_GT_PIPE] = ACTIONS(1225), + [anon_sym_LT_LT_DASH] = ACTIONS(1225), + [anon_sym_LF] = ACTIONS(1225), + [anon_sym_LT_LT_LT] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), + [aux_sym_concatenation_token1] = ACTIONS(154), + [anon_sym_DOLLAR] = ACTIONS(1225), + [sym__special_character] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_raw_string] = ACTIONS(1225), + [sym_ansi_c_string] = ACTIONS(1225), + [aux_sym_number_token1] = ACTIONS(1225), + [aux_sym_number_token2] = ACTIONS(1225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), + [anon_sym_BQUOTE] = ACTIONS(1225), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), + [anon_sym_LT_LPAREN] = ACTIONS(1225), + [anon_sym_GT_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1245), - [sym_file_descriptor] = ACTIONS(1250), - [sym__concat] = ACTIONS(234), - [sym__bare_dollar] = ACTIONS(1250), - [sym__brace_start] = ACTIONS(1250), + [sym_test_operator] = ACTIONS(1229), + [sym_file_descriptor] = ACTIONS(1234), + [sym__concat] = ACTIONS(180), + [sym__bare_dollar] = ACTIONS(1234), + [sym__brace_start] = ACTIONS(1234), }, - [351] = { - [sym_string] = STATE(428), - [sym_word] = ACTIONS(1209), - [anon_sym_EQ] = ACTIONS(1209), - [anon_sym_PLUS_PLUS] = ACTIONS(1209), - [anon_sym_DASH_DASH] = ACTIONS(1209), - [anon_sym_PLUS_EQ] = ACTIONS(1209), - [anon_sym_DASH_EQ] = ACTIONS(1209), - [anon_sym_STAR_EQ] = ACTIONS(1209), - [anon_sym_SLASH_EQ] = ACTIONS(1209), - [anon_sym_PERCENT_EQ] = ACTIONS(1209), - [anon_sym_LT_LT_EQ] = ACTIONS(1209), - [anon_sym_GT_GT_EQ] = ACTIONS(1209), - [anon_sym_AMP_EQ] = ACTIONS(1209), - [anon_sym_CARET_EQ] = ACTIONS(1209), - [anon_sym_PIPE_EQ] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1209), - [anon_sym_PLUS] = ACTIONS(1209), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1209), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_STAR_STAR] = ACTIONS(1209), - [anon_sym_LT] = ACTIONS(1209), - [anon_sym_GT] = ACTIONS(1209), - [anon_sym_PIPE] = ACTIONS(1209), - [anon_sym_PIPE_AMP] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1252), - [anon_sym_RBRACK] = ACTIONS(1209), - [anon_sym_EQ_TILDE] = ACTIONS(1209), - [anon_sym_AMP_GT] = ACTIONS(1209), - [anon_sym_AMP_GT_GT] = ACTIONS(1209), - [anon_sym_LT_AMP] = ACTIONS(1209), - [anon_sym_GT_AMP] = ACTIONS(1209), - [anon_sym_GT_PIPE] = ACTIONS(1209), - [anon_sym_LT_LT_DASH] = ACTIONS(1209), - [anon_sym_LT_LT_LT] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1209), - [anon_sym_QMARK] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1209), - [anon_sym_DOLLAR] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_raw_string] = ACTIONS(1209), - [sym_ansi_c_string] = ACTIONS(1209), - [aux_sym_number_token1] = ACTIONS(1209), - [aux_sym_number_token2] = ACTIONS(1209), - [anon_sym_POUND] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1209), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1209), - [anon_sym_BQUOTE] = ACTIONS(1209), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1209), - [anon_sym_LT_LPAREN] = ACTIONS(1209), - [anon_sym_GT_LPAREN] = ACTIONS(1209), + [339] = { + [sym_string] = STATE(429), + [sym_word] = ACTIONS(1205), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_EQ] = ACTIONS(1205), + [anon_sym_DASH_EQ] = ACTIONS(1205), + [anon_sym_STAR_EQ] = ACTIONS(1205), + [anon_sym_SLASH_EQ] = ACTIONS(1205), + [anon_sym_PERCENT_EQ] = ACTIONS(1205), + [anon_sym_LT_LT_EQ] = ACTIONS(1205), + [anon_sym_GT_GT_EQ] = ACTIONS(1205), + [anon_sym_AMP_EQ] = ACTIONS(1205), + [anon_sym_CARET_EQ] = ACTIONS(1205), + [anon_sym_PIPE_EQ] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1205), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym_PERCENT] = ACTIONS(1205), + [anon_sym_STAR_STAR] = ACTIONS(1205), + [anon_sym_LT] = ACTIONS(1205), + [anon_sym_GT] = ACTIONS(1205), + [anon_sym_PIPE] = ACTIONS(1205), + [anon_sym_PIPE_AMP] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_RBRACK] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_GT] = ACTIONS(1205), + [anon_sym_AMP_GT_GT] = ACTIONS(1205), + [anon_sym_LT_AMP] = ACTIONS(1205), + [anon_sym_GT_AMP] = ACTIONS(1205), + [anon_sym_GT_PIPE] = ACTIONS(1205), + [anon_sym_LT_LT_DASH] = ACTIONS(1205), + [anon_sym_LT_LT_LT] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_QMARK] = ACTIONS(1236), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1236), + [sym__special_character] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1238), + [sym_raw_string] = ACTIONS(1205), + [sym_ansi_c_string] = ACTIONS(1205), + [aux_sym_number_token1] = ACTIONS(1205), + [aux_sym_number_token2] = ACTIONS(1205), + [anon_sym_POUND] = ACTIONS(1236), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1205), + [anon_sym_AT] = ACTIONS(1236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1205), + [anon_sym_BQUOTE] = ACTIONS(1205), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1205), + [anon_sym_LT_LPAREN] = ACTIONS(1205), + [anon_sym_GT_LPAREN] = ACTIONS(1205), [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1256), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1256), - [anon_sym_AT] = ACTIONS(1252), - [anon_sym_0] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [sym_test_operator] = ACTIONS(1209), + [aux_sym__simple_variable_name_token1] = ACTIONS(1240), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1240), + [anon_sym_0] = ACTIONS(1236), + [anon_sym__] = ACTIONS(1236), + [sym_test_operator] = ACTIONS(1205), + [sym_file_descriptor] = ACTIONS(1213), + [sym__bare_dollar] = ACTIONS(1213), + [sym__brace_start] = ACTIONS(1213), + }, + [340] = { + [sym_string] = STATE(429), + [sym_word] = ACTIONS(1215), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1215), + [anon_sym_EQ] = ACTIONS(1215), + [anon_sym_PLUS_PLUS] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1215), + [anon_sym_PLUS_EQ] = ACTIONS(1215), + [anon_sym_DASH_EQ] = ACTIONS(1215), + [anon_sym_STAR_EQ] = ACTIONS(1215), + [anon_sym_SLASH_EQ] = ACTIONS(1215), + [anon_sym_PERCENT_EQ] = ACTIONS(1215), + [anon_sym_LT_LT_EQ] = ACTIONS(1215), + [anon_sym_GT_GT_EQ] = ACTIONS(1215), + [anon_sym_AMP_EQ] = ACTIONS(1215), + [anon_sym_CARET_EQ] = ACTIONS(1215), + [anon_sym_PIPE_EQ] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1215), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_SLASH] = ACTIONS(1215), + [anon_sym_PERCENT] = ACTIONS(1215), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(1215), + [anon_sym_GT] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_PIPE_AMP] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_RBRACK] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_GT] = ACTIONS(1215), + [anon_sym_AMP_GT_GT] = ACTIONS(1215), + [anon_sym_LT_AMP] = ACTIONS(1215), + [anon_sym_GT_AMP] = ACTIONS(1215), + [anon_sym_GT_PIPE] = ACTIONS(1215), + [anon_sym_LT_LT_DASH] = ACTIONS(1215), + [anon_sym_LT_LT_LT] = ACTIONS(1215), + [anon_sym_AMP] = ACTIONS(1215), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_QMARK] = ACTIONS(1236), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1215), + [anon_sym_DOLLAR] = ACTIONS(1236), + [sym__special_character] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1238), + [sym_raw_string] = ACTIONS(1215), + [sym_ansi_c_string] = ACTIONS(1215), + [aux_sym_number_token1] = ACTIONS(1215), + [aux_sym_number_token2] = ACTIONS(1215), + [anon_sym_POUND] = ACTIONS(1236), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1215), + [anon_sym_AT] = ACTIONS(1236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1215), + [anon_sym_BQUOTE] = ACTIONS(1215), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1215), + [anon_sym_LT_LPAREN] = ACTIONS(1215), + [anon_sym_GT_LPAREN] = ACTIONS(1215), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(1240), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1240), + [anon_sym_0] = ACTIONS(1236), + [anon_sym__] = ACTIONS(1236), + [sym_test_operator] = ACTIONS(1215), [sym_file_descriptor] = ACTIONS(1217), [sym__bare_dollar] = ACTIONS(1217), [sym__brace_start] = ACTIONS(1217), }, - [352] = { - [sym_string] = STATE(428), - [sym_word] = ACTIONS(1219), - [anon_sym_EQ] = ACTIONS(1219), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [anon_sym_PLUS_EQ] = ACTIONS(1219), - [anon_sym_DASH_EQ] = ACTIONS(1219), - [anon_sym_STAR_EQ] = ACTIONS(1219), - [anon_sym_SLASH_EQ] = ACTIONS(1219), - [anon_sym_PERCENT_EQ] = ACTIONS(1219), - [anon_sym_LT_LT_EQ] = ACTIONS(1219), - [anon_sym_GT_GT_EQ] = ACTIONS(1219), - [anon_sym_AMP_EQ] = ACTIONS(1219), - [anon_sym_CARET_EQ] = ACTIONS(1219), - [anon_sym_PIPE_EQ] = ACTIONS(1219), - [anon_sym_EQ_EQ] = ACTIONS(1219), - [anon_sym_BANG_EQ] = ACTIONS(1219), - [anon_sym_LT_EQ] = ACTIONS(1219), - [anon_sym_GT_EQ] = ACTIONS(1219), - [anon_sym_AMP_AMP] = ACTIONS(1219), - [anon_sym_PIPE_PIPE] = ACTIONS(1219), - [anon_sym_LT_LT] = ACTIONS(1219), - [anon_sym_GT_GT] = ACTIONS(1219), - [anon_sym_PLUS] = ACTIONS(1219), + [341] = { + [aux_sym_concatenation_repeat1] = STATE(345), + [sym_word] = ACTIONS(1225), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_PLUS_EQ] = ACTIONS(1227), + [anon_sym_DASH_EQ] = ACTIONS(1227), + [anon_sym_STAR_EQ] = ACTIONS(1227), + [anon_sym_SLASH_EQ] = ACTIONS(1227), + [anon_sym_PERCENT_EQ] = ACTIONS(1227), + [anon_sym_LT_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_GT_EQ] = ACTIONS(1227), + [anon_sym_AMP_EQ] = ACTIONS(1227), + [anon_sym_CARET_EQ] = ACTIONS(1227), + [anon_sym_PIPE_EQ] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1227), + [anon_sym_PERCENT] = ACTIONS(1227), + [anon_sym_STAR_STAR] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1232), + [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_SEMI_SEMI] = ACTIONS(1225), + [anon_sym_PIPE_AMP] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(1229), + [anon_sym_AMP_GT] = ACTIONS(1225), + [anon_sym_AMP_GT_GT] = ACTIONS(1225), + [anon_sym_LT_AMP] = ACTIONS(1225), + [anon_sym_GT_AMP] = ACTIONS(1225), + [anon_sym_GT_PIPE] = ACTIONS(1225), + [anon_sym_LT_LT_DASH] = ACTIONS(1225), + [anon_sym_LF] = ACTIONS(1225), + [anon_sym_LT_LT_LT] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), + [aux_sym_concatenation_token1] = ACTIONS(154), + [anon_sym_DOLLAR] = ACTIONS(1225), + [sym__special_character] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_raw_string] = ACTIONS(1225), + [sym_ansi_c_string] = ACTIONS(1225), + [aux_sym_number_token1] = ACTIONS(1225), + [aux_sym_number_token2] = ACTIONS(1225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), + [anon_sym_BQUOTE] = ACTIONS(1225), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), + [anon_sym_LT_LPAREN] = ACTIONS(1225), + [anon_sym_GT_LPAREN] = ACTIONS(1225), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1229), + [sym_file_descriptor] = ACTIONS(1234), + [sym__concat] = ACTIONS(180), + [sym__bare_dollar] = ACTIONS(1234), + [sym__brace_start] = ACTIONS(1234), + }, + [342] = { + [aux_sym_concatenation_repeat1] = STATE(345), + [sym_word] = ACTIONS(1225), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_PLUS_EQ] = ACTIONS(1227), + [anon_sym_DASH_EQ] = ACTIONS(1227), + [anon_sym_STAR_EQ] = ACTIONS(1227), + [anon_sym_SLASH_EQ] = ACTIONS(1227), + [anon_sym_PERCENT_EQ] = ACTIONS(1227), + [anon_sym_LT_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_GT_EQ] = ACTIONS(1227), + [anon_sym_AMP_EQ] = ACTIONS(1227), + [anon_sym_CARET_EQ] = ACTIONS(1227), + [anon_sym_PIPE_EQ] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1227), + [anon_sym_PERCENT] = ACTIONS(1227), + [anon_sym_STAR_STAR] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_SEMI_SEMI] = ACTIONS(1225), + [anon_sym_PIPE_AMP] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(1229), + [anon_sym_AMP_GT] = ACTIONS(1225), + [anon_sym_AMP_GT_GT] = ACTIONS(1225), + [anon_sym_LT_AMP] = ACTIONS(1225), + [anon_sym_GT_AMP] = ACTIONS(1225), + [anon_sym_GT_PIPE] = ACTIONS(1225), + [anon_sym_LT_LT_DASH] = ACTIONS(1225), + [anon_sym_LF] = ACTIONS(1225), + [anon_sym_LT_LT_LT] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), + [aux_sym_concatenation_token1] = ACTIONS(154), + [anon_sym_DOLLAR] = ACTIONS(1225), + [sym__special_character] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_raw_string] = ACTIONS(1225), + [sym_ansi_c_string] = ACTIONS(1225), + [aux_sym_number_token1] = ACTIONS(1225), + [aux_sym_number_token2] = ACTIONS(1225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), + [anon_sym_BQUOTE] = ACTIONS(1225), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), + [anon_sym_LT_LPAREN] = ACTIONS(1225), + [anon_sym_GT_LPAREN] = ACTIONS(1225), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1229), + [sym_file_descriptor] = ACTIONS(1234), + [sym__concat] = ACTIONS(180), + [sym__bare_dollar] = ACTIONS(1234), + [sym__brace_start] = ACTIONS(1234), + }, + [343] = { + [aux_sym_concatenation_repeat1] = STATE(344), + [sym_word] = ACTIONS(1242), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1242), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_EQ] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_PLUS_EQ] = ACTIONS(1242), + [anon_sym_DASH_EQ] = ACTIONS(1242), + [anon_sym_STAR_EQ] = ACTIONS(1242), + [anon_sym_SLASH_EQ] = ACTIONS(1242), + [anon_sym_PERCENT_EQ] = ACTIONS(1242), + [anon_sym_LT_LT_EQ] = ACTIONS(1242), + [anon_sym_GT_GT_EQ] = ACTIONS(1242), + [anon_sym_AMP_EQ] = ACTIONS(1242), + [anon_sym_CARET_EQ] = ACTIONS(1242), + [anon_sym_PIPE_EQ] = ACTIONS(1242), + [anon_sym_EQ_EQ] = ACTIONS(1242), + [anon_sym_BANG_EQ] = ACTIONS(1242), + [anon_sym_LT_EQ] = ACTIONS(1242), + [anon_sym_GT_EQ] = ACTIONS(1242), + [anon_sym_AMP_AMP] = ACTIONS(1242), + [anon_sym_PIPE_PIPE] = ACTIONS(1242), + [anon_sym_LT_LT] = ACTIONS(1242), + [anon_sym_GT_GT] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_SLASH] = ACTIONS(1242), + [anon_sym_PERCENT] = ACTIONS(1242), + [anon_sym_STAR_STAR] = ACTIONS(1242), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_GT] = ACTIONS(1242), + [anon_sym_RPAREN] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_SEMI_SEMI] = ACTIONS(1242), + [anon_sym_PIPE_AMP] = ACTIONS(1242), + [anon_sym_EQ_TILDE] = ACTIONS(1242), + [anon_sym_AMP_GT] = ACTIONS(1242), + [anon_sym_AMP_GT_GT] = ACTIONS(1242), + [anon_sym_LT_AMP] = ACTIONS(1242), + [anon_sym_GT_AMP] = ACTIONS(1242), + [anon_sym_GT_PIPE] = ACTIONS(1242), + [anon_sym_LT_LT_DASH] = ACTIONS(1242), + [anon_sym_LF] = ACTIONS(1242), + [anon_sym_LT_LT_LT] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_CARET] = ACTIONS(1242), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1242), + [aux_sym_concatenation_token1] = ACTIONS(154), + [anon_sym_DOLLAR] = ACTIONS(1242), + [sym__special_character] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1242), + [sym_raw_string] = ACTIONS(1242), + [sym_ansi_c_string] = ACTIONS(1242), + [aux_sym_number_token1] = ACTIONS(1242), + [aux_sym_number_token2] = ACTIONS(1242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1242), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1242), + [anon_sym_BQUOTE] = ACTIONS(1242), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1242), + [anon_sym_LT_LPAREN] = ACTIONS(1242), + [anon_sym_GT_LPAREN] = ACTIONS(1242), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1242), + [sym_file_descriptor] = ACTIONS(1244), + [sym__concat] = ACTIONS(180), + [sym__bare_dollar] = ACTIONS(1244), + [sym__brace_start] = ACTIONS(1244), + }, + [344] = { + [aux_sym_concatenation_repeat1] = STATE(347), + [sym_word] = ACTIONS(1246), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1246), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_EQ] = ACTIONS(1246), + [anon_sym_PLUS_PLUS] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_PLUS_EQ] = ACTIONS(1246), + [anon_sym_DASH_EQ] = ACTIONS(1246), + [anon_sym_STAR_EQ] = ACTIONS(1246), + [anon_sym_SLASH_EQ] = ACTIONS(1246), + [anon_sym_PERCENT_EQ] = ACTIONS(1246), + [anon_sym_LT_LT_EQ] = ACTIONS(1246), + [anon_sym_GT_GT_EQ] = ACTIONS(1246), + [anon_sym_AMP_EQ] = ACTIONS(1246), + [anon_sym_CARET_EQ] = ACTIONS(1246), + [anon_sym_PIPE_EQ] = ACTIONS(1246), + [anon_sym_EQ_EQ] = ACTIONS(1246), + [anon_sym_BANG_EQ] = ACTIONS(1246), + [anon_sym_LT_EQ] = ACTIONS(1246), + [anon_sym_GT_EQ] = ACTIONS(1246), + [anon_sym_AMP_AMP] = ACTIONS(1246), + [anon_sym_PIPE_PIPE] = ACTIONS(1246), + [anon_sym_LT_LT] = ACTIONS(1246), + [anon_sym_GT_GT] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1246), + [anon_sym_SLASH] = ACTIONS(1246), + [anon_sym_PERCENT] = ACTIONS(1246), + [anon_sym_STAR_STAR] = ACTIONS(1246), + [anon_sym_LT] = ACTIONS(1246), + [anon_sym_GT] = ACTIONS(1246), + [anon_sym_RPAREN] = ACTIONS(1246), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_SEMI_SEMI] = ACTIONS(1246), + [anon_sym_PIPE_AMP] = ACTIONS(1246), + [anon_sym_EQ_TILDE] = ACTIONS(1246), + [anon_sym_AMP_GT] = ACTIONS(1246), + [anon_sym_AMP_GT_GT] = ACTIONS(1246), + [anon_sym_LT_AMP] = ACTIONS(1246), + [anon_sym_GT_AMP] = ACTIONS(1246), + [anon_sym_GT_PIPE] = ACTIONS(1246), + [anon_sym_LT_LT_DASH] = ACTIONS(1246), + [anon_sym_LF] = ACTIONS(1246), + [anon_sym_LT_LT_LT] = ACTIONS(1246), + [anon_sym_AMP] = ACTIONS(1246), + [anon_sym_CARET] = ACTIONS(1246), + [anon_sym_QMARK] = ACTIONS(1246), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1246), + [aux_sym_concatenation_token1] = ACTIONS(154), + [anon_sym_DOLLAR] = ACTIONS(1246), + [sym__special_character] = ACTIONS(1246), + [anon_sym_DQUOTE] = ACTIONS(1246), + [sym_raw_string] = ACTIONS(1246), + [sym_ansi_c_string] = ACTIONS(1246), + [aux_sym_number_token1] = ACTIONS(1246), + [aux_sym_number_token2] = ACTIONS(1246), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1246), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1246), + [anon_sym_BQUOTE] = ACTIONS(1246), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1246), + [anon_sym_LT_LPAREN] = ACTIONS(1246), + [anon_sym_GT_LPAREN] = ACTIONS(1246), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1246), + [sym_file_descriptor] = ACTIONS(1248), + [sym__concat] = ACTIONS(1250), + [sym__bare_dollar] = ACTIONS(1248), + [sym__brace_start] = ACTIONS(1248), + }, + [345] = { + [aux_sym_concatenation_repeat1] = STATE(347), + [sym_word] = ACTIONS(1252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1252), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_EQ] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_PERCENT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_CARET_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1252), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP_AMP] = ACTIONS(1252), + [anon_sym_PIPE_PIPE] = ACTIONS(1252), + [anon_sym_LT_LT] = ACTIONS(1252), + [anon_sym_GT_GT] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), [anon_sym_DASH] = ACTIONS(1252), [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1219), - [anon_sym_PERCENT] = ACTIONS(1219), - [anon_sym_STAR_STAR] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1219), - [anon_sym_GT] = ACTIONS(1219), - [anon_sym_PIPE] = ACTIONS(1219), - [anon_sym_PIPE_AMP] = ACTIONS(1219), - [anon_sym_BANG] = ACTIONS(1252), - [anon_sym_RBRACK] = ACTIONS(1219), - [anon_sym_EQ_TILDE] = ACTIONS(1219), - [anon_sym_AMP_GT] = ACTIONS(1219), - [anon_sym_AMP_GT_GT] = ACTIONS(1219), - [anon_sym_LT_AMP] = ACTIONS(1219), - [anon_sym_GT_AMP] = ACTIONS(1219), - [anon_sym_GT_PIPE] = ACTIONS(1219), - [anon_sym_LT_LT_DASH] = ACTIONS(1219), - [anon_sym_LT_LT_LT] = ACTIONS(1219), - [anon_sym_AMP] = ACTIONS(1219), - [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_SLASH] = ACTIONS(1252), + [anon_sym_PERCENT] = ACTIONS(1252), + [anon_sym_STAR_STAR] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1252), + [anon_sym_RPAREN] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_SEMI_SEMI] = ACTIONS(1252), + [anon_sym_PIPE_AMP] = ACTIONS(1252), + [anon_sym_EQ_TILDE] = ACTIONS(1252), + [anon_sym_AMP_GT] = ACTIONS(1252), + [anon_sym_AMP_GT_GT] = ACTIONS(1252), + [anon_sym_LT_AMP] = ACTIONS(1252), + [anon_sym_GT_AMP] = ACTIONS(1252), + [anon_sym_GT_PIPE] = ACTIONS(1252), + [anon_sym_LT_LT_DASH] = ACTIONS(1252), + [anon_sym_LF] = ACTIONS(1252), + [anon_sym_LT_LT_LT] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_CARET] = ACTIONS(1252), [anon_sym_QMARK] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1219), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1252), + [aux_sym_concatenation_token1] = ACTIONS(154), [anon_sym_DOLLAR] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1219), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_raw_string] = ACTIONS(1219), - [sym_ansi_c_string] = ACTIONS(1219), - [aux_sym_number_token1] = ACTIONS(1219), - [aux_sym_number_token2] = ACTIONS(1219), - [anon_sym_POUND] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1219), - [anon_sym_BQUOTE] = ACTIONS(1219), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1219), - [anon_sym_LT_LPAREN] = ACTIONS(1219), - [anon_sym_GT_LPAREN] = ACTIONS(1219), + [sym__special_character] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_raw_string] = ACTIONS(1252), + [sym_ansi_c_string] = ACTIONS(1252), + [aux_sym_number_token1] = ACTIONS(1252), + [aux_sym_number_token2] = ACTIONS(1252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), + [anon_sym_BQUOTE] = ACTIONS(1252), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1252), + [anon_sym_LT_LPAREN] = ACTIONS(1252), + [anon_sym_GT_LPAREN] = ACTIONS(1252), [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1256), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1256), - [anon_sym_AT] = ACTIONS(1252), - [anon_sym_0] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [sym_test_operator] = ACTIONS(1219), - [sym_file_descriptor] = ACTIONS(1221), - [sym__bare_dollar] = ACTIONS(1221), - [sym__brace_start] = ACTIONS(1221), + [sym_test_operator] = ACTIONS(1252), + [sym_file_descriptor] = ACTIONS(1254), + [sym__concat] = ACTIONS(1256), + [sym__bare_dollar] = ACTIONS(1254), + [sym__brace_start] = ACTIONS(1254), }, - [353] = { - [aux_sym_concatenation_repeat1] = STATE(354), - [sym_word] = ACTIONS(1241), - [anon_sym_LF] = ACTIONS(1241), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_EQ] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_STAR_EQ] = ACTIONS(1243), - [anon_sym_SLASH_EQ] = ACTIONS(1243), - [anon_sym_PERCENT_EQ] = ACTIONS(1243), - [anon_sym_LT_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_GT_EQ] = ACTIONS(1243), - [anon_sym_AMP_EQ] = ACTIONS(1243), - [anon_sym_CARET_EQ] = ACTIONS(1243), - [anon_sym_PIPE_EQ] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_PERCENT] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_SEMI_SEMI] = ACTIONS(1241), - [anon_sym_PIPE_AMP] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_GT] = ACTIONS(1241), - [anon_sym_AMP_GT_GT] = ACTIONS(1241), - [anon_sym_LT_AMP] = ACTIONS(1241), - [anon_sym_GT_AMP] = ACTIONS(1241), - [anon_sym_GT_PIPE] = ACTIONS(1241), - [anon_sym_LT_LT_DASH] = ACTIONS(1241), - [anon_sym_LT_LT_LT] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_QMARK] = ACTIONS(1243), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1241), - [aux_sym_concatenation_token1] = ACTIONS(208), - [anon_sym_DOLLAR] = ACTIONS(1241), - [sym__special_character] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [sym_raw_string] = ACTIONS(1241), - [sym_ansi_c_string] = ACTIONS(1241), - [aux_sym_number_token1] = ACTIONS(1241), - [aux_sym_number_token2] = ACTIONS(1241), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1241), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1241), - [anon_sym_BQUOTE] = ACTIONS(1241), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1241), - [anon_sym_LT_LPAREN] = ACTIONS(1241), - [anon_sym_GT_LPAREN] = ACTIONS(1241), + [346] = { + [aux_sym_concatenation_repeat1] = STATE(345), + [sym_word] = ACTIONS(1225), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_PLUS_EQ] = ACTIONS(1227), + [anon_sym_DASH_EQ] = ACTIONS(1227), + [anon_sym_STAR_EQ] = ACTIONS(1227), + [anon_sym_SLASH_EQ] = ACTIONS(1227), + [anon_sym_PERCENT_EQ] = ACTIONS(1227), + [anon_sym_LT_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_GT_EQ] = ACTIONS(1227), + [anon_sym_AMP_EQ] = ACTIONS(1227), + [anon_sym_CARET_EQ] = ACTIONS(1227), + [anon_sym_PIPE_EQ] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1227), + [anon_sym_PERCENT] = ACTIONS(1227), + [anon_sym_STAR_STAR] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1225), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_SEMI_SEMI] = ACTIONS(1225), + [anon_sym_PIPE_AMP] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(1229), + [anon_sym_AMP_GT] = ACTIONS(1225), + [anon_sym_AMP_GT_GT] = ACTIONS(1225), + [anon_sym_LT_AMP] = ACTIONS(1225), + [anon_sym_GT_AMP] = ACTIONS(1225), + [anon_sym_GT_PIPE] = ACTIONS(1225), + [anon_sym_LT_LT_DASH] = ACTIONS(1225), + [anon_sym_LF] = ACTIONS(1225), + [anon_sym_LT_LT_LT] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), + [aux_sym_concatenation_token1] = ACTIONS(154), + [anon_sym_DOLLAR] = ACTIONS(1225), + [sym__special_character] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_raw_string] = ACTIONS(1225), + [sym_ansi_c_string] = ACTIONS(1225), + [aux_sym_number_token1] = ACTIONS(1225), + [aux_sym_number_token2] = ACTIONS(1225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), + [anon_sym_BQUOTE] = ACTIONS(1225), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), + [anon_sym_LT_LPAREN] = ACTIONS(1225), + [anon_sym_GT_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1245), - [sym_file_descriptor] = ACTIONS(1250), - [sym__concat] = ACTIONS(234), - [sym__bare_dollar] = ACTIONS(1250), - [sym__brace_start] = ACTIONS(1250), + [sym_test_operator] = ACTIONS(1229), + [sym_file_descriptor] = ACTIONS(1234), + [sym__concat] = ACTIONS(180), + [sym__bare_dollar] = ACTIONS(1234), + [sym__brace_start] = ACTIONS(1234), }, - [354] = { - [aux_sym_concatenation_repeat1] = STATE(358), + [347] = { + [aux_sym_concatenation_repeat1] = STATE(347), [sym_word] = ACTIONS(1258), - [anon_sym_LF] = ACTIONS(1258), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1258), [anon_sym_RPAREN_RPAREN] = ACTIONS(1258), [anon_sym_SEMI] = ACTIONS(1258), [anon_sym_EQ] = ACTIONS(1258), @@ -50393,12 +51608,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_AMP] = ACTIONS(1258), [anon_sym_GT_PIPE] = ACTIONS(1258), [anon_sym_LT_LT_DASH] = ACTIONS(1258), + [anon_sym_LF] = ACTIONS(1258), [anon_sym_LT_LT_LT] = ACTIONS(1258), [anon_sym_AMP] = ACTIONS(1258), [anon_sym_CARET] = ACTIONS(1258), [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1258), - [aux_sym_concatenation_token1] = ACTIONS(208), + [aux_sym_concatenation_token1] = ACTIONS(1260), [anon_sym_DOLLAR] = ACTIONS(1258), [sym__special_character] = ACTIONS(1258), [anon_sym_DQUOTE] = ACTIONS(1258), @@ -50414,446 +51630,447 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(1258), [sym_comment] = ACTIONS(3), [sym_test_operator] = ACTIONS(1258), - [sym_file_descriptor] = ACTIONS(1260), - [sym__concat] = ACTIONS(1262), - [sym__bare_dollar] = ACTIONS(1260), - [sym__brace_start] = ACTIONS(1260), + [sym_file_descriptor] = ACTIONS(1263), + [sym__concat] = ACTIONS(1265), + [sym__bare_dollar] = ACTIONS(1263), + [sym__brace_start] = ACTIONS(1263), }, - [355] = { - [aux_sym_concatenation_repeat1] = STATE(358), - [sym_word] = ACTIONS(1264), - [anon_sym_LF] = ACTIONS(1264), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1264), - [anon_sym_EQ] = ACTIONS(1264), - [anon_sym_PLUS_PLUS] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1264), - [anon_sym_PLUS_EQ] = ACTIONS(1264), - [anon_sym_DASH_EQ] = ACTIONS(1264), - [anon_sym_STAR_EQ] = ACTIONS(1264), - [anon_sym_SLASH_EQ] = ACTIONS(1264), - [anon_sym_PERCENT_EQ] = ACTIONS(1264), - [anon_sym_LT_LT_EQ] = ACTIONS(1264), - [anon_sym_GT_GT_EQ] = ACTIONS(1264), - [anon_sym_AMP_EQ] = ACTIONS(1264), - [anon_sym_CARET_EQ] = ACTIONS(1264), - [anon_sym_PIPE_EQ] = ACTIONS(1264), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_LT_EQ] = ACTIONS(1264), - [anon_sym_GT_EQ] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1264), - [anon_sym_PIPE_PIPE] = ACTIONS(1264), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(1264), - [anon_sym_PERCENT] = ACTIONS(1264), - [anon_sym_STAR_STAR] = ACTIONS(1264), - [anon_sym_LT] = ACTIONS(1264), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_RPAREN] = ACTIONS(1264), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_SEMI_SEMI] = ACTIONS(1264), - [anon_sym_PIPE_AMP] = ACTIONS(1264), - [anon_sym_EQ_TILDE] = ACTIONS(1264), - [anon_sym_AMP_GT] = ACTIONS(1264), - [anon_sym_AMP_GT_GT] = ACTIONS(1264), - [anon_sym_LT_AMP] = ACTIONS(1264), - [anon_sym_GT_AMP] = ACTIONS(1264), - [anon_sym_GT_PIPE] = ACTIONS(1264), - [anon_sym_LT_LT_DASH] = ACTIONS(1264), - [anon_sym_LT_LT_LT] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1264), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1264), - [aux_sym_concatenation_token1] = ACTIONS(208), - [anon_sym_DOLLAR] = ACTIONS(1264), - [sym__special_character] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(1264), - [sym_raw_string] = ACTIONS(1264), - [sym_ansi_c_string] = ACTIONS(1264), - [aux_sym_number_token1] = ACTIONS(1264), - [aux_sym_number_token2] = ACTIONS(1264), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1264), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1264), - [anon_sym_BQUOTE] = ACTIONS(1264), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1264), - [anon_sym_LT_LPAREN] = ACTIONS(1264), - [anon_sym_GT_LPAREN] = ACTIONS(1264), + [348] = { + [aux_sym_concatenation_repeat1] = STATE(359), + [sym_word] = ACTIONS(1225), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_PLUS_EQ] = ACTIONS(1227), + [anon_sym_DASH_EQ] = ACTIONS(1227), + [anon_sym_STAR_EQ] = ACTIONS(1227), + [anon_sym_SLASH_EQ] = ACTIONS(1227), + [anon_sym_PERCENT_EQ] = ACTIONS(1227), + [anon_sym_LT_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_GT_EQ] = ACTIONS(1227), + [anon_sym_AMP_EQ] = ACTIONS(1227), + [anon_sym_CARET_EQ] = ACTIONS(1227), + [anon_sym_PIPE_EQ] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1227), + [anon_sym_PERCENT] = ACTIONS(1227), + [anon_sym_STAR_STAR] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1232), + [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_SEMI_SEMI] = ACTIONS(1225), + [anon_sym_PIPE_AMP] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(1229), + [anon_sym_AMP_GT] = ACTIONS(1225), + [anon_sym_AMP_GT_GT] = ACTIONS(1225), + [anon_sym_LT_AMP] = ACTIONS(1225), + [anon_sym_GT_AMP] = ACTIONS(1225), + [anon_sym_GT_PIPE] = ACTIONS(1225), + [anon_sym_LT_LT_DASH] = ACTIONS(1225), + [anon_sym_LF] = ACTIONS(1225), + [anon_sym_LT_LT_LT] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), + [aux_sym_concatenation_token1] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(1225), + [sym__special_character] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_raw_string] = ACTIONS(1225), + [sym_ansi_c_string] = ACTIONS(1225), + [aux_sym_number_token1] = ACTIONS(1225), + [aux_sym_number_token2] = ACTIONS(1225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), + [anon_sym_BQUOTE] = ACTIONS(1225), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), + [anon_sym_LT_LPAREN] = ACTIONS(1225), + [anon_sym_GT_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1264), - [sym_file_descriptor] = ACTIONS(1266), - [sym__concat] = ACTIONS(1268), - [sym__bare_dollar] = ACTIONS(1266), - [sym__brace_start] = ACTIONS(1266), + [sym_test_operator] = ACTIONS(1229), + [sym_file_descriptor] = ACTIONS(1234), + [sym__concat] = ACTIONS(262), + [sym__bare_dollar] = ACTIONS(1234), + [sym__brace_start] = ACTIONS(1234), }, - [356] = { - [aux_sym_concatenation_repeat1] = STATE(355), - [sym_word] = ACTIONS(1270), - [anon_sym_LF] = ACTIONS(1270), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym_EQ] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_EQ] = ACTIONS(1270), - [anon_sym_DASH_EQ] = ACTIONS(1270), - [anon_sym_STAR_EQ] = ACTIONS(1270), - [anon_sym_SLASH_EQ] = ACTIONS(1270), - [anon_sym_PERCENT_EQ] = ACTIONS(1270), - [anon_sym_LT_LT_EQ] = ACTIONS(1270), - [anon_sym_GT_GT_EQ] = ACTIONS(1270), - [anon_sym_AMP_EQ] = ACTIONS(1270), - [anon_sym_CARET_EQ] = ACTIONS(1270), - [anon_sym_PIPE_EQ] = ACTIONS(1270), - [anon_sym_EQ_EQ] = ACTIONS(1270), - [anon_sym_BANG_EQ] = ACTIONS(1270), - [anon_sym_LT_EQ] = ACTIONS(1270), - [anon_sym_GT_EQ] = ACTIONS(1270), - [anon_sym_AMP_AMP] = ACTIONS(1270), - [anon_sym_PIPE_PIPE] = ACTIONS(1270), - [anon_sym_LT_LT] = ACTIONS(1270), - [anon_sym_GT_GT] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_PERCENT] = ACTIONS(1270), - [anon_sym_STAR_STAR] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1270), - [anon_sym_GT] = ACTIONS(1270), - [anon_sym_RPAREN] = ACTIONS(1270), - [anon_sym_PIPE] = ACTIONS(1270), - [anon_sym_SEMI_SEMI] = ACTIONS(1270), - [anon_sym_PIPE_AMP] = ACTIONS(1270), - [anon_sym_EQ_TILDE] = ACTIONS(1270), - [anon_sym_AMP_GT] = ACTIONS(1270), - [anon_sym_AMP_GT_GT] = ACTIONS(1270), - [anon_sym_LT_AMP] = ACTIONS(1270), - [anon_sym_GT_AMP] = ACTIONS(1270), - [anon_sym_GT_PIPE] = ACTIONS(1270), - [anon_sym_LT_LT_DASH] = ACTIONS(1270), - [anon_sym_LT_LT_LT] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_CARET] = ACTIONS(1270), - [anon_sym_QMARK] = ACTIONS(1270), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1270), - [aux_sym_concatenation_token1] = ACTIONS(208), - [anon_sym_DOLLAR] = ACTIONS(1270), - [sym__special_character] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_raw_string] = ACTIONS(1270), - [sym_ansi_c_string] = ACTIONS(1270), - [aux_sym_number_token1] = ACTIONS(1270), - [aux_sym_number_token2] = ACTIONS(1270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1270), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1270), - [anon_sym_BQUOTE] = ACTIONS(1270), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1270), - [anon_sym_LT_LPAREN] = ACTIONS(1270), - [anon_sym_GT_LPAREN] = ACTIONS(1270), + [349] = { + [sym_word] = ACTIONS(1268), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1268), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym_EQ] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_EQ] = ACTIONS(1268), + [anon_sym_DASH_EQ] = ACTIONS(1268), + [anon_sym_STAR_EQ] = ACTIONS(1268), + [anon_sym_SLASH_EQ] = ACTIONS(1268), + [anon_sym_PERCENT_EQ] = ACTIONS(1268), + [anon_sym_LT_LT_EQ] = ACTIONS(1268), + [anon_sym_GT_GT_EQ] = ACTIONS(1268), + [anon_sym_AMP_EQ] = ACTIONS(1268), + [anon_sym_CARET_EQ] = ACTIONS(1268), + [anon_sym_PIPE_EQ] = ACTIONS(1268), + [anon_sym_EQ_EQ] = ACTIONS(1268), + [anon_sym_BANG_EQ] = ACTIONS(1268), + [anon_sym_LT_EQ] = ACTIONS(1268), + [anon_sym_GT_EQ] = ACTIONS(1268), + [anon_sym_AMP_AMP] = ACTIONS(1268), + [anon_sym_PIPE_PIPE] = ACTIONS(1268), + [anon_sym_LT_LT] = ACTIONS(1268), + [anon_sym_GT_GT] = ACTIONS(1268), + [anon_sym_PLUS] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_SLASH] = ACTIONS(1268), + [anon_sym_PERCENT] = ACTIONS(1268), + [anon_sym_STAR_STAR] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(1268), + [anon_sym_GT] = ACTIONS(1268), + [anon_sym_RPAREN] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_SEMI_SEMI] = ACTIONS(1268), + [anon_sym_PIPE_AMP] = ACTIONS(1268), + [anon_sym_EQ_TILDE] = ACTIONS(1268), + [anon_sym_AMP_GT] = ACTIONS(1268), + [anon_sym_AMP_GT_GT] = ACTIONS(1268), + [anon_sym_LT_AMP] = ACTIONS(1268), + [anon_sym_GT_AMP] = ACTIONS(1268), + [anon_sym_GT_PIPE] = ACTIONS(1268), + [anon_sym_LT_LT_DASH] = ACTIONS(1268), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_LT_LT_LT] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_CARET] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1268), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1268), + [aux_sym_concatenation_token1] = ACTIONS(1268), + [anon_sym_DOLLAR] = ACTIONS(1268), + [sym__special_character] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym_raw_string] = ACTIONS(1268), + [sym_ansi_c_string] = ACTIONS(1268), + [aux_sym_number_token1] = ACTIONS(1268), + [aux_sym_number_token2] = ACTIONS(1268), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1268), + [anon_sym_BQUOTE] = ACTIONS(1268), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1268), + [anon_sym_LT_LPAREN] = ACTIONS(1268), + [anon_sym_GT_LPAREN] = ACTIONS(1268), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1270), - [sym_file_descriptor] = ACTIONS(1272), - [sym__concat] = ACTIONS(234), - [sym__bare_dollar] = ACTIONS(1272), - [sym__brace_start] = ACTIONS(1272), + [sym_test_operator] = ACTIONS(1268), + [sym_file_descriptor] = ACTIONS(1270), + [sym__concat] = ACTIONS(1270), + [sym__bare_dollar] = ACTIONS(1270), + [sym__brace_start] = ACTIONS(1270), }, - [357] = { - [aux_sym_concatenation_repeat1] = STATE(369), - [sym_word] = ACTIONS(1241), - [anon_sym_LF] = ACTIONS(1241), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_EQ] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_STAR_EQ] = ACTIONS(1243), - [anon_sym_SLASH_EQ] = ACTIONS(1243), - [anon_sym_PERCENT_EQ] = ACTIONS(1243), - [anon_sym_LT_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_GT_EQ] = ACTIONS(1243), - [anon_sym_AMP_EQ] = ACTIONS(1243), - [anon_sym_CARET_EQ] = ACTIONS(1243), - [anon_sym_PIPE_EQ] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_PERCENT] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_SEMI_SEMI] = ACTIONS(1241), - [anon_sym_PIPE_AMP] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_GT] = ACTIONS(1241), - [anon_sym_AMP_GT_GT] = ACTIONS(1241), - [anon_sym_LT_AMP] = ACTIONS(1241), - [anon_sym_GT_AMP] = ACTIONS(1241), - [anon_sym_GT_PIPE] = ACTIONS(1241), - [anon_sym_LT_LT_DASH] = ACTIONS(1241), - [anon_sym_LT_LT_LT] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_QMARK] = ACTIONS(1243), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1241), - [aux_sym_concatenation_token1] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(1241), - [sym__special_character] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [sym_raw_string] = ACTIONS(1241), - [sym_ansi_c_string] = ACTIONS(1241), - [aux_sym_number_token1] = ACTIONS(1241), - [aux_sym_number_token2] = ACTIONS(1241), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1241), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1241), - [anon_sym_BQUOTE] = ACTIONS(1241), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1241), - [anon_sym_LT_LPAREN] = ACTIONS(1241), - [anon_sym_GT_LPAREN] = ACTIONS(1241), + [350] = { + [sym_word] = ACTIONS(1272), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1272), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym_EQ] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [anon_sym_DASH_DASH] = ACTIONS(1272), + [anon_sym_PLUS_EQ] = ACTIONS(1272), + [anon_sym_DASH_EQ] = ACTIONS(1272), + [anon_sym_STAR_EQ] = ACTIONS(1272), + [anon_sym_SLASH_EQ] = ACTIONS(1272), + [anon_sym_PERCENT_EQ] = ACTIONS(1272), + [anon_sym_LT_LT_EQ] = ACTIONS(1272), + [anon_sym_GT_GT_EQ] = ACTIONS(1272), + [anon_sym_AMP_EQ] = ACTIONS(1272), + [anon_sym_CARET_EQ] = ACTIONS(1272), + [anon_sym_PIPE_EQ] = ACTIONS(1272), + [anon_sym_EQ_EQ] = ACTIONS(1272), + [anon_sym_BANG_EQ] = ACTIONS(1272), + [anon_sym_LT_EQ] = ACTIONS(1272), + [anon_sym_GT_EQ] = ACTIONS(1272), + [anon_sym_AMP_AMP] = ACTIONS(1272), + [anon_sym_PIPE_PIPE] = ACTIONS(1272), + [anon_sym_LT_LT] = ACTIONS(1272), + [anon_sym_GT_GT] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(1272), + [anon_sym_PERCENT] = ACTIONS(1272), + [anon_sym_STAR_STAR] = ACTIONS(1272), + [anon_sym_LT] = ACTIONS(1272), + [anon_sym_GT] = ACTIONS(1272), + [anon_sym_RPAREN] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_SEMI_SEMI] = ACTIONS(1272), + [anon_sym_PIPE_AMP] = ACTIONS(1272), + [anon_sym_EQ_TILDE] = ACTIONS(1272), + [anon_sym_AMP_GT] = ACTIONS(1272), + [anon_sym_AMP_GT_GT] = ACTIONS(1272), + [anon_sym_LT_AMP] = ACTIONS(1272), + [anon_sym_GT_AMP] = ACTIONS(1272), + [anon_sym_GT_PIPE] = ACTIONS(1272), + [anon_sym_LT_LT_DASH] = ACTIONS(1272), + [anon_sym_LF] = ACTIONS(1272), + [anon_sym_LT_LT_LT] = ACTIONS(1272), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_CARET] = ACTIONS(1272), + [anon_sym_QMARK] = ACTIONS(1272), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1272), + [aux_sym_concatenation_token1] = ACTIONS(1272), + [anon_sym_DOLLAR] = ACTIONS(1272), + [sym__special_character] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym_raw_string] = ACTIONS(1272), + [sym_ansi_c_string] = ACTIONS(1272), + [aux_sym_number_token1] = ACTIONS(1272), + [aux_sym_number_token2] = ACTIONS(1272), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1272), + [anon_sym_BQUOTE] = ACTIONS(1272), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1272), + [anon_sym_LT_LPAREN] = ACTIONS(1272), + [anon_sym_GT_LPAREN] = ACTIONS(1272), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1245), - [sym_file_descriptor] = ACTIONS(1250), - [sym__concat] = ACTIONS(348), - [sym__bare_dollar] = ACTIONS(1250), - [sym__brace_start] = ACTIONS(1250), + [sym_test_operator] = ACTIONS(1272), + [sym_file_descriptor] = ACTIONS(1274), + [sym__concat] = ACTIONS(1274), + [sym__bare_dollar] = ACTIONS(1274), + [sym__brace_start] = ACTIONS(1274), }, - [358] = { - [aux_sym_concatenation_repeat1] = STATE(358), - [sym_word] = ACTIONS(1274), - [anon_sym_LF] = ACTIONS(1274), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym_EQ] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_EQ] = ACTIONS(1274), - [anon_sym_DASH_EQ] = ACTIONS(1274), - [anon_sym_STAR_EQ] = ACTIONS(1274), - [anon_sym_SLASH_EQ] = ACTIONS(1274), - [anon_sym_PERCENT_EQ] = ACTIONS(1274), - [anon_sym_LT_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_GT_EQ] = ACTIONS(1274), - [anon_sym_AMP_EQ] = ACTIONS(1274), - [anon_sym_CARET_EQ] = ACTIONS(1274), - [anon_sym_PIPE_EQ] = ACTIONS(1274), - [anon_sym_EQ_EQ] = ACTIONS(1274), - [anon_sym_BANG_EQ] = ACTIONS(1274), - [anon_sym_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1274), - [anon_sym_AMP_AMP] = ACTIONS(1274), - [anon_sym_PIPE_PIPE] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1274), - [anon_sym_GT_GT] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1274), - [anon_sym_PERCENT] = ACTIONS(1274), - [anon_sym_STAR_STAR] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_GT] = ACTIONS(1274), - [anon_sym_RPAREN] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1274), - [anon_sym_SEMI_SEMI] = ACTIONS(1274), - [anon_sym_PIPE_AMP] = ACTIONS(1274), - [anon_sym_EQ_TILDE] = ACTIONS(1274), - [anon_sym_AMP_GT] = ACTIONS(1274), - [anon_sym_AMP_GT_GT] = ACTIONS(1274), - [anon_sym_LT_AMP] = ACTIONS(1274), - [anon_sym_GT_AMP] = ACTIONS(1274), - [anon_sym_GT_PIPE] = ACTIONS(1274), - [anon_sym_LT_LT_DASH] = ACTIONS(1274), - [anon_sym_LT_LT_LT] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_CARET] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(1274), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1274), - [aux_sym_concatenation_token1] = ACTIONS(1276), - [anon_sym_DOLLAR] = ACTIONS(1274), - [sym__special_character] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_raw_string] = ACTIONS(1274), - [sym_ansi_c_string] = ACTIONS(1274), - [aux_sym_number_token1] = ACTIONS(1274), - [aux_sym_number_token2] = ACTIONS(1274), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1274), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1274), - [anon_sym_BQUOTE] = ACTIONS(1274), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1274), - [anon_sym_LT_LPAREN] = ACTIONS(1274), - [anon_sym_GT_LPAREN] = ACTIONS(1274), + [351] = { + [sym_word] = ACTIONS(1258), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1258), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_EQ] = ACTIONS(1258), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_PLUS_EQ] = ACTIONS(1258), + [anon_sym_DASH_EQ] = ACTIONS(1258), + [anon_sym_STAR_EQ] = ACTIONS(1258), + [anon_sym_SLASH_EQ] = ACTIONS(1258), + [anon_sym_PERCENT_EQ] = ACTIONS(1258), + [anon_sym_LT_LT_EQ] = ACTIONS(1258), + [anon_sym_GT_GT_EQ] = ACTIONS(1258), + [anon_sym_AMP_EQ] = ACTIONS(1258), + [anon_sym_CARET_EQ] = ACTIONS(1258), + [anon_sym_PIPE_EQ] = ACTIONS(1258), + [anon_sym_EQ_EQ] = ACTIONS(1258), + [anon_sym_BANG_EQ] = ACTIONS(1258), + [anon_sym_LT_EQ] = ACTIONS(1258), + [anon_sym_GT_EQ] = ACTIONS(1258), + [anon_sym_AMP_AMP] = ACTIONS(1258), + [anon_sym_PIPE_PIPE] = ACTIONS(1258), + [anon_sym_LT_LT] = ACTIONS(1258), + [anon_sym_GT_GT] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_SLASH] = ACTIONS(1258), + [anon_sym_PERCENT] = ACTIONS(1258), + [anon_sym_STAR_STAR] = ACTIONS(1258), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_GT] = ACTIONS(1258), + [anon_sym_RPAREN] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1258), + [anon_sym_SEMI_SEMI] = ACTIONS(1258), + [anon_sym_PIPE_AMP] = ACTIONS(1258), + [anon_sym_EQ_TILDE] = ACTIONS(1258), + [anon_sym_AMP_GT] = ACTIONS(1258), + [anon_sym_AMP_GT_GT] = ACTIONS(1258), + [anon_sym_LT_AMP] = ACTIONS(1258), + [anon_sym_GT_AMP] = ACTIONS(1258), + [anon_sym_GT_PIPE] = ACTIONS(1258), + [anon_sym_LT_LT_DASH] = ACTIONS(1258), + [anon_sym_LF] = ACTIONS(1258), + [anon_sym_LT_LT_LT] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_CARET] = ACTIONS(1258), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1258), + [aux_sym_concatenation_token1] = ACTIONS(1258), + [anon_sym_DOLLAR] = ACTIONS(1258), + [sym__special_character] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_raw_string] = ACTIONS(1258), + [sym_ansi_c_string] = ACTIONS(1258), + [aux_sym_number_token1] = ACTIONS(1258), + [aux_sym_number_token2] = ACTIONS(1258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1258), + [anon_sym_BQUOTE] = ACTIONS(1258), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1258), + [anon_sym_LT_LPAREN] = ACTIONS(1258), + [anon_sym_GT_LPAREN] = ACTIONS(1258), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1274), - [sym_file_descriptor] = ACTIONS(1279), - [sym__concat] = ACTIONS(1281), - [sym__bare_dollar] = ACTIONS(1279), - [sym__brace_start] = ACTIONS(1279), + [sym_test_operator] = ACTIONS(1258), + [sym_file_descriptor] = ACTIONS(1263), + [sym__concat] = ACTIONS(1263), + [sym__bare_dollar] = ACTIONS(1263), + [sym__brace_start] = ACTIONS(1263), }, - [359] = { - [aux_sym_concatenation_repeat1] = STATE(354), - [sym_word] = ACTIONS(1241), - [anon_sym_LF] = ACTIONS(1241), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_EQ] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_STAR_EQ] = ACTIONS(1243), - [anon_sym_SLASH_EQ] = ACTIONS(1243), - [anon_sym_PERCENT_EQ] = ACTIONS(1243), - [anon_sym_LT_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_GT_EQ] = ACTIONS(1243), - [anon_sym_AMP_EQ] = ACTIONS(1243), - [anon_sym_CARET_EQ] = ACTIONS(1243), - [anon_sym_PIPE_EQ] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_PERCENT] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1245), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_SEMI_SEMI] = ACTIONS(1241), - [anon_sym_PIPE_AMP] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_GT] = ACTIONS(1241), - [anon_sym_AMP_GT_GT] = ACTIONS(1241), - [anon_sym_LT_AMP] = ACTIONS(1241), - [anon_sym_GT_AMP] = ACTIONS(1241), - [anon_sym_GT_PIPE] = ACTIONS(1241), - [anon_sym_LT_LT_DASH] = ACTIONS(1241), - [anon_sym_LT_LT_LT] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_QMARK] = ACTIONS(1243), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1241), - [aux_sym_concatenation_token1] = ACTIONS(208), - [anon_sym_DOLLAR] = ACTIONS(1241), - [sym__special_character] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [sym_raw_string] = ACTIONS(1241), - [sym_ansi_c_string] = ACTIONS(1241), - [aux_sym_number_token1] = ACTIONS(1241), - [aux_sym_number_token2] = ACTIONS(1241), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1241), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1241), - [anon_sym_BQUOTE] = ACTIONS(1241), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1241), - [anon_sym_LT_LPAREN] = ACTIONS(1241), - [anon_sym_GT_LPAREN] = ACTIONS(1241), + [352] = { + [sym_word] = ACTIONS(1276), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1276), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_EQ] = ACTIONS(1276), + [anon_sym_DASH_EQ] = ACTIONS(1276), + [anon_sym_STAR_EQ] = ACTIONS(1276), + [anon_sym_SLASH_EQ] = ACTIONS(1276), + [anon_sym_PERCENT_EQ] = ACTIONS(1276), + [anon_sym_LT_LT_EQ] = ACTIONS(1276), + [anon_sym_GT_GT_EQ] = ACTIONS(1276), + [anon_sym_AMP_EQ] = ACTIONS(1276), + [anon_sym_CARET_EQ] = ACTIONS(1276), + [anon_sym_PIPE_EQ] = ACTIONS(1276), + [anon_sym_EQ_EQ] = ACTIONS(1276), + [anon_sym_BANG_EQ] = ACTIONS(1276), + [anon_sym_LT_EQ] = ACTIONS(1276), + [anon_sym_GT_EQ] = ACTIONS(1276), + [anon_sym_AMP_AMP] = ACTIONS(1276), + [anon_sym_PIPE_PIPE] = ACTIONS(1276), + [anon_sym_LT_LT] = ACTIONS(1276), + [anon_sym_GT_GT] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_SLASH] = ACTIONS(1276), + [anon_sym_PERCENT] = ACTIONS(1276), + [anon_sym_STAR_STAR] = ACTIONS(1276), + [anon_sym_LT] = ACTIONS(1276), + [anon_sym_GT] = ACTIONS(1276), + [anon_sym_RPAREN] = ACTIONS(1276), + [anon_sym_PIPE] = ACTIONS(1276), + [anon_sym_SEMI_SEMI] = ACTIONS(1276), + [anon_sym_PIPE_AMP] = ACTIONS(1276), + [anon_sym_EQ_TILDE] = ACTIONS(1276), + [anon_sym_AMP_GT] = ACTIONS(1276), + [anon_sym_AMP_GT_GT] = ACTIONS(1276), + [anon_sym_LT_AMP] = ACTIONS(1276), + [anon_sym_GT_AMP] = ACTIONS(1276), + [anon_sym_GT_PIPE] = ACTIONS(1276), + [anon_sym_LT_LT_DASH] = ACTIONS(1276), + [anon_sym_LF] = ACTIONS(1276), + [anon_sym_LT_LT_LT] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_CARET] = ACTIONS(1276), + [anon_sym_QMARK] = ACTIONS(1276), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1276), + [aux_sym_concatenation_token1] = ACTIONS(1276), + [anon_sym_DOLLAR] = ACTIONS(1276), + [sym__special_character] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1276), + [sym_raw_string] = ACTIONS(1276), + [sym_ansi_c_string] = ACTIONS(1276), + [aux_sym_number_token1] = ACTIONS(1276), + [aux_sym_number_token2] = ACTIONS(1276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1276), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), + [anon_sym_BQUOTE] = ACTIONS(1276), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1276), + [anon_sym_LT_LPAREN] = ACTIONS(1276), + [anon_sym_GT_LPAREN] = ACTIONS(1276), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1245), - [sym_file_descriptor] = ACTIONS(1250), - [sym__concat] = ACTIONS(234), - [sym__bare_dollar] = ACTIONS(1250), - [sym__brace_start] = ACTIONS(1250), + [sym_test_operator] = ACTIONS(1276), + [sym_file_descriptor] = ACTIONS(1278), + [sym__concat] = ACTIONS(1278), + [sym__bare_dollar] = ACTIONS(1278), + [sym__brace_start] = ACTIONS(1278), }, - [360] = { - [aux_sym_concatenation_repeat1] = STATE(354), - [sym_word] = ACTIONS(1241), - [anon_sym_LF] = ACTIONS(1241), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_EQ] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_STAR_EQ] = ACTIONS(1243), - [anon_sym_SLASH_EQ] = ACTIONS(1243), - [anon_sym_PERCENT_EQ] = ACTIONS(1243), - [anon_sym_LT_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_GT_EQ] = ACTIONS(1243), - [anon_sym_AMP_EQ] = ACTIONS(1243), - [anon_sym_CARET_EQ] = ACTIONS(1243), - [anon_sym_PIPE_EQ] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_PERCENT] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1245), - [anon_sym_RPAREN] = ACTIONS(1241), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_SEMI_SEMI] = ACTIONS(1241), - [anon_sym_PIPE_AMP] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_GT] = ACTIONS(1241), - [anon_sym_AMP_GT_GT] = ACTIONS(1241), - [anon_sym_LT_AMP] = ACTIONS(1241), - [anon_sym_GT_AMP] = ACTIONS(1241), - [anon_sym_GT_PIPE] = ACTIONS(1241), - [anon_sym_LT_LT_DASH] = ACTIONS(1241), - [anon_sym_LT_LT_LT] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_QMARK] = ACTIONS(1243), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1241), - [aux_sym_concatenation_token1] = ACTIONS(208), - [anon_sym_DOLLAR] = ACTIONS(1241), - [sym__special_character] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [sym_raw_string] = ACTIONS(1241), - [sym_ansi_c_string] = ACTIONS(1241), - [aux_sym_number_token1] = ACTIONS(1241), - [aux_sym_number_token2] = ACTIONS(1241), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1241), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1241), - [anon_sym_BQUOTE] = ACTIONS(1241), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1241), - [anon_sym_LT_LPAREN] = ACTIONS(1241), - [anon_sym_GT_LPAREN] = ACTIONS(1241), + [353] = { + [sym_word] = ACTIONS(1280), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1280), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym_EQ] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_PLUS_EQ] = ACTIONS(1280), + [anon_sym_DASH_EQ] = ACTIONS(1280), + [anon_sym_STAR_EQ] = ACTIONS(1280), + [anon_sym_SLASH_EQ] = ACTIONS(1280), + [anon_sym_PERCENT_EQ] = ACTIONS(1280), + [anon_sym_LT_LT_EQ] = ACTIONS(1280), + [anon_sym_GT_GT_EQ] = ACTIONS(1280), + [anon_sym_AMP_EQ] = ACTIONS(1280), + [anon_sym_CARET_EQ] = ACTIONS(1280), + [anon_sym_PIPE_EQ] = ACTIONS(1280), + [anon_sym_EQ_EQ] = ACTIONS(1280), + [anon_sym_BANG_EQ] = ACTIONS(1280), + [anon_sym_LT_EQ] = ACTIONS(1280), + [anon_sym_GT_EQ] = ACTIONS(1280), + [anon_sym_AMP_AMP] = ACTIONS(1280), + [anon_sym_PIPE_PIPE] = ACTIONS(1280), + [anon_sym_LT_LT] = ACTIONS(1280), + [anon_sym_GT_GT] = ACTIONS(1280), + [anon_sym_PLUS] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_SLASH] = ACTIONS(1280), + [anon_sym_PERCENT] = ACTIONS(1280), + [anon_sym_STAR_STAR] = ACTIONS(1280), + [anon_sym_LT] = ACTIONS(1280), + [anon_sym_GT] = ACTIONS(1280), + [anon_sym_RPAREN] = ACTIONS(1280), + [anon_sym_PIPE] = ACTIONS(1280), + [anon_sym_SEMI_SEMI] = ACTIONS(1280), + [anon_sym_PIPE_AMP] = ACTIONS(1280), + [anon_sym_EQ_TILDE] = ACTIONS(1280), + [anon_sym_AMP_GT] = ACTIONS(1280), + [anon_sym_AMP_GT_GT] = ACTIONS(1280), + [anon_sym_LT_AMP] = ACTIONS(1280), + [anon_sym_GT_AMP] = ACTIONS(1280), + [anon_sym_GT_PIPE] = ACTIONS(1280), + [anon_sym_LT_LT_DASH] = ACTIONS(1280), + [anon_sym_LF] = ACTIONS(1280), + [anon_sym_LT_LT_LT] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_CARET] = ACTIONS(1280), + [anon_sym_QMARK] = ACTIONS(1280), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1280), + [aux_sym_concatenation_token1] = ACTIONS(1280), + [anon_sym_DOLLAR] = ACTIONS(1280), + [sym__special_character] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1280), + [sym_raw_string] = ACTIONS(1280), + [sym_ansi_c_string] = ACTIONS(1280), + [aux_sym_number_token1] = ACTIONS(1280), + [aux_sym_number_token2] = ACTIONS(1280), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1280), + [anon_sym_BQUOTE] = ACTIONS(1280), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1280), + [anon_sym_LT_LPAREN] = ACTIONS(1280), + [anon_sym_GT_LPAREN] = ACTIONS(1280), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1245), - [sym_file_descriptor] = ACTIONS(1250), - [sym__concat] = ACTIONS(234), - [sym__bare_dollar] = ACTIONS(1250), - [sym__brace_start] = ACTIONS(1250), + [sym_test_operator] = ACTIONS(1280), + [sym_file_descriptor] = ACTIONS(1282), + [sym__concat] = ACTIONS(1282), + [sym__bare_dollar] = ACTIONS(1282), + [sym__brace_start] = ACTIONS(1282), }, - [361] = { + [354] = { [sym_word] = ACTIONS(1284), - [anon_sym_LF] = ACTIONS(1284), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1284), [anon_sym_RPAREN_RPAREN] = ACTIONS(1284), [anon_sym_SEMI] = ACTIONS(1284), [anon_sym_EQ] = ACTIONS(1284), @@ -50896,6 +52113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_AMP] = ACTIONS(1284), [anon_sym_GT_PIPE] = ACTIONS(1284), [anon_sym_LT_LT_DASH] = ACTIONS(1284), + [anon_sym_LF] = ACTIONS(1284), [anon_sym_LT_LT_LT] = ACTIONS(1284), [anon_sym_AMP] = ACTIONS(1284), [anon_sym_CARET] = ACTIONS(1284), @@ -50922,293 +52140,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1286), [sym__brace_start] = ACTIONS(1286), }, - [362] = { - [sym_word] = ACTIONS(1288), - [anon_sym_LF] = ACTIONS(1288), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_EQ] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_EQ_EQ] = ACTIONS(1288), - [anon_sym_BANG_EQ] = ACTIONS(1288), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_LT_LT] = ACTIONS(1288), - [anon_sym_GT_GT] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_SLASH] = ACTIONS(1288), - [anon_sym_PERCENT] = ACTIONS(1288), - [anon_sym_STAR_STAR] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1288), - [anon_sym_GT] = ACTIONS(1288), - [anon_sym_RPAREN] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1288), - [anon_sym_SEMI_SEMI] = ACTIONS(1288), - [anon_sym_PIPE_AMP] = ACTIONS(1288), - [anon_sym_EQ_TILDE] = ACTIONS(1288), - [anon_sym_AMP_GT] = ACTIONS(1288), - [anon_sym_AMP_GT_GT] = ACTIONS(1288), - [anon_sym_LT_AMP] = ACTIONS(1288), - [anon_sym_GT_AMP] = ACTIONS(1288), - [anon_sym_GT_PIPE] = ACTIONS(1288), - [anon_sym_LT_LT_DASH] = ACTIONS(1288), - [anon_sym_LT_LT_LT] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1288), - [anon_sym_CARET] = ACTIONS(1288), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1288), + [355] = { + [aux_sym_concatenation_repeat1] = STATE(355), + [sym_word] = ACTIONS(1258), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_EQ] = ACTIONS(1258), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_PLUS_EQ] = ACTIONS(1258), + [anon_sym_DASH_EQ] = ACTIONS(1258), + [anon_sym_STAR_EQ] = ACTIONS(1258), + [anon_sym_SLASH_EQ] = ACTIONS(1258), + [anon_sym_PERCENT_EQ] = ACTIONS(1258), + [anon_sym_LT_LT_EQ] = ACTIONS(1258), + [anon_sym_GT_GT_EQ] = ACTIONS(1258), + [anon_sym_AMP_EQ] = ACTIONS(1258), + [anon_sym_CARET_EQ] = ACTIONS(1258), + [anon_sym_PIPE_EQ] = ACTIONS(1258), + [anon_sym_EQ_EQ] = ACTIONS(1258), + [anon_sym_BANG_EQ] = ACTIONS(1258), + [anon_sym_LT_EQ] = ACTIONS(1258), + [anon_sym_GT_EQ] = ACTIONS(1258), + [anon_sym_AMP_AMP] = ACTIONS(1258), + [anon_sym_PIPE_PIPE] = ACTIONS(1258), + [anon_sym_LT_LT] = ACTIONS(1258), + [anon_sym_GT_GT] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_SLASH] = ACTIONS(1258), + [anon_sym_PERCENT] = ACTIONS(1258), + [anon_sym_STAR_STAR] = ACTIONS(1258), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_GT] = ACTIONS(1258), + [anon_sym_RPAREN] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1258), + [anon_sym_SEMI_SEMI] = ACTIONS(1258), + [anon_sym_PIPE_AMP] = ACTIONS(1258), + [anon_sym_EQ_TILDE] = ACTIONS(1258), + [anon_sym_AMP_GT] = ACTIONS(1258), + [anon_sym_AMP_GT_GT] = ACTIONS(1258), + [anon_sym_LT_AMP] = ACTIONS(1258), + [anon_sym_GT_AMP] = ACTIONS(1258), + [anon_sym_GT_PIPE] = ACTIONS(1258), + [anon_sym_LT_LT_DASH] = ACTIONS(1258), + [anon_sym_LF] = ACTIONS(1258), + [anon_sym_LT_LT_LT] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_CARET] = ACTIONS(1258), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1258), [aux_sym_concatenation_token1] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1288), - [sym__special_character] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym_raw_string] = ACTIONS(1288), - [sym_ansi_c_string] = ACTIONS(1288), - [aux_sym_number_token1] = ACTIONS(1288), - [aux_sym_number_token2] = ACTIONS(1288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1288), - [anon_sym_BQUOTE] = ACTIONS(1288), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1288), - [anon_sym_LT_LPAREN] = ACTIONS(1288), - [anon_sym_GT_LPAREN] = ACTIONS(1288), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1288), - [sym_file_descriptor] = ACTIONS(1290), - [sym__concat] = ACTIONS(1290), - [sym__bare_dollar] = ACTIONS(1290), - [sym__brace_start] = ACTIONS(1290), - }, - [363] = { - [aux_sym_concatenation_repeat1] = STATE(377), - [sym_word] = ACTIONS(1270), - [anon_sym_LF] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym_EQ] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_EQ] = ACTIONS(1270), - [anon_sym_DASH_EQ] = ACTIONS(1270), - [anon_sym_STAR_EQ] = ACTIONS(1270), - [anon_sym_SLASH_EQ] = ACTIONS(1270), - [anon_sym_PERCENT_EQ] = ACTIONS(1270), - [anon_sym_LT_LT_EQ] = ACTIONS(1270), - [anon_sym_GT_GT_EQ] = ACTIONS(1270), - [anon_sym_AMP_EQ] = ACTIONS(1270), - [anon_sym_CARET_EQ] = ACTIONS(1270), - [anon_sym_PIPE_EQ] = ACTIONS(1270), - [anon_sym_EQ_EQ] = ACTIONS(1270), - [anon_sym_BANG_EQ] = ACTIONS(1270), - [anon_sym_LT_EQ] = ACTIONS(1270), - [anon_sym_GT_EQ] = ACTIONS(1270), - [anon_sym_AMP_AMP] = ACTIONS(1270), - [anon_sym_PIPE_PIPE] = ACTIONS(1270), - [anon_sym_LT_LT] = ACTIONS(1270), - [anon_sym_GT_GT] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_PERCENT] = ACTIONS(1270), - [anon_sym_STAR_STAR] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1270), - [anon_sym_GT] = ACTIONS(1270), - [anon_sym_RPAREN] = ACTIONS(1270), - [anon_sym_PIPE] = ACTIONS(1270), - [anon_sym_SEMI_SEMI] = ACTIONS(1270), - [anon_sym_PIPE_AMP] = ACTIONS(1270), - [anon_sym_EQ_TILDE] = ACTIONS(1270), - [anon_sym_AMP_GT] = ACTIONS(1270), - [anon_sym_AMP_GT_GT] = ACTIONS(1270), - [anon_sym_LT_AMP] = ACTIONS(1270), - [anon_sym_GT_AMP] = ACTIONS(1270), - [anon_sym_GT_PIPE] = ACTIONS(1270), - [anon_sym_LT_LT_DASH] = ACTIONS(1270), - [anon_sym_LT_LT_LT] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_CARET] = ACTIONS(1270), - [anon_sym_QMARK] = ACTIONS(1270), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1270), - [aux_sym_concatenation_token1] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(1270), - [sym__special_character] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_raw_string] = ACTIONS(1270), - [sym_ansi_c_string] = ACTIONS(1270), - [aux_sym_number_token1] = ACTIONS(1270), - [aux_sym_number_token2] = ACTIONS(1270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1270), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1270), - [anon_sym_BQUOTE] = ACTIONS(1270), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1270), - [anon_sym_LT_LPAREN] = ACTIONS(1270), - [anon_sym_GT_LPAREN] = ACTIONS(1270), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1270), - [sym_file_descriptor] = ACTIONS(1272), - [sym__concat] = ACTIONS(348), - [sym__bare_dollar] = ACTIONS(1272), - [sym__brace_start] = ACTIONS(1272), - }, - [364] = { - [aux_sym_concatenation_repeat1] = STATE(369), - [sym_word] = ACTIONS(1241), - [anon_sym_LF] = ACTIONS(1241), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_EQ] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_STAR_EQ] = ACTIONS(1243), - [anon_sym_SLASH_EQ] = ACTIONS(1243), - [anon_sym_PERCENT_EQ] = ACTIONS(1243), - [anon_sym_LT_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_GT_EQ] = ACTIONS(1243), - [anon_sym_AMP_EQ] = ACTIONS(1243), - [anon_sym_CARET_EQ] = ACTIONS(1243), - [anon_sym_PIPE_EQ] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_PERCENT] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1245), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_SEMI_SEMI] = ACTIONS(1241), - [anon_sym_PIPE_AMP] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_GT] = ACTIONS(1241), - [anon_sym_AMP_GT_GT] = ACTIONS(1241), - [anon_sym_LT_AMP] = ACTIONS(1241), - [anon_sym_GT_AMP] = ACTIONS(1241), - [anon_sym_GT_PIPE] = ACTIONS(1241), - [anon_sym_LT_LT_DASH] = ACTIONS(1241), - [anon_sym_LT_LT_LT] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_QMARK] = ACTIONS(1243), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1241), - [aux_sym_concatenation_token1] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(1241), - [sym__special_character] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [sym_raw_string] = ACTIONS(1241), - [sym_ansi_c_string] = ACTIONS(1241), - [aux_sym_number_token1] = ACTIONS(1241), - [aux_sym_number_token2] = ACTIONS(1241), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1241), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1241), - [anon_sym_BQUOTE] = ACTIONS(1241), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1241), - [anon_sym_LT_LPAREN] = ACTIONS(1241), - [anon_sym_GT_LPAREN] = ACTIONS(1241), + [anon_sym_DOLLAR] = ACTIONS(1258), + [sym__special_character] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_raw_string] = ACTIONS(1258), + [sym_ansi_c_string] = ACTIONS(1258), + [aux_sym_number_token1] = ACTIONS(1258), + [aux_sym_number_token2] = ACTIONS(1258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1258), + [anon_sym_BQUOTE] = ACTIONS(1258), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1258), + [anon_sym_LT_LPAREN] = ACTIONS(1258), + [anon_sym_GT_LPAREN] = ACTIONS(1258), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1245), - [sym_file_descriptor] = ACTIONS(1250), - [sym__concat] = ACTIONS(348), - [sym__bare_dollar] = ACTIONS(1250), - [sym__brace_start] = ACTIONS(1250), + [sym_test_operator] = ACTIONS(1258), + [sym_file_descriptor] = ACTIONS(1263), + [sym__concat] = ACTIONS(1291), + [sym__bare_dollar] = ACTIONS(1263), + [sym__brace_start] = ACTIONS(1263), }, - [365] = { - [aux_sym_concatenation_repeat1] = STATE(365), - [sym_word] = ACTIONS(1274), - [anon_sym_LF] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym_EQ] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_EQ] = ACTIONS(1274), - [anon_sym_DASH_EQ] = ACTIONS(1274), - [anon_sym_STAR_EQ] = ACTIONS(1274), - [anon_sym_SLASH_EQ] = ACTIONS(1274), - [anon_sym_PERCENT_EQ] = ACTIONS(1274), - [anon_sym_LT_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_GT_EQ] = ACTIONS(1274), - [anon_sym_AMP_EQ] = ACTIONS(1274), - [anon_sym_CARET_EQ] = ACTIONS(1274), - [anon_sym_PIPE_EQ] = ACTIONS(1274), - [anon_sym_EQ_EQ] = ACTIONS(1274), - [anon_sym_BANG_EQ] = ACTIONS(1274), - [anon_sym_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1274), - [anon_sym_AMP_AMP] = ACTIONS(1274), - [anon_sym_PIPE_PIPE] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1274), - [anon_sym_GT_GT] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1274), - [anon_sym_PERCENT] = ACTIONS(1274), - [anon_sym_STAR_STAR] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_GT] = ACTIONS(1274), - [anon_sym_RPAREN] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1274), - [anon_sym_SEMI_SEMI] = ACTIONS(1274), - [anon_sym_PIPE_AMP] = ACTIONS(1274), - [anon_sym_EQ_TILDE] = ACTIONS(1274), - [anon_sym_AMP_GT] = ACTIONS(1274), - [anon_sym_AMP_GT_GT] = ACTIONS(1274), - [anon_sym_LT_AMP] = ACTIONS(1274), - [anon_sym_GT_AMP] = ACTIONS(1274), - [anon_sym_GT_PIPE] = ACTIONS(1274), - [anon_sym_LT_LT_DASH] = ACTIONS(1274), - [anon_sym_LT_LT_LT] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_CARET] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(1274), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1274), - [aux_sym_concatenation_token1] = ACTIONS(1292), - [anon_sym_DOLLAR] = ACTIONS(1274), - [sym__special_character] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_raw_string] = ACTIONS(1274), - [sym_ansi_c_string] = ACTIONS(1274), - [aux_sym_number_token1] = ACTIONS(1274), - [aux_sym_number_token2] = ACTIONS(1274), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1274), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1274), - [anon_sym_BQUOTE] = ACTIONS(1274), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1274), - [anon_sym_LT_LPAREN] = ACTIONS(1274), - [anon_sym_GT_LPAREN] = ACTIONS(1274), + [356] = { + [sym_word] = ACTIONS(1294), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1294), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_EQ] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_EQ] = ACTIONS(1294), + [anon_sym_DASH_EQ] = ACTIONS(1294), + [anon_sym_STAR_EQ] = ACTIONS(1294), + [anon_sym_SLASH_EQ] = ACTIONS(1294), + [anon_sym_PERCENT_EQ] = ACTIONS(1294), + [anon_sym_LT_LT_EQ] = ACTIONS(1294), + [anon_sym_GT_GT_EQ] = ACTIONS(1294), + [anon_sym_AMP_EQ] = ACTIONS(1294), + [anon_sym_CARET_EQ] = ACTIONS(1294), + [anon_sym_PIPE_EQ] = ACTIONS(1294), + [anon_sym_EQ_EQ] = ACTIONS(1294), + [anon_sym_BANG_EQ] = ACTIONS(1294), + [anon_sym_LT_EQ] = ACTIONS(1294), + [anon_sym_GT_EQ] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [anon_sym_LT_LT] = ACTIONS(1294), + [anon_sym_GT_GT] = ACTIONS(1294), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_SLASH] = ACTIONS(1294), + [anon_sym_PERCENT] = ACTIONS(1294), + [anon_sym_STAR_STAR] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_RPAREN] = ACTIONS(1294), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1294), + [anon_sym_EQ_TILDE] = ACTIONS(1294), + [anon_sym_AMP_GT] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1294), + [anon_sym_GT_AMP] = ACTIONS(1294), + [anon_sym_GT_PIPE] = ACTIONS(1294), + [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [anon_sym_LF] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_CARET] = ACTIONS(1294), + [anon_sym_QMARK] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1294), + [aux_sym_concatenation_token1] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1294), + [sym__special_character] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym_raw_string] = ACTIONS(1294), + [sym_ansi_c_string] = ACTIONS(1294), + [aux_sym_number_token1] = ACTIONS(1294), + [aux_sym_number_token2] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1294), + [anon_sym_LT_LPAREN] = ACTIONS(1294), + [anon_sym_GT_LPAREN] = ACTIONS(1294), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1274), - [sym_file_descriptor] = ACTIONS(1279), - [sym__concat] = ACTIONS(1295), - [sym__bare_dollar] = ACTIONS(1279), - [sym__brace_start] = ACTIONS(1279), + [sym_test_operator] = ACTIONS(1294), + [sym_file_descriptor] = ACTIONS(1296), + [sym__concat] = ACTIONS(1296), + [sym__bare_dollar] = ACTIONS(1296), + [sym__brace_start] = ACTIONS(1296), }, - [366] = { + [357] = { [sym_word] = ACTIONS(1298), - [anon_sym_LF] = ACTIONS(1298), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1298), [anon_sym_RPAREN_RPAREN] = ACTIONS(1298), [anon_sym_SEMI] = ACTIONS(1298), [anon_sym_EQ] = ACTIONS(1298), @@ -51251,6 +52329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_AMP] = ACTIONS(1298), [anon_sym_GT_PIPE] = ACTIONS(1298), [anon_sym_LT_LT_DASH] = ACTIONS(1298), + [anon_sym_LF] = ACTIONS(1298), [anon_sym_LT_LT_LT] = ACTIONS(1298), [anon_sym_AMP] = ACTIONS(1298), [anon_sym_CARET] = ACTIONS(1298), @@ -51277,9 +52356,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1300), [sym__brace_start] = ACTIONS(1300), }, - [367] = { + [358] = { [sym_word] = ACTIONS(1302), - [anon_sym_LF] = ACTIONS(1302), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1302), [anon_sym_RPAREN_RPAREN] = ACTIONS(1302), [anon_sym_SEMI] = ACTIONS(1302), [anon_sym_EQ] = ACTIONS(1302), @@ -51322,6 +52401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_AMP] = ACTIONS(1302), [anon_sym_GT_PIPE] = ACTIONS(1302), [anon_sym_LT_LT_DASH] = ACTIONS(1302), + [anon_sym_LF] = ACTIONS(1302), [anon_sym_LT_LT_LT] = ACTIONS(1302), [anon_sym_AMP] = ACTIONS(1302), [anon_sym_CARET] = ACTIONS(1302), @@ -51348,719 +52428,729 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1304), [sym__brace_start] = ACTIONS(1304), }, - [368] = { - [sym_word] = ACTIONS(1274), - [anon_sym_LF] = ACTIONS(1274), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym_EQ] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_EQ] = ACTIONS(1274), - [anon_sym_DASH_EQ] = ACTIONS(1274), - [anon_sym_STAR_EQ] = ACTIONS(1274), - [anon_sym_SLASH_EQ] = ACTIONS(1274), - [anon_sym_PERCENT_EQ] = ACTIONS(1274), - [anon_sym_LT_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_GT_EQ] = ACTIONS(1274), - [anon_sym_AMP_EQ] = ACTIONS(1274), - [anon_sym_CARET_EQ] = ACTIONS(1274), - [anon_sym_PIPE_EQ] = ACTIONS(1274), - [anon_sym_EQ_EQ] = ACTIONS(1274), - [anon_sym_BANG_EQ] = ACTIONS(1274), - [anon_sym_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1274), - [anon_sym_AMP_AMP] = ACTIONS(1274), - [anon_sym_PIPE_PIPE] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1274), - [anon_sym_GT_GT] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1274), - [anon_sym_PERCENT] = ACTIONS(1274), - [anon_sym_STAR_STAR] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_GT] = ACTIONS(1274), - [anon_sym_RPAREN] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1274), - [anon_sym_SEMI_SEMI] = ACTIONS(1274), - [anon_sym_PIPE_AMP] = ACTIONS(1274), - [anon_sym_EQ_TILDE] = ACTIONS(1274), - [anon_sym_AMP_GT] = ACTIONS(1274), - [anon_sym_AMP_GT_GT] = ACTIONS(1274), - [anon_sym_LT_AMP] = ACTIONS(1274), - [anon_sym_GT_AMP] = ACTIONS(1274), - [anon_sym_GT_PIPE] = ACTIONS(1274), - [anon_sym_LT_LT_DASH] = ACTIONS(1274), - [anon_sym_LT_LT_LT] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_CARET] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(1274), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1274), - [aux_sym_concatenation_token1] = ACTIONS(1274), - [anon_sym_DOLLAR] = ACTIONS(1274), - [sym__special_character] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_raw_string] = ACTIONS(1274), - [sym_ansi_c_string] = ACTIONS(1274), - [aux_sym_number_token1] = ACTIONS(1274), - [aux_sym_number_token2] = ACTIONS(1274), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1274), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1274), - [anon_sym_BQUOTE] = ACTIONS(1274), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1274), - [anon_sym_LT_LPAREN] = ACTIONS(1274), - [anon_sym_GT_LPAREN] = ACTIONS(1274), + [359] = { + [aux_sym_concatenation_repeat1] = STATE(355), + [sym_word] = ACTIONS(1252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_EQ] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_PERCENT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_CARET_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1252), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP_AMP] = ACTIONS(1252), + [anon_sym_PIPE_PIPE] = ACTIONS(1252), + [anon_sym_LT_LT] = ACTIONS(1252), + [anon_sym_GT_GT] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_SLASH] = ACTIONS(1252), + [anon_sym_PERCENT] = ACTIONS(1252), + [anon_sym_STAR_STAR] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1252), + [anon_sym_RPAREN] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_SEMI_SEMI] = ACTIONS(1252), + [anon_sym_PIPE_AMP] = ACTIONS(1252), + [anon_sym_EQ_TILDE] = ACTIONS(1252), + [anon_sym_AMP_GT] = ACTIONS(1252), + [anon_sym_AMP_GT_GT] = ACTIONS(1252), + [anon_sym_LT_AMP] = ACTIONS(1252), + [anon_sym_GT_AMP] = ACTIONS(1252), + [anon_sym_GT_PIPE] = ACTIONS(1252), + [anon_sym_LT_LT_DASH] = ACTIONS(1252), + [anon_sym_LF] = ACTIONS(1252), + [anon_sym_LT_LT_LT] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_QMARK] = ACTIONS(1252), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1252), + [aux_sym_concatenation_token1] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(1252), + [sym__special_character] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_raw_string] = ACTIONS(1252), + [sym_ansi_c_string] = ACTIONS(1252), + [aux_sym_number_token1] = ACTIONS(1252), + [aux_sym_number_token2] = ACTIONS(1252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), + [anon_sym_BQUOTE] = ACTIONS(1252), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1252), + [anon_sym_LT_LPAREN] = ACTIONS(1252), + [anon_sym_GT_LPAREN] = ACTIONS(1252), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1274), - [sym_file_descriptor] = ACTIONS(1279), - [sym__concat] = ACTIONS(1279), - [sym__bare_dollar] = ACTIONS(1279), - [sym__brace_start] = ACTIONS(1279), + [sym_test_operator] = ACTIONS(1252), + [sym_file_descriptor] = ACTIONS(1254), + [sym__concat] = ACTIONS(1306), + [sym__bare_dollar] = ACTIONS(1254), + [sym__brace_start] = ACTIONS(1254), }, - [369] = { - [aux_sym_concatenation_repeat1] = STATE(365), - [sym_word] = ACTIONS(1258), - [anon_sym_LF] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_EQ] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_EQ] = ACTIONS(1258), - [anon_sym_DASH_EQ] = ACTIONS(1258), - [anon_sym_STAR_EQ] = ACTIONS(1258), - [anon_sym_SLASH_EQ] = ACTIONS(1258), - [anon_sym_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_EQ] = ACTIONS(1258), - [anon_sym_CARET_EQ] = ACTIONS(1258), - [anon_sym_PIPE_EQ] = ACTIONS(1258), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_AMP] = ACTIONS(1258), - [anon_sym_PIPE_PIPE] = ACTIONS(1258), - [anon_sym_LT_LT] = ACTIONS(1258), - [anon_sym_GT_GT] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_SLASH] = ACTIONS(1258), - [anon_sym_PERCENT] = ACTIONS(1258), - [anon_sym_STAR_STAR] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1258), - [anon_sym_GT] = ACTIONS(1258), - [anon_sym_RPAREN] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_SEMI_SEMI] = ACTIONS(1258), - [anon_sym_PIPE_AMP] = ACTIONS(1258), - [anon_sym_EQ_TILDE] = ACTIONS(1258), - [anon_sym_AMP_GT] = ACTIONS(1258), - [anon_sym_AMP_GT_GT] = ACTIONS(1258), - [anon_sym_LT_AMP] = ACTIONS(1258), - [anon_sym_GT_AMP] = ACTIONS(1258), - [anon_sym_GT_PIPE] = ACTIONS(1258), - [anon_sym_LT_LT_DASH] = ACTIONS(1258), - [anon_sym_LT_LT_LT] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_CARET] = ACTIONS(1258), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1258), - [aux_sym_concatenation_token1] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(1258), - [sym__special_character] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_raw_string] = ACTIONS(1258), - [sym_ansi_c_string] = ACTIONS(1258), - [aux_sym_number_token1] = ACTIONS(1258), - [aux_sym_number_token2] = ACTIONS(1258), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1258), - [anon_sym_BQUOTE] = ACTIONS(1258), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1258), - [anon_sym_LT_LPAREN] = ACTIONS(1258), - [anon_sym_GT_LPAREN] = ACTIONS(1258), + [360] = { + [aux_sym_concatenation_repeat1] = STATE(355), + [sym_word] = ACTIONS(1246), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_EQ] = ACTIONS(1246), + [anon_sym_PLUS_PLUS] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_PLUS_EQ] = ACTIONS(1246), + [anon_sym_DASH_EQ] = ACTIONS(1246), + [anon_sym_STAR_EQ] = ACTIONS(1246), + [anon_sym_SLASH_EQ] = ACTIONS(1246), + [anon_sym_PERCENT_EQ] = ACTIONS(1246), + [anon_sym_LT_LT_EQ] = ACTIONS(1246), + [anon_sym_GT_GT_EQ] = ACTIONS(1246), + [anon_sym_AMP_EQ] = ACTIONS(1246), + [anon_sym_CARET_EQ] = ACTIONS(1246), + [anon_sym_PIPE_EQ] = ACTIONS(1246), + [anon_sym_EQ_EQ] = ACTIONS(1246), + [anon_sym_BANG_EQ] = ACTIONS(1246), + [anon_sym_LT_EQ] = ACTIONS(1246), + [anon_sym_GT_EQ] = ACTIONS(1246), + [anon_sym_AMP_AMP] = ACTIONS(1246), + [anon_sym_PIPE_PIPE] = ACTIONS(1246), + [anon_sym_LT_LT] = ACTIONS(1246), + [anon_sym_GT_GT] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1246), + [anon_sym_SLASH] = ACTIONS(1246), + [anon_sym_PERCENT] = ACTIONS(1246), + [anon_sym_STAR_STAR] = ACTIONS(1246), + [anon_sym_LT] = ACTIONS(1246), + [anon_sym_GT] = ACTIONS(1246), + [anon_sym_RPAREN] = ACTIONS(1246), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_SEMI_SEMI] = ACTIONS(1246), + [anon_sym_PIPE_AMP] = ACTIONS(1246), + [anon_sym_EQ_TILDE] = ACTIONS(1246), + [anon_sym_AMP_GT] = ACTIONS(1246), + [anon_sym_AMP_GT_GT] = ACTIONS(1246), + [anon_sym_LT_AMP] = ACTIONS(1246), + [anon_sym_GT_AMP] = ACTIONS(1246), + [anon_sym_GT_PIPE] = ACTIONS(1246), + [anon_sym_LT_LT_DASH] = ACTIONS(1246), + [anon_sym_LF] = ACTIONS(1246), + [anon_sym_LT_LT_LT] = ACTIONS(1246), + [anon_sym_AMP] = ACTIONS(1246), + [anon_sym_CARET] = ACTIONS(1246), + [anon_sym_QMARK] = ACTIONS(1246), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1246), + [aux_sym_concatenation_token1] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(1246), + [sym__special_character] = ACTIONS(1246), + [anon_sym_DQUOTE] = ACTIONS(1246), + [sym_raw_string] = ACTIONS(1246), + [sym_ansi_c_string] = ACTIONS(1246), + [aux_sym_number_token1] = ACTIONS(1246), + [aux_sym_number_token2] = ACTIONS(1246), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1246), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1246), + [anon_sym_BQUOTE] = ACTIONS(1246), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1246), + [anon_sym_LT_LPAREN] = ACTIONS(1246), + [anon_sym_GT_LPAREN] = ACTIONS(1246), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1258), - [sym_file_descriptor] = ACTIONS(1260), - [sym__concat] = ACTIONS(1306), - [sym__bare_dollar] = ACTIONS(1260), - [sym__brace_start] = ACTIONS(1260), + [sym_test_operator] = ACTIONS(1246), + [sym_file_descriptor] = ACTIONS(1248), + [sym__concat] = ACTIONS(1308), + [sym__bare_dollar] = ACTIONS(1248), + [sym__brace_start] = ACTIONS(1248), }, - [370] = { - [sym_word] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1308), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_EQ] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_EQ] = ACTIONS(1308), - [anon_sym_DASH_EQ] = ACTIONS(1308), - [anon_sym_STAR_EQ] = ACTIONS(1308), - [anon_sym_SLASH_EQ] = ACTIONS(1308), - [anon_sym_PERCENT_EQ] = ACTIONS(1308), - [anon_sym_LT_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_GT_EQ] = ACTIONS(1308), - [anon_sym_AMP_EQ] = ACTIONS(1308), - [anon_sym_CARET_EQ] = ACTIONS(1308), - [anon_sym_PIPE_EQ] = ACTIONS(1308), - [anon_sym_EQ_EQ] = ACTIONS(1308), - [anon_sym_BANG_EQ] = ACTIONS(1308), - [anon_sym_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_EQ] = ACTIONS(1308), - [anon_sym_AMP_AMP] = ACTIONS(1308), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(1308), - [anon_sym_PERCENT] = ACTIONS(1308), - [anon_sym_STAR_STAR] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_RPAREN] = ACTIONS(1308), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym_SEMI_SEMI] = ACTIONS(1308), - [anon_sym_PIPE_AMP] = ACTIONS(1308), - [anon_sym_EQ_TILDE] = ACTIONS(1308), - [anon_sym_AMP_GT] = ACTIONS(1308), - [anon_sym_AMP_GT_GT] = ACTIONS(1308), - [anon_sym_LT_AMP] = ACTIONS(1308), - [anon_sym_GT_AMP] = ACTIONS(1308), - [anon_sym_GT_PIPE] = ACTIONS(1308), - [anon_sym_LT_LT_DASH] = ACTIONS(1308), - [anon_sym_LT_LT_LT] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(1308), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), - [aux_sym_concatenation_token1] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1308), - [sym__special_character] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_raw_string] = ACTIONS(1308), - [sym_ansi_c_string] = ACTIONS(1308), - [aux_sym_number_token1] = ACTIONS(1308), - [aux_sym_number_token2] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_BQUOTE] = ACTIONS(1308), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1308), - [anon_sym_LT_LPAREN] = ACTIONS(1308), - [anon_sym_GT_LPAREN] = ACTIONS(1308), + [361] = { + [sym_word] = ACTIONS(1310), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1310), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_EQ] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_EQ] = ACTIONS(1310), + [anon_sym_DASH_EQ] = ACTIONS(1310), + [anon_sym_STAR_EQ] = ACTIONS(1310), + [anon_sym_SLASH_EQ] = ACTIONS(1310), + [anon_sym_PERCENT_EQ] = ACTIONS(1310), + [anon_sym_LT_LT_EQ] = ACTIONS(1310), + [anon_sym_GT_GT_EQ] = ACTIONS(1310), + [anon_sym_AMP_EQ] = ACTIONS(1310), + [anon_sym_CARET_EQ] = ACTIONS(1310), + [anon_sym_PIPE_EQ] = ACTIONS(1310), + [anon_sym_EQ_EQ] = ACTIONS(1310), + [anon_sym_BANG_EQ] = ACTIONS(1310), + [anon_sym_LT_EQ] = ACTIONS(1310), + [anon_sym_GT_EQ] = ACTIONS(1310), + [anon_sym_AMP_AMP] = ACTIONS(1310), + [anon_sym_PIPE_PIPE] = ACTIONS(1310), + [anon_sym_LT_LT] = ACTIONS(1310), + [anon_sym_GT_GT] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1310), + [anon_sym_PERCENT] = ACTIONS(1310), + [anon_sym_STAR_STAR] = ACTIONS(1310), + [anon_sym_LT] = ACTIONS(1310), + [anon_sym_GT] = ACTIONS(1310), + [anon_sym_RPAREN] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(1310), + [anon_sym_SEMI_SEMI] = ACTIONS(1310), + [anon_sym_PIPE_AMP] = ACTIONS(1310), + [anon_sym_EQ_TILDE] = ACTIONS(1310), + [anon_sym_AMP_GT] = ACTIONS(1310), + [anon_sym_AMP_GT_GT] = ACTIONS(1310), + [anon_sym_LT_AMP] = ACTIONS(1310), + [anon_sym_GT_AMP] = ACTIONS(1310), + [anon_sym_GT_PIPE] = ACTIONS(1310), + [anon_sym_LT_LT_DASH] = ACTIONS(1310), + [anon_sym_LF] = ACTIONS(1310), + [anon_sym_LT_LT_LT] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1310), + [aux_sym_concatenation_token1] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1310), + [sym__special_character] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_raw_string] = ACTIONS(1310), + [sym_ansi_c_string] = ACTIONS(1310), + [aux_sym_number_token1] = ACTIONS(1310), + [aux_sym_number_token2] = ACTIONS(1310), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1310), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1310), + [anon_sym_BQUOTE] = ACTIONS(1310), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1310), + [anon_sym_LT_LPAREN] = ACTIONS(1310), + [anon_sym_GT_LPAREN] = ACTIONS(1310), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1308), - [sym_file_descriptor] = ACTIONS(1310), - [sym__concat] = ACTIONS(1310), - [sym__bare_dollar] = ACTIONS(1310), - [sym__brace_start] = ACTIONS(1310), + [sym_test_operator] = ACTIONS(1310), + [sym_file_descriptor] = ACTIONS(1312), + [sym__concat] = ACTIONS(1312), + [sym__bare_dollar] = ACTIONS(1312), + [sym__brace_start] = ACTIONS(1312), }, - [371] = { - [sym_word] = ACTIONS(1312), - [anon_sym_LF] = ACTIONS(1312), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym_EQ] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_EQ] = ACTIONS(1312), - [anon_sym_DASH_EQ] = ACTIONS(1312), - [anon_sym_STAR_EQ] = ACTIONS(1312), - [anon_sym_SLASH_EQ] = ACTIONS(1312), - [anon_sym_PERCENT_EQ] = ACTIONS(1312), - [anon_sym_LT_LT_EQ] = ACTIONS(1312), - [anon_sym_GT_GT_EQ] = ACTIONS(1312), - [anon_sym_AMP_EQ] = ACTIONS(1312), - [anon_sym_CARET_EQ] = ACTIONS(1312), - [anon_sym_PIPE_EQ] = ACTIONS(1312), - [anon_sym_EQ_EQ] = ACTIONS(1312), - [anon_sym_BANG_EQ] = ACTIONS(1312), - [anon_sym_LT_EQ] = ACTIONS(1312), - [anon_sym_GT_EQ] = ACTIONS(1312), - [anon_sym_AMP_AMP] = ACTIONS(1312), - [anon_sym_PIPE_PIPE] = ACTIONS(1312), - [anon_sym_LT_LT] = ACTIONS(1312), - [anon_sym_GT_GT] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_PERCENT] = ACTIONS(1312), - [anon_sym_STAR_STAR] = ACTIONS(1312), - [anon_sym_LT] = ACTIONS(1312), - [anon_sym_GT] = ACTIONS(1312), - [anon_sym_RPAREN] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_SEMI_SEMI] = ACTIONS(1312), - [anon_sym_PIPE_AMP] = ACTIONS(1312), - [anon_sym_EQ_TILDE] = ACTIONS(1312), - [anon_sym_AMP_GT] = ACTIONS(1312), - [anon_sym_AMP_GT_GT] = ACTIONS(1312), - [anon_sym_LT_AMP] = ACTIONS(1312), - [anon_sym_GT_AMP] = ACTIONS(1312), - [anon_sym_GT_PIPE] = ACTIONS(1312), - [anon_sym_LT_LT_DASH] = ACTIONS(1312), - [anon_sym_LT_LT_LT] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_CARET] = ACTIONS(1312), - [anon_sym_QMARK] = ACTIONS(1312), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1312), - [aux_sym_concatenation_token1] = ACTIONS(1312), - [anon_sym_DOLLAR] = ACTIONS(1312), - [sym__special_character] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_raw_string] = ACTIONS(1312), - [sym_ansi_c_string] = ACTIONS(1312), - [aux_sym_number_token1] = ACTIONS(1312), - [aux_sym_number_token2] = ACTIONS(1312), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1312), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1312), - [anon_sym_BQUOTE] = ACTIONS(1312), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1312), - [anon_sym_LT_LPAREN] = ACTIONS(1312), - [anon_sym_GT_LPAREN] = ACTIONS(1312), + [362] = { + [aux_sym_concatenation_repeat1] = STATE(359), + [sym_word] = ACTIONS(1225), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_PLUS_EQ] = ACTIONS(1227), + [anon_sym_DASH_EQ] = ACTIONS(1227), + [anon_sym_STAR_EQ] = ACTIONS(1227), + [anon_sym_SLASH_EQ] = ACTIONS(1227), + [anon_sym_PERCENT_EQ] = ACTIONS(1227), + [anon_sym_LT_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_GT_EQ] = ACTIONS(1227), + [anon_sym_AMP_EQ] = ACTIONS(1227), + [anon_sym_CARET_EQ] = ACTIONS(1227), + [anon_sym_PIPE_EQ] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1227), + [anon_sym_PERCENT] = ACTIONS(1227), + [anon_sym_STAR_STAR] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_SEMI_SEMI] = ACTIONS(1225), + [anon_sym_PIPE_AMP] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(1229), + [anon_sym_AMP_GT] = ACTIONS(1225), + [anon_sym_AMP_GT_GT] = ACTIONS(1225), + [anon_sym_LT_AMP] = ACTIONS(1225), + [anon_sym_GT_AMP] = ACTIONS(1225), + [anon_sym_GT_PIPE] = ACTIONS(1225), + [anon_sym_LT_LT_DASH] = ACTIONS(1225), + [anon_sym_LF] = ACTIONS(1225), + [anon_sym_LT_LT_LT] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), + [aux_sym_concatenation_token1] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(1225), + [sym__special_character] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_raw_string] = ACTIONS(1225), + [sym_ansi_c_string] = ACTIONS(1225), + [aux_sym_number_token1] = ACTIONS(1225), + [aux_sym_number_token2] = ACTIONS(1225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), + [anon_sym_BQUOTE] = ACTIONS(1225), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), + [anon_sym_LT_LPAREN] = ACTIONS(1225), + [anon_sym_GT_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1312), - [sym_file_descriptor] = ACTIONS(1314), - [sym__concat] = ACTIONS(1314), - [sym__bare_dollar] = ACTIONS(1314), - [sym__brace_start] = ACTIONS(1314), + [sym_test_operator] = ACTIONS(1229), + [sym_file_descriptor] = ACTIONS(1234), + [sym__concat] = ACTIONS(262), + [sym__bare_dollar] = ACTIONS(1234), + [sym__brace_start] = ACTIONS(1234), }, - [372] = { - [sym_word] = ACTIONS(1316), - [anon_sym_LF] = ACTIONS(1316), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_EQ] = ACTIONS(1316), - [anon_sym_DASH_EQ] = ACTIONS(1316), - [anon_sym_STAR_EQ] = ACTIONS(1316), - [anon_sym_SLASH_EQ] = ACTIONS(1316), - [anon_sym_PERCENT_EQ] = ACTIONS(1316), - [anon_sym_LT_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_GT_EQ] = ACTIONS(1316), - [anon_sym_AMP_EQ] = ACTIONS(1316), - [anon_sym_CARET_EQ] = ACTIONS(1316), - [anon_sym_PIPE_EQ] = ACTIONS(1316), - [anon_sym_EQ_EQ] = ACTIONS(1316), - [anon_sym_BANG_EQ] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_EQ] = ACTIONS(1316), - [anon_sym_AMP_AMP] = ACTIONS(1316), - [anon_sym_PIPE_PIPE] = ACTIONS(1316), - [anon_sym_LT_LT] = ACTIONS(1316), - [anon_sym_GT_GT] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_SLASH] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_STAR_STAR] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_RPAREN] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_SEMI_SEMI] = ACTIONS(1316), - [anon_sym_PIPE_AMP] = ACTIONS(1316), - [anon_sym_EQ_TILDE] = ACTIONS(1316), - [anon_sym_AMP_GT] = ACTIONS(1316), - [anon_sym_AMP_GT_GT] = ACTIONS(1316), - [anon_sym_LT_AMP] = ACTIONS(1316), - [anon_sym_GT_AMP] = ACTIONS(1316), - [anon_sym_GT_PIPE] = ACTIONS(1316), - [anon_sym_LT_LT_DASH] = ACTIONS(1316), - [anon_sym_LT_LT_LT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1316), - [aux_sym_concatenation_token1] = ACTIONS(1316), - [anon_sym_DOLLAR] = ACTIONS(1316), - [sym__special_character] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_raw_string] = ACTIONS(1316), - [sym_ansi_c_string] = ACTIONS(1316), - [aux_sym_number_token1] = ACTIONS(1316), - [aux_sym_number_token2] = ACTIONS(1316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1316), - [anon_sym_BQUOTE] = ACTIONS(1316), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1316), - [anon_sym_LT_LPAREN] = ACTIONS(1316), - [anon_sym_GT_LPAREN] = ACTIONS(1316), + [363] = { + [aux_sym_concatenation_repeat1] = STATE(360), + [sym_word] = ACTIONS(1242), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_EQ] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_PLUS_EQ] = ACTIONS(1242), + [anon_sym_DASH_EQ] = ACTIONS(1242), + [anon_sym_STAR_EQ] = ACTIONS(1242), + [anon_sym_SLASH_EQ] = ACTIONS(1242), + [anon_sym_PERCENT_EQ] = ACTIONS(1242), + [anon_sym_LT_LT_EQ] = ACTIONS(1242), + [anon_sym_GT_GT_EQ] = ACTIONS(1242), + [anon_sym_AMP_EQ] = ACTIONS(1242), + [anon_sym_CARET_EQ] = ACTIONS(1242), + [anon_sym_PIPE_EQ] = ACTIONS(1242), + [anon_sym_EQ_EQ] = ACTIONS(1242), + [anon_sym_BANG_EQ] = ACTIONS(1242), + [anon_sym_LT_EQ] = ACTIONS(1242), + [anon_sym_GT_EQ] = ACTIONS(1242), + [anon_sym_AMP_AMP] = ACTIONS(1242), + [anon_sym_PIPE_PIPE] = ACTIONS(1242), + [anon_sym_LT_LT] = ACTIONS(1242), + [anon_sym_GT_GT] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_SLASH] = ACTIONS(1242), + [anon_sym_PERCENT] = ACTIONS(1242), + [anon_sym_STAR_STAR] = ACTIONS(1242), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_GT] = ACTIONS(1242), + [anon_sym_RPAREN] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_SEMI_SEMI] = ACTIONS(1242), + [anon_sym_PIPE_AMP] = ACTIONS(1242), + [anon_sym_EQ_TILDE] = ACTIONS(1242), + [anon_sym_AMP_GT] = ACTIONS(1242), + [anon_sym_AMP_GT_GT] = ACTIONS(1242), + [anon_sym_LT_AMP] = ACTIONS(1242), + [anon_sym_GT_AMP] = ACTIONS(1242), + [anon_sym_GT_PIPE] = ACTIONS(1242), + [anon_sym_LT_LT_DASH] = ACTIONS(1242), + [anon_sym_LF] = ACTIONS(1242), + [anon_sym_LT_LT_LT] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_CARET] = ACTIONS(1242), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1242), + [aux_sym_concatenation_token1] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(1242), + [sym__special_character] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1242), + [sym_raw_string] = ACTIONS(1242), + [sym_ansi_c_string] = ACTIONS(1242), + [aux_sym_number_token1] = ACTIONS(1242), + [aux_sym_number_token2] = ACTIONS(1242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1242), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1242), + [anon_sym_BQUOTE] = ACTIONS(1242), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1242), + [anon_sym_LT_LPAREN] = ACTIONS(1242), + [anon_sym_GT_LPAREN] = ACTIONS(1242), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1316), - [sym_file_descriptor] = ACTIONS(1318), - [sym__concat] = ACTIONS(1318), - [sym__bare_dollar] = ACTIONS(1318), - [sym__brace_start] = ACTIONS(1318), + [sym_test_operator] = ACTIONS(1242), + [sym_file_descriptor] = ACTIONS(1244), + [sym__concat] = ACTIONS(262), + [sym__bare_dollar] = ACTIONS(1244), + [sym__brace_start] = ACTIONS(1244), }, - [373] = { - [sym_word] = ACTIONS(1320), - [anon_sym_LF] = ACTIONS(1320), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_EQ] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_EQ] = ACTIONS(1320), - [anon_sym_DASH_EQ] = ACTIONS(1320), - [anon_sym_STAR_EQ] = ACTIONS(1320), - [anon_sym_SLASH_EQ] = ACTIONS(1320), - [anon_sym_PERCENT_EQ] = ACTIONS(1320), - [anon_sym_LT_LT_EQ] = ACTIONS(1320), - [anon_sym_GT_GT_EQ] = ACTIONS(1320), - [anon_sym_AMP_EQ] = ACTIONS(1320), - [anon_sym_CARET_EQ] = ACTIONS(1320), - [anon_sym_PIPE_EQ] = ACTIONS(1320), - [anon_sym_EQ_EQ] = ACTIONS(1320), - [anon_sym_BANG_EQ] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1320), - [anon_sym_AMP_AMP] = ACTIONS(1320), - [anon_sym_PIPE_PIPE] = ACTIONS(1320), - [anon_sym_LT_LT] = ACTIONS(1320), - [anon_sym_GT_GT] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_SLASH] = ACTIONS(1320), - [anon_sym_PERCENT] = ACTIONS(1320), - [anon_sym_STAR_STAR] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_RPAREN] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1320), - [anon_sym_SEMI_SEMI] = ACTIONS(1320), - [anon_sym_PIPE_AMP] = ACTIONS(1320), - [anon_sym_EQ_TILDE] = ACTIONS(1320), - [anon_sym_AMP_GT] = ACTIONS(1320), - [anon_sym_AMP_GT_GT] = ACTIONS(1320), - [anon_sym_LT_AMP] = ACTIONS(1320), - [anon_sym_GT_AMP] = ACTIONS(1320), - [anon_sym_GT_PIPE] = ACTIONS(1320), - [anon_sym_LT_LT_DASH] = ACTIONS(1320), - [anon_sym_LT_LT_LT] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_CARET] = ACTIONS(1320), - [anon_sym_QMARK] = ACTIONS(1320), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1320), - [aux_sym_concatenation_token1] = ACTIONS(1320), - [anon_sym_DOLLAR] = ACTIONS(1320), - [sym__special_character] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_raw_string] = ACTIONS(1320), - [sym_ansi_c_string] = ACTIONS(1320), - [aux_sym_number_token1] = ACTIONS(1320), - [aux_sym_number_token2] = ACTIONS(1320), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1320), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1320), - [anon_sym_BQUOTE] = ACTIONS(1320), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1320), - [anon_sym_LT_LPAREN] = ACTIONS(1320), - [anon_sym_GT_LPAREN] = ACTIONS(1320), + [364] = { + [sym_word] = ACTIONS(1314), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1314), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_EQ] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [anon_sym_PLUS_EQ] = ACTIONS(1314), + [anon_sym_DASH_EQ] = ACTIONS(1314), + [anon_sym_STAR_EQ] = ACTIONS(1314), + [anon_sym_SLASH_EQ] = ACTIONS(1314), + [anon_sym_PERCENT_EQ] = ACTIONS(1314), + [anon_sym_LT_LT_EQ] = ACTIONS(1314), + [anon_sym_GT_GT_EQ] = ACTIONS(1314), + [anon_sym_AMP_EQ] = ACTIONS(1314), + [anon_sym_CARET_EQ] = ACTIONS(1314), + [anon_sym_PIPE_EQ] = ACTIONS(1314), + [anon_sym_EQ_EQ] = ACTIONS(1314), + [anon_sym_BANG_EQ] = ACTIONS(1314), + [anon_sym_LT_EQ] = ACTIONS(1314), + [anon_sym_GT_EQ] = ACTIONS(1314), + [anon_sym_AMP_AMP] = ACTIONS(1314), + [anon_sym_PIPE_PIPE] = ACTIONS(1314), + [anon_sym_LT_LT] = ACTIONS(1314), + [anon_sym_GT_GT] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_SLASH] = ACTIONS(1314), + [anon_sym_PERCENT] = ACTIONS(1314), + [anon_sym_STAR_STAR] = ACTIONS(1314), + [anon_sym_LT] = ACTIONS(1314), + [anon_sym_GT] = ACTIONS(1314), + [anon_sym_RPAREN] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_SEMI_SEMI] = ACTIONS(1314), + [anon_sym_PIPE_AMP] = ACTIONS(1314), + [anon_sym_EQ_TILDE] = ACTIONS(1314), + [anon_sym_AMP_GT] = ACTIONS(1314), + [anon_sym_AMP_GT_GT] = ACTIONS(1314), + [anon_sym_LT_AMP] = ACTIONS(1314), + [anon_sym_GT_AMP] = ACTIONS(1314), + [anon_sym_GT_PIPE] = ACTIONS(1314), + [anon_sym_LT_LT_DASH] = ACTIONS(1314), + [anon_sym_LF] = ACTIONS(1314), + [anon_sym_LT_LT_LT] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_CARET] = ACTIONS(1314), + [anon_sym_QMARK] = ACTIONS(1314), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1314), + [aux_sym_concatenation_token1] = ACTIONS(1314), + [anon_sym_DOLLAR] = ACTIONS(1314), + [sym__special_character] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1314), + [sym_raw_string] = ACTIONS(1314), + [sym_ansi_c_string] = ACTIONS(1314), + [aux_sym_number_token1] = ACTIONS(1314), + [aux_sym_number_token2] = ACTIONS(1314), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1314), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1314), + [anon_sym_BQUOTE] = ACTIONS(1314), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1314), + [anon_sym_LT_LPAREN] = ACTIONS(1314), + [anon_sym_GT_LPAREN] = ACTIONS(1314), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1320), - [sym_file_descriptor] = ACTIONS(1322), - [sym__concat] = ACTIONS(1322), - [sym__bare_dollar] = ACTIONS(1322), - [sym__brace_start] = ACTIONS(1322), + [sym_test_operator] = ACTIONS(1314), + [sym_file_descriptor] = ACTIONS(1316), + [sym__concat] = ACTIONS(1316), + [sym__bare_dollar] = ACTIONS(1316), + [sym__brace_start] = ACTIONS(1316), }, - [374] = { - [sym_word] = ACTIONS(1324), - [anon_sym_LF] = ACTIONS(1324), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_EQ] = ACTIONS(1324), - [anon_sym_DASH_EQ] = ACTIONS(1324), - [anon_sym_STAR_EQ] = ACTIONS(1324), - [anon_sym_SLASH_EQ] = ACTIONS(1324), - [anon_sym_PERCENT_EQ] = ACTIONS(1324), - [anon_sym_LT_LT_EQ] = ACTIONS(1324), - [anon_sym_GT_GT_EQ] = ACTIONS(1324), - [anon_sym_AMP_EQ] = ACTIONS(1324), - [anon_sym_CARET_EQ] = ACTIONS(1324), - [anon_sym_PIPE_EQ] = ACTIONS(1324), - [anon_sym_EQ_EQ] = ACTIONS(1324), - [anon_sym_BANG_EQ] = ACTIONS(1324), - [anon_sym_LT_EQ] = ACTIONS(1324), - [anon_sym_GT_EQ] = ACTIONS(1324), - [anon_sym_AMP_AMP] = ACTIONS(1324), - [anon_sym_PIPE_PIPE] = ACTIONS(1324), - [anon_sym_LT_LT] = ACTIONS(1324), - [anon_sym_GT_GT] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_SLASH] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_STAR_STAR] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_RPAREN] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_SEMI_SEMI] = ACTIONS(1324), - [anon_sym_PIPE_AMP] = ACTIONS(1324), - [anon_sym_EQ_TILDE] = ACTIONS(1324), - [anon_sym_AMP_GT] = ACTIONS(1324), - [anon_sym_AMP_GT_GT] = ACTIONS(1324), - [anon_sym_LT_AMP] = ACTIONS(1324), - [anon_sym_GT_AMP] = ACTIONS(1324), - [anon_sym_GT_PIPE] = ACTIONS(1324), - [anon_sym_LT_LT_DASH] = ACTIONS(1324), - [anon_sym_LT_LT_LT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1324), - [aux_sym_concatenation_token1] = ACTIONS(1324), - [anon_sym_DOLLAR] = ACTIONS(1324), - [sym__special_character] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_raw_string] = ACTIONS(1324), - [sym_ansi_c_string] = ACTIONS(1324), - [aux_sym_number_token1] = ACTIONS(1324), - [aux_sym_number_token2] = ACTIONS(1324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1324), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1324), - [anon_sym_BQUOTE] = ACTIONS(1324), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1324), - [anon_sym_LT_LPAREN] = ACTIONS(1324), - [anon_sym_GT_LPAREN] = ACTIONS(1324), + [365] = { + [sym_word] = ACTIONS(1318), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1318), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_PLUS_EQ] = ACTIONS(1318), + [anon_sym_DASH_EQ] = ACTIONS(1318), + [anon_sym_STAR_EQ] = ACTIONS(1318), + [anon_sym_SLASH_EQ] = ACTIONS(1318), + [anon_sym_PERCENT_EQ] = ACTIONS(1318), + [anon_sym_LT_LT_EQ] = ACTIONS(1318), + [anon_sym_GT_GT_EQ] = ACTIONS(1318), + [anon_sym_AMP_EQ] = ACTIONS(1318), + [anon_sym_CARET_EQ] = ACTIONS(1318), + [anon_sym_PIPE_EQ] = ACTIONS(1318), + [anon_sym_EQ_EQ] = ACTIONS(1318), + [anon_sym_BANG_EQ] = ACTIONS(1318), + [anon_sym_LT_EQ] = ACTIONS(1318), + [anon_sym_GT_EQ] = ACTIONS(1318), + [anon_sym_AMP_AMP] = ACTIONS(1318), + [anon_sym_PIPE_PIPE] = ACTIONS(1318), + [anon_sym_LT_LT] = ACTIONS(1318), + [anon_sym_GT_GT] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_SLASH] = ACTIONS(1318), + [anon_sym_PERCENT] = ACTIONS(1318), + [anon_sym_STAR_STAR] = ACTIONS(1318), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_GT] = ACTIONS(1318), + [anon_sym_RPAREN] = ACTIONS(1318), + [anon_sym_PIPE] = ACTIONS(1318), + [anon_sym_SEMI_SEMI] = ACTIONS(1318), + [anon_sym_PIPE_AMP] = ACTIONS(1318), + [anon_sym_EQ_TILDE] = ACTIONS(1318), + [anon_sym_AMP_GT] = ACTIONS(1318), + [anon_sym_AMP_GT_GT] = ACTIONS(1318), + [anon_sym_LT_AMP] = ACTIONS(1318), + [anon_sym_GT_AMP] = ACTIONS(1318), + [anon_sym_GT_PIPE] = ACTIONS(1318), + [anon_sym_LT_LT_DASH] = ACTIONS(1318), + [anon_sym_LF] = ACTIONS(1318), + [anon_sym_LT_LT_LT] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_CARET] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(1318), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1318), + [aux_sym_concatenation_token1] = ACTIONS(1318), + [anon_sym_DOLLAR] = ACTIONS(1318), + [sym__special_character] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [sym_raw_string] = ACTIONS(1318), + [sym_ansi_c_string] = ACTIONS(1318), + [aux_sym_number_token1] = ACTIONS(1318), + [aux_sym_number_token2] = ACTIONS(1318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1318), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1318), + [anon_sym_BQUOTE] = ACTIONS(1318), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1318), + [anon_sym_LT_LPAREN] = ACTIONS(1318), + [anon_sym_GT_LPAREN] = ACTIONS(1318), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1324), - [sym_file_descriptor] = ACTIONS(1326), - [sym__concat] = ACTIONS(1326), - [sym__bare_dollar] = ACTIONS(1326), - [sym__brace_start] = ACTIONS(1326), + [sym_test_operator] = ACTIONS(1318), + [sym_file_descriptor] = ACTIONS(1320), + [sym__concat] = ACTIONS(1320), + [sym__bare_dollar] = ACTIONS(1320), + [sym__brace_start] = ACTIONS(1320), }, - [375] = { - [sym_word] = ACTIONS(1328), - [anon_sym_LF] = ACTIONS(1328), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_EQ] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_EQ] = ACTIONS(1328), - [anon_sym_DASH_EQ] = ACTIONS(1328), - [anon_sym_STAR_EQ] = ACTIONS(1328), - [anon_sym_SLASH_EQ] = ACTIONS(1328), - [anon_sym_PERCENT_EQ] = ACTIONS(1328), - [anon_sym_LT_LT_EQ] = ACTIONS(1328), - [anon_sym_GT_GT_EQ] = ACTIONS(1328), - [anon_sym_AMP_EQ] = ACTIONS(1328), - [anon_sym_CARET_EQ] = ACTIONS(1328), - [anon_sym_PIPE_EQ] = ACTIONS(1328), - [anon_sym_EQ_EQ] = ACTIONS(1328), - [anon_sym_BANG_EQ] = ACTIONS(1328), - [anon_sym_LT_EQ] = ACTIONS(1328), - [anon_sym_GT_EQ] = ACTIONS(1328), - [anon_sym_AMP_AMP] = ACTIONS(1328), - [anon_sym_PIPE_PIPE] = ACTIONS(1328), - [anon_sym_LT_LT] = ACTIONS(1328), - [anon_sym_GT_GT] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_SLASH] = ACTIONS(1328), - [anon_sym_PERCENT] = ACTIONS(1328), - [anon_sym_STAR_STAR] = ACTIONS(1328), - [anon_sym_LT] = ACTIONS(1328), - [anon_sym_GT] = ACTIONS(1328), - [anon_sym_RPAREN] = ACTIONS(1328), - [anon_sym_PIPE] = ACTIONS(1328), - [anon_sym_SEMI_SEMI] = ACTIONS(1328), - [anon_sym_PIPE_AMP] = ACTIONS(1328), - [anon_sym_EQ_TILDE] = ACTIONS(1328), - [anon_sym_AMP_GT] = ACTIONS(1328), - [anon_sym_AMP_GT_GT] = ACTIONS(1328), - [anon_sym_LT_AMP] = ACTIONS(1328), - [anon_sym_GT_AMP] = ACTIONS(1328), - [anon_sym_GT_PIPE] = ACTIONS(1328), - [anon_sym_LT_LT_DASH] = ACTIONS(1328), - [anon_sym_LT_LT_LT] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_CARET] = ACTIONS(1328), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1328), - [aux_sym_concatenation_token1] = ACTIONS(1328), - [anon_sym_DOLLAR] = ACTIONS(1328), - [sym__special_character] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_raw_string] = ACTIONS(1328), - [sym_ansi_c_string] = ACTIONS(1328), - [aux_sym_number_token1] = ACTIONS(1328), - [aux_sym_number_token2] = ACTIONS(1328), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1328), - [anon_sym_BQUOTE] = ACTIONS(1328), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1328), - [anon_sym_LT_LPAREN] = ACTIONS(1328), - [anon_sym_GT_LPAREN] = ACTIONS(1328), + [366] = { + [sym_word] = ACTIONS(1322), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1322), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_EQ] = ACTIONS(1322), + [anon_sym_DASH_EQ] = ACTIONS(1322), + [anon_sym_STAR_EQ] = ACTIONS(1322), + [anon_sym_SLASH_EQ] = ACTIONS(1322), + [anon_sym_PERCENT_EQ] = ACTIONS(1322), + [anon_sym_LT_LT_EQ] = ACTIONS(1322), + [anon_sym_GT_GT_EQ] = ACTIONS(1322), + [anon_sym_AMP_EQ] = ACTIONS(1322), + [anon_sym_CARET_EQ] = ACTIONS(1322), + [anon_sym_PIPE_EQ] = ACTIONS(1322), + [anon_sym_EQ_EQ] = ACTIONS(1322), + [anon_sym_BANG_EQ] = ACTIONS(1322), + [anon_sym_LT_EQ] = ACTIONS(1322), + [anon_sym_GT_EQ] = ACTIONS(1322), + [anon_sym_AMP_AMP] = ACTIONS(1322), + [anon_sym_PIPE_PIPE] = ACTIONS(1322), + [anon_sym_LT_LT] = ACTIONS(1322), + [anon_sym_GT_GT] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym_PERCENT] = ACTIONS(1322), + [anon_sym_STAR_STAR] = ACTIONS(1322), + [anon_sym_LT] = ACTIONS(1322), + [anon_sym_GT] = ACTIONS(1322), + [anon_sym_RPAREN] = ACTIONS(1322), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_SEMI_SEMI] = ACTIONS(1322), + [anon_sym_PIPE_AMP] = ACTIONS(1322), + [anon_sym_EQ_TILDE] = ACTIONS(1322), + [anon_sym_AMP_GT] = ACTIONS(1322), + [anon_sym_AMP_GT_GT] = ACTIONS(1322), + [anon_sym_LT_AMP] = ACTIONS(1322), + [anon_sym_GT_AMP] = ACTIONS(1322), + [anon_sym_GT_PIPE] = ACTIONS(1322), + [anon_sym_LT_LT_DASH] = ACTIONS(1322), + [anon_sym_LF] = ACTIONS(1322), + [anon_sym_LT_LT_LT] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_CARET] = ACTIONS(1322), + [anon_sym_QMARK] = ACTIONS(1322), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1322), + [aux_sym_concatenation_token1] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1322), + [sym__special_character] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_raw_string] = ACTIONS(1322), + [sym_ansi_c_string] = ACTIONS(1322), + [aux_sym_number_token1] = ACTIONS(1322), + [aux_sym_number_token2] = ACTIONS(1322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1322), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1322), + [anon_sym_BQUOTE] = ACTIONS(1322), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1322), + [anon_sym_LT_LPAREN] = ACTIONS(1322), + [anon_sym_GT_LPAREN] = ACTIONS(1322), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1328), - [sym_file_descriptor] = ACTIONS(1330), - [sym__concat] = ACTIONS(1330), - [sym__bare_dollar] = ACTIONS(1330), - [sym__brace_start] = ACTIONS(1330), + [sym_test_operator] = ACTIONS(1322), + [sym_file_descriptor] = ACTIONS(1324), + [sym__concat] = ACTIONS(1324), + [sym__bare_dollar] = ACTIONS(1324), + [sym__brace_start] = ACTIONS(1324), }, - [376] = { - [sym_word] = ACTIONS(1284), - [anon_sym_LF] = ACTIONS(1284), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_EQ] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_EQ] = ACTIONS(1284), - [anon_sym_DASH_EQ] = ACTIONS(1284), - [anon_sym_STAR_EQ] = ACTIONS(1284), - [anon_sym_SLASH_EQ] = ACTIONS(1284), - [anon_sym_PERCENT_EQ] = ACTIONS(1284), - [anon_sym_LT_LT_EQ] = ACTIONS(1284), - [anon_sym_GT_GT_EQ] = ACTIONS(1284), - [anon_sym_AMP_EQ] = ACTIONS(1284), - [anon_sym_CARET_EQ] = ACTIONS(1284), - [anon_sym_PIPE_EQ] = ACTIONS(1284), - [anon_sym_EQ_EQ] = ACTIONS(1284), - [anon_sym_BANG_EQ] = ACTIONS(1284), - [anon_sym_LT_EQ] = ACTIONS(1284), - [anon_sym_GT_EQ] = ACTIONS(1284), - [anon_sym_AMP_AMP] = ACTIONS(1284), - [anon_sym_PIPE_PIPE] = ACTIONS(1284), - [anon_sym_LT_LT] = ACTIONS(1284), - [anon_sym_GT_GT] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_SLASH] = ACTIONS(1284), - [anon_sym_PERCENT] = ACTIONS(1284), - [anon_sym_STAR_STAR] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1284), - [anon_sym_GT] = ACTIONS(1284), - [anon_sym_RPAREN] = ACTIONS(1284), - [anon_sym_PIPE] = ACTIONS(1284), - [anon_sym_SEMI_SEMI] = ACTIONS(1284), - [anon_sym_PIPE_AMP] = ACTIONS(1284), - [anon_sym_EQ_TILDE] = ACTIONS(1284), - [anon_sym_AMP_GT] = ACTIONS(1284), - [anon_sym_AMP_GT_GT] = ACTIONS(1284), - [anon_sym_LT_AMP] = ACTIONS(1284), - [anon_sym_GT_AMP] = ACTIONS(1284), - [anon_sym_GT_PIPE] = ACTIONS(1284), - [anon_sym_LT_LT_DASH] = ACTIONS(1284), - [anon_sym_LT_LT_LT] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_CARET] = ACTIONS(1284), - [anon_sym_QMARK] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1284), - [aux_sym_concatenation_token1] = ACTIONS(1284), - [anon_sym_DOLLAR] = ACTIONS(1284), - [sym__special_character] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [sym_raw_string] = ACTIONS(1284), - [sym_ansi_c_string] = ACTIONS(1284), - [aux_sym_number_token1] = ACTIONS(1284), - [aux_sym_number_token2] = ACTIONS(1284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1284), - [anon_sym_BQUOTE] = ACTIONS(1284), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1284), - [anon_sym_LT_LPAREN] = ACTIONS(1284), - [anon_sym_GT_LPAREN] = ACTIONS(1284), + [367] = { + [sym_word] = ACTIONS(1326), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1326), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_EQ] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_EQ] = ACTIONS(1326), + [anon_sym_DASH_EQ] = ACTIONS(1326), + [anon_sym_STAR_EQ] = ACTIONS(1326), + [anon_sym_SLASH_EQ] = ACTIONS(1326), + [anon_sym_PERCENT_EQ] = ACTIONS(1326), + [anon_sym_LT_LT_EQ] = ACTIONS(1326), + [anon_sym_GT_GT_EQ] = ACTIONS(1326), + [anon_sym_AMP_EQ] = ACTIONS(1326), + [anon_sym_CARET_EQ] = ACTIONS(1326), + [anon_sym_PIPE_EQ] = ACTIONS(1326), + [anon_sym_EQ_EQ] = ACTIONS(1326), + [anon_sym_BANG_EQ] = ACTIONS(1326), + [anon_sym_LT_EQ] = ACTIONS(1326), + [anon_sym_GT_EQ] = ACTIONS(1326), + [anon_sym_AMP_AMP] = ACTIONS(1326), + [anon_sym_PIPE_PIPE] = ACTIONS(1326), + [anon_sym_LT_LT] = ACTIONS(1326), + [anon_sym_GT_GT] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_SLASH] = ACTIONS(1326), + [anon_sym_PERCENT] = ACTIONS(1326), + [anon_sym_STAR_STAR] = ACTIONS(1326), + [anon_sym_LT] = ACTIONS(1326), + [anon_sym_GT] = ACTIONS(1326), + [anon_sym_RPAREN] = ACTIONS(1326), + [anon_sym_PIPE] = ACTIONS(1326), + [anon_sym_SEMI_SEMI] = ACTIONS(1326), + [anon_sym_PIPE_AMP] = ACTIONS(1326), + [anon_sym_EQ_TILDE] = ACTIONS(1326), + [anon_sym_AMP_GT] = ACTIONS(1326), + [anon_sym_AMP_GT_GT] = ACTIONS(1326), + [anon_sym_LT_AMP] = ACTIONS(1326), + [anon_sym_GT_AMP] = ACTIONS(1326), + [anon_sym_GT_PIPE] = ACTIONS(1326), + [anon_sym_LT_LT_DASH] = ACTIONS(1326), + [anon_sym_LF] = ACTIONS(1326), + [anon_sym_LT_LT_LT] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1326), + [anon_sym_QMARK] = ACTIONS(1326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1326), + [aux_sym_concatenation_token1] = ACTIONS(1326), + [anon_sym_DOLLAR] = ACTIONS(1326), + [sym__special_character] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_raw_string] = ACTIONS(1326), + [sym_ansi_c_string] = ACTIONS(1326), + [aux_sym_number_token1] = ACTIONS(1326), + [aux_sym_number_token2] = ACTIONS(1326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1326), + [anon_sym_BQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1326), + [anon_sym_LT_LPAREN] = ACTIONS(1326), + [anon_sym_GT_LPAREN] = ACTIONS(1326), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1284), - [sym_file_descriptor] = ACTIONS(1286), - [sym__concat] = ACTIONS(1286), - [sym__bare_dollar] = ACTIONS(1286), - [sym__brace_start] = ACTIONS(1286), + [sym_test_operator] = ACTIONS(1326), + [sym_file_descriptor] = ACTIONS(1328), + [sym__concat] = ACTIONS(1328), + [sym__bare_dollar] = ACTIONS(1328), + [sym__brace_start] = ACTIONS(1328), }, - [377] = { - [aux_sym_concatenation_repeat1] = STATE(365), - [sym_word] = ACTIONS(1264), - [anon_sym_LF] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1264), - [anon_sym_EQ] = ACTIONS(1264), - [anon_sym_PLUS_PLUS] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1264), - [anon_sym_PLUS_EQ] = ACTIONS(1264), - [anon_sym_DASH_EQ] = ACTIONS(1264), - [anon_sym_STAR_EQ] = ACTIONS(1264), - [anon_sym_SLASH_EQ] = ACTIONS(1264), - [anon_sym_PERCENT_EQ] = ACTIONS(1264), - [anon_sym_LT_LT_EQ] = ACTIONS(1264), - [anon_sym_GT_GT_EQ] = ACTIONS(1264), - [anon_sym_AMP_EQ] = ACTIONS(1264), - [anon_sym_CARET_EQ] = ACTIONS(1264), - [anon_sym_PIPE_EQ] = ACTIONS(1264), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_LT_EQ] = ACTIONS(1264), - [anon_sym_GT_EQ] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1264), - [anon_sym_PIPE_PIPE] = ACTIONS(1264), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(1264), - [anon_sym_PERCENT] = ACTIONS(1264), - [anon_sym_STAR_STAR] = ACTIONS(1264), - [anon_sym_LT] = ACTIONS(1264), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_RPAREN] = ACTIONS(1264), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_SEMI_SEMI] = ACTIONS(1264), - [anon_sym_PIPE_AMP] = ACTIONS(1264), - [anon_sym_EQ_TILDE] = ACTIONS(1264), - [anon_sym_AMP_GT] = ACTIONS(1264), - [anon_sym_AMP_GT_GT] = ACTIONS(1264), - [anon_sym_LT_AMP] = ACTIONS(1264), - [anon_sym_GT_AMP] = ACTIONS(1264), - [anon_sym_GT_PIPE] = ACTIONS(1264), - [anon_sym_LT_LT_DASH] = ACTIONS(1264), - [anon_sym_LT_LT_LT] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1264), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1264), - [aux_sym_concatenation_token1] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(1264), - [sym__special_character] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(1264), - [sym_raw_string] = ACTIONS(1264), - [sym_ansi_c_string] = ACTIONS(1264), - [aux_sym_number_token1] = ACTIONS(1264), - [aux_sym_number_token2] = ACTIONS(1264), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1264), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1264), - [anon_sym_BQUOTE] = ACTIONS(1264), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1264), - [anon_sym_LT_LPAREN] = ACTIONS(1264), - [anon_sym_GT_LPAREN] = ACTIONS(1264), + [368] = { + [sym_word] = ACTIONS(1330), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1330), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym_EQ] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_EQ] = ACTIONS(1330), + [anon_sym_DASH_EQ] = ACTIONS(1330), + [anon_sym_STAR_EQ] = ACTIONS(1330), + [anon_sym_SLASH_EQ] = ACTIONS(1330), + [anon_sym_PERCENT_EQ] = ACTIONS(1330), + [anon_sym_LT_LT_EQ] = ACTIONS(1330), + [anon_sym_GT_GT_EQ] = ACTIONS(1330), + [anon_sym_AMP_EQ] = ACTIONS(1330), + [anon_sym_CARET_EQ] = ACTIONS(1330), + [anon_sym_PIPE_EQ] = ACTIONS(1330), + [anon_sym_EQ_EQ] = ACTIONS(1330), + [anon_sym_BANG_EQ] = ACTIONS(1330), + [anon_sym_LT_EQ] = ACTIONS(1330), + [anon_sym_GT_EQ] = ACTIONS(1330), + [anon_sym_AMP_AMP] = ACTIONS(1330), + [anon_sym_PIPE_PIPE] = ACTIONS(1330), + [anon_sym_LT_LT] = ACTIONS(1330), + [anon_sym_GT_GT] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_SLASH] = ACTIONS(1330), + [anon_sym_PERCENT] = ACTIONS(1330), + [anon_sym_STAR_STAR] = ACTIONS(1330), + [anon_sym_LT] = ACTIONS(1330), + [anon_sym_GT] = ACTIONS(1330), + [anon_sym_RPAREN] = ACTIONS(1330), + [anon_sym_PIPE] = ACTIONS(1330), + [anon_sym_SEMI_SEMI] = ACTIONS(1330), + [anon_sym_PIPE_AMP] = ACTIONS(1330), + [anon_sym_EQ_TILDE] = ACTIONS(1330), + [anon_sym_AMP_GT] = ACTIONS(1330), + [anon_sym_AMP_GT_GT] = ACTIONS(1330), + [anon_sym_LT_AMP] = ACTIONS(1330), + [anon_sym_GT_AMP] = ACTIONS(1330), + [anon_sym_GT_PIPE] = ACTIONS(1330), + [anon_sym_LT_LT_DASH] = ACTIONS(1330), + [anon_sym_LF] = ACTIONS(1330), + [anon_sym_LT_LT_LT] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_CARET] = ACTIONS(1330), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1330), + [aux_sym_concatenation_token1] = ACTIONS(1330), + [anon_sym_DOLLAR] = ACTIONS(1330), + [sym__special_character] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_raw_string] = ACTIONS(1330), + [sym_ansi_c_string] = ACTIONS(1330), + [aux_sym_number_token1] = ACTIONS(1330), + [aux_sym_number_token2] = ACTIONS(1330), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1330), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1330), + [anon_sym_BQUOTE] = ACTIONS(1330), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1330), + [anon_sym_LT_LPAREN] = ACTIONS(1330), + [anon_sym_GT_LPAREN] = ACTIONS(1330), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1264), - [sym_file_descriptor] = ACTIONS(1266), + [sym_test_operator] = ACTIONS(1330), + [sym_file_descriptor] = ACTIONS(1332), [sym__concat] = ACTIONS(1332), - [sym__bare_dollar] = ACTIONS(1266), - [sym__brace_start] = ACTIONS(1266), + [sym__bare_dollar] = ACTIONS(1332), + [sym__brace_start] = ACTIONS(1332), }, - [378] = { + [369] = { [sym_word] = ACTIONS(1334), - [anon_sym_LF] = ACTIONS(1334), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1334), [anon_sym_RPAREN_RPAREN] = ACTIONS(1334), [anon_sym_SEMI] = ACTIONS(1334), [anon_sym_EQ] = ACTIONS(1334), @@ -52103,6 +53193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_AMP] = ACTIONS(1334), [anon_sym_GT_PIPE] = ACTIONS(1334), [anon_sym_LT_LT_DASH] = ACTIONS(1334), + [anon_sym_LF] = ACTIONS(1334), [anon_sym_LT_LT_LT] = ACTIONS(1334), [anon_sym_AMP] = ACTIONS(1334), [anon_sym_CARET] = ACTIONS(1334), @@ -52129,9 +53220,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1336), [sym__brace_start] = ACTIONS(1336), }, - [379] = { + [370] = { + [sym_word] = ACTIONS(1268), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1268), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym_EQ] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_EQ] = ACTIONS(1268), + [anon_sym_DASH_EQ] = ACTIONS(1268), + [anon_sym_STAR_EQ] = ACTIONS(1268), + [anon_sym_SLASH_EQ] = ACTIONS(1268), + [anon_sym_PERCENT_EQ] = ACTIONS(1268), + [anon_sym_LT_LT_EQ] = ACTIONS(1268), + [anon_sym_GT_GT_EQ] = ACTIONS(1268), + [anon_sym_AMP_EQ] = ACTIONS(1268), + [anon_sym_CARET_EQ] = ACTIONS(1268), + [anon_sym_PIPE_EQ] = ACTIONS(1268), + [anon_sym_EQ_EQ] = ACTIONS(1268), + [anon_sym_BANG_EQ] = ACTIONS(1268), + [anon_sym_LT_EQ] = ACTIONS(1268), + [anon_sym_GT_EQ] = ACTIONS(1268), + [anon_sym_AMP_AMP] = ACTIONS(1268), + [anon_sym_PIPE_PIPE] = ACTIONS(1268), + [anon_sym_LT_LT] = ACTIONS(1268), + [anon_sym_GT_GT] = ACTIONS(1268), + [anon_sym_PLUS] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_SLASH] = ACTIONS(1268), + [anon_sym_PERCENT] = ACTIONS(1268), + [anon_sym_STAR_STAR] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(1268), + [anon_sym_GT] = ACTIONS(1268), + [anon_sym_RPAREN] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_SEMI_SEMI] = ACTIONS(1268), + [anon_sym_PIPE_AMP] = ACTIONS(1268), + [anon_sym_EQ_TILDE] = ACTIONS(1268), + [anon_sym_AMP_GT] = ACTIONS(1268), + [anon_sym_AMP_GT_GT] = ACTIONS(1268), + [anon_sym_LT_AMP] = ACTIONS(1268), + [anon_sym_GT_AMP] = ACTIONS(1268), + [anon_sym_GT_PIPE] = ACTIONS(1268), + [anon_sym_LT_LT_DASH] = ACTIONS(1268), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_LT_LT_LT] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_CARET] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1268), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1268), + [aux_sym_concatenation_token1] = ACTIONS(1268), + [anon_sym_DOLLAR] = ACTIONS(1268), + [sym__special_character] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym_raw_string] = ACTIONS(1268), + [sym_ansi_c_string] = ACTIONS(1268), + [aux_sym_number_token1] = ACTIONS(1268), + [aux_sym_number_token2] = ACTIONS(1268), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1268), + [anon_sym_BQUOTE] = ACTIONS(1268), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1268), + [anon_sym_LT_LPAREN] = ACTIONS(1268), + [anon_sym_GT_LPAREN] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1268), + [sym_file_descriptor] = ACTIONS(1270), + [sym__concat] = ACTIONS(1270), + [sym__bare_dollar] = ACTIONS(1270), + [sym__brace_start] = ACTIONS(1270), + }, + [371] = { [sym_word] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1338), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1338), [anon_sym_RPAREN_RPAREN] = ACTIONS(1338), [anon_sym_SEMI] = ACTIONS(1338), [anon_sym_EQ] = ACTIONS(1338), @@ -52174,6 +53337,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_AMP] = ACTIONS(1338), [anon_sym_GT_PIPE] = ACTIONS(1338), [anon_sym_LT_LT_DASH] = ACTIONS(1338), + [anon_sym_LF] = ACTIONS(1338), [anon_sym_LT_LT_LT] = ACTIONS(1338), [anon_sym_AMP] = ACTIONS(1338), [anon_sym_CARET] = ACTIONS(1338), @@ -52200,9 +53364,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1340), [sym__brace_start] = ACTIONS(1340), }, - [380] = { + [372] = { [sym_word] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1342), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1342), [anon_sym_RPAREN_RPAREN] = ACTIONS(1342), [anon_sym_SEMI] = ACTIONS(1342), [anon_sym_EQ] = ACTIONS(1342), @@ -52245,6 +53409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_AMP] = ACTIONS(1342), [anon_sym_GT_PIPE] = ACTIONS(1342), [anon_sym_LT_LT_DASH] = ACTIONS(1342), + [anon_sym_LF] = ACTIONS(1342), [anon_sym_LT_LT_LT] = ACTIONS(1342), [anon_sym_AMP] = ACTIONS(1342), [anon_sym_CARET] = ACTIONS(1342), @@ -52271,9 +53436,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1344), [sym__brace_start] = ACTIONS(1344), }, - [381] = { + [373] = { [sym_word] = ACTIONS(1346), - [anon_sym_LF] = ACTIONS(1346), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1346), [anon_sym_RPAREN_RPAREN] = ACTIONS(1346), [anon_sym_SEMI] = ACTIONS(1346), [anon_sym_EQ] = ACTIONS(1346), @@ -52316,6 +53481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_AMP] = ACTIONS(1346), [anon_sym_GT_PIPE] = ACTIONS(1346), [anon_sym_LT_LT_DASH] = ACTIONS(1346), + [anon_sym_LF] = ACTIONS(1346), [anon_sym_LT_LT_LT] = ACTIONS(1346), [anon_sym_AMP] = ACTIONS(1346), [anon_sym_CARET] = ACTIONS(1346), @@ -52342,501 +53508,506 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1348), [sym__brace_start] = ACTIONS(1348), }, - [382] = { - [sym_word] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1350), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_EQ] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_EQ] = ACTIONS(1350), - [anon_sym_DASH_EQ] = ACTIONS(1350), - [anon_sym_STAR_EQ] = ACTIONS(1350), - [anon_sym_SLASH_EQ] = ACTIONS(1350), - [anon_sym_PERCENT_EQ] = ACTIONS(1350), - [anon_sym_LT_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_GT_EQ] = ACTIONS(1350), - [anon_sym_AMP_EQ] = ACTIONS(1350), - [anon_sym_CARET_EQ] = ACTIONS(1350), - [anon_sym_PIPE_EQ] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_AMP_AMP] = ACTIONS(1350), - [anon_sym_PIPE_PIPE] = ACTIONS(1350), - [anon_sym_LT_LT] = ACTIONS(1350), - [anon_sym_GT_GT] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_PERCENT] = ACTIONS(1350), - [anon_sym_STAR_STAR] = ACTIONS(1350), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_RPAREN] = ACTIONS(1350), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_SEMI_SEMI] = ACTIONS(1350), - [anon_sym_PIPE_AMP] = ACTIONS(1350), - [anon_sym_EQ_TILDE] = ACTIONS(1350), - [anon_sym_AMP_GT] = ACTIONS(1350), - [anon_sym_AMP_GT_GT] = ACTIONS(1350), - [anon_sym_LT_AMP] = ACTIONS(1350), - [anon_sym_GT_AMP] = ACTIONS(1350), - [anon_sym_GT_PIPE] = ACTIONS(1350), - [anon_sym_LT_LT_DASH] = ACTIONS(1350), - [anon_sym_LT_LT_LT] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1350), - [anon_sym_QMARK] = ACTIONS(1350), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1350), - [aux_sym_concatenation_token1] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [sym__special_character] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym_raw_string] = ACTIONS(1350), - [sym_ansi_c_string] = ACTIONS(1350), - [aux_sym_number_token1] = ACTIONS(1350), - [aux_sym_number_token2] = ACTIONS(1350), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1350), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1350), - [anon_sym_BQUOTE] = ACTIONS(1350), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1350), - [anon_sym_LT_LPAREN] = ACTIONS(1350), - [anon_sym_GT_LPAREN] = ACTIONS(1350), + [374] = { + [sym_word] = ACTIONS(1268), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym_EQ] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_EQ] = ACTIONS(1268), + [anon_sym_DASH_EQ] = ACTIONS(1268), + [anon_sym_STAR_EQ] = ACTIONS(1268), + [anon_sym_SLASH_EQ] = ACTIONS(1268), + [anon_sym_PERCENT_EQ] = ACTIONS(1268), + [anon_sym_LT_LT_EQ] = ACTIONS(1268), + [anon_sym_GT_GT_EQ] = ACTIONS(1268), + [anon_sym_AMP_EQ] = ACTIONS(1268), + [anon_sym_CARET_EQ] = ACTIONS(1268), + [anon_sym_PIPE_EQ] = ACTIONS(1268), + [anon_sym_EQ_EQ] = ACTIONS(1268), + [anon_sym_BANG_EQ] = ACTIONS(1268), + [anon_sym_LT_EQ] = ACTIONS(1268), + [anon_sym_GT_EQ] = ACTIONS(1268), + [anon_sym_AMP_AMP] = ACTIONS(1268), + [anon_sym_PIPE_PIPE] = ACTIONS(1268), + [anon_sym_LT_LT] = ACTIONS(1268), + [anon_sym_GT_GT] = ACTIONS(1268), + [anon_sym_PLUS] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_SLASH] = ACTIONS(1268), + [anon_sym_PERCENT] = ACTIONS(1268), + [anon_sym_STAR_STAR] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(1268), + [anon_sym_GT] = ACTIONS(1268), + [anon_sym_RPAREN] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_SEMI_SEMI] = ACTIONS(1268), + [anon_sym_PIPE_AMP] = ACTIONS(1268), + [anon_sym_EQ_TILDE] = ACTIONS(1268), + [anon_sym_AMP_GT] = ACTIONS(1268), + [anon_sym_AMP_GT_GT] = ACTIONS(1268), + [anon_sym_LT_AMP] = ACTIONS(1268), + [anon_sym_GT_AMP] = ACTIONS(1268), + [anon_sym_GT_PIPE] = ACTIONS(1268), + [anon_sym_LT_LT_DASH] = ACTIONS(1268), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_LT_LT_LT] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_CARET] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1268), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1268), + [aux_sym_concatenation_token1] = ACTIONS(1268), + [anon_sym_DOLLAR] = ACTIONS(1268), + [sym__special_character] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym_raw_string] = ACTIONS(1268), + [sym_ansi_c_string] = ACTIONS(1268), + [aux_sym_number_token1] = ACTIONS(1268), + [aux_sym_number_token2] = ACTIONS(1268), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1268), + [anon_sym_BQUOTE] = ACTIONS(1268), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1268), + [anon_sym_LT_LPAREN] = ACTIONS(1268), + [anon_sym_GT_LPAREN] = ACTIONS(1268), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1350), - [sym_file_descriptor] = ACTIONS(1352), - [sym__concat] = ACTIONS(1352), - [sym__bare_dollar] = ACTIONS(1352), - [sym__brace_start] = ACTIONS(1352), + [sym_test_operator] = ACTIONS(1268), + [sym_file_descriptor] = ACTIONS(1270), + [sym__concat] = ACTIONS(1270), + [sym__bare_dollar] = ACTIONS(1270), + [sym__brace_start] = ACTIONS(1270), }, - [383] = { - [sym_word] = ACTIONS(1354), - [anon_sym_LF] = ACTIONS(1354), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PLUS_EQ] = ACTIONS(1354), - [anon_sym_DASH_EQ] = ACTIONS(1354), - [anon_sym_STAR_EQ] = ACTIONS(1354), - [anon_sym_SLASH_EQ] = ACTIONS(1354), - [anon_sym_PERCENT_EQ] = ACTIONS(1354), - [anon_sym_LT_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_GT_EQ] = ACTIONS(1354), - [anon_sym_AMP_EQ] = ACTIONS(1354), - [anon_sym_CARET_EQ] = ACTIONS(1354), - [anon_sym_PIPE_EQ] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_AMP_AMP] = ACTIONS(1354), - [anon_sym_PIPE_PIPE] = ACTIONS(1354), - [anon_sym_LT_LT] = ACTIONS(1354), - [anon_sym_GT_GT] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_PERCENT] = ACTIONS(1354), - [anon_sym_STAR_STAR] = ACTIONS(1354), - [anon_sym_LT] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_RPAREN] = ACTIONS(1354), - [anon_sym_PIPE] = ACTIONS(1354), - [anon_sym_SEMI_SEMI] = ACTIONS(1354), - [anon_sym_PIPE_AMP] = ACTIONS(1354), - [anon_sym_EQ_TILDE] = ACTIONS(1354), - [anon_sym_AMP_GT] = ACTIONS(1354), - [anon_sym_AMP_GT_GT] = ACTIONS(1354), - [anon_sym_LT_AMP] = ACTIONS(1354), - [anon_sym_GT_AMP] = ACTIONS(1354), - [anon_sym_GT_PIPE] = ACTIONS(1354), - [anon_sym_LT_LT_DASH] = ACTIONS(1354), - [anon_sym_LT_LT_LT] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_CARET] = ACTIONS(1354), - [anon_sym_QMARK] = ACTIONS(1354), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1354), - [aux_sym_concatenation_token1] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1354), - [sym__special_character] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym_raw_string] = ACTIONS(1354), - [sym_ansi_c_string] = ACTIONS(1354), - [aux_sym_number_token1] = ACTIONS(1354), - [aux_sym_number_token2] = ACTIONS(1354), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1354), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1354), - [anon_sym_BQUOTE] = ACTIONS(1354), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1354), - [anon_sym_LT_LPAREN] = ACTIONS(1354), - [anon_sym_GT_LPAREN] = ACTIONS(1354), + [375] = { + [sym_word] = ACTIONS(1314), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_EQ] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [anon_sym_PLUS_EQ] = ACTIONS(1314), + [anon_sym_DASH_EQ] = ACTIONS(1314), + [anon_sym_STAR_EQ] = ACTIONS(1314), + [anon_sym_SLASH_EQ] = ACTIONS(1314), + [anon_sym_PERCENT_EQ] = ACTIONS(1314), + [anon_sym_LT_LT_EQ] = ACTIONS(1314), + [anon_sym_GT_GT_EQ] = ACTIONS(1314), + [anon_sym_AMP_EQ] = ACTIONS(1314), + [anon_sym_CARET_EQ] = ACTIONS(1314), + [anon_sym_PIPE_EQ] = ACTIONS(1314), + [anon_sym_EQ_EQ] = ACTIONS(1314), + [anon_sym_BANG_EQ] = ACTIONS(1314), + [anon_sym_LT_EQ] = ACTIONS(1314), + [anon_sym_GT_EQ] = ACTIONS(1314), + [anon_sym_AMP_AMP] = ACTIONS(1314), + [anon_sym_PIPE_PIPE] = ACTIONS(1314), + [anon_sym_LT_LT] = ACTIONS(1314), + [anon_sym_GT_GT] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_SLASH] = ACTIONS(1314), + [anon_sym_PERCENT] = ACTIONS(1314), + [anon_sym_STAR_STAR] = ACTIONS(1314), + [anon_sym_LT] = ACTIONS(1314), + [anon_sym_GT] = ACTIONS(1314), + [anon_sym_RPAREN] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_SEMI_SEMI] = ACTIONS(1314), + [anon_sym_PIPE_AMP] = ACTIONS(1314), + [anon_sym_EQ_TILDE] = ACTIONS(1314), + [anon_sym_AMP_GT] = ACTIONS(1314), + [anon_sym_AMP_GT_GT] = ACTIONS(1314), + [anon_sym_LT_AMP] = ACTIONS(1314), + [anon_sym_GT_AMP] = ACTIONS(1314), + [anon_sym_GT_PIPE] = ACTIONS(1314), + [anon_sym_LT_LT_DASH] = ACTIONS(1314), + [anon_sym_LF] = ACTIONS(1314), + [anon_sym_LT_LT_LT] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_CARET] = ACTIONS(1314), + [anon_sym_QMARK] = ACTIONS(1314), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1314), + [aux_sym_concatenation_token1] = ACTIONS(1314), + [anon_sym_DOLLAR] = ACTIONS(1314), + [sym__special_character] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1314), + [sym_raw_string] = ACTIONS(1314), + [sym_ansi_c_string] = ACTIONS(1314), + [aux_sym_number_token1] = ACTIONS(1314), + [aux_sym_number_token2] = ACTIONS(1314), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1314), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1314), + [anon_sym_BQUOTE] = ACTIONS(1314), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1314), + [anon_sym_LT_LPAREN] = ACTIONS(1314), + [anon_sym_GT_LPAREN] = ACTIONS(1314), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1354), - [sym_file_descriptor] = ACTIONS(1356), - [sym__concat] = ACTIONS(1356), - [sym__bare_dollar] = ACTIONS(1356), - [sym__brace_start] = ACTIONS(1356), + [sym_test_operator] = ACTIONS(1314), + [sym_file_descriptor] = ACTIONS(1316), + [sym__concat] = ACTIONS(1316), + [sym__bare_dollar] = ACTIONS(1316), + [sym__brace_start] = ACTIONS(1316), }, - [384] = { - [sym_word] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_EQ] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_EQ] = ACTIONS(1350), - [anon_sym_DASH_EQ] = ACTIONS(1350), - [anon_sym_STAR_EQ] = ACTIONS(1350), - [anon_sym_SLASH_EQ] = ACTIONS(1350), - [anon_sym_PERCENT_EQ] = ACTIONS(1350), - [anon_sym_LT_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_GT_EQ] = ACTIONS(1350), - [anon_sym_AMP_EQ] = ACTIONS(1350), - [anon_sym_CARET_EQ] = ACTIONS(1350), - [anon_sym_PIPE_EQ] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_AMP_AMP] = ACTIONS(1350), - [anon_sym_PIPE_PIPE] = ACTIONS(1350), - [anon_sym_LT_LT] = ACTIONS(1350), - [anon_sym_GT_GT] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_PERCENT] = ACTIONS(1350), - [anon_sym_STAR_STAR] = ACTIONS(1350), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_RPAREN] = ACTIONS(1350), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_SEMI_SEMI] = ACTIONS(1350), - [anon_sym_PIPE_AMP] = ACTIONS(1350), - [anon_sym_EQ_TILDE] = ACTIONS(1350), - [anon_sym_AMP_GT] = ACTIONS(1350), - [anon_sym_AMP_GT_GT] = ACTIONS(1350), - [anon_sym_LT_AMP] = ACTIONS(1350), - [anon_sym_GT_AMP] = ACTIONS(1350), - [anon_sym_GT_PIPE] = ACTIONS(1350), - [anon_sym_LT_LT_DASH] = ACTIONS(1350), - [anon_sym_LT_LT_LT] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1350), - [anon_sym_QMARK] = ACTIONS(1350), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1350), - [aux_sym_concatenation_token1] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), + [376] = { + [sym_word] = ACTIONS(1318), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_PLUS_EQ] = ACTIONS(1318), + [anon_sym_DASH_EQ] = ACTIONS(1318), + [anon_sym_STAR_EQ] = ACTIONS(1318), + [anon_sym_SLASH_EQ] = ACTIONS(1318), + [anon_sym_PERCENT_EQ] = ACTIONS(1318), + [anon_sym_LT_LT_EQ] = ACTIONS(1318), + [anon_sym_GT_GT_EQ] = ACTIONS(1318), + [anon_sym_AMP_EQ] = ACTIONS(1318), + [anon_sym_CARET_EQ] = ACTIONS(1318), + [anon_sym_PIPE_EQ] = ACTIONS(1318), + [anon_sym_EQ_EQ] = ACTIONS(1318), + [anon_sym_BANG_EQ] = ACTIONS(1318), + [anon_sym_LT_EQ] = ACTIONS(1318), + [anon_sym_GT_EQ] = ACTIONS(1318), + [anon_sym_AMP_AMP] = ACTIONS(1318), + [anon_sym_PIPE_PIPE] = ACTIONS(1318), + [anon_sym_LT_LT] = ACTIONS(1318), + [anon_sym_GT_GT] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_SLASH] = ACTIONS(1318), + [anon_sym_PERCENT] = ACTIONS(1318), + [anon_sym_STAR_STAR] = ACTIONS(1318), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_GT] = ACTIONS(1318), + [anon_sym_RPAREN] = ACTIONS(1318), + [anon_sym_PIPE] = ACTIONS(1318), + [anon_sym_SEMI_SEMI] = ACTIONS(1318), + [anon_sym_PIPE_AMP] = ACTIONS(1318), + [anon_sym_EQ_TILDE] = ACTIONS(1318), + [anon_sym_AMP_GT] = ACTIONS(1318), + [anon_sym_AMP_GT_GT] = ACTIONS(1318), + [anon_sym_LT_AMP] = ACTIONS(1318), + [anon_sym_GT_AMP] = ACTIONS(1318), + [anon_sym_GT_PIPE] = ACTIONS(1318), + [anon_sym_LT_LT_DASH] = ACTIONS(1318), + [anon_sym_LF] = ACTIONS(1318), + [anon_sym_LT_LT_LT] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_CARET] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(1318), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1318), + [aux_sym_concatenation_token1] = ACTIONS(1318), + [anon_sym_DOLLAR] = ACTIONS(1318), + [sym__special_character] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [sym_raw_string] = ACTIONS(1318), + [sym_ansi_c_string] = ACTIONS(1318), + [aux_sym_number_token1] = ACTIONS(1318), + [aux_sym_number_token2] = ACTIONS(1318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1318), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1318), + [anon_sym_BQUOTE] = ACTIONS(1318), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1318), + [anon_sym_LT_LPAREN] = ACTIONS(1318), + [anon_sym_GT_LPAREN] = ACTIONS(1318), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1318), + [sym_file_descriptor] = ACTIONS(1320), + [sym__concat] = ACTIONS(1320), + [sym__bare_dollar] = ACTIONS(1320), + [sym__brace_start] = ACTIONS(1320), + }, + [377] = { + [aux_sym__literal_repeat1] = STATE(395), + [sym_word] = ACTIONS(145), + [anon_sym_LPAREN_LPAREN] = ACTIONS(145), + [anon_sym_RPAREN_RPAREN] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_DASH_DASH] = ACTIONS(143), + [anon_sym_PLUS_EQ] = ACTIONS(143), + [anon_sym_DASH_EQ] = ACTIONS(143), + [anon_sym_STAR_EQ] = ACTIONS(143), + [anon_sym_SLASH_EQ] = ACTIONS(143), + [anon_sym_PERCENT_EQ] = ACTIONS(143), + [anon_sym_LT_LT_EQ] = ACTIONS(143), + [anon_sym_GT_GT_EQ] = ACTIONS(143), + [anon_sym_AMP_EQ] = ACTIONS(143), + [anon_sym_CARET_EQ] = ACTIONS(143), + [anon_sym_PIPE_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_AMP_AMP] = ACTIONS(147), + [anon_sym_PIPE_PIPE] = ACTIONS(147), + [anon_sym_LT_LT] = ACTIONS(147), + [anon_sym_GT_GT] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_STAR_STAR] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_SEMI_SEMI] = ACTIONS(145), + [anon_sym_PIPE_AMP] = ACTIONS(145), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_AMP_GT] = ACTIONS(145), + [anon_sym_AMP_GT_GT] = ACTIONS(145), + [anon_sym_LT_AMP] = ACTIONS(145), + [anon_sym_GT_AMP] = ACTIONS(145), + [anon_sym_GT_PIPE] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [anon_sym_LF] = ACTIONS(145), + [anon_sym_LT_LT_LT] = ACTIONS(145), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(145), + [anon_sym_DOLLAR] = ACTIONS(145), [sym__special_character] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym_raw_string] = ACTIONS(1350), - [sym_ansi_c_string] = ACTIONS(1350), - [aux_sym_number_token1] = ACTIONS(1350), - [aux_sym_number_token2] = ACTIONS(1350), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1350), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1350), - [anon_sym_BQUOTE] = ACTIONS(1350), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1350), - [anon_sym_LT_LPAREN] = ACTIONS(1350), - [anon_sym_GT_LPAREN] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_raw_string] = ACTIONS(145), + [sym_ansi_c_string] = ACTIONS(145), + [aux_sym_number_token1] = ACTIONS(145), + [aux_sym_number_token2] = ACTIONS(145), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(145), + [anon_sym_BQUOTE] = ACTIONS(145), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(145), + [anon_sym_LT_LPAREN] = ACTIONS(145), + [anon_sym_GT_LPAREN] = ACTIONS(145), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1350), - [sym_file_descriptor] = ACTIONS(1352), - [sym__concat] = ACTIONS(1352), - [sym__bare_dollar] = ACTIONS(1352), - [sym__brace_start] = ACTIONS(1352), + [sym_test_operator] = ACTIONS(147), + [sym_file_descriptor] = ACTIONS(178), + [sym__bare_dollar] = ACTIONS(178), + [sym__brace_start] = ACTIONS(178), }, - [385] = { - [aux_sym__literal_repeat1] = STATE(385), - [sym_word] = ACTIONS(1358), - [anon_sym_LF] = ACTIONS(1358), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_EQ] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_PLUS_EQ] = ACTIONS(1358), - [anon_sym_DASH_EQ] = ACTIONS(1358), - [anon_sym_STAR_EQ] = ACTIONS(1358), - [anon_sym_SLASH_EQ] = ACTIONS(1358), - [anon_sym_PERCENT_EQ] = ACTIONS(1358), - [anon_sym_LT_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_GT_EQ] = ACTIONS(1358), - [anon_sym_AMP_EQ] = ACTIONS(1358), - [anon_sym_CARET_EQ] = ACTIONS(1358), - [anon_sym_PIPE_EQ] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_AMP_AMP] = ACTIONS(1358), - [anon_sym_PIPE_PIPE] = ACTIONS(1358), - [anon_sym_LT_LT] = ACTIONS(1358), - [anon_sym_GT_GT] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_SLASH] = ACTIONS(1358), - [anon_sym_PERCENT] = ACTIONS(1358), - [anon_sym_STAR_STAR] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_RPAREN] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_SEMI_SEMI] = ACTIONS(1358), - [anon_sym_PIPE_AMP] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1358), - [anon_sym_AMP_GT] = ACTIONS(1358), - [anon_sym_AMP_GT_GT] = ACTIONS(1358), - [anon_sym_LT_AMP] = ACTIONS(1358), - [anon_sym_GT_AMP] = ACTIONS(1358), - [anon_sym_GT_PIPE] = ACTIONS(1358), - [anon_sym_LT_LT_DASH] = ACTIONS(1358), - [anon_sym_LT_LT_LT] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1358), - [sym__special_character] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym_raw_string] = ACTIONS(1358), - [sym_ansi_c_string] = ACTIONS(1358), - [aux_sym_number_token1] = ACTIONS(1358), - [aux_sym_number_token2] = ACTIONS(1358), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), - [anon_sym_BQUOTE] = ACTIONS(1358), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1358), - [anon_sym_LT_LPAREN] = ACTIONS(1358), - [anon_sym_GT_LPAREN] = ACTIONS(1358), + [378] = { + [sym_word] = ACTIONS(1346), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_EQ] = ACTIONS(1346), + [anon_sym_DASH_EQ] = ACTIONS(1346), + [anon_sym_STAR_EQ] = ACTIONS(1346), + [anon_sym_SLASH_EQ] = ACTIONS(1346), + [anon_sym_PERCENT_EQ] = ACTIONS(1346), + [anon_sym_LT_LT_EQ] = ACTIONS(1346), + [anon_sym_GT_GT_EQ] = ACTIONS(1346), + [anon_sym_AMP_EQ] = ACTIONS(1346), + [anon_sym_CARET_EQ] = ACTIONS(1346), + [anon_sym_PIPE_EQ] = ACTIONS(1346), + [anon_sym_EQ_EQ] = ACTIONS(1346), + [anon_sym_BANG_EQ] = ACTIONS(1346), + [anon_sym_LT_EQ] = ACTIONS(1346), + [anon_sym_GT_EQ] = ACTIONS(1346), + [anon_sym_AMP_AMP] = ACTIONS(1346), + [anon_sym_PIPE_PIPE] = ACTIONS(1346), + [anon_sym_LT_LT] = ACTIONS(1346), + [anon_sym_GT_GT] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym_PERCENT] = ACTIONS(1346), + [anon_sym_STAR_STAR] = ACTIONS(1346), + [anon_sym_LT] = ACTIONS(1346), + [anon_sym_GT] = ACTIONS(1346), + [anon_sym_RPAREN] = ACTIONS(1346), + [anon_sym_PIPE] = ACTIONS(1346), + [anon_sym_SEMI_SEMI] = ACTIONS(1346), + [anon_sym_PIPE_AMP] = ACTIONS(1346), + [anon_sym_EQ_TILDE] = ACTIONS(1346), + [anon_sym_AMP_GT] = ACTIONS(1346), + [anon_sym_AMP_GT_GT] = ACTIONS(1346), + [anon_sym_LT_AMP] = ACTIONS(1346), + [anon_sym_GT_AMP] = ACTIONS(1346), + [anon_sym_GT_PIPE] = ACTIONS(1346), + [anon_sym_LT_LT_DASH] = ACTIONS(1346), + [anon_sym_LF] = ACTIONS(1346), + [anon_sym_LT_LT_LT] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_CARET] = ACTIONS(1346), + [anon_sym_QMARK] = ACTIONS(1346), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1346), + [aux_sym_concatenation_token1] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1346), + [sym__special_character] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_raw_string] = ACTIONS(1346), + [sym_ansi_c_string] = ACTIONS(1346), + [aux_sym_number_token1] = ACTIONS(1346), + [aux_sym_number_token2] = ACTIONS(1346), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1346), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), + [anon_sym_BQUOTE] = ACTIONS(1346), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1346), + [anon_sym_LT_LPAREN] = ACTIONS(1346), + [anon_sym_GT_LPAREN] = ACTIONS(1346), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1358), - [sym_file_descriptor] = ACTIONS(1363), - [sym__bare_dollar] = ACTIONS(1363), - [sym__brace_start] = ACTIONS(1363), + [sym_test_operator] = ACTIONS(1346), + [sym_file_descriptor] = ACTIONS(1348), + [sym__concat] = ACTIONS(1348), + [sym__bare_dollar] = ACTIONS(1348), + [sym__brace_start] = ACTIONS(1348), }, - [386] = { - [sym_word] = ACTIONS(1324), - [anon_sym_LF] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_EQ] = ACTIONS(1324), - [anon_sym_DASH_EQ] = ACTIONS(1324), - [anon_sym_STAR_EQ] = ACTIONS(1324), - [anon_sym_SLASH_EQ] = ACTIONS(1324), - [anon_sym_PERCENT_EQ] = ACTIONS(1324), - [anon_sym_LT_LT_EQ] = ACTIONS(1324), - [anon_sym_GT_GT_EQ] = ACTIONS(1324), - [anon_sym_AMP_EQ] = ACTIONS(1324), - [anon_sym_CARET_EQ] = ACTIONS(1324), - [anon_sym_PIPE_EQ] = ACTIONS(1324), - [anon_sym_EQ_EQ] = ACTIONS(1324), - [anon_sym_BANG_EQ] = ACTIONS(1324), - [anon_sym_LT_EQ] = ACTIONS(1324), - [anon_sym_GT_EQ] = ACTIONS(1324), - [anon_sym_AMP_AMP] = ACTIONS(1324), - [anon_sym_PIPE_PIPE] = ACTIONS(1324), - [anon_sym_LT_LT] = ACTIONS(1324), - [anon_sym_GT_GT] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_SLASH] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_STAR_STAR] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_RPAREN] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_SEMI_SEMI] = ACTIONS(1324), - [anon_sym_PIPE_AMP] = ACTIONS(1324), - [anon_sym_EQ_TILDE] = ACTIONS(1324), - [anon_sym_AMP_GT] = ACTIONS(1324), - [anon_sym_AMP_GT_GT] = ACTIONS(1324), - [anon_sym_LT_AMP] = ACTIONS(1324), - [anon_sym_GT_AMP] = ACTIONS(1324), - [anon_sym_GT_PIPE] = ACTIONS(1324), - [anon_sym_LT_LT_DASH] = ACTIONS(1324), - [anon_sym_LT_LT_LT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1324), - [aux_sym_concatenation_token1] = ACTIONS(1324), - [anon_sym_DOLLAR] = ACTIONS(1324), - [sym__special_character] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_raw_string] = ACTIONS(1324), - [sym_ansi_c_string] = ACTIONS(1324), - [aux_sym_number_token1] = ACTIONS(1324), - [aux_sym_number_token2] = ACTIONS(1324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1324), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1324), - [anon_sym_BQUOTE] = ACTIONS(1324), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1324), - [anon_sym_LT_LPAREN] = ACTIONS(1324), - [anon_sym_GT_LPAREN] = ACTIONS(1324), + [379] = { + [aux_sym__literal_repeat1] = STATE(395), + [sym_word] = ACTIONS(145), + [anon_sym_LPAREN_LPAREN] = ACTIONS(145), + [anon_sym_RPAREN_RPAREN] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_DASH_DASH] = ACTIONS(143), + [anon_sym_PLUS_EQ] = ACTIONS(143), + [anon_sym_DASH_EQ] = ACTIONS(143), + [anon_sym_STAR_EQ] = ACTIONS(143), + [anon_sym_SLASH_EQ] = ACTIONS(143), + [anon_sym_PERCENT_EQ] = ACTIONS(143), + [anon_sym_LT_LT_EQ] = ACTIONS(143), + [anon_sym_GT_GT_EQ] = ACTIONS(143), + [anon_sym_AMP_EQ] = ACTIONS(143), + [anon_sym_CARET_EQ] = ACTIONS(143), + [anon_sym_PIPE_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_AMP_AMP] = ACTIONS(147), + [anon_sym_PIPE_PIPE] = ACTIONS(147), + [anon_sym_LT_LT] = ACTIONS(147), + [anon_sym_GT_GT] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_STAR_STAR] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_SEMI_SEMI] = ACTIONS(145), + [anon_sym_PIPE_AMP] = ACTIONS(145), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_AMP_GT] = ACTIONS(145), + [anon_sym_AMP_GT_GT] = ACTIONS(145), + [anon_sym_LT_AMP] = ACTIONS(145), + [anon_sym_GT_AMP] = ACTIONS(145), + [anon_sym_GT_PIPE] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [anon_sym_LF] = ACTIONS(145), + [anon_sym_LT_LT_LT] = ACTIONS(145), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(145), + [anon_sym_DOLLAR] = ACTIONS(145), + [sym__special_character] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_raw_string] = ACTIONS(145), + [sym_ansi_c_string] = ACTIONS(145), + [aux_sym_number_token1] = ACTIONS(145), + [aux_sym_number_token2] = ACTIONS(145), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(145), + [anon_sym_BQUOTE] = ACTIONS(145), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(145), + [anon_sym_LT_LPAREN] = ACTIONS(145), + [anon_sym_GT_LPAREN] = ACTIONS(145), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1324), - [sym_file_descriptor] = ACTIONS(1326), - [sym__concat] = ACTIONS(1326), - [sym__bare_dollar] = ACTIONS(1326), - [sym__brace_start] = ACTIONS(1326), + [sym_test_operator] = ACTIONS(147), + [sym_file_descriptor] = ACTIONS(178), + [sym__bare_dollar] = ACTIONS(178), + [sym__brace_start] = ACTIONS(178), }, - [387] = { - [sym_word] = ACTIONS(1320), - [anon_sym_LF] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_EQ] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_EQ] = ACTIONS(1320), - [anon_sym_DASH_EQ] = ACTIONS(1320), - [anon_sym_STAR_EQ] = ACTIONS(1320), - [anon_sym_SLASH_EQ] = ACTIONS(1320), - [anon_sym_PERCENT_EQ] = ACTIONS(1320), - [anon_sym_LT_LT_EQ] = ACTIONS(1320), - [anon_sym_GT_GT_EQ] = ACTIONS(1320), - [anon_sym_AMP_EQ] = ACTIONS(1320), - [anon_sym_CARET_EQ] = ACTIONS(1320), - [anon_sym_PIPE_EQ] = ACTIONS(1320), - [anon_sym_EQ_EQ] = ACTIONS(1320), - [anon_sym_BANG_EQ] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1320), - [anon_sym_AMP_AMP] = ACTIONS(1320), - [anon_sym_PIPE_PIPE] = ACTIONS(1320), - [anon_sym_LT_LT] = ACTIONS(1320), - [anon_sym_GT_GT] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_SLASH] = ACTIONS(1320), - [anon_sym_PERCENT] = ACTIONS(1320), - [anon_sym_STAR_STAR] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_RPAREN] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1320), - [anon_sym_SEMI_SEMI] = ACTIONS(1320), - [anon_sym_PIPE_AMP] = ACTIONS(1320), - [anon_sym_EQ_TILDE] = ACTIONS(1320), - [anon_sym_AMP_GT] = ACTIONS(1320), - [anon_sym_AMP_GT_GT] = ACTIONS(1320), - [anon_sym_LT_AMP] = ACTIONS(1320), - [anon_sym_GT_AMP] = ACTIONS(1320), - [anon_sym_GT_PIPE] = ACTIONS(1320), - [anon_sym_LT_LT_DASH] = ACTIONS(1320), - [anon_sym_LT_LT_LT] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_CARET] = ACTIONS(1320), - [anon_sym_QMARK] = ACTIONS(1320), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1320), - [aux_sym_concatenation_token1] = ACTIONS(1320), - [anon_sym_DOLLAR] = ACTIONS(1320), - [sym__special_character] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_raw_string] = ACTIONS(1320), - [sym_ansi_c_string] = ACTIONS(1320), - [aux_sym_number_token1] = ACTIONS(1320), - [aux_sym_number_token2] = ACTIONS(1320), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1320), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1320), - [anon_sym_BQUOTE] = ACTIONS(1320), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1320), - [anon_sym_LT_LPAREN] = ACTIONS(1320), - [anon_sym_GT_LPAREN] = ACTIONS(1320), + [380] = { + [sym_word] = ACTIONS(1342), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_EQ] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_EQ] = ACTIONS(1342), + [anon_sym_DASH_EQ] = ACTIONS(1342), + [anon_sym_STAR_EQ] = ACTIONS(1342), + [anon_sym_SLASH_EQ] = ACTIONS(1342), + [anon_sym_PERCENT_EQ] = ACTIONS(1342), + [anon_sym_LT_LT_EQ] = ACTIONS(1342), + [anon_sym_GT_GT_EQ] = ACTIONS(1342), + [anon_sym_AMP_EQ] = ACTIONS(1342), + [anon_sym_CARET_EQ] = ACTIONS(1342), + [anon_sym_PIPE_EQ] = ACTIONS(1342), + [anon_sym_EQ_EQ] = ACTIONS(1342), + [anon_sym_BANG_EQ] = ACTIONS(1342), + [anon_sym_LT_EQ] = ACTIONS(1342), + [anon_sym_GT_EQ] = ACTIONS(1342), + [anon_sym_AMP_AMP] = ACTIONS(1342), + [anon_sym_PIPE_PIPE] = ACTIONS(1342), + [anon_sym_LT_LT] = ACTIONS(1342), + [anon_sym_GT_GT] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_STAR_STAR] = ACTIONS(1342), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_GT] = ACTIONS(1342), + [anon_sym_RPAREN] = ACTIONS(1342), + [anon_sym_PIPE] = ACTIONS(1342), + [anon_sym_SEMI_SEMI] = ACTIONS(1342), + [anon_sym_PIPE_AMP] = ACTIONS(1342), + [anon_sym_EQ_TILDE] = ACTIONS(1342), + [anon_sym_AMP_GT] = ACTIONS(1342), + [anon_sym_AMP_GT_GT] = ACTIONS(1342), + [anon_sym_LT_AMP] = ACTIONS(1342), + [anon_sym_GT_AMP] = ACTIONS(1342), + [anon_sym_GT_PIPE] = ACTIONS(1342), + [anon_sym_LT_LT_DASH] = ACTIONS(1342), + [anon_sym_LF] = ACTIONS(1342), + [anon_sym_LT_LT_LT] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_CARET] = ACTIONS(1342), + [anon_sym_QMARK] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1342), + [aux_sym_concatenation_token1] = ACTIONS(1342), + [anon_sym_DOLLAR] = ACTIONS(1342), + [sym__special_character] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_raw_string] = ACTIONS(1342), + [sym_ansi_c_string] = ACTIONS(1342), + [aux_sym_number_token1] = ACTIONS(1342), + [aux_sym_number_token2] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1342), + [anon_sym_BQUOTE] = ACTIONS(1342), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1342), + [anon_sym_LT_LPAREN] = ACTIONS(1342), + [anon_sym_GT_LPAREN] = ACTIONS(1342), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1320), - [sym_file_descriptor] = ACTIONS(1322), - [sym__concat] = ACTIONS(1322), - [sym__bare_dollar] = ACTIONS(1322), - [sym__brace_start] = ACTIONS(1322), + [sym_test_operator] = ACTIONS(1342), + [sym_file_descriptor] = ACTIONS(1344), + [sym__concat] = ACTIONS(1344), + [sym__bare_dollar] = ACTIONS(1344), + [sym__brace_start] = ACTIONS(1344), }, - [388] = { - [sym_word] = ACTIONS(1298), - [anon_sym_LF] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_EQ] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_EQ] = ACTIONS(1298), - [anon_sym_DASH_EQ] = ACTIONS(1298), - [anon_sym_STAR_EQ] = ACTIONS(1298), - [anon_sym_SLASH_EQ] = ACTIONS(1298), - [anon_sym_PERCENT_EQ] = ACTIONS(1298), - [anon_sym_LT_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_GT_EQ] = ACTIONS(1298), - [anon_sym_AMP_EQ] = ACTIONS(1298), - [anon_sym_CARET_EQ] = ACTIONS(1298), - [anon_sym_PIPE_EQ] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_AMP_AMP] = ACTIONS(1298), - [anon_sym_PIPE_PIPE] = ACTIONS(1298), - [anon_sym_LT_LT] = ACTIONS(1298), - [anon_sym_GT_GT] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_PERCENT] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_SEMI_SEMI] = ACTIONS(1298), - [anon_sym_PIPE_AMP] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_AMP_GT] = ACTIONS(1298), - [anon_sym_AMP_GT_GT] = ACTIONS(1298), - [anon_sym_LT_AMP] = ACTIONS(1298), - [anon_sym_GT_AMP] = ACTIONS(1298), - [anon_sym_GT_PIPE] = ACTIONS(1298), - [anon_sym_LT_LT_DASH] = ACTIONS(1298), - [anon_sym_LT_LT_LT] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1298), - [anon_sym_QMARK] = ACTIONS(1298), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1298), - [aux_sym_concatenation_token1] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [sym__special_character] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_raw_string] = ACTIONS(1298), - [sym_ansi_c_string] = ACTIONS(1298), - [aux_sym_number_token1] = ACTIONS(1298), - [aux_sym_number_token2] = ACTIONS(1298), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1298), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1298), - [anon_sym_BQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1298), - [anon_sym_LT_LPAREN] = ACTIONS(1298), - [anon_sym_GT_LPAREN] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1298), - [sym_file_descriptor] = ACTIONS(1300), - [sym__concat] = ACTIONS(1300), - [sym__bare_dollar] = ACTIONS(1300), - [sym__brace_start] = ACTIONS(1300), - }, - [389] = { + [381] = { [sym_word] = ACTIONS(1284), - [anon_sym_LF] = ACTIONS(1284), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1284), [anon_sym_SEMI] = ACTIONS(1284), [anon_sym_EQ] = ACTIONS(1284), [anon_sym_PLUS_PLUS] = ACTIONS(1284), @@ -52878,6 +54049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_AMP] = ACTIONS(1284), [anon_sym_GT_PIPE] = ACTIONS(1284), [anon_sym_LT_LT_DASH] = ACTIONS(1284), + [anon_sym_LF] = ACTIONS(1284), [anon_sym_LT_LT_LT] = ACTIONS(1284), [anon_sym_AMP] = ACTIONS(1284), [anon_sym_CARET] = ACTIONS(1284), @@ -52904,79 +54076,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1286), [sym__brace_start] = ACTIONS(1286), }, - [390] = { - [sym_word] = ACTIONS(1284), - [anon_sym_LF] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_EQ] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_EQ] = ACTIONS(1284), - [anon_sym_DASH_EQ] = ACTIONS(1284), - [anon_sym_STAR_EQ] = ACTIONS(1284), - [anon_sym_SLASH_EQ] = ACTIONS(1284), - [anon_sym_PERCENT_EQ] = ACTIONS(1284), - [anon_sym_LT_LT_EQ] = ACTIONS(1284), - [anon_sym_GT_GT_EQ] = ACTIONS(1284), - [anon_sym_AMP_EQ] = ACTIONS(1284), - [anon_sym_CARET_EQ] = ACTIONS(1284), - [anon_sym_PIPE_EQ] = ACTIONS(1284), - [anon_sym_EQ_EQ] = ACTIONS(1284), - [anon_sym_BANG_EQ] = ACTIONS(1284), - [anon_sym_LT_EQ] = ACTIONS(1284), - [anon_sym_GT_EQ] = ACTIONS(1284), - [anon_sym_AMP_AMP] = ACTIONS(1284), - [anon_sym_PIPE_PIPE] = ACTIONS(1284), - [anon_sym_LT_LT] = ACTIONS(1284), - [anon_sym_GT_GT] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_SLASH] = ACTIONS(1284), - [anon_sym_PERCENT] = ACTIONS(1284), - [anon_sym_STAR_STAR] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1284), - [anon_sym_GT] = ACTIONS(1284), - [anon_sym_RPAREN] = ACTIONS(1284), - [anon_sym_PIPE] = ACTIONS(1284), - [anon_sym_SEMI_SEMI] = ACTIONS(1284), - [anon_sym_PIPE_AMP] = ACTIONS(1284), - [anon_sym_EQ_TILDE] = ACTIONS(1284), - [anon_sym_AMP_GT] = ACTIONS(1284), - [anon_sym_AMP_GT_GT] = ACTIONS(1284), - [anon_sym_LT_AMP] = ACTIONS(1284), - [anon_sym_GT_AMP] = ACTIONS(1284), - [anon_sym_GT_PIPE] = ACTIONS(1284), - [anon_sym_LT_LT_DASH] = ACTIONS(1284), - [anon_sym_LT_LT_LT] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_CARET] = ACTIONS(1284), - [anon_sym_QMARK] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1284), - [aux_sym_concatenation_token1] = ACTIONS(1284), - [anon_sym_DOLLAR] = ACTIONS(1284), - [sym__special_character] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [sym_raw_string] = ACTIONS(1284), - [sym_ansi_c_string] = ACTIONS(1284), - [aux_sym_number_token1] = ACTIONS(1284), - [aux_sym_number_token2] = ACTIONS(1284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1284), - [anon_sym_BQUOTE] = ACTIONS(1284), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1284), - [anon_sym_LT_LPAREN] = ACTIONS(1284), - [anon_sym_GT_LPAREN] = ACTIONS(1284), + [382] = { + [sym_word] = ACTIONS(1330), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym_EQ] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_EQ] = ACTIONS(1330), + [anon_sym_DASH_EQ] = ACTIONS(1330), + [anon_sym_STAR_EQ] = ACTIONS(1330), + [anon_sym_SLASH_EQ] = ACTIONS(1330), + [anon_sym_PERCENT_EQ] = ACTIONS(1330), + [anon_sym_LT_LT_EQ] = ACTIONS(1330), + [anon_sym_GT_GT_EQ] = ACTIONS(1330), + [anon_sym_AMP_EQ] = ACTIONS(1330), + [anon_sym_CARET_EQ] = ACTIONS(1330), + [anon_sym_PIPE_EQ] = ACTIONS(1330), + [anon_sym_EQ_EQ] = ACTIONS(1330), + [anon_sym_BANG_EQ] = ACTIONS(1330), + [anon_sym_LT_EQ] = ACTIONS(1330), + [anon_sym_GT_EQ] = ACTIONS(1330), + [anon_sym_AMP_AMP] = ACTIONS(1330), + [anon_sym_PIPE_PIPE] = ACTIONS(1330), + [anon_sym_LT_LT] = ACTIONS(1330), + [anon_sym_GT_GT] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_SLASH] = ACTIONS(1330), + [anon_sym_PERCENT] = ACTIONS(1330), + [anon_sym_STAR_STAR] = ACTIONS(1330), + [anon_sym_LT] = ACTIONS(1330), + [anon_sym_GT] = ACTIONS(1330), + [anon_sym_RPAREN] = ACTIONS(1330), + [anon_sym_PIPE] = ACTIONS(1330), + [anon_sym_SEMI_SEMI] = ACTIONS(1330), + [anon_sym_PIPE_AMP] = ACTIONS(1330), + [anon_sym_EQ_TILDE] = ACTIONS(1330), + [anon_sym_AMP_GT] = ACTIONS(1330), + [anon_sym_AMP_GT_GT] = ACTIONS(1330), + [anon_sym_LT_AMP] = ACTIONS(1330), + [anon_sym_GT_AMP] = ACTIONS(1330), + [anon_sym_GT_PIPE] = ACTIONS(1330), + [anon_sym_LT_LT_DASH] = ACTIONS(1330), + [anon_sym_LF] = ACTIONS(1330), + [anon_sym_LT_LT_LT] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_CARET] = ACTIONS(1330), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1330), + [aux_sym_concatenation_token1] = ACTIONS(1330), + [anon_sym_DOLLAR] = ACTIONS(1330), + [sym__special_character] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_raw_string] = ACTIONS(1330), + [sym_ansi_c_string] = ACTIONS(1330), + [aux_sym_number_token1] = ACTIONS(1330), + [aux_sym_number_token2] = ACTIONS(1330), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1330), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1330), + [anon_sym_BQUOTE] = ACTIONS(1330), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1330), + [anon_sym_LT_LPAREN] = ACTIONS(1330), + [anon_sym_GT_LPAREN] = ACTIONS(1330), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1284), - [sym_file_descriptor] = ACTIONS(1286), - [sym__concat] = ACTIONS(1286), - [sym__bare_dollar] = ACTIONS(1286), - [sym__brace_start] = ACTIONS(1286), + [sym_test_operator] = ACTIONS(1330), + [sym_file_descriptor] = ACTIONS(1332), + [sym__concat] = ACTIONS(1332), + [sym__bare_dollar] = ACTIONS(1332), + [sym__brace_start] = ACTIONS(1332), }, - [391] = { + [383] = { + [sym_word] = ACTIONS(1322), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_EQ] = ACTIONS(1322), + [anon_sym_DASH_EQ] = ACTIONS(1322), + [anon_sym_STAR_EQ] = ACTIONS(1322), + [anon_sym_SLASH_EQ] = ACTIONS(1322), + [anon_sym_PERCENT_EQ] = ACTIONS(1322), + [anon_sym_LT_LT_EQ] = ACTIONS(1322), + [anon_sym_GT_GT_EQ] = ACTIONS(1322), + [anon_sym_AMP_EQ] = ACTIONS(1322), + [anon_sym_CARET_EQ] = ACTIONS(1322), + [anon_sym_PIPE_EQ] = ACTIONS(1322), + [anon_sym_EQ_EQ] = ACTIONS(1322), + [anon_sym_BANG_EQ] = ACTIONS(1322), + [anon_sym_LT_EQ] = ACTIONS(1322), + [anon_sym_GT_EQ] = ACTIONS(1322), + [anon_sym_AMP_AMP] = ACTIONS(1322), + [anon_sym_PIPE_PIPE] = ACTIONS(1322), + [anon_sym_LT_LT] = ACTIONS(1322), + [anon_sym_GT_GT] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym_PERCENT] = ACTIONS(1322), + [anon_sym_STAR_STAR] = ACTIONS(1322), + [anon_sym_LT] = ACTIONS(1322), + [anon_sym_GT] = ACTIONS(1322), + [anon_sym_RPAREN] = ACTIONS(1322), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_SEMI_SEMI] = ACTIONS(1322), + [anon_sym_PIPE_AMP] = ACTIONS(1322), + [anon_sym_EQ_TILDE] = ACTIONS(1322), + [anon_sym_AMP_GT] = ACTIONS(1322), + [anon_sym_AMP_GT_GT] = ACTIONS(1322), + [anon_sym_LT_AMP] = ACTIONS(1322), + [anon_sym_GT_AMP] = ACTIONS(1322), + [anon_sym_GT_PIPE] = ACTIONS(1322), + [anon_sym_LT_LT_DASH] = ACTIONS(1322), + [anon_sym_LF] = ACTIONS(1322), + [anon_sym_LT_LT_LT] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_CARET] = ACTIONS(1322), + [anon_sym_QMARK] = ACTIONS(1322), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1322), + [aux_sym_concatenation_token1] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1322), + [sym__special_character] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_raw_string] = ACTIONS(1322), + [sym_ansi_c_string] = ACTIONS(1322), + [aux_sym_number_token1] = ACTIONS(1322), + [aux_sym_number_token2] = ACTIONS(1322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1322), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1322), + [anon_sym_BQUOTE] = ACTIONS(1322), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1322), + [anon_sym_LT_LPAREN] = ACTIONS(1322), + [anon_sym_GT_LPAREN] = ACTIONS(1322), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1322), + [sym_file_descriptor] = ACTIONS(1324), + [sym__concat] = ACTIONS(1324), + [sym__bare_dollar] = ACTIONS(1324), + [sym__brace_start] = ACTIONS(1324), + }, + [384] = { + [sym_word] = ACTIONS(1272), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym_EQ] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [anon_sym_DASH_DASH] = ACTIONS(1272), + [anon_sym_PLUS_EQ] = ACTIONS(1272), + [anon_sym_DASH_EQ] = ACTIONS(1272), + [anon_sym_STAR_EQ] = ACTIONS(1272), + [anon_sym_SLASH_EQ] = ACTIONS(1272), + [anon_sym_PERCENT_EQ] = ACTIONS(1272), + [anon_sym_LT_LT_EQ] = ACTIONS(1272), + [anon_sym_GT_GT_EQ] = ACTIONS(1272), + [anon_sym_AMP_EQ] = ACTIONS(1272), + [anon_sym_CARET_EQ] = ACTIONS(1272), + [anon_sym_PIPE_EQ] = ACTIONS(1272), + [anon_sym_EQ_EQ] = ACTIONS(1272), + [anon_sym_BANG_EQ] = ACTIONS(1272), + [anon_sym_LT_EQ] = ACTIONS(1272), + [anon_sym_GT_EQ] = ACTIONS(1272), + [anon_sym_AMP_AMP] = ACTIONS(1272), + [anon_sym_PIPE_PIPE] = ACTIONS(1272), + [anon_sym_LT_LT] = ACTIONS(1272), + [anon_sym_GT_GT] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(1272), + [anon_sym_PERCENT] = ACTIONS(1272), + [anon_sym_STAR_STAR] = ACTIONS(1272), + [anon_sym_LT] = ACTIONS(1272), + [anon_sym_GT] = ACTIONS(1272), + [anon_sym_RPAREN] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_SEMI_SEMI] = ACTIONS(1272), + [anon_sym_PIPE_AMP] = ACTIONS(1272), + [anon_sym_EQ_TILDE] = ACTIONS(1272), + [anon_sym_AMP_GT] = ACTIONS(1272), + [anon_sym_AMP_GT_GT] = ACTIONS(1272), + [anon_sym_LT_AMP] = ACTIONS(1272), + [anon_sym_GT_AMP] = ACTIONS(1272), + [anon_sym_GT_PIPE] = ACTIONS(1272), + [anon_sym_LT_LT_DASH] = ACTIONS(1272), + [anon_sym_LF] = ACTIONS(1272), + [anon_sym_LT_LT_LT] = ACTIONS(1272), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_CARET] = ACTIONS(1272), + [anon_sym_QMARK] = ACTIONS(1272), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1272), + [aux_sym_concatenation_token1] = ACTIONS(1272), + [anon_sym_DOLLAR] = ACTIONS(1272), + [sym__special_character] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym_raw_string] = ACTIONS(1272), + [sym_ansi_c_string] = ACTIONS(1272), + [aux_sym_number_token1] = ACTIONS(1272), + [aux_sym_number_token2] = ACTIONS(1272), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1272), + [anon_sym_BQUOTE] = ACTIONS(1272), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1272), + [anon_sym_LT_LPAREN] = ACTIONS(1272), + [anon_sym_GT_LPAREN] = ACTIONS(1272), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1272), + [sym_file_descriptor] = ACTIONS(1274), + [sym__concat] = ACTIONS(1274), + [sym__bare_dollar] = ACTIONS(1274), + [sym__brace_start] = ACTIONS(1274), + }, + [385] = { [sym_word] = ACTIONS(1334), - [anon_sym_LF] = ACTIONS(1334), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1334), [anon_sym_SEMI] = ACTIONS(1334), [anon_sym_EQ] = ACTIONS(1334), [anon_sym_PLUS_PLUS] = ACTIONS(1334), @@ -53018,6 +54333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_AMP] = ACTIONS(1334), [anon_sym_GT_PIPE] = ACTIONS(1334), [anon_sym_LT_LT_DASH] = ACTIONS(1334), + [anon_sym_LF] = ACTIONS(1334), [anon_sym_LT_LT_LT] = ACTIONS(1334), [anon_sym_AMP] = ACTIONS(1334), [anon_sym_CARET] = ACTIONS(1334), @@ -53044,79 +54360,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1336), [sym__brace_start] = ACTIONS(1336), }, - [392] = { - [aux_sym__literal_repeat1] = STATE(385), - [sym_word] = ACTIONS(195), - [anon_sym_LF] = ACTIONS(195), - [anon_sym_RPAREN_RPAREN] = ACTIONS(197), - [anon_sym_SEMI] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_PLUS_PLUS] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(197), - [anon_sym_PLUS_EQ] = ACTIONS(197), - [anon_sym_DASH_EQ] = ACTIONS(197), - [anon_sym_STAR_EQ] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(197), - [anon_sym_LT_LT_EQ] = ACTIONS(197), - [anon_sym_GT_GT_EQ] = ACTIONS(197), - [anon_sym_AMP_EQ] = ACTIONS(197), - [anon_sym_CARET_EQ] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(197), - [anon_sym_EQ_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(197), - [anon_sym_GT_EQ] = ACTIONS(197), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_LT_LT] = ACTIONS(199), - [anon_sym_GT_GT] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_STAR_STAR] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_RPAREN] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_SEMI_SEMI] = ACTIONS(195), - [anon_sym_PIPE_AMP] = ACTIONS(195), - [anon_sym_EQ_TILDE] = ACTIONS(199), - [anon_sym_AMP_GT] = ACTIONS(195), - [anon_sym_AMP_GT_GT] = ACTIONS(195), - [anon_sym_LT_AMP] = ACTIONS(195), - [anon_sym_GT_AMP] = ACTIONS(195), - [anon_sym_GT_PIPE] = ACTIONS(195), - [anon_sym_LT_LT_DASH] = ACTIONS(195), - [anon_sym_LT_LT_LT] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(197), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(195), - [sym__special_character] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(195), - [sym_raw_string] = ACTIONS(195), - [sym_ansi_c_string] = ACTIONS(195), - [aux_sym_number_token1] = ACTIONS(195), - [aux_sym_number_token2] = ACTIONS(195), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_BQUOTE] = ACTIONS(195), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(195), - [anon_sym_LT_LPAREN] = ACTIONS(195), - [anon_sym_GT_LPAREN] = ACTIONS(195), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(199), - [sym_file_descriptor] = ACTIONS(232), - [sym__bare_dollar] = ACTIONS(232), - [sym__brace_start] = ACTIONS(232), - }, - [393] = { + [386] = { [sym_word] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1338), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1338), [anon_sym_SEMI] = ACTIONS(1338), [anon_sym_EQ] = ACTIONS(1338), [anon_sym_PLUS_PLUS] = ACTIONS(1338), @@ -53158,6 +54404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_AMP] = ACTIONS(1338), [anon_sym_GT_PIPE] = ACTIONS(1338), [anon_sym_LT_LT_DASH] = ACTIONS(1338), + [anon_sym_LF] = ACTIONS(1338), [anon_sym_LT_LT_LT] = ACTIONS(1338), [anon_sym_AMP] = ACTIONS(1338), [anon_sym_CARET] = ACTIONS(1338), @@ -53184,499 +54431,435 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1340), [sym__brace_start] = ACTIONS(1340), }, - [394] = { - [sym_word] = ACTIONS(1316), - [anon_sym_LF] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_EQ] = ACTIONS(1316), - [anon_sym_DASH_EQ] = ACTIONS(1316), - [anon_sym_STAR_EQ] = ACTIONS(1316), - [anon_sym_SLASH_EQ] = ACTIONS(1316), - [anon_sym_PERCENT_EQ] = ACTIONS(1316), - [anon_sym_LT_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_GT_EQ] = ACTIONS(1316), - [anon_sym_AMP_EQ] = ACTIONS(1316), - [anon_sym_CARET_EQ] = ACTIONS(1316), - [anon_sym_PIPE_EQ] = ACTIONS(1316), - [anon_sym_EQ_EQ] = ACTIONS(1316), - [anon_sym_BANG_EQ] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_EQ] = ACTIONS(1316), - [anon_sym_AMP_AMP] = ACTIONS(1316), - [anon_sym_PIPE_PIPE] = ACTIONS(1316), - [anon_sym_LT_LT] = ACTIONS(1316), - [anon_sym_GT_GT] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_SLASH] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_STAR_STAR] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_RPAREN] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_SEMI_SEMI] = ACTIONS(1316), - [anon_sym_PIPE_AMP] = ACTIONS(1316), - [anon_sym_EQ_TILDE] = ACTIONS(1316), - [anon_sym_AMP_GT] = ACTIONS(1316), - [anon_sym_AMP_GT_GT] = ACTIONS(1316), - [anon_sym_LT_AMP] = ACTIONS(1316), - [anon_sym_GT_AMP] = ACTIONS(1316), - [anon_sym_GT_PIPE] = ACTIONS(1316), - [anon_sym_LT_LT_DASH] = ACTIONS(1316), - [anon_sym_LT_LT_LT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1316), - [aux_sym_concatenation_token1] = ACTIONS(1316), - [anon_sym_DOLLAR] = ACTIONS(1316), - [sym__special_character] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_raw_string] = ACTIONS(1316), - [sym_ansi_c_string] = ACTIONS(1316), - [aux_sym_number_token1] = ACTIONS(1316), - [aux_sym_number_token2] = ACTIONS(1316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1316), - [anon_sym_BQUOTE] = ACTIONS(1316), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1316), - [anon_sym_LT_LPAREN] = ACTIONS(1316), - [anon_sym_GT_LPAREN] = ACTIONS(1316), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1316), - [sym_file_descriptor] = ACTIONS(1318), - [sym__concat] = ACTIONS(1318), - [sym__bare_dollar] = ACTIONS(1318), - [sym__brace_start] = ACTIONS(1318), - }, - [395] = { - [aux_sym__literal_repeat1] = STATE(385), - [sym_word] = ACTIONS(195), - [anon_sym_LF] = ACTIONS(195), - [anon_sym_RPAREN_RPAREN] = ACTIONS(197), - [anon_sym_SEMI] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_PLUS_PLUS] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(197), - [anon_sym_PLUS_EQ] = ACTIONS(197), - [anon_sym_DASH_EQ] = ACTIONS(197), - [anon_sym_STAR_EQ] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(197), - [anon_sym_LT_LT_EQ] = ACTIONS(197), - [anon_sym_GT_GT_EQ] = ACTIONS(197), - [anon_sym_AMP_EQ] = ACTIONS(197), - [anon_sym_CARET_EQ] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(197), - [anon_sym_EQ_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(197), - [anon_sym_GT_EQ] = ACTIONS(197), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_LT_LT] = ACTIONS(199), - [anon_sym_GT_GT] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_STAR_STAR] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_RPAREN] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_SEMI_SEMI] = ACTIONS(195), - [anon_sym_PIPE_AMP] = ACTIONS(195), - [anon_sym_EQ_TILDE] = ACTIONS(199), - [anon_sym_AMP_GT] = ACTIONS(195), - [anon_sym_AMP_GT_GT] = ACTIONS(195), - [anon_sym_LT_AMP] = ACTIONS(195), - [anon_sym_GT_AMP] = ACTIONS(195), - [anon_sym_GT_PIPE] = ACTIONS(195), - [anon_sym_LT_LT_DASH] = ACTIONS(195), - [anon_sym_LT_LT_LT] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(197), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(195), - [sym__special_character] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(195), - [sym_raw_string] = ACTIONS(195), - [sym_ansi_c_string] = ACTIONS(195), - [aux_sym_number_token1] = ACTIONS(195), - [aux_sym_number_token2] = ACTIONS(195), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_BQUOTE] = ACTIONS(195), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(195), - [anon_sym_LT_LPAREN] = ACTIONS(195), - [anon_sym_GT_LPAREN] = ACTIONS(195), + [387] = { + [sym_word] = ACTIONS(1258), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_EQ] = ACTIONS(1258), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_PLUS_EQ] = ACTIONS(1258), + [anon_sym_DASH_EQ] = ACTIONS(1258), + [anon_sym_STAR_EQ] = ACTIONS(1258), + [anon_sym_SLASH_EQ] = ACTIONS(1258), + [anon_sym_PERCENT_EQ] = ACTIONS(1258), + [anon_sym_LT_LT_EQ] = ACTIONS(1258), + [anon_sym_GT_GT_EQ] = ACTIONS(1258), + [anon_sym_AMP_EQ] = ACTIONS(1258), + [anon_sym_CARET_EQ] = ACTIONS(1258), + [anon_sym_PIPE_EQ] = ACTIONS(1258), + [anon_sym_EQ_EQ] = ACTIONS(1258), + [anon_sym_BANG_EQ] = ACTIONS(1258), + [anon_sym_LT_EQ] = ACTIONS(1258), + [anon_sym_GT_EQ] = ACTIONS(1258), + [anon_sym_AMP_AMP] = ACTIONS(1258), + [anon_sym_PIPE_PIPE] = ACTIONS(1258), + [anon_sym_LT_LT] = ACTIONS(1258), + [anon_sym_GT_GT] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_SLASH] = ACTIONS(1258), + [anon_sym_PERCENT] = ACTIONS(1258), + [anon_sym_STAR_STAR] = ACTIONS(1258), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_GT] = ACTIONS(1258), + [anon_sym_RPAREN] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1258), + [anon_sym_SEMI_SEMI] = ACTIONS(1258), + [anon_sym_PIPE_AMP] = ACTIONS(1258), + [anon_sym_EQ_TILDE] = ACTIONS(1258), + [anon_sym_AMP_GT] = ACTIONS(1258), + [anon_sym_AMP_GT_GT] = ACTIONS(1258), + [anon_sym_LT_AMP] = ACTIONS(1258), + [anon_sym_GT_AMP] = ACTIONS(1258), + [anon_sym_GT_PIPE] = ACTIONS(1258), + [anon_sym_LT_LT_DASH] = ACTIONS(1258), + [anon_sym_LF] = ACTIONS(1258), + [anon_sym_LT_LT_LT] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_CARET] = ACTIONS(1258), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1258), + [aux_sym_concatenation_token1] = ACTIONS(1258), + [anon_sym_DOLLAR] = ACTIONS(1258), + [sym__special_character] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_raw_string] = ACTIONS(1258), + [sym_ansi_c_string] = ACTIONS(1258), + [aux_sym_number_token1] = ACTIONS(1258), + [aux_sym_number_token2] = ACTIONS(1258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1258), + [anon_sym_BQUOTE] = ACTIONS(1258), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1258), + [anon_sym_LT_LPAREN] = ACTIONS(1258), + [anon_sym_GT_LPAREN] = ACTIONS(1258), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(199), - [sym_file_descriptor] = ACTIONS(232), - [sym__bare_dollar] = ACTIONS(232), - [sym__brace_start] = ACTIONS(232), + [sym_test_operator] = ACTIONS(1258), + [sym_file_descriptor] = ACTIONS(1263), + [sym__concat] = ACTIONS(1263), + [sym__bare_dollar] = ACTIONS(1263), + [sym__brace_start] = ACTIONS(1263), }, - [396] = { - [sym_word] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_EQ] = ACTIONS(1342), - [anon_sym_DASH_EQ] = ACTIONS(1342), - [anon_sym_STAR_EQ] = ACTIONS(1342), - [anon_sym_SLASH_EQ] = ACTIONS(1342), - [anon_sym_PERCENT_EQ] = ACTIONS(1342), - [anon_sym_LT_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_GT_EQ] = ACTIONS(1342), - [anon_sym_AMP_EQ] = ACTIONS(1342), - [anon_sym_CARET_EQ] = ACTIONS(1342), - [anon_sym_PIPE_EQ] = ACTIONS(1342), - [anon_sym_EQ_EQ] = ACTIONS(1342), - [anon_sym_BANG_EQ] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1342), - [anon_sym_AMP_AMP] = ACTIONS(1342), - [anon_sym_PIPE_PIPE] = ACTIONS(1342), - [anon_sym_LT_LT] = ACTIONS(1342), - [anon_sym_GT_GT] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_PERCENT] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1342), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_SEMI_SEMI] = ACTIONS(1342), - [anon_sym_PIPE_AMP] = ACTIONS(1342), - [anon_sym_EQ_TILDE] = ACTIONS(1342), - [anon_sym_AMP_GT] = ACTIONS(1342), - [anon_sym_AMP_GT_GT] = ACTIONS(1342), - [anon_sym_LT_AMP] = ACTIONS(1342), - [anon_sym_GT_AMP] = ACTIONS(1342), - [anon_sym_GT_PIPE] = ACTIONS(1342), - [anon_sym_LT_LT_DASH] = ACTIONS(1342), - [anon_sym_LT_LT_LT] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), - [anon_sym_QMARK] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1342), - [aux_sym_concatenation_token1] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [sym__special_character] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_raw_string] = ACTIONS(1342), - [sym_ansi_c_string] = ACTIONS(1342), - [aux_sym_number_token1] = ACTIONS(1342), - [aux_sym_number_token2] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1342), - [anon_sym_BQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1342), - [anon_sym_LT_LPAREN] = ACTIONS(1342), - [anon_sym_GT_LPAREN] = ACTIONS(1342), + [388] = { + [sym_word] = ACTIONS(1268), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym_EQ] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_EQ] = ACTIONS(1268), + [anon_sym_DASH_EQ] = ACTIONS(1268), + [anon_sym_STAR_EQ] = ACTIONS(1268), + [anon_sym_SLASH_EQ] = ACTIONS(1268), + [anon_sym_PERCENT_EQ] = ACTIONS(1268), + [anon_sym_LT_LT_EQ] = ACTIONS(1268), + [anon_sym_GT_GT_EQ] = ACTIONS(1268), + [anon_sym_AMP_EQ] = ACTIONS(1268), + [anon_sym_CARET_EQ] = ACTIONS(1268), + [anon_sym_PIPE_EQ] = ACTIONS(1268), + [anon_sym_EQ_EQ] = ACTIONS(1268), + [anon_sym_BANG_EQ] = ACTIONS(1268), + [anon_sym_LT_EQ] = ACTIONS(1268), + [anon_sym_GT_EQ] = ACTIONS(1268), + [anon_sym_AMP_AMP] = ACTIONS(1268), + [anon_sym_PIPE_PIPE] = ACTIONS(1268), + [anon_sym_LT_LT] = ACTIONS(1268), + [anon_sym_GT_GT] = ACTIONS(1268), + [anon_sym_PLUS] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_SLASH] = ACTIONS(1268), + [anon_sym_PERCENT] = ACTIONS(1268), + [anon_sym_STAR_STAR] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(1268), + [anon_sym_GT] = ACTIONS(1268), + [anon_sym_RPAREN] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_SEMI_SEMI] = ACTIONS(1268), + [anon_sym_PIPE_AMP] = ACTIONS(1268), + [anon_sym_EQ_TILDE] = ACTIONS(1268), + [anon_sym_AMP_GT] = ACTIONS(1268), + [anon_sym_AMP_GT_GT] = ACTIONS(1268), + [anon_sym_LT_AMP] = ACTIONS(1268), + [anon_sym_GT_AMP] = ACTIONS(1268), + [anon_sym_GT_PIPE] = ACTIONS(1268), + [anon_sym_LT_LT_DASH] = ACTIONS(1268), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_LT_LT_LT] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_CARET] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1268), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1268), + [aux_sym_concatenation_token1] = ACTIONS(1268), + [anon_sym_DOLLAR] = ACTIONS(1268), + [sym__special_character] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym_raw_string] = ACTIONS(1268), + [sym_ansi_c_string] = ACTIONS(1268), + [aux_sym_number_token1] = ACTIONS(1268), + [aux_sym_number_token2] = ACTIONS(1268), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1268), + [anon_sym_BQUOTE] = ACTIONS(1268), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1268), + [anon_sym_LT_LPAREN] = ACTIONS(1268), + [anon_sym_GT_LPAREN] = ACTIONS(1268), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1342), - [sym_file_descriptor] = ACTIONS(1344), - [sym__concat] = ACTIONS(1344), - [sym__bare_dollar] = ACTIONS(1344), - [sym__brace_start] = ACTIONS(1344), + [sym_test_operator] = ACTIONS(1268), + [sym_file_descriptor] = ACTIONS(1270), + [sym__concat] = ACTIONS(1270), + [sym__bare_dollar] = ACTIONS(1270), + [sym__brace_start] = ACTIONS(1270), }, - [397] = { - [sym_word] = ACTIONS(1328), - [anon_sym_LF] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_EQ] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_EQ] = ACTIONS(1328), - [anon_sym_DASH_EQ] = ACTIONS(1328), - [anon_sym_STAR_EQ] = ACTIONS(1328), - [anon_sym_SLASH_EQ] = ACTIONS(1328), - [anon_sym_PERCENT_EQ] = ACTIONS(1328), - [anon_sym_LT_LT_EQ] = ACTIONS(1328), - [anon_sym_GT_GT_EQ] = ACTIONS(1328), - [anon_sym_AMP_EQ] = ACTIONS(1328), - [anon_sym_CARET_EQ] = ACTIONS(1328), - [anon_sym_PIPE_EQ] = ACTIONS(1328), - [anon_sym_EQ_EQ] = ACTIONS(1328), - [anon_sym_BANG_EQ] = ACTIONS(1328), - [anon_sym_LT_EQ] = ACTIONS(1328), - [anon_sym_GT_EQ] = ACTIONS(1328), - [anon_sym_AMP_AMP] = ACTIONS(1328), - [anon_sym_PIPE_PIPE] = ACTIONS(1328), - [anon_sym_LT_LT] = ACTIONS(1328), - [anon_sym_GT_GT] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_SLASH] = ACTIONS(1328), - [anon_sym_PERCENT] = ACTIONS(1328), - [anon_sym_STAR_STAR] = ACTIONS(1328), - [anon_sym_LT] = ACTIONS(1328), - [anon_sym_GT] = ACTIONS(1328), - [anon_sym_RPAREN] = ACTIONS(1328), - [anon_sym_PIPE] = ACTIONS(1328), - [anon_sym_SEMI_SEMI] = ACTIONS(1328), - [anon_sym_PIPE_AMP] = ACTIONS(1328), - [anon_sym_EQ_TILDE] = ACTIONS(1328), - [anon_sym_AMP_GT] = ACTIONS(1328), - [anon_sym_AMP_GT_GT] = ACTIONS(1328), - [anon_sym_LT_AMP] = ACTIONS(1328), - [anon_sym_GT_AMP] = ACTIONS(1328), - [anon_sym_GT_PIPE] = ACTIONS(1328), - [anon_sym_LT_LT_DASH] = ACTIONS(1328), - [anon_sym_LT_LT_LT] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_CARET] = ACTIONS(1328), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1328), - [aux_sym_concatenation_token1] = ACTIONS(1328), - [anon_sym_DOLLAR] = ACTIONS(1328), - [sym__special_character] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_raw_string] = ACTIONS(1328), - [sym_ansi_c_string] = ACTIONS(1328), - [aux_sym_number_token1] = ACTIONS(1328), - [aux_sym_number_token2] = ACTIONS(1328), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1328), - [anon_sym_BQUOTE] = ACTIONS(1328), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1328), - [anon_sym_LT_LPAREN] = ACTIONS(1328), - [anon_sym_GT_LPAREN] = ACTIONS(1328), + [389] = { + [sym_word] = ACTIONS(1276), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_EQ] = ACTIONS(1276), + [anon_sym_DASH_EQ] = ACTIONS(1276), + [anon_sym_STAR_EQ] = ACTIONS(1276), + [anon_sym_SLASH_EQ] = ACTIONS(1276), + [anon_sym_PERCENT_EQ] = ACTIONS(1276), + [anon_sym_LT_LT_EQ] = ACTIONS(1276), + [anon_sym_GT_GT_EQ] = ACTIONS(1276), + [anon_sym_AMP_EQ] = ACTIONS(1276), + [anon_sym_CARET_EQ] = ACTIONS(1276), + [anon_sym_PIPE_EQ] = ACTIONS(1276), + [anon_sym_EQ_EQ] = ACTIONS(1276), + [anon_sym_BANG_EQ] = ACTIONS(1276), + [anon_sym_LT_EQ] = ACTIONS(1276), + [anon_sym_GT_EQ] = ACTIONS(1276), + [anon_sym_AMP_AMP] = ACTIONS(1276), + [anon_sym_PIPE_PIPE] = ACTIONS(1276), + [anon_sym_LT_LT] = ACTIONS(1276), + [anon_sym_GT_GT] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_SLASH] = ACTIONS(1276), + [anon_sym_PERCENT] = ACTIONS(1276), + [anon_sym_STAR_STAR] = ACTIONS(1276), + [anon_sym_LT] = ACTIONS(1276), + [anon_sym_GT] = ACTIONS(1276), + [anon_sym_RPAREN] = ACTIONS(1276), + [anon_sym_PIPE] = ACTIONS(1276), + [anon_sym_SEMI_SEMI] = ACTIONS(1276), + [anon_sym_PIPE_AMP] = ACTIONS(1276), + [anon_sym_EQ_TILDE] = ACTIONS(1276), + [anon_sym_AMP_GT] = ACTIONS(1276), + [anon_sym_AMP_GT_GT] = ACTIONS(1276), + [anon_sym_LT_AMP] = ACTIONS(1276), + [anon_sym_GT_AMP] = ACTIONS(1276), + [anon_sym_GT_PIPE] = ACTIONS(1276), + [anon_sym_LT_LT_DASH] = ACTIONS(1276), + [anon_sym_LF] = ACTIONS(1276), + [anon_sym_LT_LT_LT] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_CARET] = ACTIONS(1276), + [anon_sym_QMARK] = ACTIONS(1276), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1276), + [aux_sym_concatenation_token1] = ACTIONS(1276), + [anon_sym_DOLLAR] = ACTIONS(1276), + [sym__special_character] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1276), + [sym_raw_string] = ACTIONS(1276), + [sym_ansi_c_string] = ACTIONS(1276), + [aux_sym_number_token1] = ACTIONS(1276), + [aux_sym_number_token2] = ACTIONS(1276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1276), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), + [anon_sym_BQUOTE] = ACTIONS(1276), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1276), + [anon_sym_LT_LPAREN] = ACTIONS(1276), + [anon_sym_GT_LPAREN] = ACTIONS(1276), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1328), - [sym_file_descriptor] = ACTIONS(1330), - [sym__concat] = ACTIONS(1330), - [sym__bare_dollar] = ACTIONS(1330), - [sym__brace_start] = ACTIONS(1330), + [sym_test_operator] = ACTIONS(1276), + [sym_file_descriptor] = ACTIONS(1278), + [sym__concat] = ACTIONS(1278), + [sym__bare_dollar] = ACTIONS(1278), + [sym__brace_start] = ACTIONS(1278), }, - [398] = { - [sym_word] = ACTIONS(1346), - [anon_sym_LF] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_EQ] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_EQ] = ACTIONS(1346), - [anon_sym_DASH_EQ] = ACTIONS(1346), - [anon_sym_STAR_EQ] = ACTIONS(1346), - [anon_sym_SLASH_EQ] = ACTIONS(1346), - [anon_sym_PERCENT_EQ] = ACTIONS(1346), - [anon_sym_LT_LT_EQ] = ACTIONS(1346), - [anon_sym_GT_GT_EQ] = ACTIONS(1346), - [anon_sym_AMP_EQ] = ACTIONS(1346), - [anon_sym_CARET_EQ] = ACTIONS(1346), - [anon_sym_PIPE_EQ] = ACTIONS(1346), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1346), - [anon_sym_GT_EQ] = ACTIONS(1346), - [anon_sym_AMP_AMP] = ACTIONS(1346), - [anon_sym_PIPE_PIPE] = ACTIONS(1346), - [anon_sym_LT_LT] = ACTIONS(1346), - [anon_sym_GT_GT] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_PERCENT] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1346), - [anon_sym_LT] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_RPAREN] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1346), - [anon_sym_SEMI_SEMI] = ACTIONS(1346), - [anon_sym_PIPE_AMP] = ACTIONS(1346), - [anon_sym_EQ_TILDE] = ACTIONS(1346), - [anon_sym_AMP_GT] = ACTIONS(1346), - [anon_sym_AMP_GT_GT] = ACTIONS(1346), - [anon_sym_LT_AMP] = ACTIONS(1346), - [anon_sym_GT_AMP] = ACTIONS(1346), - [anon_sym_GT_PIPE] = ACTIONS(1346), - [anon_sym_LT_LT_DASH] = ACTIONS(1346), - [anon_sym_LT_LT_LT] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_QMARK] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1346), - [aux_sym_concatenation_token1] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [sym__special_character] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_raw_string] = ACTIONS(1346), - [sym_ansi_c_string] = ACTIONS(1346), - [aux_sym_number_token1] = ACTIONS(1346), - [aux_sym_number_token2] = ACTIONS(1346), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), - [anon_sym_BQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1346), - [anon_sym_LT_LPAREN] = ACTIONS(1346), - [anon_sym_GT_LPAREN] = ACTIONS(1346), + [390] = { + [sym_word] = ACTIONS(1280), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym_EQ] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_PLUS_EQ] = ACTIONS(1280), + [anon_sym_DASH_EQ] = ACTIONS(1280), + [anon_sym_STAR_EQ] = ACTIONS(1280), + [anon_sym_SLASH_EQ] = ACTIONS(1280), + [anon_sym_PERCENT_EQ] = ACTIONS(1280), + [anon_sym_LT_LT_EQ] = ACTIONS(1280), + [anon_sym_GT_GT_EQ] = ACTIONS(1280), + [anon_sym_AMP_EQ] = ACTIONS(1280), + [anon_sym_CARET_EQ] = ACTIONS(1280), + [anon_sym_PIPE_EQ] = ACTIONS(1280), + [anon_sym_EQ_EQ] = ACTIONS(1280), + [anon_sym_BANG_EQ] = ACTIONS(1280), + [anon_sym_LT_EQ] = ACTIONS(1280), + [anon_sym_GT_EQ] = ACTIONS(1280), + [anon_sym_AMP_AMP] = ACTIONS(1280), + [anon_sym_PIPE_PIPE] = ACTIONS(1280), + [anon_sym_LT_LT] = ACTIONS(1280), + [anon_sym_GT_GT] = ACTIONS(1280), + [anon_sym_PLUS] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_SLASH] = ACTIONS(1280), + [anon_sym_PERCENT] = ACTIONS(1280), + [anon_sym_STAR_STAR] = ACTIONS(1280), + [anon_sym_LT] = ACTIONS(1280), + [anon_sym_GT] = ACTIONS(1280), + [anon_sym_RPAREN] = ACTIONS(1280), + [anon_sym_PIPE] = ACTIONS(1280), + [anon_sym_SEMI_SEMI] = ACTIONS(1280), + [anon_sym_PIPE_AMP] = ACTIONS(1280), + [anon_sym_EQ_TILDE] = ACTIONS(1280), + [anon_sym_AMP_GT] = ACTIONS(1280), + [anon_sym_AMP_GT_GT] = ACTIONS(1280), + [anon_sym_LT_AMP] = ACTIONS(1280), + [anon_sym_GT_AMP] = ACTIONS(1280), + [anon_sym_GT_PIPE] = ACTIONS(1280), + [anon_sym_LT_LT_DASH] = ACTIONS(1280), + [anon_sym_LF] = ACTIONS(1280), + [anon_sym_LT_LT_LT] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_CARET] = ACTIONS(1280), + [anon_sym_QMARK] = ACTIONS(1280), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1280), + [aux_sym_concatenation_token1] = ACTIONS(1280), + [anon_sym_DOLLAR] = ACTIONS(1280), + [sym__special_character] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1280), + [sym_raw_string] = ACTIONS(1280), + [sym_ansi_c_string] = ACTIONS(1280), + [aux_sym_number_token1] = ACTIONS(1280), + [aux_sym_number_token2] = ACTIONS(1280), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1280), + [anon_sym_BQUOTE] = ACTIONS(1280), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1280), + [anon_sym_LT_LPAREN] = ACTIONS(1280), + [anon_sym_GT_LPAREN] = ACTIONS(1280), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1346), - [sym_file_descriptor] = ACTIONS(1348), - [sym__concat] = ACTIONS(1348), - [sym__bare_dollar] = ACTIONS(1348), - [sym__brace_start] = ACTIONS(1348), + [sym_test_operator] = ACTIONS(1280), + [sym_file_descriptor] = ACTIONS(1282), + [sym__concat] = ACTIONS(1282), + [sym__bare_dollar] = ACTIONS(1282), + [sym__brace_start] = ACTIONS(1282), }, - [399] = { - [sym_word] = ACTIONS(1312), - [anon_sym_LF] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym_EQ] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_EQ] = ACTIONS(1312), - [anon_sym_DASH_EQ] = ACTIONS(1312), - [anon_sym_STAR_EQ] = ACTIONS(1312), - [anon_sym_SLASH_EQ] = ACTIONS(1312), - [anon_sym_PERCENT_EQ] = ACTIONS(1312), - [anon_sym_LT_LT_EQ] = ACTIONS(1312), - [anon_sym_GT_GT_EQ] = ACTIONS(1312), - [anon_sym_AMP_EQ] = ACTIONS(1312), - [anon_sym_CARET_EQ] = ACTIONS(1312), - [anon_sym_PIPE_EQ] = ACTIONS(1312), - [anon_sym_EQ_EQ] = ACTIONS(1312), - [anon_sym_BANG_EQ] = ACTIONS(1312), - [anon_sym_LT_EQ] = ACTIONS(1312), - [anon_sym_GT_EQ] = ACTIONS(1312), - [anon_sym_AMP_AMP] = ACTIONS(1312), - [anon_sym_PIPE_PIPE] = ACTIONS(1312), - [anon_sym_LT_LT] = ACTIONS(1312), - [anon_sym_GT_GT] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_PERCENT] = ACTIONS(1312), - [anon_sym_STAR_STAR] = ACTIONS(1312), - [anon_sym_LT] = ACTIONS(1312), - [anon_sym_GT] = ACTIONS(1312), - [anon_sym_RPAREN] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_SEMI_SEMI] = ACTIONS(1312), - [anon_sym_PIPE_AMP] = ACTIONS(1312), - [anon_sym_EQ_TILDE] = ACTIONS(1312), - [anon_sym_AMP_GT] = ACTIONS(1312), - [anon_sym_AMP_GT_GT] = ACTIONS(1312), - [anon_sym_LT_AMP] = ACTIONS(1312), - [anon_sym_GT_AMP] = ACTIONS(1312), - [anon_sym_GT_PIPE] = ACTIONS(1312), - [anon_sym_LT_LT_DASH] = ACTIONS(1312), - [anon_sym_LT_LT_LT] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_CARET] = ACTIONS(1312), - [anon_sym_QMARK] = ACTIONS(1312), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1312), - [aux_sym_concatenation_token1] = ACTIONS(1312), - [anon_sym_DOLLAR] = ACTIONS(1312), - [sym__special_character] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_raw_string] = ACTIONS(1312), - [sym_ansi_c_string] = ACTIONS(1312), - [aux_sym_number_token1] = ACTIONS(1312), - [aux_sym_number_token2] = ACTIONS(1312), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1312), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1312), - [anon_sym_BQUOTE] = ACTIONS(1312), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1312), - [anon_sym_LT_LPAREN] = ACTIONS(1312), - [anon_sym_GT_LPAREN] = ACTIONS(1312), + [391] = { + [sym_word] = ACTIONS(1294), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_EQ] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_EQ] = ACTIONS(1294), + [anon_sym_DASH_EQ] = ACTIONS(1294), + [anon_sym_STAR_EQ] = ACTIONS(1294), + [anon_sym_SLASH_EQ] = ACTIONS(1294), + [anon_sym_PERCENT_EQ] = ACTIONS(1294), + [anon_sym_LT_LT_EQ] = ACTIONS(1294), + [anon_sym_GT_GT_EQ] = ACTIONS(1294), + [anon_sym_AMP_EQ] = ACTIONS(1294), + [anon_sym_CARET_EQ] = ACTIONS(1294), + [anon_sym_PIPE_EQ] = ACTIONS(1294), + [anon_sym_EQ_EQ] = ACTIONS(1294), + [anon_sym_BANG_EQ] = ACTIONS(1294), + [anon_sym_LT_EQ] = ACTIONS(1294), + [anon_sym_GT_EQ] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [anon_sym_LT_LT] = ACTIONS(1294), + [anon_sym_GT_GT] = ACTIONS(1294), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_SLASH] = ACTIONS(1294), + [anon_sym_PERCENT] = ACTIONS(1294), + [anon_sym_STAR_STAR] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_RPAREN] = ACTIONS(1294), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1294), + [anon_sym_EQ_TILDE] = ACTIONS(1294), + [anon_sym_AMP_GT] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1294), + [anon_sym_GT_AMP] = ACTIONS(1294), + [anon_sym_GT_PIPE] = ACTIONS(1294), + [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [anon_sym_LF] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_CARET] = ACTIONS(1294), + [anon_sym_QMARK] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1294), + [aux_sym_concatenation_token1] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1294), + [sym__special_character] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym_raw_string] = ACTIONS(1294), + [sym_ansi_c_string] = ACTIONS(1294), + [aux_sym_number_token1] = ACTIONS(1294), + [aux_sym_number_token2] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1294), + [anon_sym_LT_LPAREN] = ACTIONS(1294), + [anon_sym_GT_LPAREN] = ACTIONS(1294), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1312), - [sym_file_descriptor] = ACTIONS(1314), - [sym__concat] = ACTIONS(1314), - [sym__bare_dollar] = ACTIONS(1314), - [sym__brace_start] = ACTIONS(1314), + [sym_test_operator] = ACTIONS(1294), + [sym_file_descriptor] = ACTIONS(1296), + [sym__concat] = ACTIONS(1296), + [sym__bare_dollar] = ACTIONS(1296), + [sym__brace_start] = ACTIONS(1296), }, - [400] = { - [sym_word] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_EQ] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_EQ] = ACTIONS(1308), - [anon_sym_DASH_EQ] = ACTIONS(1308), - [anon_sym_STAR_EQ] = ACTIONS(1308), - [anon_sym_SLASH_EQ] = ACTIONS(1308), - [anon_sym_PERCENT_EQ] = ACTIONS(1308), - [anon_sym_LT_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_GT_EQ] = ACTIONS(1308), - [anon_sym_AMP_EQ] = ACTIONS(1308), - [anon_sym_CARET_EQ] = ACTIONS(1308), - [anon_sym_PIPE_EQ] = ACTIONS(1308), - [anon_sym_EQ_EQ] = ACTIONS(1308), - [anon_sym_BANG_EQ] = ACTIONS(1308), - [anon_sym_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_EQ] = ACTIONS(1308), - [anon_sym_AMP_AMP] = ACTIONS(1308), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(1308), - [anon_sym_PERCENT] = ACTIONS(1308), - [anon_sym_STAR_STAR] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_RPAREN] = ACTIONS(1308), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym_SEMI_SEMI] = ACTIONS(1308), - [anon_sym_PIPE_AMP] = ACTIONS(1308), - [anon_sym_EQ_TILDE] = ACTIONS(1308), - [anon_sym_AMP_GT] = ACTIONS(1308), - [anon_sym_AMP_GT_GT] = ACTIONS(1308), - [anon_sym_LT_AMP] = ACTIONS(1308), - [anon_sym_GT_AMP] = ACTIONS(1308), - [anon_sym_GT_PIPE] = ACTIONS(1308), - [anon_sym_LT_LT_DASH] = ACTIONS(1308), - [anon_sym_LT_LT_LT] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(1308), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), - [aux_sym_concatenation_token1] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1308), - [sym__special_character] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_raw_string] = ACTIONS(1308), - [sym_ansi_c_string] = ACTIONS(1308), - [aux_sym_number_token1] = ACTIONS(1308), - [aux_sym_number_token2] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_BQUOTE] = ACTIONS(1308), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1308), - [anon_sym_LT_LPAREN] = ACTIONS(1308), - [anon_sym_GT_LPAREN] = ACTIONS(1308), + [392] = { + [sym_word] = ACTIONS(1298), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym_EQ] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [anon_sym_PLUS_EQ] = ACTIONS(1298), + [anon_sym_DASH_EQ] = ACTIONS(1298), + [anon_sym_STAR_EQ] = ACTIONS(1298), + [anon_sym_SLASH_EQ] = ACTIONS(1298), + [anon_sym_PERCENT_EQ] = ACTIONS(1298), + [anon_sym_LT_LT_EQ] = ACTIONS(1298), + [anon_sym_GT_GT_EQ] = ACTIONS(1298), + [anon_sym_AMP_EQ] = ACTIONS(1298), + [anon_sym_CARET_EQ] = ACTIONS(1298), + [anon_sym_PIPE_EQ] = ACTIONS(1298), + [anon_sym_EQ_EQ] = ACTIONS(1298), + [anon_sym_BANG_EQ] = ACTIONS(1298), + [anon_sym_LT_EQ] = ACTIONS(1298), + [anon_sym_GT_EQ] = ACTIONS(1298), + [anon_sym_AMP_AMP] = ACTIONS(1298), + [anon_sym_PIPE_PIPE] = ACTIONS(1298), + [anon_sym_LT_LT] = ACTIONS(1298), + [anon_sym_GT_GT] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(1298), + [anon_sym_PERCENT] = ACTIONS(1298), + [anon_sym_STAR_STAR] = ACTIONS(1298), + [anon_sym_LT] = ACTIONS(1298), + [anon_sym_GT] = ACTIONS(1298), + [anon_sym_RPAREN] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1298), + [anon_sym_SEMI_SEMI] = ACTIONS(1298), + [anon_sym_PIPE_AMP] = ACTIONS(1298), + [anon_sym_EQ_TILDE] = ACTIONS(1298), + [anon_sym_AMP_GT] = ACTIONS(1298), + [anon_sym_AMP_GT_GT] = ACTIONS(1298), + [anon_sym_LT_AMP] = ACTIONS(1298), + [anon_sym_GT_AMP] = ACTIONS(1298), + [anon_sym_GT_PIPE] = ACTIONS(1298), + [anon_sym_LT_LT_DASH] = ACTIONS(1298), + [anon_sym_LF] = ACTIONS(1298), + [anon_sym_LT_LT_LT] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_CARET] = ACTIONS(1298), + [anon_sym_QMARK] = ACTIONS(1298), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1298), + [aux_sym_concatenation_token1] = ACTIONS(1298), + [anon_sym_DOLLAR] = ACTIONS(1298), + [sym__special_character] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [sym_raw_string] = ACTIONS(1298), + [sym_ansi_c_string] = ACTIONS(1298), + [aux_sym_number_token1] = ACTIONS(1298), + [aux_sym_number_token2] = ACTIONS(1298), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1298), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1298), + [anon_sym_BQUOTE] = ACTIONS(1298), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1298), + [anon_sym_LT_LPAREN] = ACTIONS(1298), + [anon_sym_GT_LPAREN] = ACTIONS(1298), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1308), - [sym_file_descriptor] = ACTIONS(1310), - [sym__concat] = ACTIONS(1310), - [sym__bare_dollar] = ACTIONS(1310), - [sym__brace_start] = ACTIONS(1310), + [sym_test_operator] = ACTIONS(1298), + [sym_file_descriptor] = ACTIONS(1300), + [sym__concat] = ACTIONS(1300), + [sym__bare_dollar] = ACTIONS(1300), + [sym__brace_start] = ACTIONS(1300), }, - [401] = { + [393] = { [sym_word] = ACTIONS(1302), - [anon_sym_LF] = ACTIONS(1302), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1302), [anon_sym_SEMI] = ACTIONS(1302), [anon_sym_EQ] = ACTIONS(1302), [anon_sym_PLUS_PLUS] = ACTIONS(1302), @@ -53718,6 +54901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_AMP] = ACTIONS(1302), [anon_sym_GT_PIPE] = ACTIONS(1302), [anon_sym_LT_LT_DASH] = ACTIONS(1302), + [anon_sym_LF] = ACTIONS(1302), [anon_sym_LT_LT_LT] = ACTIONS(1302), [anon_sym_AMP] = ACTIONS(1302), [anon_sym_CARET] = ACTIONS(1302), @@ -53744,633 +54928,712 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1304), [sym__brace_start] = ACTIONS(1304), }, - [402] = { - [sym_word] = ACTIONS(1274), - [anon_sym_LF] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym_EQ] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_EQ] = ACTIONS(1274), - [anon_sym_DASH_EQ] = ACTIONS(1274), - [anon_sym_STAR_EQ] = ACTIONS(1274), - [anon_sym_SLASH_EQ] = ACTIONS(1274), - [anon_sym_PERCENT_EQ] = ACTIONS(1274), - [anon_sym_LT_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_GT_EQ] = ACTIONS(1274), - [anon_sym_AMP_EQ] = ACTIONS(1274), - [anon_sym_CARET_EQ] = ACTIONS(1274), - [anon_sym_PIPE_EQ] = ACTIONS(1274), - [anon_sym_EQ_EQ] = ACTIONS(1274), - [anon_sym_BANG_EQ] = ACTIONS(1274), - [anon_sym_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1274), - [anon_sym_AMP_AMP] = ACTIONS(1274), - [anon_sym_PIPE_PIPE] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1274), - [anon_sym_GT_GT] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1274), - [anon_sym_PERCENT] = ACTIONS(1274), - [anon_sym_STAR_STAR] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_GT] = ACTIONS(1274), - [anon_sym_RPAREN] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1274), - [anon_sym_SEMI_SEMI] = ACTIONS(1274), - [anon_sym_PIPE_AMP] = ACTIONS(1274), - [anon_sym_EQ_TILDE] = ACTIONS(1274), - [anon_sym_AMP_GT] = ACTIONS(1274), - [anon_sym_AMP_GT_GT] = ACTIONS(1274), - [anon_sym_LT_AMP] = ACTIONS(1274), - [anon_sym_GT_AMP] = ACTIONS(1274), - [anon_sym_GT_PIPE] = ACTIONS(1274), - [anon_sym_LT_LT_DASH] = ACTIONS(1274), - [anon_sym_LT_LT_LT] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_CARET] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(1274), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1274), - [aux_sym_concatenation_token1] = ACTIONS(1274), - [anon_sym_DOLLAR] = ACTIONS(1274), - [sym__special_character] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_raw_string] = ACTIONS(1274), - [sym_ansi_c_string] = ACTIONS(1274), - [aux_sym_number_token1] = ACTIONS(1274), - [aux_sym_number_token2] = ACTIONS(1274), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1274), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1274), - [anon_sym_BQUOTE] = ACTIONS(1274), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1274), - [anon_sym_LT_LPAREN] = ACTIONS(1274), - [anon_sym_GT_LPAREN] = ACTIONS(1274), + [394] = { + [sym_word] = ACTIONS(1310), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_EQ] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_EQ] = ACTIONS(1310), + [anon_sym_DASH_EQ] = ACTIONS(1310), + [anon_sym_STAR_EQ] = ACTIONS(1310), + [anon_sym_SLASH_EQ] = ACTIONS(1310), + [anon_sym_PERCENT_EQ] = ACTIONS(1310), + [anon_sym_LT_LT_EQ] = ACTIONS(1310), + [anon_sym_GT_GT_EQ] = ACTIONS(1310), + [anon_sym_AMP_EQ] = ACTIONS(1310), + [anon_sym_CARET_EQ] = ACTIONS(1310), + [anon_sym_PIPE_EQ] = ACTIONS(1310), + [anon_sym_EQ_EQ] = ACTIONS(1310), + [anon_sym_BANG_EQ] = ACTIONS(1310), + [anon_sym_LT_EQ] = ACTIONS(1310), + [anon_sym_GT_EQ] = ACTIONS(1310), + [anon_sym_AMP_AMP] = ACTIONS(1310), + [anon_sym_PIPE_PIPE] = ACTIONS(1310), + [anon_sym_LT_LT] = ACTIONS(1310), + [anon_sym_GT_GT] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1310), + [anon_sym_PERCENT] = ACTIONS(1310), + [anon_sym_STAR_STAR] = ACTIONS(1310), + [anon_sym_LT] = ACTIONS(1310), + [anon_sym_GT] = ACTIONS(1310), + [anon_sym_RPAREN] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(1310), + [anon_sym_SEMI_SEMI] = ACTIONS(1310), + [anon_sym_PIPE_AMP] = ACTIONS(1310), + [anon_sym_EQ_TILDE] = ACTIONS(1310), + [anon_sym_AMP_GT] = ACTIONS(1310), + [anon_sym_AMP_GT_GT] = ACTIONS(1310), + [anon_sym_LT_AMP] = ACTIONS(1310), + [anon_sym_GT_AMP] = ACTIONS(1310), + [anon_sym_GT_PIPE] = ACTIONS(1310), + [anon_sym_LT_LT_DASH] = ACTIONS(1310), + [anon_sym_LF] = ACTIONS(1310), + [anon_sym_LT_LT_LT] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1310), + [aux_sym_concatenation_token1] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1310), + [sym__special_character] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_raw_string] = ACTIONS(1310), + [sym_ansi_c_string] = ACTIONS(1310), + [aux_sym_number_token1] = ACTIONS(1310), + [aux_sym_number_token2] = ACTIONS(1310), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1310), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1310), + [anon_sym_BQUOTE] = ACTIONS(1310), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1310), + [anon_sym_LT_LPAREN] = ACTIONS(1310), + [anon_sym_GT_LPAREN] = ACTIONS(1310), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1274), - [sym_file_descriptor] = ACTIONS(1279), - [sym__concat] = ACTIONS(1279), - [sym__bare_dollar] = ACTIONS(1279), - [sym__brace_start] = ACTIONS(1279), + [sym_test_operator] = ACTIONS(1310), + [sym_file_descriptor] = ACTIONS(1312), + [sym__concat] = ACTIONS(1312), + [sym__bare_dollar] = ACTIONS(1312), + [sym__brace_start] = ACTIONS(1312), }, - [403] = { - [sym_word] = ACTIONS(1354), - [anon_sym_LF] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PLUS_EQ] = ACTIONS(1354), - [anon_sym_DASH_EQ] = ACTIONS(1354), - [anon_sym_STAR_EQ] = ACTIONS(1354), - [anon_sym_SLASH_EQ] = ACTIONS(1354), - [anon_sym_PERCENT_EQ] = ACTIONS(1354), - [anon_sym_LT_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_GT_EQ] = ACTIONS(1354), - [anon_sym_AMP_EQ] = ACTIONS(1354), - [anon_sym_CARET_EQ] = ACTIONS(1354), - [anon_sym_PIPE_EQ] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_AMP_AMP] = ACTIONS(1354), - [anon_sym_PIPE_PIPE] = ACTIONS(1354), - [anon_sym_LT_LT] = ACTIONS(1354), - [anon_sym_GT_GT] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_PERCENT] = ACTIONS(1354), - [anon_sym_STAR_STAR] = ACTIONS(1354), - [anon_sym_LT] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_RPAREN] = ACTIONS(1354), - [anon_sym_PIPE] = ACTIONS(1354), - [anon_sym_SEMI_SEMI] = ACTIONS(1354), - [anon_sym_PIPE_AMP] = ACTIONS(1354), - [anon_sym_EQ_TILDE] = ACTIONS(1354), - [anon_sym_AMP_GT] = ACTIONS(1354), - [anon_sym_AMP_GT_GT] = ACTIONS(1354), - [anon_sym_LT_AMP] = ACTIONS(1354), - [anon_sym_GT_AMP] = ACTIONS(1354), - [anon_sym_GT_PIPE] = ACTIONS(1354), - [anon_sym_LT_LT_DASH] = ACTIONS(1354), - [anon_sym_LT_LT_LT] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_CARET] = ACTIONS(1354), - [anon_sym_QMARK] = ACTIONS(1354), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1354), - [aux_sym_concatenation_token1] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1354), + [395] = { + [aux_sym__literal_repeat1] = STATE(395), + [sym_word] = ACTIONS(1352), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1352), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym_EQ] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_EQ] = ACTIONS(1352), + [anon_sym_DASH_EQ] = ACTIONS(1352), + [anon_sym_STAR_EQ] = ACTIONS(1352), + [anon_sym_SLASH_EQ] = ACTIONS(1352), + [anon_sym_PERCENT_EQ] = ACTIONS(1352), + [anon_sym_LT_LT_EQ] = ACTIONS(1352), + [anon_sym_GT_GT_EQ] = ACTIONS(1352), + [anon_sym_AMP_EQ] = ACTIONS(1352), + [anon_sym_CARET_EQ] = ACTIONS(1352), + [anon_sym_PIPE_EQ] = ACTIONS(1352), + [anon_sym_EQ_EQ] = ACTIONS(1352), + [anon_sym_BANG_EQ] = ACTIONS(1352), + [anon_sym_LT_EQ] = ACTIONS(1352), + [anon_sym_GT_EQ] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(1352), + [anon_sym_PIPE_PIPE] = ACTIONS(1352), + [anon_sym_LT_LT] = ACTIONS(1352), + [anon_sym_GT_GT] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_SLASH] = ACTIONS(1352), + [anon_sym_PERCENT] = ACTIONS(1352), + [anon_sym_STAR_STAR] = ACTIONS(1352), + [anon_sym_LT] = ACTIONS(1352), + [anon_sym_GT] = ACTIONS(1352), + [anon_sym_RPAREN] = ACTIONS(1352), + [anon_sym_PIPE] = ACTIONS(1352), + [anon_sym_SEMI_SEMI] = ACTIONS(1352), + [anon_sym_PIPE_AMP] = ACTIONS(1352), + [anon_sym_EQ_TILDE] = ACTIONS(1352), + [anon_sym_AMP_GT] = ACTIONS(1352), + [anon_sym_AMP_GT_GT] = ACTIONS(1352), + [anon_sym_LT_AMP] = ACTIONS(1352), + [anon_sym_GT_AMP] = ACTIONS(1352), + [anon_sym_GT_PIPE] = ACTIONS(1352), + [anon_sym_LT_LT_DASH] = ACTIONS(1352), + [anon_sym_LF] = ACTIONS(1352), + [anon_sym_LT_LT_LT] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_CARET] = ACTIONS(1352), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1352), [sym__special_character] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym_raw_string] = ACTIONS(1354), - [sym_ansi_c_string] = ACTIONS(1354), - [aux_sym_number_token1] = ACTIONS(1354), - [aux_sym_number_token2] = ACTIONS(1354), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1354), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1354), - [anon_sym_BQUOTE] = ACTIONS(1354), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1354), - [anon_sym_LT_LPAREN] = ACTIONS(1354), - [anon_sym_GT_LPAREN] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_raw_string] = ACTIONS(1352), + [sym_ansi_c_string] = ACTIONS(1352), + [aux_sym_number_token1] = ACTIONS(1352), + [aux_sym_number_token2] = ACTIONS(1352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1352), + [anon_sym_BQUOTE] = ACTIONS(1352), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1352), + [anon_sym_LT_LPAREN] = ACTIONS(1352), + [anon_sym_GT_LPAREN] = ACTIONS(1352), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1354), - [sym_file_descriptor] = ACTIONS(1356), - [sym__concat] = ACTIONS(1356), - [sym__bare_dollar] = ACTIONS(1356), - [sym__brace_start] = ACTIONS(1356), + [sym_test_operator] = ACTIONS(1352), + [sym_file_descriptor] = ACTIONS(1357), + [sym__bare_dollar] = ACTIONS(1357), + [sym__brace_start] = ACTIONS(1357), }, - [404] = { - [sym_word] = ACTIONS(1288), - [anon_sym_LF] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_EQ] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_EQ_EQ] = ACTIONS(1288), - [anon_sym_BANG_EQ] = ACTIONS(1288), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_LT_LT] = ACTIONS(1288), - [anon_sym_GT_GT] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_SLASH] = ACTIONS(1288), - [anon_sym_PERCENT] = ACTIONS(1288), - [anon_sym_STAR_STAR] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1288), - [anon_sym_GT] = ACTIONS(1288), - [anon_sym_RPAREN] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1288), - [anon_sym_SEMI_SEMI] = ACTIONS(1288), - [anon_sym_PIPE_AMP] = ACTIONS(1288), - [anon_sym_EQ_TILDE] = ACTIONS(1288), - [anon_sym_AMP_GT] = ACTIONS(1288), - [anon_sym_AMP_GT_GT] = ACTIONS(1288), - [anon_sym_LT_AMP] = ACTIONS(1288), - [anon_sym_GT_AMP] = ACTIONS(1288), - [anon_sym_GT_PIPE] = ACTIONS(1288), - [anon_sym_LT_LT_DASH] = ACTIONS(1288), - [anon_sym_LT_LT_LT] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1288), - [anon_sym_CARET] = ACTIONS(1288), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1288), - [aux_sym_concatenation_token1] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1288), - [sym__special_character] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym_raw_string] = ACTIONS(1288), - [sym_ansi_c_string] = ACTIONS(1288), - [aux_sym_number_token1] = ACTIONS(1288), - [aux_sym_number_token2] = ACTIONS(1288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1288), - [anon_sym_BQUOTE] = ACTIONS(1288), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1288), - [anon_sym_LT_LPAREN] = ACTIONS(1288), - [anon_sym_GT_LPAREN] = ACTIONS(1288), + [396] = { + [sym_word] = ACTIONS(1326), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_EQ] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_EQ] = ACTIONS(1326), + [anon_sym_DASH_EQ] = ACTIONS(1326), + [anon_sym_STAR_EQ] = ACTIONS(1326), + [anon_sym_SLASH_EQ] = ACTIONS(1326), + [anon_sym_PERCENT_EQ] = ACTIONS(1326), + [anon_sym_LT_LT_EQ] = ACTIONS(1326), + [anon_sym_GT_GT_EQ] = ACTIONS(1326), + [anon_sym_AMP_EQ] = ACTIONS(1326), + [anon_sym_CARET_EQ] = ACTIONS(1326), + [anon_sym_PIPE_EQ] = ACTIONS(1326), + [anon_sym_EQ_EQ] = ACTIONS(1326), + [anon_sym_BANG_EQ] = ACTIONS(1326), + [anon_sym_LT_EQ] = ACTIONS(1326), + [anon_sym_GT_EQ] = ACTIONS(1326), + [anon_sym_AMP_AMP] = ACTIONS(1326), + [anon_sym_PIPE_PIPE] = ACTIONS(1326), + [anon_sym_LT_LT] = ACTIONS(1326), + [anon_sym_GT_GT] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_SLASH] = ACTIONS(1326), + [anon_sym_PERCENT] = ACTIONS(1326), + [anon_sym_STAR_STAR] = ACTIONS(1326), + [anon_sym_LT] = ACTIONS(1326), + [anon_sym_GT] = ACTIONS(1326), + [anon_sym_RPAREN] = ACTIONS(1326), + [anon_sym_PIPE] = ACTIONS(1326), + [anon_sym_SEMI_SEMI] = ACTIONS(1326), + [anon_sym_PIPE_AMP] = ACTIONS(1326), + [anon_sym_EQ_TILDE] = ACTIONS(1326), + [anon_sym_AMP_GT] = ACTIONS(1326), + [anon_sym_AMP_GT_GT] = ACTIONS(1326), + [anon_sym_LT_AMP] = ACTIONS(1326), + [anon_sym_GT_AMP] = ACTIONS(1326), + [anon_sym_GT_PIPE] = ACTIONS(1326), + [anon_sym_LT_LT_DASH] = ACTIONS(1326), + [anon_sym_LF] = ACTIONS(1326), + [anon_sym_LT_LT_LT] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1326), + [anon_sym_QMARK] = ACTIONS(1326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1326), + [aux_sym_concatenation_token1] = ACTIONS(1326), + [anon_sym_DOLLAR] = ACTIONS(1326), + [sym__special_character] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_raw_string] = ACTIONS(1326), + [sym_ansi_c_string] = ACTIONS(1326), + [aux_sym_number_token1] = ACTIONS(1326), + [aux_sym_number_token2] = ACTIONS(1326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1326), + [anon_sym_BQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1326), + [anon_sym_LT_LPAREN] = ACTIONS(1326), + [anon_sym_GT_LPAREN] = ACTIONS(1326), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1288), - [sym_file_descriptor] = ACTIONS(1290), - [sym__concat] = ACTIONS(1290), - [sym__bare_dollar] = ACTIONS(1290), - [sym__brace_start] = ACTIONS(1290), + [sym_test_operator] = ACTIONS(1326), + [sym_file_descriptor] = ACTIONS(1328), + [sym__concat] = ACTIONS(1328), + [sym__bare_dollar] = ACTIONS(1328), + [sym__brace_start] = ACTIONS(1328), }, - [405] = { - [sym_word] = ACTIONS(1270), - [anon_sym_LF] = ACTIONS(1270), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym_EQ] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_EQ] = ACTIONS(1270), - [anon_sym_DASH_EQ] = ACTIONS(1270), - [anon_sym_STAR_EQ] = ACTIONS(1270), - [anon_sym_SLASH_EQ] = ACTIONS(1270), - [anon_sym_PERCENT_EQ] = ACTIONS(1270), - [anon_sym_LT_LT_EQ] = ACTIONS(1270), - [anon_sym_GT_GT_EQ] = ACTIONS(1270), - [anon_sym_AMP_EQ] = ACTIONS(1270), - [anon_sym_CARET_EQ] = ACTIONS(1270), - [anon_sym_PIPE_EQ] = ACTIONS(1270), - [anon_sym_EQ_EQ] = ACTIONS(1270), - [anon_sym_BANG_EQ] = ACTIONS(1270), - [anon_sym_LT_EQ] = ACTIONS(1270), - [anon_sym_GT_EQ] = ACTIONS(1270), - [anon_sym_AMP_AMP] = ACTIONS(1270), - [anon_sym_PIPE_PIPE] = ACTIONS(1270), - [anon_sym_LT_LT] = ACTIONS(1270), - [anon_sym_GT_GT] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_PERCENT] = ACTIONS(1270), - [anon_sym_STAR_STAR] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1270), - [anon_sym_GT] = ACTIONS(1270), - [anon_sym_RPAREN] = ACTIONS(1270), - [anon_sym_PIPE] = ACTIONS(1270), - [anon_sym_SEMI_SEMI] = ACTIONS(1270), - [anon_sym_PIPE_AMP] = ACTIONS(1270), - [anon_sym_EQ_TILDE] = ACTIONS(1270), - [anon_sym_AMP_GT] = ACTIONS(1270), - [anon_sym_AMP_GT_GT] = ACTIONS(1270), - [anon_sym_LT_AMP] = ACTIONS(1270), - [anon_sym_GT_AMP] = ACTIONS(1270), - [anon_sym_GT_PIPE] = ACTIONS(1270), - [anon_sym_LT_LT_DASH] = ACTIONS(1270), - [anon_sym_LT_LT_LT] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_CARET] = ACTIONS(1270), - [anon_sym_QMARK] = ACTIONS(1270), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1270), - [anon_sym_DOLLAR] = ACTIONS(1270), - [sym__special_character] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_raw_string] = ACTIONS(1270), - [sym_ansi_c_string] = ACTIONS(1270), - [aux_sym_number_token1] = ACTIONS(1270), - [aux_sym_number_token2] = ACTIONS(1270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1270), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1270), - [anon_sym_BQUOTE] = ACTIONS(1270), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1270), - [anon_sym_LT_LPAREN] = ACTIONS(1270), - [anon_sym_GT_LPAREN] = ACTIONS(1270), + [397] = { + [sym_word] = ACTIONS(1242), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1242), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_EQ] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_PLUS_EQ] = ACTIONS(1242), + [anon_sym_DASH_EQ] = ACTIONS(1242), + [anon_sym_STAR_EQ] = ACTIONS(1242), + [anon_sym_SLASH_EQ] = ACTIONS(1242), + [anon_sym_PERCENT_EQ] = ACTIONS(1242), + [anon_sym_LT_LT_EQ] = ACTIONS(1242), + [anon_sym_GT_GT_EQ] = ACTIONS(1242), + [anon_sym_AMP_EQ] = ACTIONS(1242), + [anon_sym_CARET_EQ] = ACTIONS(1242), + [anon_sym_PIPE_EQ] = ACTIONS(1242), + [anon_sym_EQ_EQ] = ACTIONS(1242), + [anon_sym_BANG_EQ] = ACTIONS(1242), + [anon_sym_LT_EQ] = ACTIONS(1242), + [anon_sym_GT_EQ] = ACTIONS(1242), + [anon_sym_AMP_AMP] = ACTIONS(1242), + [anon_sym_PIPE_PIPE] = ACTIONS(1242), + [anon_sym_LT_LT] = ACTIONS(1242), + [anon_sym_GT_GT] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_SLASH] = ACTIONS(1242), + [anon_sym_PERCENT] = ACTIONS(1242), + [anon_sym_STAR_STAR] = ACTIONS(1242), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_GT] = ACTIONS(1242), + [anon_sym_RPAREN] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_SEMI_SEMI] = ACTIONS(1242), + [anon_sym_PIPE_AMP] = ACTIONS(1242), + [anon_sym_EQ_TILDE] = ACTIONS(1242), + [anon_sym_AMP_GT] = ACTIONS(1242), + [anon_sym_AMP_GT_GT] = ACTIONS(1242), + [anon_sym_LT_AMP] = ACTIONS(1242), + [anon_sym_GT_AMP] = ACTIONS(1242), + [anon_sym_GT_PIPE] = ACTIONS(1242), + [anon_sym_LT_LT_DASH] = ACTIONS(1242), + [anon_sym_LF] = ACTIONS(1242), + [anon_sym_LT_LT_LT] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_CARET] = ACTIONS(1242), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1242), + [anon_sym_DOLLAR] = ACTIONS(1242), + [sym__special_character] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1242), + [sym_raw_string] = ACTIONS(1242), + [sym_ansi_c_string] = ACTIONS(1242), + [aux_sym_number_token1] = ACTIONS(1242), + [aux_sym_number_token2] = ACTIONS(1242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1242), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1242), + [anon_sym_BQUOTE] = ACTIONS(1242), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1242), + [anon_sym_LT_LPAREN] = ACTIONS(1242), + [anon_sym_GT_LPAREN] = ACTIONS(1242), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1270), - [sym_file_descriptor] = ACTIONS(1272), - [sym__bare_dollar] = ACTIONS(1272), - [sym__brace_start] = ACTIONS(1272), + [sym_test_operator] = ACTIONS(1242), + [sym_file_descriptor] = ACTIONS(1244), + [sym__bare_dollar] = ACTIONS(1244), + [sym__brace_start] = ACTIONS(1244), }, - [406] = { - [aux_sym__literal_repeat1] = STATE(406), - [sym_word] = ACTIONS(1358), - [anon_sym_LF] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_EQ] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_PLUS_EQ] = ACTIONS(1358), - [anon_sym_DASH_EQ] = ACTIONS(1358), - [anon_sym_STAR_EQ] = ACTIONS(1358), - [anon_sym_SLASH_EQ] = ACTIONS(1358), - [anon_sym_PERCENT_EQ] = ACTIONS(1358), - [anon_sym_LT_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_GT_EQ] = ACTIONS(1358), - [anon_sym_AMP_EQ] = ACTIONS(1358), - [anon_sym_CARET_EQ] = ACTIONS(1358), - [anon_sym_PIPE_EQ] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_AMP_AMP] = ACTIONS(1358), - [anon_sym_PIPE_PIPE] = ACTIONS(1358), - [anon_sym_LT_LT] = ACTIONS(1358), - [anon_sym_GT_GT] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_SLASH] = ACTIONS(1358), - [anon_sym_PERCENT] = ACTIONS(1358), - [anon_sym_STAR_STAR] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_RPAREN] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_SEMI_SEMI] = ACTIONS(1358), - [anon_sym_PIPE_AMP] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1358), - [anon_sym_AMP_GT] = ACTIONS(1358), - [anon_sym_AMP_GT_GT] = ACTIONS(1358), - [anon_sym_LT_AMP] = ACTIONS(1358), - [anon_sym_GT_AMP] = ACTIONS(1358), - [anon_sym_GT_PIPE] = ACTIONS(1358), - [anon_sym_LT_LT_DASH] = ACTIONS(1358), - [anon_sym_LT_LT_LT] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1358), - [sym__special_character] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym_raw_string] = ACTIONS(1358), - [sym_ansi_c_string] = ACTIONS(1358), - [aux_sym_number_token1] = ACTIONS(1358), - [aux_sym_number_token2] = ACTIONS(1358), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), - [anon_sym_BQUOTE] = ACTIONS(1358), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1358), - [anon_sym_LT_LPAREN] = ACTIONS(1358), - [anon_sym_GT_LPAREN] = ACTIONS(1358), + [398] = { + [aux_sym__literal_repeat1] = STATE(398), + [sym_word] = ACTIONS(1352), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym_EQ] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_EQ] = ACTIONS(1352), + [anon_sym_DASH_EQ] = ACTIONS(1352), + [anon_sym_STAR_EQ] = ACTIONS(1352), + [anon_sym_SLASH_EQ] = ACTIONS(1352), + [anon_sym_PERCENT_EQ] = ACTIONS(1352), + [anon_sym_LT_LT_EQ] = ACTIONS(1352), + [anon_sym_GT_GT_EQ] = ACTIONS(1352), + [anon_sym_AMP_EQ] = ACTIONS(1352), + [anon_sym_CARET_EQ] = ACTIONS(1352), + [anon_sym_PIPE_EQ] = ACTIONS(1352), + [anon_sym_EQ_EQ] = ACTIONS(1352), + [anon_sym_BANG_EQ] = ACTIONS(1352), + [anon_sym_LT_EQ] = ACTIONS(1352), + [anon_sym_GT_EQ] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(1352), + [anon_sym_PIPE_PIPE] = ACTIONS(1352), + [anon_sym_LT_LT] = ACTIONS(1352), + [anon_sym_GT_GT] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_SLASH] = ACTIONS(1352), + [anon_sym_PERCENT] = ACTIONS(1352), + [anon_sym_STAR_STAR] = ACTIONS(1352), + [anon_sym_LT] = ACTIONS(1352), + [anon_sym_GT] = ACTIONS(1352), + [anon_sym_RPAREN] = ACTIONS(1352), + [anon_sym_PIPE] = ACTIONS(1352), + [anon_sym_SEMI_SEMI] = ACTIONS(1352), + [anon_sym_PIPE_AMP] = ACTIONS(1352), + [anon_sym_EQ_TILDE] = ACTIONS(1352), + [anon_sym_AMP_GT] = ACTIONS(1352), + [anon_sym_AMP_GT_GT] = ACTIONS(1352), + [anon_sym_LT_AMP] = ACTIONS(1352), + [anon_sym_GT_AMP] = ACTIONS(1352), + [anon_sym_GT_PIPE] = ACTIONS(1352), + [anon_sym_LT_LT_DASH] = ACTIONS(1352), + [anon_sym_LF] = ACTIONS(1352), + [anon_sym_LT_LT_LT] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_CARET] = ACTIONS(1352), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1352), + [sym__special_character] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_raw_string] = ACTIONS(1352), + [sym_ansi_c_string] = ACTIONS(1352), + [aux_sym_number_token1] = ACTIONS(1352), + [aux_sym_number_token2] = ACTIONS(1352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1352), + [anon_sym_BQUOTE] = ACTIONS(1352), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1352), + [anon_sym_LT_LPAREN] = ACTIONS(1352), + [anon_sym_GT_LPAREN] = ACTIONS(1352), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1358), - [sym_file_descriptor] = ACTIONS(1363), - [sym__bare_dollar] = ACTIONS(1363), - [sym__brace_start] = ACTIONS(1363), + [sym_test_operator] = ACTIONS(1352), + [sym_file_descriptor] = ACTIONS(1357), + [sym__bare_dollar] = ACTIONS(1357), + [sym__brace_start] = ACTIONS(1357), }, - [407] = { - [sym_word] = ACTIONS(1241), - [anon_sym_LF] = ACTIONS(1241), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_EQ] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_STAR_EQ] = ACTIONS(1243), - [anon_sym_SLASH_EQ] = ACTIONS(1243), - [anon_sym_PERCENT_EQ] = ACTIONS(1243), - [anon_sym_LT_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_GT_EQ] = ACTIONS(1243), - [anon_sym_AMP_EQ] = ACTIONS(1243), - [anon_sym_CARET_EQ] = ACTIONS(1243), - [anon_sym_PIPE_EQ] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_PERCENT] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1245), - [anon_sym_RPAREN] = ACTIONS(1241), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_SEMI_SEMI] = ACTIONS(1241), - [anon_sym_PIPE_AMP] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_GT] = ACTIONS(1241), - [anon_sym_AMP_GT_GT] = ACTIONS(1241), - [anon_sym_LT_AMP] = ACTIONS(1241), - [anon_sym_GT_AMP] = ACTIONS(1241), - [anon_sym_GT_PIPE] = ACTIONS(1241), - [anon_sym_LT_LT_DASH] = ACTIONS(1241), - [anon_sym_LT_LT_LT] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_QMARK] = ACTIONS(1243), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1241), - [anon_sym_DOLLAR] = ACTIONS(1241), - [sym__special_character] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [sym_raw_string] = ACTIONS(1241), - [sym_ansi_c_string] = ACTIONS(1241), - [aux_sym_number_token1] = ACTIONS(1241), - [aux_sym_number_token2] = ACTIONS(1241), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1241), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1241), - [anon_sym_BQUOTE] = ACTIONS(1241), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1241), - [anon_sym_LT_LPAREN] = ACTIONS(1241), - [anon_sym_GT_LPAREN] = ACTIONS(1241), + [399] = { + [aux_sym__literal_repeat1] = STATE(398), + [sym_word] = ACTIONS(145), + [anon_sym_LPAREN_LPAREN] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_DASH_DASH] = ACTIONS(143), + [anon_sym_PLUS_EQ] = ACTIONS(143), + [anon_sym_DASH_EQ] = ACTIONS(143), + [anon_sym_STAR_EQ] = ACTIONS(143), + [anon_sym_SLASH_EQ] = ACTIONS(143), + [anon_sym_PERCENT_EQ] = ACTIONS(143), + [anon_sym_LT_LT_EQ] = ACTIONS(143), + [anon_sym_GT_GT_EQ] = ACTIONS(143), + [anon_sym_AMP_EQ] = ACTIONS(143), + [anon_sym_CARET_EQ] = ACTIONS(143), + [anon_sym_PIPE_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_AMP_AMP] = ACTIONS(147), + [anon_sym_PIPE_PIPE] = ACTIONS(147), + [anon_sym_LT_LT] = ACTIONS(147), + [anon_sym_GT_GT] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_STAR_STAR] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_SEMI_SEMI] = ACTIONS(145), + [anon_sym_PIPE_AMP] = ACTIONS(145), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_AMP_GT] = ACTIONS(145), + [anon_sym_AMP_GT_GT] = ACTIONS(145), + [anon_sym_LT_AMP] = ACTIONS(145), + [anon_sym_GT_AMP] = ACTIONS(145), + [anon_sym_GT_PIPE] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [anon_sym_LF] = ACTIONS(145), + [anon_sym_LT_LT_LT] = ACTIONS(145), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(145), + [anon_sym_DOLLAR] = ACTIONS(145), + [sym__special_character] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_raw_string] = ACTIONS(145), + [sym_ansi_c_string] = ACTIONS(145), + [aux_sym_number_token1] = ACTIONS(145), + [aux_sym_number_token2] = ACTIONS(145), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(145), + [anon_sym_BQUOTE] = ACTIONS(145), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(145), + [anon_sym_LT_LPAREN] = ACTIONS(145), + [anon_sym_GT_LPAREN] = ACTIONS(145), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1245), - [sym_file_descriptor] = ACTIONS(1250), - [sym__bare_dollar] = ACTIONS(1250), - [sym__brace_start] = ACTIONS(1250), + [sym_test_operator] = ACTIONS(147), + [sym_file_descriptor] = ACTIONS(178), + [sym__bare_dollar] = ACTIONS(178), + [sym__brace_start] = ACTIONS(178), }, - [408] = { - [sym_word] = ACTIONS(1241), - [anon_sym_LF] = ACTIONS(1241), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_EQ] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_STAR_EQ] = ACTIONS(1243), - [anon_sym_SLASH_EQ] = ACTIONS(1243), - [anon_sym_PERCENT_EQ] = ACTIONS(1243), - [anon_sym_LT_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_GT_EQ] = ACTIONS(1243), - [anon_sym_AMP_EQ] = ACTIONS(1243), - [anon_sym_CARET_EQ] = ACTIONS(1243), - [anon_sym_PIPE_EQ] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_PERCENT] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1245), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_SEMI_SEMI] = ACTIONS(1241), - [anon_sym_PIPE_AMP] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_GT] = ACTIONS(1241), - [anon_sym_AMP_GT_GT] = ACTIONS(1241), - [anon_sym_LT_AMP] = ACTIONS(1241), - [anon_sym_GT_AMP] = ACTIONS(1241), - [anon_sym_GT_PIPE] = ACTIONS(1241), - [anon_sym_LT_LT_DASH] = ACTIONS(1241), - [anon_sym_LT_LT_LT] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_QMARK] = ACTIONS(1243), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1241), - [anon_sym_DOLLAR] = ACTIONS(1241), - [sym__special_character] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [sym_raw_string] = ACTIONS(1241), - [sym_ansi_c_string] = ACTIONS(1241), - [aux_sym_number_token1] = ACTIONS(1241), - [aux_sym_number_token2] = ACTIONS(1241), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1241), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1241), - [anon_sym_BQUOTE] = ACTIONS(1241), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1241), - [anon_sym_LT_LPAREN] = ACTIONS(1241), - [anon_sym_GT_LPAREN] = ACTIONS(1241), + [400] = { + [sym_word] = ACTIONS(1225), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_PLUS_EQ] = ACTIONS(1227), + [anon_sym_DASH_EQ] = ACTIONS(1227), + [anon_sym_STAR_EQ] = ACTIONS(1227), + [anon_sym_SLASH_EQ] = ACTIONS(1227), + [anon_sym_PERCENT_EQ] = ACTIONS(1227), + [anon_sym_LT_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_GT_EQ] = ACTIONS(1227), + [anon_sym_AMP_EQ] = ACTIONS(1227), + [anon_sym_CARET_EQ] = ACTIONS(1227), + [anon_sym_PIPE_EQ] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1227), + [anon_sym_PERCENT] = ACTIONS(1227), + [anon_sym_STAR_STAR] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1225), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_SEMI_SEMI] = ACTIONS(1225), + [anon_sym_PIPE_AMP] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(1229), + [anon_sym_AMP_GT] = ACTIONS(1225), + [anon_sym_AMP_GT_GT] = ACTIONS(1225), + [anon_sym_LT_AMP] = ACTIONS(1225), + [anon_sym_GT_AMP] = ACTIONS(1225), + [anon_sym_GT_PIPE] = ACTIONS(1225), + [anon_sym_LT_LT_DASH] = ACTIONS(1225), + [anon_sym_LF] = ACTIONS(1225), + [anon_sym_LT_LT_LT] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), + [anon_sym_DOLLAR] = ACTIONS(1225), + [sym__special_character] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_raw_string] = ACTIONS(1225), + [sym_ansi_c_string] = ACTIONS(1225), + [aux_sym_number_token1] = ACTIONS(1225), + [aux_sym_number_token2] = ACTIONS(1225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), + [anon_sym_BQUOTE] = ACTIONS(1225), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), + [anon_sym_LT_LPAREN] = ACTIONS(1225), + [anon_sym_GT_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1245), - [sym_file_descriptor] = ACTIONS(1250), - [sym__bare_dollar] = ACTIONS(1250), - [sym__brace_start] = ACTIONS(1250), + [sym_test_operator] = ACTIONS(1229), + [sym_file_descriptor] = ACTIONS(1234), + [sym__bare_dollar] = ACTIONS(1234), + [sym__brace_start] = ACTIONS(1234), }, - [409] = { - [aux_sym__literal_repeat1] = STATE(406), - [sym_word] = ACTIONS(195), - [anon_sym_LF] = ACTIONS(195), - [anon_sym_SEMI] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_PLUS_PLUS] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(197), - [anon_sym_PLUS_EQ] = ACTIONS(197), - [anon_sym_DASH_EQ] = ACTIONS(197), - [anon_sym_STAR_EQ] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(197), - [anon_sym_LT_LT_EQ] = ACTIONS(197), - [anon_sym_GT_GT_EQ] = ACTIONS(197), - [anon_sym_AMP_EQ] = ACTIONS(197), - [anon_sym_CARET_EQ] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(197), - [anon_sym_EQ_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(197), - [anon_sym_GT_EQ] = ACTIONS(197), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_LT_LT] = ACTIONS(199), - [anon_sym_GT_GT] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_STAR_STAR] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_RPAREN] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_SEMI_SEMI] = ACTIONS(195), - [anon_sym_PIPE_AMP] = ACTIONS(195), - [anon_sym_EQ_TILDE] = ACTIONS(199), - [anon_sym_AMP_GT] = ACTIONS(195), - [anon_sym_AMP_GT_GT] = ACTIONS(195), - [anon_sym_LT_AMP] = ACTIONS(195), - [anon_sym_GT_AMP] = ACTIONS(195), - [anon_sym_GT_PIPE] = ACTIONS(195), - [anon_sym_LT_LT_DASH] = ACTIONS(195), - [anon_sym_LT_LT_LT] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(197), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(195), - [sym__special_character] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(195), - [sym_raw_string] = ACTIONS(195), - [sym_ansi_c_string] = ACTIONS(195), - [aux_sym_number_token1] = ACTIONS(195), - [aux_sym_number_token2] = ACTIONS(195), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_BQUOTE] = ACTIONS(195), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(195), - [anon_sym_LT_LPAREN] = ACTIONS(195), - [anon_sym_GT_LPAREN] = ACTIONS(195), + [401] = { + [aux_sym_concatenation_repeat1] = STATE(406), + [sym_word] = ACTIONS(1225), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1234), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_PLUS_EQ] = ACTIONS(1227), + [anon_sym_DASH_EQ] = ACTIONS(1227), + [anon_sym_STAR_EQ] = ACTIONS(1227), + [anon_sym_SLASH_EQ] = ACTIONS(1227), + [anon_sym_PERCENT_EQ] = ACTIONS(1227), + [anon_sym_LT_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_GT_EQ] = ACTIONS(1364), + [anon_sym_AMP_EQ] = ACTIONS(1364), + [anon_sym_CARET_EQ] = ACTIONS(1227), + [anon_sym_PIPE_EQ] = ACTIONS(1364), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_EQ] = ACTIONS(1364), + [anon_sym_AMP_AMP] = ACTIONS(1366), + [anon_sym_PIPE_PIPE] = ACTIONS(1366), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1227), + [anon_sym_PERCENT] = ACTIONS(1227), + [anon_sym_STAR_STAR] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_PIPE_AMP] = ACTIONS(1234), + [anon_sym_RBRACK] = ACTIONS(1364), + [anon_sym_EQ_TILDE] = ACTIONS(1229), + [anon_sym_AMP_GT] = ACTIONS(1225), + [anon_sym_AMP_GT_GT] = ACTIONS(1234), + [anon_sym_LT_AMP] = ACTIONS(1234), + [anon_sym_GT_AMP] = ACTIONS(1234), + [anon_sym_GT_PIPE] = ACTIONS(1234), + [anon_sym_LT_LT_DASH] = ACTIONS(1234), + [anon_sym_LT_LT_LT] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1234), + [aux_sym_concatenation_token1] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(1225), + [sym__special_character] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1234), + [sym_raw_string] = ACTIONS(1234), + [sym_ansi_c_string] = ACTIONS(1234), + [aux_sym_number_token1] = ACTIONS(1225), + [aux_sym_number_token2] = ACTIONS(1225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1234), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), + [anon_sym_BQUOTE] = ACTIONS(1225), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1234), + [anon_sym_LT_LPAREN] = ACTIONS(1234), + [anon_sym_GT_LPAREN] = ACTIONS(1234), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1366), + [sym_file_descriptor] = ACTIONS(1234), + [sym__concat] = ACTIONS(609), + [sym__bare_dollar] = ACTIONS(1234), + [sym__brace_start] = ACTIONS(1234), + }, + [402] = { + [sym_word] = ACTIONS(1225), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_PLUS_EQ] = ACTIONS(1227), + [anon_sym_DASH_EQ] = ACTIONS(1227), + [anon_sym_STAR_EQ] = ACTIONS(1227), + [anon_sym_SLASH_EQ] = ACTIONS(1227), + [anon_sym_PERCENT_EQ] = ACTIONS(1227), + [anon_sym_LT_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_GT_EQ] = ACTIONS(1227), + [anon_sym_AMP_EQ] = ACTIONS(1227), + [anon_sym_CARET_EQ] = ACTIONS(1227), + [anon_sym_PIPE_EQ] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1227), + [anon_sym_PERCENT] = ACTIONS(1227), + [anon_sym_STAR_STAR] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_SEMI_SEMI] = ACTIONS(1225), + [anon_sym_PIPE_AMP] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(1229), + [anon_sym_AMP_GT] = ACTIONS(1225), + [anon_sym_AMP_GT_GT] = ACTIONS(1225), + [anon_sym_LT_AMP] = ACTIONS(1225), + [anon_sym_GT_AMP] = ACTIONS(1225), + [anon_sym_GT_PIPE] = ACTIONS(1225), + [anon_sym_LT_LT_DASH] = ACTIONS(1225), + [anon_sym_LF] = ACTIONS(1225), + [anon_sym_LT_LT_LT] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), + [anon_sym_DOLLAR] = ACTIONS(1225), + [sym__special_character] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_raw_string] = ACTIONS(1225), + [sym_ansi_c_string] = ACTIONS(1225), + [aux_sym_number_token1] = ACTIONS(1225), + [aux_sym_number_token2] = ACTIONS(1225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), + [anon_sym_BQUOTE] = ACTIONS(1225), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), + [anon_sym_LT_LPAREN] = ACTIONS(1225), + [anon_sym_GT_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(199), - [sym_file_descriptor] = ACTIONS(232), - [sym__bare_dollar] = ACTIONS(232), - [sym__brace_start] = ACTIONS(232), + [sym_test_operator] = ACTIONS(1229), + [sym_file_descriptor] = ACTIONS(1234), + [sym__bare_dollar] = ACTIONS(1234), + [sym__brace_start] = ACTIONS(1234), }, - [410] = { - [aux_sym_concatenation_repeat1] = STATE(411), - [sym_word] = ACTIONS(1241), - [anon_sym_EQ] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_STAR_EQ] = ACTIONS(1243), - [anon_sym_SLASH_EQ] = ACTIONS(1243), - [anon_sym_PERCENT_EQ] = ACTIONS(1243), - [anon_sym_LT_LT_EQ] = ACTIONS(1372), - [anon_sym_GT_GT_EQ] = ACTIONS(1372), - [anon_sym_AMP_EQ] = ACTIONS(1372), - [anon_sym_CARET_EQ] = ACTIONS(1243), - [anon_sym_PIPE_EQ] = ACTIONS(1372), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1372), - [anon_sym_GT_EQ] = ACTIONS(1372), - [anon_sym_AMP_AMP] = ACTIONS(1374), - [anon_sym_PIPE_PIPE] = ACTIONS(1374), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_PERCENT] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_PIPE_AMP] = ACTIONS(1250), - [anon_sym_RBRACK] = ACTIONS(1372), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_GT] = ACTIONS(1241), - [anon_sym_AMP_GT_GT] = ACTIONS(1250), - [anon_sym_LT_AMP] = ACTIONS(1250), - [anon_sym_GT_AMP] = ACTIONS(1250), - [anon_sym_GT_PIPE] = ACTIONS(1250), - [anon_sym_LT_LT_DASH] = ACTIONS(1250), - [anon_sym_LT_LT_LT] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_QMARK] = ACTIONS(1243), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1250), - [aux_sym_concatenation_token1] = ACTIONS(635), - [anon_sym_DOLLAR] = ACTIONS(1241), - [sym__special_character] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1250), - [sym_raw_string] = ACTIONS(1250), - [sym_ansi_c_string] = ACTIONS(1250), - [aux_sym_number_token1] = ACTIONS(1241), - [aux_sym_number_token2] = ACTIONS(1241), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1250), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1241), - [anon_sym_BQUOTE] = ACTIONS(1241), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1250), - [anon_sym_LT_LPAREN] = ACTIONS(1250), - [anon_sym_GT_LPAREN] = ACTIONS(1250), + [403] = { + [aux_sym_concatenation_repeat1] = STATE(406), + [sym_word] = ACTIONS(1225), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1234), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_PLUS_EQ] = ACTIONS(1227), + [anon_sym_DASH_EQ] = ACTIONS(1227), + [anon_sym_STAR_EQ] = ACTIONS(1227), + [anon_sym_SLASH_EQ] = ACTIONS(1227), + [anon_sym_PERCENT_EQ] = ACTIONS(1227), + [anon_sym_LT_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_GT_EQ] = ACTIONS(1364), + [anon_sym_AMP_EQ] = ACTIONS(1364), + [anon_sym_CARET_EQ] = ACTIONS(1227), + [anon_sym_PIPE_EQ] = ACTIONS(1364), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_EQ] = ACTIONS(1364), + [anon_sym_AMP_AMP] = ACTIONS(1366), + [anon_sym_PIPE_PIPE] = ACTIONS(1366), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1227), + [anon_sym_PERCENT] = ACTIONS(1227), + [anon_sym_STAR_STAR] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_PIPE_AMP] = ACTIONS(1234), + [anon_sym_RBRACK] = ACTIONS(1364), + [anon_sym_EQ_TILDE] = ACTIONS(1229), + [anon_sym_AMP_GT] = ACTIONS(1225), + [anon_sym_AMP_GT_GT] = ACTIONS(1234), + [anon_sym_LT_AMP] = ACTIONS(1234), + [anon_sym_GT_AMP] = ACTIONS(1234), + [anon_sym_GT_PIPE] = ACTIONS(1234), + [anon_sym_LT_LT_DASH] = ACTIONS(1234), + [anon_sym_LT_LT_LT] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1234), + [aux_sym_concatenation_token1] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(1225), + [sym__special_character] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1234), + [sym_raw_string] = ACTIONS(1234), + [sym_ansi_c_string] = ACTIONS(1234), + [aux_sym_number_token1] = ACTIONS(1225), + [aux_sym_number_token2] = ACTIONS(1225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1234), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), + [anon_sym_BQUOTE] = ACTIONS(1225), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1234), + [anon_sym_LT_LPAREN] = ACTIONS(1234), + [anon_sym_GT_LPAREN] = ACTIONS(1234), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1374), - [sym_file_descriptor] = ACTIONS(1250), - [sym__concat] = ACTIONS(635), - [sym__bare_dollar] = ACTIONS(1250), - [sym__brace_start] = ACTIONS(1250), + [sym_test_operator] = ACTIONS(1366), + [sym_file_descriptor] = ACTIONS(1234), + [sym__concat] = ACTIONS(609), + [sym__bare_dollar] = ACTIONS(1234), + [sym__brace_start] = ACTIONS(1234), }, - [411] = { - [aux_sym_concatenation_repeat1] = STATE(416), + [404] = { + [aux_sym_concatenation_repeat1] = STATE(404), [sym_word] = ACTIONS(1258), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1263), [anon_sym_EQ] = ACTIONS(1258), [anon_sym_PLUS_PLUS] = ACTIONS(1258), [anon_sym_DASH_DASH] = ACTIONS(1258), @@ -54379,17 +55642,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(1258), [anon_sym_SLASH_EQ] = ACTIONS(1258), [anon_sym_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_EQ] = ACTIONS(1260), - [anon_sym_GT_GT_EQ] = ACTIONS(1260), - [anon_sym_AMP_EQ] = ACTIONS(1260), + [anon_sym_LT_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_GT_EQ] = ACTIONS(1263), + [anon_sym_AMP_EQ] = ACTIONS(1263), [anon_sym_CARET_EQ] = ACTIONS(1258), - [anon_sym_PIPE_EQ] = ACTIONS(1260), + [anon_sym_PIPE_EQ] = ACTIONS(1263), [anon_sym_EQ_EQ] = ACTIONS(1258), [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT_EQ] = ACTIONS(1260), - [anon_sym_GT_EQ] = ACTIONS(1260), - [anon_sym_AMP_AMP] = ACTIONS(1260), - [anon_sym_PIPE_PIPE] = ACTIONS(1260), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1263), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1263), [anon_sym_LT_LT] = ACTIONS(1258), [anon_sym_GT_GT] = ACTIONS(1258), [anon_sym_PLUS] = ACTIONS(1258), @@ -54401,786 +55664,1341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1258), [anon_sym_GT] = ACTIONS(1258), [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_PIPE_AMP] = ACTIONS(1260), - [anon_sym_RBRACK] = ACTIONS(1260), + [anon_sym_PIPE_AMP] = ACTIONS(1263), + [anon_sym_RBRACK] = ACTIONS(1263), [anon_sym_EQ_TILDE] = ACTIONS(1258), [anon_sym_AMP_GT] = ACTIONS(1258), - [anon_sym_AMP_GT_GT] = ACTIONS(1260), - [anon_sym_LT_AMP] = ACTIONS(1260), - [anon_sym_GT_AMP] = ACTIONS(1260), - [anon_sym_GT_PIPE] = ACTIONS(1260), - [anon_sym_LT_LT_DASH] = ACTIONS(1260), - [anon_sym_LT_LT_LT] = ACTIONS(1260), + [anon_sym_AMP_GT_GT] = ACTIONS(1263), + [anon_sym_LT_AMP] = ACTIONS(1263), + [anon_sym_GT_AMP] = ACTIONS(1263), + [anon_sym_GT_PIPE] = ACTIONS(1263), + [anon_sym_LT_LT_DASH] = ACTIONS(1263), + [anon_sym_LT_LT_LT] = ACTIONS(1263), [anon_sym_AMP] = ACTIONS(1258), [anon_sym_CARET] = ACTIONS(1258), [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1260), - [aux_sym_concatenation_token1] = ACTIONS(635), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1263), + [aux_sym_concatenation_token1] = ACTIONS(1371), [anon_sym_DOLLAR] = ACTIONS(1258), [sym__special_character] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1260), - [sym_raw_string] = ACTIONS(1260), - [sym_ansi_c_string] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(1263), + [sym_raw_string] = ACTIONS(1263), + [sym_ansi_c_string] = ACTIONS(1263), [aux_sym_number_token1] = ACTIONS(1258), [aux_sym_number_token2] = ACTIONS(1258), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1260), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1263), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1258), [anon_sym_BQUOTE] = ACTIONS(1258), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1260), - [anon_sym_LT_LPAREN] = ACTIONS(1260), - [anon_sym_GT_LPAREN] = ACTIONS(1260), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1263), + [anon_sym_LT_LPAREN] = ACTIONS(1263), + [anon_sym_GT_LPAREN] = ACTIONS(1263), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1263), + [sym_file_descriptor] = ACTIONS(1263), + [sym__concat] = ACTIONS(1371), + [sym__bare_dollar] = ACTIONS(1263), + [sym__brace_start] = ACTIONS(1263), + }, + [405] = { + [sym_word] = ACTIONS(1225), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_PLUS_EQ] = ACTIONS(1227), + [anon_sym_DASH_EQ] = ACTIONS(1227), + [anon_sym_STAR_EQ] = ACTIONS(1227), + [anon_sym_SLASH_EQ] = ACTIONS(1227), + [anon_sym_PERCENT_EQ] = ACTIONS(1227), + [anon_sym_LT_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_GT_EQ] = ACTIONS(1227), + [anon_sym_AMP_EQ] = ACTIONS(1227), + [anon_sym_CARET_EQ] = ACTIONS(1227), + [anon_sym_PIPE_EQ] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1227), + [anon_sym_PERCENT] = ACTIONS(1227), + [anon_sym_STAR_STAR] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_SEMI_SEMI] = ACTIONS(1225), + [anon_sym_PIPE_AMP] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(1229), + [anon_sym_AMP_GT] = ACTIONS(1225), + [anon_sym_AMP_GT_GT] = ACTIONS(1225), + [anon_sym_LT_AMP] = ACTIONS(1225), + [anon_sym_GT_AMP] = ACTIONS(1225), + [anon_sym_GT_PIPE] = ACTIONS(1225), + [anon_sym_LT_LT_DASH] = ACTIONS(1225), + [anon_sym_LF] = ACTIONS(1225), + [anon_sym_LT_LT_LT] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), + [anon_sym_DOLLAR] = ACTIONS(1225), + [sym__special_character] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_raw_string] = ACTIONS(1225), + [sym_ansi_c_string] = ACTIONS(1225), + [aux_sym_number_token1] = ACTIONS(1225), + [aux_sym_number_token2] = ACTIONS(1225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), + [anon_sym_BQUOTE] = ACTIONS(1225), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), + [anon_sym_LT_LPAREN] = ACTIONS(1225), + [anon_sym_GT_LPAREN] = ACTIONS(1225), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1229), + [sym_file_descriptor] = ACTIONS(1234), + [sym__bare_dollar] = ACTIONS(1234), + [sym__brace_start] = ACTIONS(1234), + }, + [406] = { + [aux_sym_concatenation_repeat1] = STATE(404), + [sym_word] = ACTIONS(1252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_PERCENT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1254), + [anon_sym_GT_GT_EQ] = ACTIONS(1254), + [anon_sym_AMP_EQ] = ACTIONS(1254), + [anon_sym_CARET_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1254), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT_EQ] = ACTIONS(1254), + [anon_sym_GT_EQ] = ACTIONS(1254), + [anon_sym_AMP_AMP] = ACTIONS(1254), + [anon_sym_PIPE_PIPE] = ACTIONS(1254), + [anon_sym_LT_LT] = ACTIONS(1252), + [anon_sym_GT_GT] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_SLASH] = ACTIONS(1252), + [anon_sym_PERCENT] = ACTIONS(1252), + [anon_sym_STAR_STAR] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_PIPE_AMP] = ACTIONS(1254), + [anon_sym_RBRACK] = ACTIONS(1254), + [anon_sym_EQ_TILDE] = ACTIONS(1252), + [anon_sym_AMP_GT] = ACTIONS(1252), + [anon_sym_AMP_GT_GT] = ACTIONS(1254), + [anon_sym_LT_AMP] = ACTIONS(1254), + [anon_sym_GT_AMP] = ACTIONS(1254), + [anon_sym_GT_PIPE] = ACTIONS(1254), + [anon_sym_LT_LT_DASH] = ACTIONS(1254), + [anon_sym_LT_LT_LT] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_QMARK] = ACTIONS(1252), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1254), + [aux_sym_concatenation_token1] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(1252), + [sym__special_character] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1254), + [sym_raw_string] = ACTIONS(1254), + [sym_ansi_c_string] = ACTIONS(1254), + [aux_sym_number_token1] = ACTIONS(1252), + [aux_sym_number_token2] = ACTIONS(1252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), + [anon_sym_BQUOTE] = ACTIONS(1252), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1254), + [anon_sym_LT_LPAREN] = ACTIONS(1254), + [anon_sym_GT_LPAREN] = ACTIONS(1254), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1260), - [sym_file_descriptor] = ACTIONS(1260), - [sym__concat] = ACTIONS(1379), - [sym__bare_dollar] = ACTIONS(1260), - [sym__brace_start] = ACTIONS(1260), + [sym_test_operator] = ACTIONS(1254), + [sym_file_descriptor] = ACTIONS(1254), + [sym__concat] = ACTIONS(1374), + [sym__bare_dollar] = ACTIONS(1254), + [sym__brace_start] = ACTIONS(1254), + }, + [407] = { + [aux_sym_concatenation_repeat1] = STATE(408), + [sym_word] = ACTIONS(1242), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1244), + [anon_sym_EQ] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_PLUS_EQ] = ACTIONS(1242), + [anon_sym_DASH_EQ] = ACTIONS(1242), + [anon_sym_STAR_EQ] = ACTIONS(1242), + [anon_sym_SLASH_EQ] = ACTIONS(1242), + [anon_sym_PERCENT_EQ] = ACTIONS(1242), + [anon_sym_LT_LT_EQ] = ACTIONS(1244), + [anon_sym_GT_GT_EQ] = ACTIONS(1244), + [anon_sym_AMP_EQ] = ACTIONS(1244), + [anon_sym_CARET_EQ] = ACTIONS(1242), + [anon_sym_PIPE_EQ] = ACTIONS(1244), + [anon_sym_EQ_EQ] = ACTIONS(1242), + [anon_sym_BANG_EQ] = ACTIONS(1242), + [anon_sym_LT_EQ] = ACTIONS(1244), + [anon_sym_GT_EQ] = ACTIONS(1244), + [anon_sym_AMP_AMP] = ACTIONS(1244), + [anon_sym_PIPE_PIPE] = ACTIONS(1244), + [anon_sym_LT_LT] = ACTIONS(1242), + [anon_sym_GT_GT] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_SLASH] = ACTIONS(1242), + [anon_sym_PERCENT] = ACTIONS(1242), + [anon_sym_STAR_STAR] = ACTIONS(1242), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_GT] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_PIPE_AMP] = ACTIONS(1244), + [anon_sym_RBRACK] = ACTIONS(1244), + [anon_sym_EQ_TILDE] = ACTIONS(1242), + [anon_sym_AMP_GT] = ACTIONS(1242), + [anon_sym_AMP_GT_GT] = ACTIONS(1244), + [anon_sym_LT_AMP] = ACTIONS(1244), + [anon_sym_GT_AMP] = ACTIONS(1244), + [anon_sym_GT_PIPE] = ACTIONS(1244), + [anon_sym_LT_LT_DASH] = ACTIONS(1244), + [anon_sym_LT_LT_LT] = ACTIONS(1244), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_CARET] = ACTIONS(1242), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1244), + [aux_sym_concatenation_token1] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(1242), + [sym__special_character] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1244), + [sym_raw_string] = ACTIONS(1244), + [sym_ansi_c_string] = ACTIONS(1244), + [aux_sym_number_token1] = ACTIONS(1242), + [aux_sym_number_token2] = ACTIONS(1242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1244), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1242), + [anon_sym_BQUOTE] = ACTIONS(1242), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1244), + [anon_sym_LT_LPAREN] = ACTIONS(1244), + [anon_sym_GT_LPAREN] = ACTIONS(1244), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1244), + [sym_file_descriptor] = ACTIONS(1244), + [sym__concat] = ACTIONS(609), + [sym__bare_dollar] = ACTIONS(1244), + [sym__brace_start] = ACTIONS(1244), + }, + [408] = { + [aux_sym_concatenation_repeat1] = STATE(404), + [sym_word] = ACTIONS(1246), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1248), + [anon_sym_EQ] = ACTIONS(1246), + [anon_sym_PLUS_PLUS] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_PLUS_EQ] = ACTIONS(1246), + [anon_sym_DASH_EQ] = ACTIONS(1246), + [anon_sym_STAR_EQ] = ACTIONS(1246), + [anon_sym_SLASH_EQ] = ACTIONS(1246), + [anon_sym_PERCENT_EQ] = ACTIONS(1246), + [anon_sym_LT_LT_EQ] = ACTIONS(1248), + [anon_sym_GT_GT_EQ] = ACTIONS(1248), + [anon_sym_AMP_EQ] = ACTIONS(1248), + [anon_sym_CARET_EQ] = ACTIONS(1246), + [anon_sym_PIPE_EQ] = ACTIONS(1248), + [anon_sym_EQ_EQ] = ACTIONS(1246), + [anon_sym_BANG_EQ] = ACTIONS(1246), + [anon_sym_LT_EQ] = ACTIONS(1248), + [anon_sym_GT_EQ] = ACTIONS(1248), + [anon_sym_AMP_AMP] = ACTIONS(1248), + [anon_sym_PIPE_PIPE] = ACTIONS(1248), + [anon_sym_LT_LT] = ACTIONS(1246), + [anon_sym_GT_GT] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1246), + [anon_sym_SLASH] = ACTIONS(1246), + [anon_sym_PERCENT] = ACTIONS(1246), + [anon_sym_STAR_STAR] = ACTIONS(1246), + [anon_sym_LT] = ACTIONS(1246), + [anon_sym_GT] = ACTIONS(1246), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_PIPE_AMP] = ACTIONS(1248), + [anon_sym_RBRACK] = ACTIONS(1248), + [anon_sym_EQ_TILDE] = ACTIONS(1246), + [anon_sym_AMP_GT] = ACTIONS(1246), + [anon_sym_AMP_GT_GT] = ACTIONS(1248), + [anon_sym_LT_AMP] = ACTIONS(1248), + [anon_sym_GT_AMP] = ACTIONS(1248), + [anon_sym_GT_PIPE] = ACTIONS(1248), + [anon_sym_LT_LT_DASH] = ACTIONS(1248), + [anon_sym_LT_LT_LT] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1246), + [anon_sym_CARET] = ACTIONS(1246), + [anon_sym_QMARK] = ACTIONS(1246), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1248), + [aux_sym_concatenation_token1] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(1246), + [sym__special_character] = ACTIONS(1246), + [anon_sym_DQUOTE] = ACTIONS(1248), + [sym_raw_string] = ACTIONS(1248), + [sym_ansi_c_string] = ACTIONS(1248), + [aux_sym_number_token1] = ACTIONS(1246), + [aux_sym_number_token2] = ACTIONS(1246), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1248), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1246), + [anon_sym_BQUOTE] = ACTIONS(1246), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1248), + [anon_sym_LT_LPAREN] = ACTIONS(1248), + [anon_sym_GT_LPAREN] = ACTIONS(1248), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1248), + [sym_file_descriptor] = ACTIONS(1248), + [sym__concat] = ACTIONS(1376), + [sym__bare_dollar] = ACTIONS(1248), + [sym__brace_start] = ACTIONS(1248), + }, + [409] = { + [sym_word] = ACTIONS(1242), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_EQ] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_PLUS_EQ] = ACTIONS(1242), + [anon_sym_DASH_EQ] = ACTIONS(1242), + [anon_sym_STAR_EQ] = ACTIONS(1242), + [anon_sym_SLASH_EQ] = ACTIONS(1242), + [anon_sym_PERCENT_EQ] = ACTIONS(1242), + [anon_sym_LT_LT_EQ] = ACTIONS(1242), + [anon_sym_GT_GT_EQ] = ACTIONS(1242), + [anon_sym_AMP_EQ] = ACTIONS(1242), + [anon_sym_CARET_EQ] = ACTIONS(1242), + [anon_sym_PIPE_EQ] = ACTIONS(1242), + [anon_sym_EQ_EQ] = ACTIONS(1242), + [anon_sym_BANG_EQ] = ACTIONS(1242), + [anon_sym_LT_EQ] = ACTIONS(1242), + [anon_sym_GT_EQ] = ACTIONS(1242), + [anon_sym_AMP_AMP] = ACTIONS(1242), + [anon_sym_PIPE_PIPE] = ACTIONS(1242), + [anon_sym_LT_LT] = ACTIONS(1242), + [anon_sym_GT_GT] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_SLASH] = ACTIONS(1242), + [anon_sym_PERCENT] = ACTIONS(1242), + [anon_sym_STAR_STAR] = ACTIONS(1242), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_GT] = ACTIONS(1242), + [anon_sym_RPAREN] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_SEMI_SEMI] = ACTIONS(1242), + [anon_sym_PIPE_AMP] = ACTIONS(1242), + [anon_sym_EQ_TILDE] = ACTIONS(1242), + [anon_sym_AMP_GT] = ACTIONS(1242), + [anon_sym_AMP_GT_GT] = ACTIONS(1242), + [anon_sym_LT_AMP] = ACTIONS(1242), + [anon_sym_GT_AMP] = ACTIONS(1242), + [anon_sym_GT_PIPE] = ACTIONS(1242), + [anon_sym_LT_LT_DASH] = ACTIONS(1242), + [anon_sym_LF] = ACTIONS(1242), + [anon_sym_LT_LT_LT] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_CARET] = ACTIONS(1242), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1242), + [anon_sym_DOLLAR] = ACTIONS(1242), + [sym__special_character] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1242), + [sym_raw_string] = ACTIONS(1242), + [sym_ansi_c_string] = ACTIONS(1242), + [aux_sym_number_token1] = ACTIONS(1242), + [aux_sym_number_token2] = ACTIONS(1242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1242), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1242), + [anon_sym_BQUOTE] = ACTIONS(1242), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1242), + [anon_sym_LT_LPAREN] = ACTIONS(1242), + [anon_sym_GT_LPAREN] = ACTIONS(1242), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1242), + [sym_file_descriptor] = ACTIONS(1244), + [sym__bare_dollar] = ACTIONS(1244), + [sym__brace_start] = ACTIONS(1244), + }, + [410] = { + [sym_word] = ACTIONS(1294), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1296), + [anon_sym_EQ] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_EQ] = ACTIONS(1294), + [anon_sym_DASH_EQ] = ACTIONS(1294), + [anon_sym_STAR_EQ] = ACTIONS(1294), + [anon_sym_SLASH_EQ] = ACTIONS(1294), + [anon_sym_PERCENT_EQ] = ACTIONS(1294), + [anon_sym_LT_LT_EQ] = ACTIONS(1296), + [anon_sym_GT_GT_EQ] = ACTIONS(1296), + [anon_sym_AMP_EQ] = ACTIONS(1296), + [anon_sym_CARET_EQ] = ACTIONS(1294), + [anon_sym_PIPE_EQ] = ACTIONS(1296), + [anon_sym_EQ_EQ] = ACTIONS(1294), + [anon_sym_BANG_EQ] = ACTIONS(1294), + [anon_sym_LT_EQ] = ACTIONS(1296), + [anon_sym_GT_EQ] = ACTIONS(1296), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1294), + [anon_sym_GT_GT] = ACTIONS(1294), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_SLASH] = ACTIONS(1294), + [anon_sym_PERCENT] = ACTIONS(1294), + [anon_sym_STAR_STAR] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1296), + [anon_sym_RBRACK] = ACTIONS(1296), + [anon_sym_EQ_TILDE] = ACTIONS(1294), + [anon_sym_AMP_GT] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(1296), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), + [anon_sym_GT_PIPE] = ACTIONS(1296), + [anon_sym_LT_LT_DASH] = ACTIONS(1296), + [anon_sym_LT_LT_LT] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_CARET] = ACTIONS(1294), + [anon_sym_QMARK] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), + [aux_sym_concatenation_token1] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1294), + [sym__special_character] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym_raw_string] = ACTIONS(1296), + [sym_ansi_c_string] = ACTIONS(1296), + [aux_sym_number_token1] = ACTIONS(1294), + [aux_sym_number_token2] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(1296), + [anon_sym_GT_LPAREN] = ACTIONS(1296), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1296), + [sym_file_descriptor] = ACTIONS(1296), + [sym__concat] = ACTIONS(1296), + [sym__bare_dollar] = ACTIONS(1296), + [sym__brace_start] = ACTIONS(1296), + }, + [411] = { + [sym_word] = ACTIONS(1318), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1320), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_PLUS_EQ] = ACTIONS(1318), + [anon_sym_DASH_EQ] = ACTIONS(1318), + [anon_sym_STAR_EQ] = ACTIONS(1318), + [anon_sym_SLASH_EQ] = ACTIONS(1318), + [anon_sym_PERCENT_EQ] = ACTIONS(1318), + [anon_sym_LT_LT_EQ] = ACTIONS(1320), + [anon_sym_GT_GT_EQ] = ACTIONS(1320), + [anon_sym_AMP_EQ] = ACTIONS(1320), + [anon_sym_CARET_EQ] = ACTIONS(1318), + [anon_sym_PIPE_EQ] = ACTIONS(1320), + [anon_sym_EQ_EQ] = ACTIONS(1318), + [anon_sym_BANG_EQ] = ACTIONS(1318), + [anon_sym_LT_EQ] = ACTIONS(1320), + [anon_sym_GT_EQ] = ACTIONS(1320), + [anon_sym_AMP_AMP] = ACTIONS(1320), + [anon_sym_PIPE_PIPE] = ACTIONS(1320), + [anon_sym_LT_LT] = ACTIONS(1318), + [anon_sym_GT_GT] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_SLASH] = ACTIONS(1318), + [anon_sym_PERCENT] = ACTIONS(1318), + [anon_sym_STAR_STAR] = ACTIONS(1318), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_GT] = ACTIONS(1318), + [anon_sym_PIPE] = ACTIONS(1318), + [anon_sym_PIPE_AMP] = ACTIONS(1320), + [anon_sym_RBRACK] = ACTIONS(1320), + [anon_sym_EQ_TILDE] = ACTIONS(1318), + [anon_sym_AMP_GT] = ACTIONS(1318), + [anon_sym_AMP_GT_GT] = ACTIONS(1320), + [anon_sym_LT_AMP] = ACTIONS(1320), + [anon_sym_GT_AMP] = ACTIONS(1320), + [anon_sym_GT_PIPE] = ACTIONS(1320), + [anon_sym_LT_LT_DASH] = ACTIONS(1320), + [anon_sym_LT_LT_LT] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_CARET] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(1318), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1320), + [aux_sym_concatenation_token1] = ACTIONS(1320), + [anon_sym_DOLLAR] = ACTIONS(1318), + [sym__special_character] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_raw_string] = ACTIONS(1320), + [sym_ansi_c_string] = ACTIONS(1320), + [aux_sym_number_token1] = ACTIONS(1318), + [aux_sym_number_token2] = ACTIONS(1318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1320), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1318), + [anon_sym_BQUOTE] = ACTIONS(1318), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1320), + [anon_sym_LT_LPAREN] = ACTIONS(1320), + [anon_sym_GT_LPAREN] = ACTIONS(1320), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1320), + [sym_file_descriptor] = ACTIONS(1320), + [sym__concat] = ACTIONS(1320), + [sym__bare_dollar] = ACTIONS(1320), + [sym__brace_start] = ACTIONS(1320), }, [412] = { - [sym_word] = ACTIONS(1270), - [anon_sym_LF] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym_EQ] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_EQ] = ACTIONS(1270), - [anon_sym_DASH_EQ] = ACTIONS(1270), - [anon_sym_STAR_EQ] = ACTIONS(1270), - [anon_sym_SLASH_EQ] = ACTIONS(1270), - [anon_sym_PERCENT_EQ] = ACTIONS(1270), + [sym_word] = ACTIONS(1268), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1270), + [anon_sym_EQ] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_EQ] = ACTIONS(1268), + [anon_sym_DASH_EQ] = ACTIONS(1268), + [anon_sym_STAR_EQ] = ACTIONS(1268), + [anon_sym_SLASH_EQ] = ACTIONS(1268), + [anon_sym_PERCENT_EQ] = ACTIONS(1268), [anon_sym_LT_LT_EQ] = ACTIONS(1270), [anon_sym_GT_GT_EQ] = ACTIONS(1270), [anon_sym_AMP_EQ] = ACTIONS(1270), - [anon_sym_CARET_EQ] = ACTIONS(1270), + [anon_sym_CARET_EQ] = ACTIONS(1268), [anon_sym_PIPE_EQ] = ACTIONS(1270), - [anon_sym_EQ_EQ] = ACTIONS(1270), - [anon_sym_BANG_EQ] = ACTIONS(1270), + [anon_sym_EQ_EQ] = ACTIONS(1268), + [anon_sym_BANG_EQ] = ACTIONS(1268), [anon_sym_LT_EQ] = ACTIONS(1270), [anon_sym_GT_EQ] = ACTIONS(1270), [anon_sym_AMP_AMP] = ACTIONS(1270), [anon_sym_PIPE_PIPE] = ACTIONS(1270), - [anon_sym_LT_LT] = ACTIONS(1270), - [anon_sym_GT_GT] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_PERCENT] = ACTIONS(1270), - [anon_sym_STAR_STAR] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1270), - [anon_sym_GT] = ACTIONS(1270), - [anon_sym_RPAREN] = ACTIONS(1270), - [anon_sym_PIPE] = ACTIONS(1270), - [anon_sym_SEMI_SEMI] = ACTIONS(1270), + [anon_sym_LT_LT] = ACTIONS(1268), + [anon_sym_GT_GT] = ACTIONS(1268), + [anon_sym_PLUS] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_SLASH] = ACTIONS(1268), + [anon_sym_PERCENT] = ACTIONS(1268), + [anon_sym_STAR_STAR] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(1268), + [anon_sym_GT] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_PIPE_AMP] = ACTIONS(1270), - [anon_sym_EQ_TILDE] = ACTIONS(1270), - [anon_sym_AMP_GT] = ACTIONS(1270), + [anon_sym_RBRACK] = ACTIONS(1270), + [anon_sym_EQ_TILDE] = ACTIONS(1268), + [anon_sym_AMP_GT] = ACTIONS(1268), [anon_sym_AMP_GT_GT] = ACTIONS(1270), [anon_sym_LT_AMP] = ACTIONS(1270), [anon_sym_GT_AMP] = ACTIONS(1270), [anon_sym_GT_PIPE] = ACTIONS(1270), [anon_sym_LT_LT_DASH] = ACTIONS(1270), [anon_sym_LT_LT_LT] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_CARET] = ACTIONS(1270), - [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_CARET] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1268), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1270), - [anon_sym_DOLLAR] = ACTIONS(1270), - [sym__special_character] = ACTIONS(1270), + [aux_sym_concatenation_token1] = ACTIONS(1270), + [anon_sym_DOLLAR] = ACTIONS(1268), + [sym__special_character] = ACTIONS(1268), [anon_sym_DQUOTE] = ACTIONS(1270), [sym_raw_string] = ACTIONS(1270), [sym_ansi_c_string] = ACTIONS(1270), - [aux_sym_number_token1] = ACTIONS(1270), - [aux_sym_number_token2] = ACTIONS(1270), + [aux_sym_number_token1] = ACTIONS(1268), + [aux_sym_number_token2] = ACTIONS(1268), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1270), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1270), - [anon_sym_BQUOTE] = ACTIONS(1270), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1268), + [anon_sym_BQUOTE] = ACTIONS(1268), [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1270), [anon_sym_LT_LPAREN] = ACTIONS(1270), [anon_sym_GT_LPAREN] = ACTIONS(1270), - [sym_comment] = ACTIONS(3), + [sym_comment] = ACTIONS(63), [sym_test_operator] = ACTIONS(1270), - [sym_file_descriptor] = ACTIONS(1272), - [sym__bare_dollar] = ACTIONS(1272), - [sym__brace_start] = ACTIONS(1272), + [sym_file_descriptor] = ACTIONS(1270), + [sym__concat] = ACTIONS(1270), + [sym__bare_dollar] = ACTIONS(1270), + [sym__brace_start] = ACTIONS(1270), }, [413] = { - [aux_sym_concatenation_repeat1] = STATE(411), - [sym_word] = ACTIONS(1241), - [anon_sym_EQ] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_STAR_EQ] = ACTIONS(1243), - [anon_sym_SLASH_EQ] = ACTIONS(1243), - [anon_sym_PERCENT_EQ] = ACTIONS(1243), - [anon_sym_LT_LT_EQ] = ACTIONS(1372), - [anon_sym_GT_GT_EQ] = ACTIONS(1372), - [anon_sym_AMP_EQ] = ACTIONS(1372), - [anon_sym_CARET_EQ] = ACTIONS(1243), - [anon_sym_PIPE_EQ] = ACTIONS(1372), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1372), - [anon_sym_GT_EQ] = ACTIONS(1372), - [anon_sym_AMP_AMP] = ACTIONS(1374), - [anon_sym_PIPE_PIPE] = ACTIONS(1374), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_PERCENT] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1245), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_PIPE_AMP] = ACTIONS(1250), - [anon_sym_RBRACK] = ACTIONS(1372), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_GT] = ACTIONS(1241), - [anon_sym_AMP_GT_GT] = ACTIONS(1250), - [anon_sym_LT_AMP] = ACTIONS(1250), - [anon_sym_GT_AMP] = ACTIONS(1250), - [anon_sym_GT_PIPE] = ACTIONS(1250), - [anon_sym_LT_LT_DASH] = ACTIONS(1250), - [anon_sym_LT_LT_LT] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_QMARK] = ACTIONS(1243), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1250), - [aux_sym_concatenation_token1] = ACTIONS(635), - [anon_sym_DOLLAR] = ACTIONS(1241), - [sym__special_character] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1250), - [sym_raw_string] = ACTIONS(1250), - [sym_ansi_c_string] = ACTIONS(1250), - [aux_sym_number_token1] = ACTIONS(1241), - [aux_sym_number_token2] = ACTIONS(1241), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1250), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1241), - [anon_sym_BQUOTE] = ACTIONS(1241), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1250), - [anon_sym_LT_LPAREN] = ACTIONS(1250), - [anon_sym_GT_LPAREN] = ACTIONS(1250), + [sym_word] = ACTIONS(1298), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1300), + [anon_sym_EQ] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [anon_sym_PLUS_EQ] = ACTIONS(1298), + [anon_sym_DASH_EQ] = ACTIONS(1298), + [anon_sym_STAR_EQ] = ACTIONS(1298), + [anon_sym_SLASH_EQ] = ACTIONS(1298), + [anon_sym_PERCENT_EQ] = ACTIONS(1298), + [anon_sym_LT_LT_EQ] = ACTIONS(1300), + [anon_sym_GT_GT_EQ] = ACTIONS(1300), + [anon_sym_AMP_EQ] = ACTIONS(1300), + [anon_sym_CARET_EQ] = ACTIONS(1298), + [anon_sym_PIPE_EQ] = ACTIONS(1300), + [anon_sym_EQ_EQ] = ACTIONS(1298), + [anon_sym_BANG_EQ] = ACTIONS(1298), + [anon_sym_LT_EQ] = ACTIONS(1300), + [anon_sym_GT_EQ] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1298), + [anon_sym_GT_GT] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(1298), + [anon_sym_PERCENT] = ACTIONS(1298), + [anon_sym_STAR_STAR] = ACTIONS(1298), + [anon_sym_LT] = ACTIONS(1298), + [anon_sym_GT] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1298), + [anon_sym_PIPE_AMP] = ACTIONS(1300), + [anon_sym_RBRACK] = ACTIONS(1300), + [anon_sym_EQ_TILDE] = ACTIONS(1298), + [anon_sym_AMP_GT] = ACTIONS(1298), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_GT_PIPE] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_CARET] = ACTIONS(1298), + [anon_sym_QMARK] = ACTIONS(1298), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1300), + [aux_sym_concatenation_token1] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1298), + [sym__special_character] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(1300), + [sym_ansi_c_string] = ACTIONS(1300), + [aux_sym_number_token1] = ACTIONS(1298), + [aux_sym_number_token2] = ACTIONS(1298), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1298), + [anon_sym_BQUOTE] = ACTIONS(1298), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1374), - [sym_file_descriptor] = ACTIONS(1250), - [sym__concat] = ACTIONS(635), - [sym__bare_dollar] = ACTIONS(1250), - [sym__brace_start] = ACTIONS(1250), + [sym_test_operator] = ACTIONS(1300), + [sym_file_descriptor] = ACTIONS(1300), + [sym__concat] = ACTIONS(1300), + [sym__bare_dollar] = ACTIONS(1300), + [sym__brace_start] = ACTIONS(1300), }, [414] = { - [aux_sym_concatenation_repeat1] = STATE(415), - [sym_word] = ACTIONS(1270), - [anon_sym_EQ] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_EQ] = ACTIONS(1270), - [anon_sym_DASH_EQ] = ACTIONS(1270), - [anon_sym_STAR_EQ] = ACTIONS(1270), - [anon_sym_SLASH_EQ] = ACTIONS(1270), - [anon_sym_PERCENT_EQ] = ACTIONS(1270), - [anon_sym_LT_LT_EQ] = ACTIONS(1272), - [anon_sym_GT_GT_EQ] = ACTIONS(1272), - [anon_sym_AMP_EQ] = ACTIONS(1272), - [anon_sym_CARET_EQ] = ACTIONS(1270), - [anon_sym_PIPE_EQ] = ACTIONS(1272), - [anon_sym_EQ_EQ] = ACTIONS(1270), - [anon_sym_BANG_EQ] = ACTIONS(1270), - [anon_sym_LT_EQ] = ACTIONS(1272), - [anon_sym_GT_EQ] = ACTIONS(1272), - [anon_sym_AMP_AMP] = ACTIONS(1272), - [anon_sym_PIPE_PIPE] = ACTIONS(1272), - [anon_sym_LT_LT] = ACTIONS(1270), - [anon_sym_GT_GT] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_PERCENT] = ACTIONS(1270), - [anon_sym_STAR_STAR] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1270), - [anon_sym_GT] = ACTIONS(1270), - [anon_sym_PIPE] = ACTIONS(1270), - [anon_sym_PIPE_AMP] = ACTIONS(1272), - [anon_sym_RBRACK] = ACTIONS(1272), - [anon_sym_EQ_TILDE] = ACTIONS(1270), - [anon_sym_AMP_GT] = ACTIONS(1270), - [anon_sym_AMP_GT_GT] = ACTIONS(1272), - [anon_sym_LT_AMP] = ACTIONS(1272), - [anon_sym_GT_AMP] = ACTIONS(1272), - [anon_sym_GT_PIPE] = ACTIONS(1272), - [anon_sym_LT_LT_DASH] = ACTIONS(1272), - [anon_sym_LT_LT_LT] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_CARET] = ACTIONS(1270), - [anon_sym_QMARK] = ACTIONS(1270), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1272), - [aux_sym_concatenation_token1] = ACTIONS(635), - [anon_sym_DOLLAR] = ACTIONS(1270), - [sym__special_character] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1272), - [sym_raw_string] = ACTIONS(1272), - [sym_ansi_c_string] = ACTIONS(1272), - [aux_sym_number_token1] = ACTIONS(1270), - [aux_sym_number_token2] = ACTIONS(1270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1272), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1270), - [anon_sym_BQUOTE] = ACTIONS(1270), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1272), - [anon_sym_LT_LPAREN] = ACTIONS(1272), - [anon_sym_GT_LPAREN] = ACTIONS(1272), + [sym_word] = ACTIONS(1302), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1304), + [anon_sym_EQ] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_EQ] = ACTIONS(1302), + [anon_sym_DASH_EQ] = ACTIONS(1302), + [anon_sym_STAR_EQ] = ACTIONS(1302), + [anon_sym_SLASH_EQ] = ACTIONS(1302), + [anon_sym_PERCENT_EQ] = ACTIONS(1302), + [anon_sym_LT_LT_EQ] = ACTIONS(1304), + [anon_sym_GT_GT_EQ] = ACTIONS(1304), + [anon_sym_AMP_EQ] = ACTIONS(1304), + [anon_sym_CARET_EQ] = ACTIONS(1302), + [anon_sym_PIPE_EQ] = ACTIONS(1304), + [anon_sym_EQ_EQ] = ACTIONS(1302), + [anon_sym_BANG_EQ] = ACTIONS(1302), + [anon_sym_LT_EQ] = ACTIONS(1304), + [anon_sym_GT_EQ] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [anon_sym_LT_LT] = ACTIONS(1302), + [anon_sym_GT_GT] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_SLASH] = ACTIONS(1302), + [anon_sym_PERCENT] = ACTIONS(1302), + [anon_sym_STAR_STAR] = ACTIONS(1302), + [anon_sym_LT] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1302), + [anon_sym_PIPE_AMP] = ACTIONS(1304), + [anon_sym_RBRACK] = ACTIONS(1304), + [anon_sym_EQ_TILDE] = ACTIONS(1302), + [anon_sym_AMP_GT] = ACTIONS(1302), + [anon_sym_AMP_GT_GT] = ACTIONS(1304), + [anon_sym_LT_AMP] = ACTIONS(1304), + [anon_sym_GT_AMP] = ACTIONS(1304), + [anon_sym_GT_PIPE] = ACTIONS(1304), + [anon_sym_LT_LT_DASH] = ACTIONS(1304), + [anon_sym_LT_LT_LT] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_CARET] = ACTIONS(1302), + [anon_sym_QMARK] = ACTIONS(1302), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1304), + [aux_sym_concatenation_token1] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1302), + [sym__special_character] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_raw_string] = ACTIONS(1304), + [sym_ansi_c_string] = ACTIONS(1304), + [aux_sym_number_token1] = ACTIONS(1302), + [aux_sym_number_token2] = ACTIONS(1302), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1302), + [anon_sym_BQUOTE] = ACTIONS(1302), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1304), + [anon_sym_LT_LPAREN] = ACTIONS(1304), + [anon_sym_GT_LPAREN] = ACTIONS(1304), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1272), - [sym_file_descriptor] = ACTIONS(1272), - [sym__concat] = ACTIONS(635), - [sym__bare_dollar] = ACTIONS(1272), - [sym__brace_start] = ACTIONS(1272), + [sym_test_operator] = ACTIONS(1304), + [sym_file_descriptor] = ACTIONS(1304), + [sym__concat] = ACTIONS(1304), + [sym__bare_dollar] = ACTIONS(1304), + [sym__brace_start] = ACTIONS(1304), }, [415] = { - [aux_sym_concatenation_repeat1] = STATE(416), - [sym_word] = ACTIONS(1264), - [anon_sym_EQ] = ACTIONS(1264), - [anon_sym_PLUS_PLUS] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1264), - [anon_sym_PLUS_EQ] = ACTIONS(1264), - [anon_sym_DASH_EQ] = ACTIONS(1264), - [anon_sym_STAR_EQ] = ACTIONS(1264), - [anon_sym_SLASH_EQ] = ACTIONS(1264), - [anon_sym_PERCENT_EQ] = ACTIONS(1264), - [anon_sym_LT_LT_EQ] = ACTIONS(1266), - [anon_sym_GT_GT_EQ] = ACTIONS(1266), - [anon_sym_AMP_EQ] = ACTIONS(1266), - [anon_sym_CARET_EQ] = ACTIONS(1264), - [anon_sym_PIPE_EQ] = ACTIONS(1266), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_LT_EQ] = ACTIONS(1266), - [anon_sym_GT_EQ] = ACTIONS(1266), - [anon_sym_AMP_AMP] = ACTIONS(1266), - [anon_sym_PIPE_PIPE] = ACTIONS(1266), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(1264), - [anon_sym_PERCENT] = ACTIONS(1264), - [anon_sym_STAR_STAR] = ACTIONS(1264), - [anon_sym_LT] = ACTIONS(1264), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_PIPE_AMP] = ACTIONS(1266), - [anon_sym_RBRACK] = ACTIONS(1266), - [anon_sym_EQ_TILDE] = ACTIONS(1264), - [anon_sym_AMP_GT] = ACTIONS(1264), - [anon_sym_AMP_GT_GT] = ACTIONS(1266), - [anon_sym_LT_AMP] = ACTIONS(1266), - [anon_sym_GT_AMP] = ACTIONS(1266), - [anon_sym_GT_PIPE] = ACTIONS(1266), - [anon_sym_LT_LT_DASH] = ACTIONS(1266), - [anon_sym_LT_LT_LT] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1264), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1266), - [aux_sym_concatenation_token1] = ACTIONS(635), - [anon_sym_DOLLAR] = ACTIONS(1264), - [sym__special_character] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(1266), - [sym_raw_string] = ACTIONS(1266), - [sym_ansi_c_string] = ACTIONS(1266), - [aux_sym_number_token1] = ACTIONS(1264), - [aux_sym_number_token2] = ACTIONS(1264), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1264), - [anon_sym_BQUOTE] = ACTIONS(1264), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1266), - [anon_sym_LT_LPAREN] = ACTIONS(1266), - [anon_sym_GT_LPAREN] = ACTIONS(1266), + [sym_word] = ACTIONS(1276), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1278), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_EQ] = ACTIONS(1276), + [anon_sym_DASH_EQ] = ACTIONS(1276), + [anon_sym_STAR_EQ] = ACTIONS(1276), + [anon_sym_SLASH_EQ] = ACTIONS(1276), + [anon_sym_PERCENT_EQ] = ACTIONS(1276), + [anon_sym_LT_LT_EQ] = ACTIONS(1278), + [anon_sym_GT_GT_EQ] = ACTIONS(1278), + [anon_sym_AMP_EQ] = ACTIONS(1278), + [anon_sym_CARET_EQ] = ACTIONS(1276), + [anon_sym_PIPE_EQ] = ACTIONS(1278), + [anon_sym_EQ_EQ] = ACTIONS(1276), + [anon_sym_BANG_EQ] = ACTIONS(1276), + [anon_sym_LT_EQ] = ACTIONS(1278), + [anon_sym_GT_EQ] = ACTIONS(1278), + [anon_sym_AMP_AMP] = ACTIONS(1278), + [anon_sym_PIPE_PIPE] = ACTIONS(1278), + [anon_sym_LT_LT] = ACTIONS(1276), + [anon_sym_GT_GT] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_SLASH] = ACTIONS(1276), + [anon_sym_PERCENT] = ACTIONS(1276), + [anon_sym_STAR_STAR] = ACTIONS(1276), + [anon_sym_LT] = ACTIONS(1276), + [anon_sym_GT] = ACTIONS(1276), + [anon_sym_PIPE] = ACTIONS(1276), + [anon_sym_PIPE_AMP] = ACTIONS(1278), + [anon_sym_RBRACK] = ACTIONS(1278), + [anon_sym_EQ_TILDE] = ACTIONS(1276), + [anon_sym_AMP_GT] = ACTIONS(1276), + [anon_sym_AMP_GT_GT] = ACTIONS(1278), + [anon_sym_LT_AMP] = ACTIONS(1278), + [anon_sym_GT_AMP] = ACTIONS(1278), + [anon_sym_GT_PIPE] = ACTIONS(1278), + [anon_sym_LT_LT_DASH] = ACTIONS(1278), + [anon_sym_LT_LT_LT] = ACTIONS(1278), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_CARET] = ACTIONS(1276), + [anon_sym_QMARK] = ACTIONS(1276), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1278), + [aux_sym_concatenation_token1] = ACTIONS(1278), + [anon_sym_DOLLAR] = ACTIONS(1276), + [sym__special_character] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1278), + [sym_raw_string] = ACTIONS(1278), + [sym_ansi_c_string] = ACTIONS(1278), + [aux_sym_number_token1] = ACTIONS(1276), + [aux_sym_number_token2] = ACTIONS(1276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1278), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), + [anon_sym_BQUOTE] = ACTIONS(1276), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1278), + [anon_sym_LT_LPAREN] = ACTIONS(1278), + [anon_sym_GT_LPAREN] = ACTIONS(1278), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1266), - [sym_file_descriptor] = ACTIONS(1266), - [sym__concat] = ACTIONS(1381), - [sym__bare_dollar] = ACTIONS(1266), - [sym__brace_start] = ACTIONS(1266), + [sym_test_operator] = ACTIONS(1278), + [sym_file_descriptor] = ACTIONS(1278), + [sym__concat] = ACTIONS(1278), + [sym__bare_dollar] = ACTIONS(1278), + [sym__brace_start] = ACTIONS(1278), }, [416] = { - [aux_sym_concatenation_repeat1] = STATE(416), - [sym_word] = ACTIONS(1274), - [anon_sym_EQ] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_EQ] = ACTIONS(1274), - [anon_sym_DASH_EQ] = ACTIONS(1274), - [anon_sym_STAR_EQ] = ACTIONS(1274), - [anon_sym_SLASH_EQ] = ACTIONS(1274), - [anon_sym_PERCENT_EQ] = ACTIONS(1274), - [anon_sym_LT_LT_EQ] = ACTIONS(1279), - [anon_sym_GT_GT_EQ] = ACTIONS(1279), - [anon_sym_AMP_EQ] = ACTIONS(1279), - [anon_sym_CARET_EQ] = ACTIONS(1274), - [anon_sym_PIPE_EQ] = ACTIONS(1279), - [anon_sym_EQ_EQ] = ACTIONS(1274), - [anon_sym_BANG_EQ] = ACTIONS(1274), - [anon_sym_LT_EQ] = ACTIONS(1279), - [anon_sym_GT_EQ] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [anon_sym_LT_LT] = ACTIONS(1274), - [anon_sym_GT_GT] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1274), - [anon_sym_PERCENT] = ACTIONS(1274), - [anon_sym_STAR_STAR] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_GT] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1274), - [anon_sym_PIPE_AMP] = ACTIONS(1279), - [anon_sym_RBRACK] = ACTIONS(1279), - [anon_sym_EQ_TILDE] = ACTIONS(1274), - [anon_sym_AMP_GT] = ACTIONS(1274), - [anon_sym_AMP_GT_GT] = ACTIONS(1279), - [anon_sym_LT_AMP] = ACTIONS(1279), - [anon_sym_GT_AMP] = ACTIONS(1279), - [anon_sym_GT_PIPE] = ACTIONS(1279), - [anon_sym_LT_LT_DASH] = ACTIONS(1279), - [anon_sym_LT_LT_LT] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_CARET] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(1274), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1279), - [aux_sym_concatenation_token1] = ACTIONS(1383), - [anon_sym_DOLLAR] = ACTIONS(1274), - [sym__special_character] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1279), - [sym_raw_string] = ACTIONS(1279), - [sym_ansi_c_string] = ACTIONS(1279), - [aux_sym_number_token1] = ACTIONS(1274), - [aux_sym_number_token2] = ACTIONS(1274), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1274), - [anon_sym_BQUOTE] = ACTIONS(1274), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1279), - [anon_sym_LT_LPAREN] = ACTIONS(1279), - [anon_sym_GT_LPAREN] = ACTIONS(1279), + [sym_word] = ACTIONS(1342), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1344), + [anon_sym_EQ] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_EQ] = ACTIONS(1342), + [anon_sym_DASH_EQ] = ACTIONS(1342), + [anon_sym_STAR_EQ] = ACTIONS(1342), + [anon_sym_SLASH_EQ] = ACTIONS(1342), + [anon_sym_PERCENT_EQ] = ACTIONS(1342), + [anon_sym_LT_LT_EQ] = ACTIONS(1344), + [anon_sym_GT_GT_EQ] = ACTIONS(1344), + [anon_sym_AMP_EQ] = ACTIONS(1344), + [anon_sym_CARET_EQ] = ACTIONS(1342), + [anon_sym_PIPE_EQ] = ACTIONS(1344), + [anon_sym_EQ_EQ] = ACTIONS(1342), + [anon_sym_BANG_EQ] = ACTIONS(1342), + [anon_sym_LT_EQ] = ACTIONS(1344), + [anon_sym_GT_EQ] = ACTIONS(1344), + [anon_sym_AMP_AMP] = ACTIONS(1344), + [anon_sym_PIPE_PIPE] = ACTIONS(1344), + [anon_sym_LT_LT] = ACTIONS(1342), + [anon_sym_GT_GT] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_STAR_STAR] = ACTIONS(1342), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_GT] = ACTIONS(1342), + [anon_sym_PIPE] = ACTIONS(1342), + [anon_sym_PIPE_AMP] = ACTIONS(1344), + [anon_sym_RBRACK] = ACTIONS(1344), + [anon_sym_EQ_TILDE] = ACTIONS(1342), + [anon_sym_AMP_GT] = ACTIONS(1342), + [anon_sym_AMP_GT_GT] = ACTIONS(1344), + [anon_sym_LT_AMP] = ACTIONS(1344), + [anon_sym_GT_AMP] = ACTIONS(1344), + [anon_sym_GT_PIPE] = ACTIONS(1344), + [anon_sym_LT_LT_DASH] = ACTIONS(1344), + [anon_sym_LT_LT_LT] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_CARET] = ACTIONS(1342), + [anon_sym_QMARK] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1344), + [aux_sym_concatenation_token1] = ACTIONS(1344), + [anon_sym_DOLLAR] = ACTIONS(1342), + [sym__special_character] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_raw_string] = ACTIONS(1344), + [sym_ansi_c_string] = ACTIONS(1344), + [aux_sym_number_token1] = ACTIONS(1342), + [aux_sym_number_token2] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1344), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1342), + [anon_sym_BQUOTE] = ACTIONS(1342), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1344), + [anon_sym_LT_LPAREN] = ACTIONS(1344), + [anon_sym_GT_LPAREN] = ACTIONS(1344), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1279), - [sym_file_descriptor] = ACTIONS(1279), - [sym__concat] = ACTIONS(1383), - [sym__bare_dollar] = ACTIONS(1279), - [sym__brace_start] = ACTIONS(1279), - }, - [417] = { - [sym_word] = ACTIONS(1241), - [anon_sym_LF] = ACTIONS(1241), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_EQ] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_STAR_EQ] = ACTIONS(1243), - [anon_sym_SLASH_EQ] = ACTIONS(1243), - [anon_sym_PERCENT_EQ] = ACTIONS(1243), - [anon_sym_LT_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_GT_EQ] = ACTIONS(1243), - [anon_sym_AMP_EQ] = ACTIONS(1243), - [anon_sym_CARET_EQ] = ACTIONS(1243), - [anon_sym_PIPE_EQ] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_PERCENT] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1245), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_SEMI_SEMI] = ACTIONS(1241), - [anon_sym_PIPE_AMP] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_GT] = ACTIONS(1241), - [anon_sym_AMP_GT_GT] = ACTIONS(1241), - [anon_sym_LT_AMP] = ACTIONS(1241), - [anon_sym_GT_AMP] = ACTIONS(1241), - [anon_sym_GT_PIPE] = ACTIONS(1241), - [anon_sym_LT_LT_DASH] = ACTIONS(1241), - [anon_sym_LT_LT_LT] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_QMARK] = ACTIONS(1243), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1241), - [anon_sym_DOLLAR] = ACTIONS(1241), - [sym__special_character] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [sym_raw_string] = ACTIONS(1241), - [sym_ansi_c_string] = ACTIONS(1241), - [aux_sym_number_token1] = ACTIONS(1241), - [aux_sym_number_token2] = ACTIONS(1241), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1241), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1241), - [anon_sym_BQUOTE] = ACTIONS(1241), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1241), - [anon_sym_LT_LPAREN] = ACTIONS(1241), - [anon_sym_GT_LPAREN] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1245), - [sym_file_descriptor] = ACTIONS(1250), - [sym__bare_dollar] = ACTIONS(1250), - [sym__brace_start] = ACTIONS(1250), + [sym_test_operator] = ACTIONS(1344), + [sym_file_descriptor] = ACTIONS(1344), + [sym__concat] = ACTIONS(1344), + [sym__bare_dollar] = ACTIONS(1344), + [sym__brace_start] = ACTIONS(1344), + }, + [417] = { + [sym_word] = ACTIONS(1310), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1312), + [anon_sym_EQ] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_EQ] = ACTIONS(1310), + [anon_sym_DASH_EQ] = ACTIONS(1310), + [anon_sym_STAR_EQ] = ACTIONS(1310), + [anon_sym_SLASH_EQ] = ACTIONS(1310), + [anon_sym_PERCENT_EQ] = ACTIONS(1310), + [anon_sym_LT_LT_EQ] = ACTIONS(1312), + [anon_sym_GT_GT_EQ] = ACTIONS(1312), + [anon_sym_AMP_EQ] = ACTIONS(1312), + [anon_sym_CARET_EQ] = ACTIONS(1310), + [anon_sym_PIPE_EQ] = ACTIONS(1312), + [anon_sym_EQ_EQ] = ACTIONS(1310), + [anon_sym_BANG_EQ] = ACTIONS(1310), + [anon_sym_LT_EQ] = ACTIONS(1312), + [anon_sym_GT_EQ] = ACTIONS(1312), + [anon_sym_AMP_AMP] = ACTIONS(1312), + [anon_sym_PIPE_PIPE] = ACTIONS(1312), + [anon_sym_LT_LT] = ACTIONS(1310), + [anon_sym_GT_GT] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1310), + [anon_sym_PERCENT] = ACTIONS(1310), + [anon_sym_STAR_STAR] = ACTIONS(1310), + [anon_sym_LT] = ACTIONS(1310), + [anon_sym_GT] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(1310), + [anon_sym_PIPE_AMP] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(1312), + [anon_sym_EQ_TILDE] = ACTIONS(1310), + [anon_sym_AMP_GT] = ACTIONS(1310), + [anon_sym_AMP_GT_GT] = ACTIONS(1312), + [anon_sym_LT_AMP] = ACTIONS(1312), + [anon_sym_GT_AMP] = ACTIONS(1312), + [anon_sym_GT_PIPE] = ACTIONS(1312), + [anon_sym_LT_LT_DASH] = ACTIONS(1312), + [anon_sym_LT_LT_LT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1312), + [aux_sym_concatenation_token1] = ACTIONS(1312), + [anon_sym_DOLLAR] = ACTIONS(1310), + [sym__special_character] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_raw_string] = ACTIONS(1312), + [sym_ansi_c_string] = ACTIONS(1312), + [aux_sym_number_token1] = ACTIONS(1310), + [aux_sym_number_token2] = ACTIONS(1310), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1312), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1310), + [anon_sym_BQUOTE] = ACTIONS(1310), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1312), + [anon_sym_LT_LPAREN] = ACTIONS(1312), + [anon_sym_GT_LPAREN] = ACTIONS(1312), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1312), + [sym_file_descriptor] = ACTIONS(1312), + [sym__concat] = ACTIONS(1312), + [sym__bare_dollar] = ACTIONS(1312), + [sym__brace_start] = ACTIONS(1312), }, [418] = { - [sym_word] = ACTIONS(1308), - [anon_sym_EQ] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_EQ] = ACTIONS(1308), - [anon_sym_DASH_EQ] = ACTIONS(1308), - [anon_sym_STAR_EQ] = ACTIONS(1308), - [anon_sym_SLASH_EQ] = ACTIONS(1308), - [anon_sym_PERCENT_EQ] = ACTIONS(1308), - [anon_sym_LT_LT_EQ] = ACTIONS(1310), - [anon_sym_GT_GT_EQ] = ACTIONS(1310), - [anon_sym_AMP_EQ] = ACTIONS(1310), - [anon_sym_CARET_EQ] = ACTIONS(1308), - [anon_sym_PIPE_EQ] = ACTIONS(1310), - [anon_sym_EQ_EQ] = ACTIONS(1308), - [anon_sym_BANG_EQ] = ACTIONS(1308), - [anon_sym_LT_EQ] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1310), - [anon_sym_AMP_AMP] = ACTIONS(1310), - [anon_sym_PIPE_PIPE] = ACTIONS(1310), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(1308), - [anon_sym_PERCENT] = ACTIONS(1308), - [anon_sym_STAR_STAR] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym_PIPE_AMP] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(1310), - [anon_sym_EQ_TILDE] = ACTIONS(1308), - [anon_sym_AMP_GT] = ACTIONS(1308), - [anon_sym_AMP_GT_GT] = ACTIONS(1310), - [anon_sym_LT_AMP] = ACTIONS(1310), - [anon_sym_GT_AMP] = ACTIONS(1310), - [anon_sym_GT_PIPE] = ACTIONS(1310), - [anon_sym_LT_LT_DASH] = ACTIONS(1310), - [anon_sym_LT_LT_LT] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(1308), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1310), - [aux_sym_concatenation_token1] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1308), - [sym__special_character] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_raw_string] = ACTIONS(1310), - [sym_ansi_c_string] = ACTIONS(1310), - [aux_sym_number_token1] = ACTIONS(1308), - [aux_sym_number_token2] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1310), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_BQUOTE] = ACTIONS(1308), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1310), - [anon_sym_LT_LPAREN] = ACTIONS(1310), - [anon_sym_GT_LPAREN] = ACTIONS(1310), + [sym_word] = ACTIONS(1322), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1324), + [anon_sym_EQ] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_EQ] = ACTIONS(1322), + [anon_sym_DASH_EQ] = ACTIONS(1322), + [anon_sym_STAR_EQ] = ACTIONS(1322), + [anon_sym_SLASH_EQ] = ACTIONS(1322), + [anon_sym_PERCENT_EQ] = ACTIONS(1322), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1322), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_EQ_EQ] = ACTIONS(1322), + [anon_sym_BANG_EQ] = ACTIONS(1322), + [anon_sym_LT_EQ] = ACTIONS(1324), + [anon_sym_GT_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP] = ACTIONS(1324), + [anon_sym_PIPE_PIPE] = ACTIONS(1324), + [anon_sym_LT_LT] = ACTIONS(1322), + [anon_sym_GT_GT] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym_PERCENT] = ACTIONS(1322), + [anon_sym_STAR_STAR] = ACTIONS(1322), + [anon_sym_LT] = ACTIONS(1322), + [anon_sym_GT] = ACTIONS(1322), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PIPE_AMP] = ACTIONS(1324), + [anon_sym_RBRACK] = ACTIONS(1324), + [anon_sym_EQ_TILDE] = ACTIONS(1322), + [anon_sym_AMP_GT] = ACTIONS(1322), + [anon_sym_AMP_GT_GT] = ACTIONS(1324), + [anon_sym_LT_AMP] = ACTIONS(1324), + [anon_sym_GT_AMP] = ACTIONS(1324), + [anon_sym_GT_PIPE] = ACTIONS(1324), + [anon_sym_LT_LT_DASH] = ACTIONS(1324), + [anon_sym_LT_LT_LT] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_CARET] = ACTIONS(1322), + [anon_sym_QMARK] = ACTIONS(1322), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1324), + [aux_sym_concatenation_token1] = ACTIONS(1324), + [anon_sym_DOLLAR] = ACTIONS(1322), + [sym__special_character] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_raw_string] = ACTIONS(1324), + [sym_ansi_c_string] = ACTIONS(1324), + [aux_sym_number_token1] = ACTIONS(1322), + [aux_sym_number_token2] = ACTIONS(1322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1322), + [anon_sym_BQUOTE] = ACTIONS(1322), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1324), + [anon_sym_LT_LPAREN] = ACTIONS(1324), + [anon_sym_GT_LPAREN] = ACTIONS(1324), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1310), - [sym_file_descriptor] = ACTIONS(1310), - [sym__concat] = ACTIONS(1310), - [sym__bare_dollar] = ACTIONS(1310), - [sym__brace_start] = ACTIONS(1310), + [sym_test_operator] = ACTIONS(1324), + [sym_file_descriptor] = ACTIONS(1324), + [sym__concat] = ACTIONS(1324), + [sym__bare_dollar] = ACTIONS(1324), + [sym__brace_start] = ACTIONS(1324), }, [419] = { - [sym_word] = ACTIONS(1312), - [anon_sym_EQ] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_EQ] = ACTIONS(1312), - [anon_sym_DASH_EQ] = ACTIONS(1312), - [anon_sym_STAR_EQ] = ACTIONS(1312), - [anon_sym_SLASH_EQ] = ACTIONS(1312), - [anon_sym_PERCENT_EQ] = ACTIONS(1312), - [anon_sym_LT_LT_EQ] = ACTIONS(1314), - [anon_sym_GT_GT_EQ] = ACTIONS(1314), - [anon_sym_AMP_EQ] = ACTIONS(1314), - [anon_sym_CARET_EQ] = ACTIONS(1312), - [anon_sym_PIPE_EQ] = ACTIONS(1314), - [anon_sym_EQ_EQ] = ACTIONS(1312), - [anon_sym_BANG_EQ] = ACTIONS(1312), - [anon_sym_LT_EQ] = ACTIONS(1314), - [anon_sym_GT_EQ] = ACTIONS(1314), - [anon_sym_AMP_AMP] = ACTIONS(1314), - [anon_sym_PIPE_PIPE] = ACTIONS(1314), - [anon_sym_LT_LT] = ACTIONS(1312), - [anon_sym_GT_GT] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_PERCENT] = ACTIONS(1312), - [anon_sym_STAR_STAR] = ACTIONS(1312), - [anon_sym_LT] = ACTIONS(1312), - [anon_sym_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PIPE_AMP] = ACTIONS(1314), - [anon_sym_RBRACK] = ACTIONS(1314), - [anon_sym_EQ_TILDE] = ACTIONS(1312), - [anon_sym_AMP_GT] = ACTIONS(1312), - [anon_sym_AMP_GT_GT] = ACTIONS(1314), - [anon_sym_LT_AMP] = ACTIONS(1314), - [anon_sym_GT_AMP] = ACTIONS(1314), - [anon_sym_GT_PIPE] = ACTIONS(1314), - [anon_sym_LT_LT_DASH] = ACTIONS(1314), - [anon_sym_LT_LT_LT] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_CARET] = ACTIONS(1312), - [anon_sym_QMARK] = ACTIONS(1312), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1314), - [aux_sym_concatenation_token1] = ACTIONS(1314), - [anon_sym_DOLLAR] = ACTIONS(1312), - [sym__special_character] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_raw_string] = ACTIONS(1314), - [sym_ansi_c_string] = ACTIONS(1314), - [aux_sym_number_token1] = ACTIONS(1312), - [aux_sym_number_token2] = ACTIONS(1312), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1314), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1312), - [anon_sym_BQUOTE] = ACTIONS(1312), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1314), - [anon_sym_LT_LPAREN] = ACTIONS(1314), - [anon_sym_GT_LPAREN] = ACTIONS(1314), + [sym_word] = ACTIONS(1314), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1316), + [anon_sym_EQ] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [anon_sym_PLUS_EQ] = ACTIONS(1314), + [anon_sym_DASH_EQ] = ACTIONS(1314), + [anon_sym_STAR_EQ] = ACTIONS(1314), + [anon_sym_SLASH_EQ] = ACTIONS(1314), + [anon_sym_PERCENT_EQ] = ACTIONS(1314), + [anon_sym_LT_LT_EQ] = ACTIONS(1316), + [anon_sym_GT_GT_EQ] = ACTIONS(1316), + [anon_sym_AMP_EQ] = ACTIONS(1316), + [anon_sym_CARET_EQ] = ACTIONS(1314), + [anon_sym_PIPE_EQ] = ACTIONS(1316), + [anon_sym_EQ_EQ] = ACTIONS(1314), + [anon_sym_BANG_EQ] = ACTIONS(1314), + [anon_sym_LT_EQ] = ACTIONS(1316), + [anon_sym_GT_EQ] = ACTIONS(1316), + [anon_sym_AMP_AMP] = ACTIONS(1316), + [anon_sym_PIPE_PIPE] = ACTIONS(1316), + [anon_sym_LT_LT] = ACTIONS(1314), + [anon_sym_GT_GT] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_SLASH] = ACTIONS(1314), + [anon_sym_PERCENT] = ACTIONS(1314), + [anon_sym_STAR_STAR] = ACTIONS(1314), + [anon_sym_LT] = ACTIONS(1314), + [anon_sym_GT] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PIPE_AMP] = ACTIONS(1316), + [anon_sym_RBRACK] = ACTIONS(1316), + [anon_sym_EQ_TILDE] = ACTIONS(1314), + [anon_sym_AMP_GT] = ACTIONS(1314), + [anon_sym_AMP_GT_GT] = ACTIONS(1316), + [anon_sym_LT_AMP] = ACTIONS(1316), + [anon_sym_GT_AMP] = ACTIONS(1316), + [anon_sym_GT_PIPE] = ACTIONS(1316), + [anon_sym_LT_LT_DASH] = ACTIONS(1316), + [anon_sym_LT_LT_LT] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_CARET] = ACTIONS(1314), + [anon_sym_QMARK] = ACTIONS(1314), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1316), + [aux_sym_concatenation_token1] = ACTIONS(1316), + [anon_sym_DOLLAR] = ACTIONS(1314), + [sym__special_character] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_raw_string] = ACTIONS(1316), + [sym_ansi_c_string] = ACTIONS(1316), + [aux_sym_number_token1] = ACTIONS(1314), + [aux_sym_number_token2] = ACTIONS(1314), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1316), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1314), + [anon_sym_BQUOTE] = ACTIONS(1314), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1316), + [anon_sym_LT_LPAREN] = ACTIONS(1316), + [anon_sym_GT_LPAREN] = ACTIONS(1316), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1314), - [sym_file_descriptor] = ACTIONS(1314), - [sym__concat] = ACTIONS(1314), - [sym__bare_dollar] = ACTIONS(1314), - [sym__brace_start] = ACTIONS(1314), + [sym_test_operator] = ACTIONS(1316), + [sym_file_descriptor] = ACTIONS(1316), + [sym__concat] = ACTIONS(1316), + [sym__bare_dollar] = ACTIONS(1316), + [sym__brace_start] = ACTIONS(1316), }, [420] = { - [sym_word] = ACTIONS(1320), - [anon_sym_EQ] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_EQ] = ACTIONS(1320), - [anon_sym_DASH_EQ] = ACTIONS(1320), - [anon_sym_STAR_EQ] = ACTIONS(1320), - [anon_sym_SLASH_EQ] = ACTIONS(1320), - [anon_sym_PERCENT_EQ] = ACTIONS(1320), - [anon_sym_LT_LT_EQ] = ACTIONS(1322), - [anon_sym_GT_GT_EQ] = ACTIONS(1322), - [anon_sym_AMP_EQ] = ACTIONS(1322), - [anon_sym_CARET_EQ] = ACTIONS(1320), - [anon_sym_PIPE_EQ] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1320), - [anon_sym_BANG_EQ] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_LT_LT] = ACTIONS(1320), - [anon_sym_GT_GT] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_SLASH] = ACTIONS(1320), - [anon_sym_PERCENT] = ACTIONS(1320), - [anon_sym_STAR_STAR] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1320), - [anon_sym_PIPE_AMP] = ACTIONS(1322), - [anon_sym_RBRACK] = ACTIONS(1322), - [anon_sym_EQ_TILDE] = ACTIONS(1320), - [anon_sym_AMP_GT] = ACTIONS(1320), - [anon_sym_AMP_GT_GT] = ACTIONS(1322), - [anon_sym_LT_AMP] = ACTIONS(1322), - [anon_sym_GT_AMP] = ACTIONS(1322), - [anon_sym_GT_PIPE] = ACTIONS(1322), - [anon_sym_LT_LT_DASH] = ACTIONS(1322), - [anon_sym_LT_LT_LT] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_CARET] = ACTIONS(1320), - [anon_sym_QMARK] = ACTIONS(1320), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1322), - [aux_sym_concatenation_token1] = ACTIONS(1322), - [anon_sym_DOLLAR] = ACTIONS(1320), - [sym__special_character] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_raw_string] = ACTIONS(1322), - [sym_ansi_c_string] = ACTIONS(1322), - [aux_sym_number_token1] = ACTIONS(1320), - [aux_sym_number_token2] = ACTIONS(1320), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1322), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1320), - [anon_sym_BQUOTE] = ACTIONS(1320), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1322), - [anon_sym_LT_LPAREN] = ACTIONS(1322), - [anon_sym_GT_LPAREN] = ACTIONS(1322), + [sym_word] = ACTIONS(1280), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1282), + [anon_sym_EQ] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_PLUS_EQ] = ACTIONS(1280), + [anon_sym_DASH_EQ] = ACTIONS(1280), + [anon_sym_STAR_EQ] = ACTIONS(1280), + [anon_sym_SLASH_EQ] = ACTIONS(1280), + [anon_sym_PERCENT_EQ] = ACTIONS(1280), + [anon_sym_LT_LT_EQ] = ACTIONS(1282), + [anon_sym_GT_GT_EQ] = ACTIONS(1282), + [anon_sym_AMP_EQ] = ACTIONS(1282), + [anon_sym_CARET_EQ] = ACTIONS(1280), + [anon_sym_PIPE_EQ] = ACTIONS(1282), + [anon_sym_EQ_EQ] = ACTIONS(1280), + [anon_sym_BANG_EQ] = ACTIONS(1280), + [anon_sym_LT_EQ] = ACTIONS(1282), + [anon_sym_GT_EQ] = ACTIONS(1282), + [anon_sym_AMP_AMP] = ACTIONS(1282), + [anon_sym_PIPE_PIPE] = ACTIONS(1282), + [anon_sym_LT_LT] = ACTIONS(1280), + [anon_sym_GT_GT] = ACTIONS(1280), + [anon_sym_PLUS] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_SLASH] = ACTIONS(1280), + [anon_sym_PERCENT] = ACTIONS(1280), + [anon_sym_STAR_STAR] = ACTIONS(1280), + [anon_sym_LT] = ACTIONS(1280), + [anon_sym_GT] = ACTIONS(1280), + [anon_sym_PIPE] = ACTIONS(1280), + [anon_sym_PIPE_AMP] = ACTIONS(1282), + [anon_sym_RBRACK] = ACTIONS(1282), + [anon_sym_EQ_TILDE] = ACTIONS(1280), + [anon_sym_AMP_GT] = ACTIONS(1280), + [anon_sym_AMP_GT_GT] = ACTIONS(1282), + [anon_sym_LT_AMP] = ACTIONS(1282), + [anon_sym_GT_AMP] = ACTIONS(1282), + [anon_sym_GT_PIPE] = ACTIONS(1282), + [anon_sym_LT_LT_DASH] = ACTIONS(1282), + [anon_sym_LT_LT_LT] = ACTIONS(1282), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_CARET] = ACTIONS(1280), + [anon_sym_QMARK] = ACTIONS(1280), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1282), + [aux_sym_concatenation_token1] = ACTIONS(1282), + [anon_sym_DOLLAR] = ACTIONS(1280), + [sym__special_character] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1282), + [sym_raw_string] = ACTIONS(1282), + [sym_ansi_c_string] = ACTIONS(1282), + [aux_sym_number_token1] = ACTIONS(1280), + [aux_sym_number_token2] = ACTIONS(1280), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1282), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1280), + [anon_sym_BQUOTE] = ACTIONS(1280), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1282), + [anon_sym_LT_LPAREN] = ACTIONS(1282), + [anon_sym_GT_LPAREN] = ACTIONS(1282), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1322), - [sym_file_descriptor] = ACTIONS(1322), - [sym__concat] = ACTIONS(1322), - [sym__bare_dollar] = ACTIONS(1322), - [sym__brace_start] = ACTIONS(1322), + [sym_test_operator] = ACTIONS(1282), + [sym_file_descriptor] = ACTIONS(1282), + [sym__concat] = ACTIONS(1282), + [sym__bare_dollar] = ACTIONS(1282), + [sym__brace_start] = ACTIONS(1282), }, [421] = { - [sym_word] = ACTIONS(1288), - [anon_sym_EQ] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1290), - [anon_sym_GT_GT_EQ] = ACTIONS(1290), - [anon_sym_AMP_EQ] = ACTIONS(1290), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(1288), - [anon_sym_BANG_EQ] = ACTIONS(1288), - [anon_sym_LT_EQ] = ACTIONS(1290), - [anon_sym_GT_EQ] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [anon_sym_LT_LT] = ACTIONS(1288), - [anon_sym_GT_GT] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_SLASH] = ACTIONS(1288), - [anon_sym_PERCENT] = ACTIONS(1288), - [anon_sym_STAR_STAR] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1288), - [anon_sym_GT] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1288), - [anon_sym_PIPE_AMP] = ACTIONS(1290), - [anon_sym_RBRACK] = ACTIONS(1290), - [anon_sym_EQ_TILDE] = ACTIONS(1288), - [anon_sym_AMP_GT] = ACTIONS(1288), - [anon_sym_AMP_GT_GT] = ACTIONS(1290), - [anon_sym_LT_AMP] = ACTIONS(1290), - [anon_sym_GT_AMP] = ACTIONS(1290), - [anon_sym_GT_PIPE] = ACTIONS(1290), - [anon_sym_LT_LT_DASH] = ACTIONS(1290), - [anon_sym_LT_LT_LT] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1288), - [anon_sym_CARET] = ACTIONS(1288), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1290), - [aux_sym_concatenation_token1] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1288), - [sym__special_character] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_raw_string] = ACTIONS(1290), - [sym_ansi_c_string] = ACTIONS(1290), - [aux_sym_number_token1] = ACTIONS(1288), - [aux_sym_number_token2] = ACTIONS(1288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1288), - [anon_sym_BQUOTE] = ACTIONS(1288), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1290), - [anon_sym_LT_LPAREN] = ACTIONS(1290), - [anon_sym_GT_LPAREN] = ACTIONS(1290), + [sym_word] = ACTIONS(1330), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1332), + [anon_sym_EQ] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_EQ] = ACTIONS(1330), + [anon_sym_DASH_EQ] = ACTIONS(1330), + [anon_sym_STAR_EQ] = ACTIONS(1330), + [anon_sym_SLASH_EQ] = ACTIONS(1330), + [anon_sym_PERCENT_EQ] = ACTIONS(1330), + [anon_sym_LT_LT_EQ] = ACTIONS(1332), + [anon_sym_GT_GT_EQ] = ACTIONS(1332), + [anon_sym_AMP_EQ] = ACTIONS(1332), + [anon_sym_CARET_EQ] = ACTIONS(1330), + [anon_sym_PIPE_EQ] = ACTIONS(1332), + [anon_sym_EQ_EQ] = ACTIONS(1330), + [anon_sym_BANG_EQ] = ACTIONS(1330), + [anon_sym_LT_EQ] = ACTIONS(1332), + [anon_sym_GT_EQ] = ACTIONS(1332), + [anon_sym_AMP_AMP] = ACTIONS(1332), + [anon_sym_PIPE_PIPE] = ACTIONS(1332), + [anon_sym_LT_LT] = ACTIONS(1330), + [anon_sym_GT_GT] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_SLASH] = ACTIONS(1330), + [anon_sym_PERCENT] = ACTIONS(1330), + [anon_sym_STAR_STAR] = ACTIONS(1330), + [anon_sym_LT] = ACTIONS(1330), + [anon_sym_GT] = ACTIONS(1330), + [anon_sym_PIPE] = ACTIONS(1330), + [anon_sym_PIPE_AMP] = ACTIONS(1332), + [anon_sym_RBRACK] = ACTIONS(1332), + [anon_sym_EQ_TILDE] = ACTIONS(1330), + [anon_sym_AMP_GT] = ACTIONS(1330), + [anon_sym_AMP_GT_GT] = ACTIONS(1332), + [anon_sym_LT_AMP] = ACTIONS(1332), + [anon_sym_GT_AMP] = ACTIONS(1332), + [anon_sym_GT_PIPE] = ACTIONS(1332), + [anon_sym_LT_LT_DASH] = ACTIONS(1332), + [anon_sym_LT_LT_LT] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_CARET] = ACTIONS(1330), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1332), + [aux_sym_concatenation_token1] = ACTIONS(1332), + [anon_sym_DOLLAR] = ACTIONS(1330), + [sym__special_character] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_raw_string] = ACTIONS(1332), + [sym_ansi_c_string] = ACTIONS(1332), + [aux_sym_number_token1] = ACTIONS(1330), + [aux_sym_number_token2] = ACTIONS(1330), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1332), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1330), + [anon_sym_BQUOTE] = ACTIONS(1330), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1332), + [anon_sym_LT_LPAREN] = ACTIONS(1332), + [anon_sym_GT_LPAREN] = ACTIONS(1332), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1290), - [sym_file_descriptor] = ACTIONS(1290), - [sym__concat] = ACTIONS(1290), - [sym__bare_dollar] = ACTIONS(1290), - [sym__brace_start] = ACTIONS(1290), + [sym_test_operator] = ACTIONS(1332), + [sym_file_descriptor] = ACTIONS(1332), + [sym__concat] = ACTIONS(1332), + [sym__bare_dollar] = ACTIONS(1332), + [sym__brace_start] = ACTIONS(1332), }, [422] = { - [sym_word] = ACTIONS(1324), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_EQ] = ACTIONS(1324), - [anon_sym_DASH_EQ] = ACTIONS(1324), - [anon_sym_STAR_EQ] = ACTIONS(1324), - [anon_sym_SLASH_EQ] = ACTIONS(1324), - [anon_sym_PERCENT_EQ] = ACTIONS(1324), - [anon_sym_LT_LT_EQ] = ACTIONS(1326), - [anon_sym_GT_GT_EQ] = ACTIONS(1326), - [anon_sym_AMP_EQ] = ACTIONS(1326), - [anon_sym_CARET_EQ] = ACTIONS(1324), - [anon_sym_PIPE_EQ] = ACTIONS(1326), - [anon_sym_EQ_EQ] = ACTIONS(1324), - [anon_sym_BANG_EQ] = ACTIONS(1324), - [anon_sym_LT_EQ] = ACTIONS(1326), - [anon_sym_GT_EQ] = ACTIONS(1326), - [anon_sym_AMP_AMP] = ACTIONS(1326), - [anon_sym_PIPE_PIPE] = ACTIONS(1326), - [anon_sym_LT_LT] = ACTIONS(1324), - [anon_sym_GT_GT] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_SLASH] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_STAR_STAR] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_PIPE_AMP] = ACTIONS(1326), - [anon_sym_RBRACK] = ACTIONS(1326), - [anon_sym_EQ_TILDE] = ACTIONS(1324), - [anon_sym_AMP_GT] = ACTIONS(1324), - [anon_sym_AMP_GT_GT] = ACTIONS(1326), - [anon_sym_LT_AMP] = ACTIONS(1326), - [anon_sym_GT_AMP] = ACTIONS(1326), - [anon_sym_GT_PIPE] = ACTIONS(1326), - [anon_sym_LT_LT_DASH] = ACTIONS(1326), - [anon_sym_LT_LT_LT] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1326), - [aux_sym_concatenation_token1] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1324), - [sym__special_character] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_raw_string] = ACTIONS(1326), - [sym_ansi_c_string] = ACTIONS(1326), - [aux_sym_number_token1] = ACTIONS(1324), - [aux_sym_number_token2] = ACTIONS(1324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1324), - [anon_sym_BQUOTE] = ACTIONS(1324), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1326), - [anon_sym_LT_LPAREN] = ACTIONS(1326), - [anon_sym_GT_LPAREN] = ACTIONS(1326), + [sym_word] = ACTIONS(1334), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1336), + [anon_sym_EQ] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_PLUS_EQ] = ACTIONS(1334), + [anon_sym_DASH_EQ] = ACTIONS(1334), + [anon_sym_STAR_EQ] = ACTIONS(1334), + [anon_sym_SLASH_EQ] = ACTIONS(1334), + [anon_sym_PERCENT_EQ] = ACTIONS(1334), + [anon_sym_LT_LT_EQ] = ACTIONS(1336), + [anon_sym_GT_GT_EQ] = ACTIONS(1336), + [anon_sym_AMP_EQ] = ACTIONS(1336), + [anon_sym_CARET_EQ] = ACTIONS(1334), + [anon_sym_PIPE_EQ] = ACTIONS(1336), + [anon_sym_EQ_EQ] = ACTIONS(1334), + [anon_sym_BANG_EQ] = ACTIONS(1334), + [anon_sym_LT_EQ] = ACTIONS(1336), + [anon_sym_GT_EQ] = ACTIONS(1336), + [anon_sym_AMP_AMP] = ACTIONS(1336), + [anon_sym_PIPE_PIPE] = ACTIONS(1336), + [anon_sym_LT_LT] = ACTIONS(1334), + [anon_sym_GT_GT] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1334), + [anon_sym_PERCENT] = ACTIONS(1334), + [anon_sym_STAR_STAR] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1334), + [anon_sym_GT] = ACTIONS(1334), + [anon_sym_PIPE] = ACTIONS(1334), + [anon_sym_PIPE_AMP] = ACTIONS(1336), + [anon_sym_RBRACK] = ACTIONS(1336), + [anon_sym_EQ_TILDE] = ACTIONS(1334), + [anon_sym_AMP_GT] = ACTIONS(1334), + [anon_sym_AMP_GT_GT] = ACTIONS(1336), + [anon_sym_LT_AMP] = ACTIONS(1336), + [anon_sym_GT_AMP] = ACTIONS(1336), + [anon_sym_GT_PIPE] = ACTIONS(1336), + [anon_sym_LT_LT_DASH] = ACTIONS(1336), + [anon_sym_LT_LT_LT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_CARET] = ACTIONS(1334), + [anon_sym_QMARK] = ACTIONS(1334), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1336), + [aux_sym_concatenation_token1] = ACTIONS(1336), + [anon_sym_DOLLAR] = ACTIONS(1334), + [sym__special_character] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_raw_string] = ACTIONS(1336), + [sym_ansi_c_string] = ACTIONS(1336), + [aux_sym_number_token1] = ACTIONS(1334), + [aux_sym_number_token2] = ACTIONS(1334), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1336), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1334), + [anon_sym_BQUOTE] = ACTIONS(1334), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1336), + [anon_sym_LT_LPAREN] = ACTIONS(1336), + [anon_sym_GT_LPAREN] = ACTIONS(1336), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1326), - [sym_file_descriptor] = ACTIONS(1326), - [sym__concat] = ACTIONS(1326), - [sym__bare_dollar] = ACTIONS(1326), - [sym__brace_start] = ACTIONS(1326), + [sym_test_operator] = ACTIONS(1336), + [sym_file_descriptor] = ACTIONS(1336), + [sym__concat] = ACTIONS(1336), + [sym__bare_dollar] = ACTIONS(1336), + [sym__brace_start] = ACTIONS(1336), }, [423] = { + [sym_word] = ACTIONS(1258), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1263), + [anon_sym_EQ] = ACTIONS(1258), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_PLUS_EQ] = ACTIONS(1258), + [anon_sym_DASH_EQ] = ACTIONS(1258), + [anon_sym_STAR_EQ] = ACTIONS(1258), + [anon_sym_SLASH_EQ] = ACTIONS(1258), + [anon_sym_PERCENT_EQ] = ACTIONS(1258), + [anon_sym_LT_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_GT_EQ] = ACTIONS(1263), + [anon_sym_AMP_EQ] = ACTIONS(1263), + [anon_sym_CARET_EQ] = ACTIONS(1258), + [anon_sym_PIPE_EQ] = ACTIONS(1263), + [anon_sym_EQ_EQ] = ACTIONS(1258), + [anon_sym_BANG_EQ] = ACTIONS(1258), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1263), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1263), + [anon_sym_LT_LT] = ACTIONS(1258), + [anon_sym_GT_GT] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_SLASH] = ACTIONS(1258), + [anon_sym_PERCENT] = ACTIONS(1258), + [anon_sym_STAR_STAR] = ACTIONS(1258), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_GT] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1258), + [anon_sym_PIPE_AMP] = ACTIONS(1263), + [anon_sym_RBRACK] = ACTIONS(1263), + [anon_sym_EQ_TILDE] = ACTIONS(1258), + [anon_sym_AMP_GT] = ACTIONS(1258), + [anon_sym_AMP_GT_GT] = ACTIONS(1263), + [anon_sym_LT_AMP] = ACTIONS(1263), + [anon_sym_GT_AMP] = ACTIONS(1263), + [anon_sym_GT_PIPE] = ACTIONS(1263), + [anon_sym_LT_LT_DASH] = ACTIONS(1263), + [anon_sym_LT_LT_LT] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_CARET] = ACTIONS(1258), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1263), + [aux_sym_concatenation_token1] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1258), + [sym__special_character] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1263), + [sym_raw_string] = ACTIONS(1263), + [sym_ansi_c_string] = ACTIONS(1263), + [aux_sym_number_token1] = ACTIONS(1258), + [aux_sym_number_token2] = ACTIONS(1258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1258), + [anon_sym_BQUOTE] = ACTIONS(1258), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1263), + [anon_sym_LT_LPAREN] = ACTIONS(1263), + [anon_sym_GT_LPAREN] = ACTIONS(1263), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1263), + [sym_file_descriptor] = ACTIONS(1263), + [sym__concat] = ACTIONS(1263), + [sym__bare_dollar] = ACTIONS(1263), + [sym__brace_start] = ACTIONS(1263), + }, + [424] = { [sym_word] = ACTIONS(1338), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1340), [anon_sym_EQ] = ACTIONS(1338), [anon_sym_PLUS_PLUS] = ACTIONS(1338), [anon_sym_DASH_DASH] = ACTIONS(1338), @@ -55246,209 +57064,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1340), [sym__brace_start] = ACTIONS(1340), }, - [424] = { - [sym_word] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PLUS_EQ] = ACTIONS(1354), - [anon_sym_DASH_EQ] = ACTIONS(1354), - [anon_sym_STAR_EQ] = ACTIONS(1354), - [anon_sym_SLASH_EQ] = ACTIONS(1354), - [anon_sym_PERCENT_EQ] = ACTIONS(1354), - [anon_sym_LT_LT_EQ] = ACTIONS(1356), - [anon_sym_GT_GT_EQ] = ACTIONS(1356), - [anon_sym_AMP_EQ] = ACTIONS(1356), - [anon_sym_CARET_EQ] = ACTIONS(1354), - [anon_sym_PIPE_EQ] = ACTIONS(1356), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1356), - [anon_sym_AMP_AMP] = ACTIONS(1356), - [anon_sym_PIPE_PIPE] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1354), - [anon_sym_GT_GT] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_PERCENT] = ACTIONS(1354), - [anon_sym_STAR_STAR] = ACTIONS(1354), - [anon_sym_LT] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_PIPE] = ACTIONS(1354), - [anon_sym_PIPE_AMP] = ACTIONS(1356), - [anon_sym_RBRACK] = ACTIONS(1356), - [anon_sym_EQ_TILDE] = ACTIONS(1354), - [anon_sym_AMP_GT] = ACTIONS(1354), - [anon_sym_AMP_GT_GT] = ACTIONS(1356), - [anon_sym_LT_AMP] = ACTIONS(1356), - [anon_sym_GT_AMP] = ACTIONS(1356), - [anon_sym_GT_PIPE] = ACTIONS(1356), - [anon_sym_LT_LT_DASH] = ACTIONS(1356), - [anon_sym_LT_LT_LT] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_CARET] = ACTIONS(1354), - [anon_sym_QMARK] = ACTIONS(1354), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), - [aux_sym_concatenation_token1] = ACTIONS(1356), - [anon_sym_DOLLAR] = ACTIONS(1354), - [sym__special_character] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_raw_string] = ACTIONS(1356), - [sym_ansi_c_string] = ACTIONS(1356), - [aux_sym_number_token1] = ACTIONS(1354), - [aux_sym_number_token2] = ACTIONS(1354), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1354), - [anon_sym_BQUOTE] = ACTIONS(1354), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1356), - [anon_sym_LT_LPAREN] = ACTIONS(1356), - [anon_sym_GT_LPAREN] = ACTIONS(1356), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1356), - [sym_file_descriptor] = ACTIONS(1356), - [sym__concat] = ACTIONS(1356), - [sym__bare_dollar] = ACTIONS(1356), - [sym__brace_start] = ACTIONS(1356), - }, [425] = { - [sym_word] = ACTIONS(1284), - [anon_sym_EQ] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_EQ] = ACTIONS(1284), - [anon_sym_DASH_EQ] = ACTIONS(1284), - [anon_sym_STAR_EQ] = ACTIONS(1284), - [anon_sym_SLASH_EQ] = ACTIONS(1284), - [anon_sym_PERCENT_EQ] = ACTIONS(1284), - [anon_sym_LT_LT_EQ] = ACTIONS(1286), - [anon_sym_GT_GT_EQ] = ACTIONS(1286), - [anon_sym_AMP_EQ] = ACTIONS(1286), - [anon_sym_CARET_EQ] = ACTIONS(1284), - [anon_sym_PIPE_EQ] = ACTIONS(1286), - [anon_sym_EQ_EQ] = ACTIONS(1284), - [anon_sym_BANG_EQ] = ACTIONS(1284), - [anon_sym_LT_EQ] = ACTIONS(1286), - [anon_sym_GT_EQ] = ACTIONS(1286), - [anon_sym_AMP_AMP] = ACTIONS(1286), - [anon_sym_PIPE_PIPE] = ACTIONS(1286), - [anon_sym_LT_LT] = ACTIONS(1284), - [anon_sym_GT_GT] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_SLASH] = ACTIONS(1284), - [anon_sym_PERCENT] = ACTIONS(1284), - [anon_sym_STAR_STAR] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1284), - [anon_sym_GT] = ACTIONS(1284), - [anon_sym_PIPE] = ACTIONS(1284), - [anon_sym_PIPE_AMP] = ACTIONS(1286), - [anon_sym_RBRACK] = ACTIONS(1286), - [anon_sym_EQ_TILDE] = ACTIONS(1284), - [anon_sym_AMP_GT] = ACTIONS(1284), - [anon_sym_AMP_GT_GT] = ACTIONS(1286), - [anon_sym_LT_AMP] = ACTIONS(1286), - [anon_sym_GT_AMP] = ACTIONS(1286), - [anon_sym_GT_PIPE] = ACTIONS(1286), - [anon_sym_LT_LT_DASH] = ACTIONS(1286), - [anon_sym_LT_LT_LT] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_CARET] = ACTIONS(1284), - [anon_sym_QMARK] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1286), - [aux_sym_concatenation_token1] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1284), - [sym__special_character] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_raw_string] = ACTIONS(1286), - [sym_ansi_c_string] = ACTIONS(1286), - [aux_sym_number_token1] = ACTIONS(1284), - [aux_sym_number_token2] = ACTIONS(1284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1286), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1284), - [anon_sym_BQUOTE] = ACTIONS(1284), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1286), - [anon_sym_LT_LPAREN] = ACTIONS(1286), - [anon_sym_GT_LPAREN] = ACTIONS(1286), + [sym_word] = ACTIONS(1268), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1270), + [anon_sym_EQ] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_EQ] = ACTIONS(1268), + [anon_sym_DASH_EQ] = ACTIONS(1268), + [anon_sym_STAR_EQ] = ACTIONS(1268), + [anon_sym_SLASH_EQ] = ACTIONS(1268), + [anon_sym_PERCENT_EQ] = ACTIONS(1268), + [anon_sym_LT_LT_EQ] = ACTIONS(1270), + [anon_sym_GT_GT_EQ] = ACTIONS(1270), + [anon_sym_AMP_EQ] = ACTIONS(1270), + [anon_sym_CARET_EQ] = ACTIONS(1268), + [anon_sym_PIPE_EQ] = ACTIONS(1270), + [anon_sym_EQ_EQ] = ACTIONS(1268), + [anon_sym_BANG_EQ] = ACTIONS(1268), + [anon_sym_LT_EQ] = ACTIONS(1270), + [anon_sym_GT_EQ] = ACTIONS(1270), + [anon_sym_AMP_AMP] = ACTIONS(1270), + [anon_sym_PIPE_PIPE] = ACTIONS(1270), + [anon_sym_LT_LT] = ACTIONS(1268), + [anon_sym_GT_GT] = ACTIONS(1268), + [anon_sym_PLUS] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_SLASH] = ACTIONS(1268), + [anon_sym_PERCENT] = ACTIONS(1268), + [anon_sym_STAR_STAR] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(1268), + [anon_sym_GT] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE_AMP] = ACTIONS(1270), + [anon_sym_RBRACK] = ACTIONS(1270), + [anon_sym_EQ_TILDE] = ACTIONS(1268), + [anon_sym_AMP_GT] = ACTIONS(1268), + [anon_sym_AMP_GT_GT] = ACTIONS(1270), + [anon_sym_LT_AMP] = ACTIONS(1270), + [anon_sym_GT_AMP] = ACTIONS(1270), + [anon_sym_GT_PIPE] = ACTIONS(1270), + [anon_sym_LT_LT_DASH] = ACTIONS(1270), + [anon_sym_LT_LT_LT] = ACTIONS(1270), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_CARET] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1268), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1270), + [aux_sym_concatenation_token1] = ACTIONS(1270), + [anon_sym_DOLLAR] = ACTIONS(1268), + [sym__special_character] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1270), + [sym_raw_string] = ACTIONS(1270), + [sym_ansi_c_string] = ACTIONS(1270), + [aux_sym_number_token1] = ACTIONS(1268), + [aux_sym_number_token2] = ACTIONS(1268), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1270), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1268), + [anon_sym_BQUOTE] = ACTIONS(1268), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1270), + [anon_sym_LT_LPAREN] = ACTIONS(1270), + [anon_sym_GT_LPAREN] = ACTIONS(1270), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1286), - [sym_file_descriptor] = ACTIONS(1286), - [sym__concat] = ACTIONS(1286), - [sym__bare_dollar] = ACTIONS(1286), - [sym__brace_start] = ACTIONS(1286), + [sym_test_operator] = ACTIONS(1270), + [sym_file_descriptor] = ACTIONS(1270), + [sym__concat] = ACTIONS(1270), + [sym__bare_dollar] = ACTIONS(1270), + [sym__brace_start] = ACTIONS(1270), }, [426] = { - [sym_word] = ACTIONS(1302), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_EQ] = ACTIONS(1302), - [anon_sym_DASH_EQ] = ACTIONS(1302), - [anon_sym_STAR_EQ] = ACTIONS(1302), - [anon_sym_SLASH_EQ] = ACTIONS(1302), - [anon_sym_PERCENT_EQ] = ACTIONS(1302), - [anon_sym_LT_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_GT_EQ] = ACTIONS(1304), - [anon_sym_AMP_EQ] = ACTIONS(1304), - [anon_sym_CARET_EQ] = ACTIONS(1302), - [anon_sym_PIPE_EQ] = ACTIONS(1304), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1302), - [anon_sym_GT_GT] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1302), - [anon_sym_PERCENT] = ACTIONS(1302), - [anon_sym_STAR_STAR] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_PIPE_AMP] = ACTIONS(1304), - [anon_sym_RBRACK] = ACTIONS(1304), - [anon_sym_EQ_TILDE] = ACTIONS(1302), - [anon_sym_AMP_GT] = ACTIONS(1302), - [anon_sym_AMP_GT_GT] = ACTIONS(1304), - [anon_sym_LT_AMP] = ACTIONS(1304), - [anon_sym_GT_AMP] = ACTIONS(1304), - [anon_sym_GT_PIPE] = ACTIONS(1304), - [anon_sym_LT_LT_DASH] = ACTIONS(1304), - [anon_sym_LT_LT_LT] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(1302), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1304), - [aux_sym_concatenation_token1] = ACTIONS(1304), - [anon_sym_DOLLAR] = ACTIONS(1302), - [sym__special_character] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_raw_string] = ACTIONS(1304), - [sym_ansi_c_string] = ACTIONS(1304), - [aux_sym_number_token1] = ACTIONS(1302), - [aux_sym_number_token2] = ACTIONS(1302), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1302), - [anon_sym_BQUOTE] = ACTIONS(1302), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1304), - [anon_sym_LT_LPAREN] = ACTIONS(1304), - [anon_sym_GT_LPAREN] = ACTIONS(1304), + [sym_word] = ACTIONS(1272), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1274), + [anon_sym_EQ] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [anon_sym_DASH_DASH] = ACTIONS(1272), + [anon_sym_PLUS_EQ] = ACTIONS(1272), + [anon_sym_DASH_EQ] = ACTIONS(1272), + [anon_sym_STAR_EQ] = ACTIONS(1272), + [anon_sym_SLASH_EQ] = ACTIONS(1272), + [anon_sym_PERCENT_EQ] = ACTIONS(1272), + [anon_sym_LT_LT_EQ] = ACTIONS(1274), + [anon_sym_GT_GT_EQ] = ACTIONS(1274), + [anon_sym_AMP_EQ] = ACTIONS(1274), + [anon_sym_CARET_EQ] = ACTIONS(1272), + [anon_sym_PIPE_EQ] = ACTIONS(1274), + [anon_sym_EQ_EQ] = ACTIONS(1272), + [anon_sym_BANG_EQ] = ACTIONS(1272), + [anon_sym_LT_EQ] = ACTIONS(1274), + [anon_sym_GT_EQ] = ACTIONS(1274), + [anon_sym_AMP_AMP] = ACTIONS(1274), + [anon_sym_PIPE_PIPE] = ACTIONS(1274), + [anon_sym_LT_LT] = ACTIONS(1272), + [anon_sym_GT_GT] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(1272), + [anon_sym_PERCENT] = ACTIONS(1272), + [anon_sym_STAR_STAR] = ACTIONS(1272), + [anon_sym_LT] = ACTIONS(1272), + [anon_sym_GT] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE_AMP] = ACTIONS(1274), + [anon_sym_RBRACK] = ACTIONS(1274), + [anon_sym_EQ_TILDE] = ACTIONS(1272), + [anon_sym_AMP_GT] = ACTIONS(1272), + [anon_sym_AMP_GT_GT] = ACTIONS(1274), + [anon_sym_LT_AMP] = ACTIONS(1274), + [anon_sym_GT_AMP] = ACTIONS(1274), + [anon_sym_GT_PIPE] = ACTIONS(1274), + [anon_sym_LT_LT_DASH] = ACTIONS(1274), + [anon_sym_LT_LT_LT] = ACTIONS(1274), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_CARET] = ACTIONS(1272), + [anon_sym_QMARK] = ACTIONS(1272), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1274), + [aux_sym_concatenation_token1] = ACTIONS(1274), + [anon_sym_DOLLAR] = ACTIONS(1272), + [sym__special_character] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1274), + [sym_raw_string] = ACTIONS(1274), + [sym_ansi_c_string] = ACTIONS(1274), + [aux_sym_number_token1] = ACTIONS(1272), + [aux_sym_number_token2] = ACTIONS(1272), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1272), + [anon_sym_BQUOTE] = ACTIONS(1272), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1274), + [anon_sym_LT_LPAREN] = ACTIONS(1274), + [anon_sym_GT_LPAREN] = ACTIONS(1274), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1304), - [sym_file_descriptor] = ACTIONS(1304), - [sym__concat] = ACTIONS(1304), - [sym__bare_dollar] = ACTIONS(1304), - [sym__brace_start] = ACTIONS(1304), + [sym_test_operator] = ACTIONS(1274), + [sym_file_descriptor] = ACTIONS(1274), + [sym__concat] = ACTIONS(1274), + [sym__bare_dollar] = ACTIONS(1274), + [sym__brace_start] = ACTIONS(1274), }, [427] = { + [sym_word] = ACTIONS(1326), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1328), + [anon_sym_EQ] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_EQ] = ACTIONS(1326), + [anon_sym_DASH_EQ] = ACTIONS(1326), + [anon_sym_STAR_EQ] = ACTIONS(1326), + [anon_sym_SLASH_EQ] = ACTIONS(1326), + [anon_sym_PERCENT_EQ] = ACTIONS(1326), + [anon_sym_LT_LT_EQ] = ACTIONS(1328), + [anon_sym_GT_GT_EQ] = ACTIONS(1328), + [anon_sym_AMP_EQ] = ACTIONS(1328), + [anon_sym_CARET_EQ] = ACTIONS(1326), + [anon_sym_PIPE_EQ] = ACTIONS(1328), + [anon_sym_EQ_EQ] = ACTIONS(1326), + [anon_sym_BANG_EQ] = ACTIONS(1326), + [anon_sym_LT_EQ] = ACTIONS(1328), + [anon_sym_GT_EQ] = ACTIONS(1328), + [anon_sym_AMP_AMP] = ACTIONS(1328), + [anon_sym_PIPE_PIPE] = ACTIONS(1328), + [anon_sym_LT_LT] = ACTIONS(1326), + [anon_sym_GT_GT] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_SLASH] = ACTIONS(1326), + [anon_sym_PERCENT] = ACTIONS(1326), + [anon_sym_STAR_STAR] = ACTIONS(1326), + [anon_sym_LT] = ACTIONS(1326), + [anon_sym_GT] = ACTIONS(1326), + [anon_sym_PIPE] = ACTIONS(1326), + [anon_sym_PIPE_AMP] = ACTIONS(1328), + [anon_sym_RBRACK] = ACTIONS(1328), + [anon_sym_EQ_TILDE] = ACTIONS(1326), + [anon_sym_AMP_GT] = ACTIONS(1326), + [anon_sym_AMP_GT_GT] = ACTIONS(1328), + [anon_sym_LT_AMP] = ACTIONS(1328), + [anon_sym_GT_AMP] = ACTIONS(1328), + [anon_sym_GT_PIPE] = ACTIONS(1328), + [anon_sym_LT_LT_DASH] = ACTIONS(1328), + [anon_sym_LT_LT_LT] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1326), + [anon_sym_QMARK] = ACTIONS(1326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1328), + [aux_sym_concatenation_token1] = ACTIONS(1328), + [anon_sym_DOLLAR] = ACTIONS(1326), + [sym__special_character] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_raw_string] = ACTIONS(1328), + [sym_ansi_c_string] = ACTIONS(1328), + [aux_sym_number_token1] = ACTIONS(1326), + [aux_sym_number_token2] = ACTIONS(1326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1326), + [anon_sym_BQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1328), + [anon_sym_LT_LPAREN] = ACTIONS(1328), + [anon_sym_GT_LPAREN] = ACTIONS(1328), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1328), + [sym_file_descriptor] = ACTIONS(1328), + [sym__concat] = ACTIONS(1328), + [sym__bare_dollar] = ACTIONS(1328), + [sym__brace_start] = ACTIONS(1328), + }, + [428] = { + [sym_word] = ACTIONS(1346), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1348), + [anon_sym_EQ] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_EQ] = ACTIONS(1346), + [anon_sym_DASH_EQ] = ACTIONS(1346), + [anon_sym_STAR_EQ] = ACTIONS(1346), + [anon_sym_SLASH_EQ] = ACTIONS(1346), + [anon_sym_PERCENT_EQ] = ACTIONS(1346), + [anon_sym_LT_LT_EQ] = ACTIONS(1348), + [anon_sym_GT_GT_EQ] = ACTIONS(1348), + [anon_sym_AMP_EQ] = ACTIONS(1348), + [anon_sym_CARET_EQ] = ACTIONS(1346), + [anon_sym_PIPE_EQ] = ACTIONS(1348), + [anon_sym_EQ_EQ] = ACTIONS(1346), + [anon_sym_BANG_EQ] = ACTIONS(1346), + [anon_sym_LT_EQ] = ACTIONS(1348), + [anon_sym_GT_EQ] = ACTIONS(1348), + [anon_sym_AMP_AMP] = ACTIONS(1348), + [anon_sym_PIPE_PIPE] = ACTIONS(1348), + [anon_sym_LT_LT] = ACTIONS(1346), + [anon_sym_GT_GT] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym_PERCENT] = ACTIONS(1346), + [anon_sym_STAR_STAR] = ACTIONS(1346), + [anon_sym_LT] = ACTIONS(1346), + [anon_sym_GT] = ACTIONS(1346), + [anon_sym_PIPE] = ACTIONS(1346), + [anon_sym_PIPE_AMP] = ACTIONS(1348), + [anon_sym_RBRACK] = ACTIONS(1348), + [anon_sym_EQ_TILDE] = ACTIONS(1346), + [anon_sym_AMP_GT] = ACTIONS(1346), + [anon_sym_AMP_GT_GT] = ACTIONS(1348), + [anon_sym_LT_AMP] = ACTIONS(1348), + [anon_sym_GT_AMP] = ACTIONS(1348), + [anon_sym_GT_PIPE] = ACTIONS(1348), + [anon_sym_LT_LT_DASH] = ACTIONS(1348), + [anon_sym_LT_LT_LT] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_CARET] = ACTIONS(1346), + [anon_sym_QMARK] = ACTIONS(1346), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1348), + [aux_sym_concatenation_token1] = ACTIONS(1348), + [anon_sym_DOLLAR] = ACTIONS(1346), + [sym__special_character] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_raw_string] = ACTIONS(1348), + [sym_ansi_c_string] = ACTIONS(1348), + [aux_sym_number_token1] = ACTIONS(1346), + [aux_sym_number_token2] = ACTIONS(1346), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1348), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), + [anon_sym_BQUOTE] = ACTIONS(1346), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1348), + [anon_sym_LT_LPAREN] = ACTIONS(1348), + [anon_sym_GT_LPAREN] = ACTIONS(1348), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1348), + [sym_file_descriptor] = ACTIONS(1348), + [sym__concat] = ACTIONS(1348), + [sym__bare_dollar] = ACTIONS(1348), + [sym__brace_start] = ACTIONS(1348), + }, + [429] = { [sym_word] = ACTIONS(1284), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1286), [anon_sym_EQ] = ACTIONS(1284), [anon_sym_PLUS_PLUS] = ACTIONS(1284), [anon_sym_DASH_DASH] = ACTIONS(1284), @@ -55514,630 +57404,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1286), [sym__brace_start] = ACTIONS(1286), }, - [428] = { - [sym_word] = ACTIONS(1298), - [anon_sym_EQ] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_EQ] = ACTIONS(1298), - [anon_sym_DASH_EQ] = ACTIONS(1298), - [anon_sym_STAR_EQ] = ACTIONS(1298), - [anon_sym_SLASH_EQ] = ACTIONS(1298), - [anon_sym_PERCENT_EQ] = ACTIONS(1298), - [anon_sym_LT_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_GT_EQ] = ACTIONS(1300), - [anon_sym_AMP_EQ] = ACTIONS(1300), - [anon_sym_CARET_EQ] = ACTIONS(1298), - [anon_sym_PIPE_EQ] = ACTIONS(1300), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1298), - [anon_sym_GT_GT] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_PERCENT] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_PIPE_AMP] = ACTIONS(1300), - [anon_sym_RBRACK] = ACTIONS(1300), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_AMP_GT] = ACTIONS(1298), - [anon_sym_AMP_GT_GT] = ACTIONS(1300), - [anon_sym_LT_AMP] = ACTIONS(1300), - [anon_sym_GT_AMP] = ACTIONS(1300), - [anon_sym_GT_PIPE] = ACTIONS(1300), - [anon_sym_LT_LT_DASH] = ACTIONS(1300), - [anon_sym_LT_LT_LT] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1298), - [anon_sym_QMARK] = ACTIONS(1298), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1300), - [aux_sym_concatenation_token1] = ACTIONS(1300), - [anon_sym_DOLLAR] = ACTIONS(1298), - [sym__special_character] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_raw_string] = ACTIONS(1300), - [sym_ansi_c_string] = ACTIONS(1300), - [aux_sym_number_token1] = ACTIONS(1298), - [aux_sym_number_token2] = ACTIONS(1298), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1298), - [anon_sym_BQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1300), - [anon_sym_LT_LPAREN] = ACTIONS(1300), - [anon_sym_GT_LPAREN] = ACTIONS(1300), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1300), - [sym_file_descriptor] = ACTIONS(1300), - [sym__concat] = ACTIONS(1300), - [sym__bare_dollar] = ACTIONS(1300), - [sym__brace_start] = ACTIONS(1300), - }, - [429] = { - [sym_word] = ACTIONS(1350), - [anon_sym_EQ] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_EQ] = ACTIONS(1350), - [anon_sym_DASH_EQ] = ACTIONS(1350), - [anon_sym_STAR_EQ] = ACTIONS(1350), - [anon_sym_SLASH_EQ] = ACTIONS(1350), - [anon_sym_PERCENT_EQ] = ACTIONS(1350), - [anon_sym_LT_LT_EQ] = ACTIONS(1352), - [anon_sym_GT_GT_EQ] = ACTIONS(1352), - [anon_sym_AMP_EQ] = ACTIONS(1352), - [anon_sym_CARET_EQ] = ACTIONS(1350), - [anon_sym_PIPE_EQ] = ACTIONS(1352), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1352), - [anon_sym_GT_EQ] = ACTIONS(1352), - [anon_sym_AMP_AMP] = ACTIONS(1352), - [anon_sym_PIPE_PIPE] = ACTIONS(1352), - [anon_sym_LT_LT] = ACTIONS(1350), - [anon_sym_GT_GT] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_PERCENT] = ACTIONS(1350), - [anon_sym_STAR_STAR] = ACTIONS(1350), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_PIPE_AMP] = ACTIONS(1352), - [anon_sym_RBRACK] = ACTIONS(1352), - [anon_sym_EQ_TILDE] = ACTIONS(1350), - [anon_sym_AMP_GT] = ACTIONS(1350), - [anon_sym_AMP_GT_GT] = ACTIONS(1352), - [anon_sym_LT_AMP] = ACTIONS(1352), - [anon_sym_GT_AMP] = ACTIONS(1352), - [anon_sym_GT_PIPE] = ACTIONS(1352), - [anon_sym_LT_LT_DASH] = ACTIONS(1352), - [anon_sym_LT_LT_LT] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1350), - [anon_sym_QMARK] = ACTIONS(1350), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1352), - [aux_sym_concatenation_token1] = ACTIONS(1352), - [anon_sym_DOLLAR] = ACTIONS(1350), - [sym__special_character] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_raw_string] = ACTIONS(1352), - [sym_ansi_c_string] = ACTIONS(1352), - [aux_sym_number_token1] = ACTIONS(1350), - [aux_sym_number_token2] = ACTIONS(1350), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1352), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1350), - [anon_sym_BQUOTE] = ACTIONS(1350), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1352), - [anon_sym_LT_LPAREN] = ACTIONS(1352), - [anon_sym_GT_LPAREN] = ACTIONS(1352), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1352), - [sym_file_descriptor] = ACTIONS(1352), - [sym__concat] = ACTIONS(1352), - [sym__bare_dollar] = ACTIONS(1352), - [sym__brace_start] = ACTIONS(1352), - }, [430] = { - [sym_word] = ACTIONS(1328), - [anon_sym_EQ] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_EQ] = ACTIONS(1328), - [anon_sym_DASH_EQ] = ACTIONS(1328), - [anon_sym_STAR_EQ] = ACTIONS(1328), - [anon_sym_SLASH_EQ] = ACTIONS(1328), - [anon_sym_PERCENT_EQ] = ACTIONS(1328), - [anon_sym_LT_LT_EQ] = ACTIONS(1330), - [anon_sym_GT_GT_EQ] = ACTIONS(1330), - [anon_sym_AMP_EQ] = ACTIONS(1330), - [anon_sym_CARET_EQ] = ACTIONS(1328), - [anon_sym_PIPE_EQ] = ACTIONS(1330), - [anon_sym_EQ_EQ] = ACTIONS(1328), - [anon_sym_BANG_EQ] = ACTIONS(1328), - [anon_sym_LT_EQ] = ACTIONS(1330), - [anon_sym_GT_EQ] = ACTIONS(1330), - [anon_sym_AMP_AMP] = ACTIONS(1330), - [anon_sym_PIPE_PIPE] = ACTIONS(1330), - [anon_sym_LT_LT] = ACTIONS(1328), - [anon_sym_GT_GT] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_SLASH] = ACTIONS(1328), - [anon_sym_PERCENT] = ACTIONS(1328), - [anon_sym_STAR_STAR] = ACTIONS(1328), - [anon_sym_LT] = ACTIONS(1328), - [anon_sym_GT] = ACTIONS(1328), - [anon_sym_PIPE] = ACTIONS(1328), - [anon_sym_PIPE_AMP] = ACTIONS(1330), - [anon_sym_RBRACK] = ACTIONS(1330), - [anon_sym_EQ_TILDE] = ACTIONS(1328), - [anon_sym_AMP_GT] = ACTIONS(1328), - [anon_sym_AMP_GT_GT] = ACTIONS(1330), - [anon_sym_LT_AMP] = ACTIONS(1330), - [anon_sym_GT_AMP] = ACTIONS(1330), - [anon_sym_GT_PIPE] = ACTIONS(1330), - [anon_sym_LT_LT_DASH] = ACTIONS(1330), - [anon_sym_LT_LT_LT] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_CARET] = ACTIONS(1328), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1330), - [aux_sym_concatenation_token1] = ACTIONS(1330), - [anon_sym_DOLLAR] = ACTIONS(1328), - [sym__special_character] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_raw_string] = ACTIONS(1330), - [sym_ansi_c_string] = ACTIONS(1330), - [aux_sym_number_token1] = ACTIONS(1328), - [aux_sym_number_token2] = ACTIONS(1328), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1330), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1328), - [anon_sym_BQUOTE] = ACTIONS(1328), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1330), - [anon_sym_LT_LPAREN] = ACTIONS(1330), - [anon_sym_GT_LPAREN] = ACTIONS(1330), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1330), - [sym_file_descriptor] = ACTIONS(1330), - [sym__concat] = ACTIONS(1330), - [sym__bare_dollar] = ACTIONS(1330), - [sym__brace_start] = ACTIONS(1330), + [sym_arithmetic_expansion] = STATE(2173), + [sym_brace_expression] = STATE(2173), + [sym_concatenation] = STATE(783), + [sym_string] = STATE(2173), + [sym_translated_string] = STATE(2173), + [sym_array] = STATE(783), + [sym_number] = STATE(2173), + [sym_simple_expansion] = STATE(2173), + [sym_expansion] = STATE(2173), + [sym_command_substitution] = STATE(2173), + [sym_process_substitution] = STATE(2173), + [aux_sym__literal_repeat1] = STATE(2262), + [aux_sym__expansion_body_repeat2] = STATE(783), + [sym_word] = ACTIONS(1378), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_EQ] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_SLASH] = ACTIONS(1390), + [anon_sym_PERCENT] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1394), + [anon_sym_GT] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_RPAREN] = ACTIONS(1382), + [anon_sym_PIPE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1384), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_COLON] = ACTIONS(1398), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1380), + [anon_sym_DOLLAR] = ACTIONS(1400), + [sym__special_character] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_raw_string] = ACTIONS(1406), + [sym_ansi_c_string] = ACTIONS(1406), + [aux_sym_number_token1] = ACTIONS(1408), + [aux_sym_number_token2] = ACTIONS(1410), + [anon_sym_POUND] = ACTIONS(1392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1412), + [anon_sym_RBRACE3] = ACTIONS(1414), + [anon_sym_COLON_EQ] = ACTIONS(1388), + [anon_sym_COLON_DASH] = ACTIONS(1386), + [anon_sym_COLON_PLUS] = ACTIONS(1388), + [anon_sym_COLON_QMARK] = ACTIONS(1386), + [anon_sym_POUND_POUND] = ACTIONS(1416), + [anon_sym_PERCENT_PERCENT] = ACTIONS(1418), + [anon_sym_SLASH_SLASH] = ACTIONS(1390), + [anon_sym_SLASH_POUND] = ACTIONS(1390), + [anon_sym_SLASH_PERCENT] = ACTIONS(1390), + [anon_sym_COMMA_COMMA] = ACTIONS(1384), + [anon_sym_CARET_CARET] = ACTIONS(1384), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_COMMA2] = ACTIONS(1422), + [anon_sym_COMMA_COMMA2] = ACTIONS(1424), + [anon_sym_CARET2] = ACTIONS(1422), + [anon_sym_CARET_CARET2] = ACTIONS(1424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1430), + [anon_sym_LT_LPAREN] = ACTIONS(1432), + [anon_sym_GT_LPAREN] = ACTIONS(1432), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1434), + [sym__brace_start] = ACTIONS(1436), }, [431] = { - [sym_word] = ACTIONS(1274), - [anon_sym_EQ] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_EQ] = ACTIONS(1274), - [anon_sym_DASH_EQ] = ACTIONS(1274), - [anon_sym_STAR_EQ] = ACTIONS(1274), - [anon_sym_SLASH_EQ] = ACTIONS(1274), - [anon_sym_PERCENT_EQ] = ACTIONS(1274), - [anon_sym_LT_LT_EQ] = ACTIONS(1279), - [anon_sym_GT_GT_EQ] = ACTIONS(1279), - [anon_sym_AMP_EQ] = ACTIONS(1279), - [anon_sym_CARET_EQ] = ACTIONS(1274), - [anon_sym_PIPE_EQ] = ACTIONS(1279), - [anon_sym_EQ_EQ] = ACTIONS(1274), - [anon_sym_BANG_EQ] = ACTIONS(1274), - [anon_sym_LT_EQ] = ACTIONS(1279), - [anon_sym_GT_EQ] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [anon_sym_LT_LT] = ACTIONS(1274), - [anon_sym_GT_GT] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1274), - [anon_sym_PERCENT] = ACTIONS(1274), - [anon_sym_STAR_STAR] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_GT] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1274), - [anon_sym_PIPE_AMP] = ACTIONS(1279), - [anon_sym_RBRACK] = ACTIONS(1279), - [anon_sym_EQ_TILDE] = ACTIONS(1274), - [anon_sym_AMP_GT] = ACTIONS(1274), - [anon_sym_AMP_GT_GT] = ACTIONS(1279), - [anon_sym_LT_AMP] = ACTIONS(1279), - [anon_sym_GT_AMP] = ACTIONS(1279), - [anon_sym_GT_PIPE] = ACTIONS(1279), - [anon_sym_LT_LT_DASH] = ACTIONS(1279), - [anon_sym_LT_LT_LT] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_CARET] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(1274), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1279), - [aux_sym_concatenation_token1] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(1274), - [sym__special_character] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1279), - [sym_raw_string] = ACTIONS(1279), - [sym_ansi_c_string] = ACTIONS(1279), - [aux_sym_number_token1] = ACTIONS(1274), - [aux_sym_number_token2] = ACTIONS(1274), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1274), - [anon_sym_BQUOTE] = ACTIONS(1274), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1279), - [anon_sym_LT_LPAREN] = ACTIONS(1279), - [anon_sym_GT_LPAREN] = ACTIONS(1279), + [aux_sym__literal_repeat1] = STATE(432), + [sym_word] = ACTIONS(145), + [anon_sym_LPAREN_LPAREN] = ACTIONS(178), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_DASH_DASH] = ACTIONS(143), + [anon_sym_PLUS_EQ] = ACTIONS(143), + [anon_sym_DASH_EQ] = ACTIONS(143), + [anon_sym_STAR_EQ] = ACTIONS(143), + [anon_sym_SLASH_EQ] = ACTIONS(143), + [anon_sym_PERCENT_EQ] = ACTIONS(143), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(143), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(602), + [anon_sym_PIPE_PIPE] = ACTIONS(602), + [anon_sym_LT_LT] = ACTIONS(147), + [anon_sym_GT_GT] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_STAR_STAR] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_PIPE_AMP] = ACTIONS(178), + [anon_sym_RBRACK] = ACTIONS(600), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_AMP_GT] = ACTIONS(145), + [anon_sym_AMP_GT_GT] = ACTIONS(178), + [anon_sym_LT_AMP] = ACTIONS(178), + [anon_sym_GT_AMP] = ACTIONS(178), + [anon_sym_GT_PIPE] = ACTIONS(178), + [anon_sym_LT_LT_DASH] = ACTIONS(178), + [anon_sym_LT_LT_LT] = ACTIONS(178), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(178), + [anon_sym_DOLLAR] = ACTIONS(145), + [sym__special_character] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(178), + [sym_raw_string] = ACTIONS(178), + [sym_ansi_c_string] = ACTIONS(178), + [aux_sym_number_token1] = ACTIONS(145), + [aux_sym_number_token2] = ACTIONS(145), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(178), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(145), + [anon_sym_BQUOTE] = ACTIONS(178), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(178), + [anon_sym_LT_LPAREN] = ACTIONS(178), + [anon_sym_GT_LPAREN] = ACTIONS(178), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1279), - [sym_file_descriptor] = ACTIONS(1279), - [sym__concat] = ACTIONS(1279), - [sym__bare_dollar] = ACTIONS(1279), - [sym__brace_start] = ACTIONS(1279), + [sym_test_operator] = ACTIONS(602), + [sym_file_descriptor] = ACTIONS(178), + [sym__bare_dollar] = ACTIONS(178), + [sym__brace_start] = ACTIONS(178), }, [432] = { - [sym_word] = ACTIONS(1316), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_EQ] = ACTIONS(1316), - [anon_sym_DASH_EQ] = ACTIONS(1316), - [anon_sym_STAR_EQ] = ACTIONS(1316), - [anon_sym_SLASH_EQ] = ACTIONS(1316), - [anon_sym_PERCENT_EQ] = ACTIONS(1316), - [anon_sym_LT_LT_EQ] = ACTIONS(1318), - [anon_sym_GT_GT_EQ] = ACTIONS(1318), - [anon_sym_AMP_EQ] = ACTIONS(1318), - [anon_sym_CARET_EQ] = ACTIONS(1316), - [anon_sym_PIPE_EQ] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1316), - [anon_sym_BANG_EQ] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_LT_LT] = ACTIONS(1316), - [anon_sym_GT_GT] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_SLASH] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_STAR_STAR] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_PIPE_AMP] = ACTIONS(1318), - [anon_sym_RBRACK] = ACTIONS(1318), - [anon_sym_EQ_TILDE] = ACTIONS(1316), - [anon_sym_AMP_GT] = ACTIONS(1316), - [anon_sym_AMP_GT_GT] = ACTIONS(1318), - [anon_sym_LT_AMP] = ACTIONS(1318), - [anon_sym_GT_AMP] = ACTIONS(1318), - [anon_sym_GT_PIPE] = ACTIONS(1318), - [anon_sym_LT_LT_DASH] = ACTIONS(1318), - [anon_sym_LT_LT_LT] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1318), - [aux_sym_concatenation_token1] = ACTIONS(1318), - [anon_sym_DOLLAR] = ACTIONS(1316), - [sym__special_character] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_raw_string] = ACTIONS(1318), - [sym_ansi_c_string] = ACTIONS(1318), - [aux_sym_number_token1] = ACTIONS(1316), - [aux_sym_number_token2] = ACTIONS(1316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1316), - [anon_sym_BQUOTE] = ACTIONS(1316), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1318), - [anon_sym_LT_LPAREN] = ACTIONS(1318), - [anon_sym_GT_LPAREN] = ACTIONS(1318), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1318), - [sym_file_descriptor] = ACTIONS(1318), - [sym__concat] = ACTIONS(1318), - [sym__bare_dollar] = ACTIONS(1318), - [sym__brace_start] = ACTIONS(1318), - }, - [433] = { - [sym_word] = ACTIONS(1342), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_EQ] = ACTIONS(1342), - [anon_sym_DASH_EQ] = ACTIONS(1342), - [anon_sym_STAR_EQ] = ACTIONS(1342), - [anon_sym_SLASH_EQ] = ACTIONS(1342), - [anon_sym_PERCENT_EQ] = ACTIONS(1342), - [anon_sym_LT_LT_EQ] = ACTIONS(1344), - [anon_sym_GT_GT_EQ] = ACTIONS(1344), - [anon_sym_AMP_EQ] = ACTIONS(1344), - [anon_sym_CARET_EQ] = ACTIONS(1342), - [anon_sym_PIPE_EQ] = ACTIONS(1344), - [anon_sym_EQ_EQ] = ACTIONS(1342), - [anon_sym_BANG_EQ] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1344), - [anon_sym_GT_EQ] = ACTIONS(1344), - [anon_sym_AMP_AMP] = ACTIONS(1344), - [anon_sym_PIPE_PIPE] = ACTIONS(1344), - [anon_sym_LT_LT] = ACTIONS(1342), - [anon_sym_GT_GT] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_PERCENT] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1342), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_PIPE_AMP] = ACTIONS(1344), - [anon_sym_RBRACK] = ACTIONS(1344), - [anon_sym_EQ_TILDE] = ACTIONS(1342), - [anon_sym_AMP_GT] = ACTIONS(1342), - [anon_sym_AMP_GT_GT] = ACTIONS(1344), - [anon_sym_LT_AMP] = ACTIONS(1344), - [anon_sym_GT_AMP] = ACTIONS(1344), - [anon_sym_GT_PIPE] = ACTIONS(1344), - [anon_sym_LT_LT_DASH] = ACTIONS(1344), - [anon_sym_LT_LT_LT] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), - [anon_sym_QMARK] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1344), - [aux_sym_concatenation_token1] = ACTIONS(1344), - [anon_sym_DOLLAR] = ACTIONS(1342), - [sym__special_character] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_raw_string] = ACTIONS(1344), - [sym_ansi_c_string] = ACTIONS(1344), - [aux_sym_number_token1] = ACTIONS(1342), - [aux_sym_number_token2] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1344), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1342), - [anon_sym_BQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1344), - [anon_sym_LT_LPAREN] = ACTIONS(1344), - [anon_sym_GT_LPAREN] = ACTIONS(1344), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1344), - [sym_file_descriptor] = ACTIONS(1344), - [sym__concat] = ACTIONS(1344), - [sym__bare_dollar] = ACTIONS(1344), - [sym__brace_start] = ACTIONS(1344), - }, - [434] = { - [sym_word] = ACTIONS(1346), - [anon_sym_EQ] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_EQ] = ACTIONS(1346), - [anon_sym_DASH_EQ] = ACTIONS(1346), - [anon_sym_STAR_EQ] = ACTIONS(1346), - [anon_sym_SLASH_EQ] = ACTIONS(1346), - [anon_sym_PERCENT_EQ] = ACTIONS(1346), - [anon_sym_LT_LT_EQ] = ACTIONS(1348), - [anon_sym_GT_GT_EQ] = ACTIONS(1348), - [anon_sym_AMP_EQ] = ACTIONS(1348), - [anon_sym_CARET_EQ] = ACTIONS(1346), - [anon_sym_PIPE_EQ] = ACTIONS(1348), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1348), - [anon_sym_GT_EQ] = ACTIONS(1348), - [anon_sym_AMP_AMP] = ACTIONS(1348), - [anon_sym_PIPE_PIPE] = ACTIONS(1348), - [anon_sym_LT_LT] = ACTIONS(1346), - [anon_sym_GT_GT] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_PERCENT] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1346), - [anon_sym_LT] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1346), - [anon_sym_PIPE_AMP] = ACTIONS(1348), - [anon_sym_RBRACK] = ACTIONS(1348), - [anon_sym_EQ_TILDE] = ACTIONS(1346), - [anon_sym_AMP_GT] = ACTIONS(1346), - [anon_sym_AMP_GT_GT] = ACTIONS(1348), - [anon_sym_LT_AMP] = ACTIONS(1348), - [anon_sym_GT_AMP] = ACTIONS(1348), - [anon_sym_GT_PIPE] = ACTIONS(1348), - [anon_sym_LT_LT_DASH] = ACTIONS(1348), - [anon_sym_LT_LT_LT] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_QMARK] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1348), - [aux_sym_concatenation_token1] = ACTIONS(1348), - [anon_sym_DOLLAR] = ACTIONS(1346), - [sym__special_character] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_raw_string] = ACTIONS(1348), - [sym_ansi_c_string] = ACTIONS(1348), - [aux_sym_number_token1] = ACTIONS(1346), - [aux_sym_number_token2] = ACTIONS(1346), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1348), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), - [anon_sym_BQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1348), - [anon_sym_LT_LPAREN] = ACTIONS(1348), - [anon_sym_GT_LPAREN] = ACTIONS(1348), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1348), - [sym_file_descriptor] = ACTIONS(1348), - [sym__concat] = ACTIONS(1348), - [sym__bare_dollar] = ACTIONS(1348), - [sym__brace_start] = ACTIONS(1348), - }, - [435] = { - [sym_word] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_EQ] = ACTIONS(1334), - [anon_sym_DASH_EQ] = ACTIONS(1334), - [anon_sym_STAR_EQ] = ACTIONS(1334), - [anon_sym_SLASH_EQ] = ACTIONS(1334), - [anon_sym_PERCENT_EQ] = ACTIONS(1334), - [anon_sym_LT_LT_EQ] = ACTIONS(1336), - [anon_sym_GT_GT_EQ] = ACTIONS(1336), - [anon_sym_AMP_EQ] = ACTIONS(1336), - [anon_sym_CARET_EQ] = ACTIONS(1334), - [anon_sym_PIPE_EQ] = ACTIONS(1336), - [anon_sym_EQ_EQ] = ACTIONS(1334), - [anon_sym_BANG_EQ] = ACTIONS(1334), - [anon_sym_LT_EQ] = ACTIONS(1336), - [anon_sym_GT_EQ] = ACTIONS(1336), - [anon_sym_AMP_AMP] = ACTIONS(1336), - [anon_sym_PIPE_PIPE] = ACTIONS(1336), - [anon_sym_LT_LT] = ACTIONS(1334), - [anon_sym_GT_GT] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym_PERCENT] = ACTIONS(1334), - [anon_sym_STAR_STAR] = ACTIONS(1334), - [anon_sym_LT] = ACTIONS(1334), - [anon_sym_GT] = ACTIONS(1334), - [anon_sym_PIPE] = ACTIONS(1334), - [anon_sym_PIPE_AMP] = ACTIONS(1336), - [anon_sym_RBRACK] = ACTIONS(1336), - [anon_sym_EQ_TILDE] = ACTIONS(1334), - [anon_sym_AMP_GT] = ACTIONS(1334), - [anon_sym_AMP_GT_GT] = ACTIONS(1336), - [anon_sym_LT_AMP] = ACTIONS(1336), - [anon_sym_GT_AMP] = ACTIONS(1336), - [anon_sym_GT_PIPE] = ACTIONS(1336), - [anon_sym_LT_LT_DASH] = ACTIONS(1336), - [anon_sym_LT_LT_LT] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_CARET] = ACTIONS(1334), - [anon_sym_QMARK] = ACTIONS(1334), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1336), - [aux_sym_concatenation_token1] = ACTIONS(1336), - [anon_sym_DOLLAR] = ACTIONS(1334), - [sym__special_character] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_raw_string] = ACTIONS(1336), - [sym_ansi_c_string] = ACTIONS(1336), - [aux_sym_number_token1] = ACTIONS(1334), - [aux_sym_number_token2] = ACTIONS(1334), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1336), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1334), - [anon_sym_BQUOTE] = ACTIONS(1334), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1336), - [anon_sym_LT_LPAREN] = ACTIONS(1336), - [anon_sym_GT_LPAREN] = ACTIONS(1336), + [aux_sym__literal_repeat1] = STATE(432), + [sym_word] = ACTIONS(1352), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1357), + [anon_sym_EQ] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_EQ] = ACTIONS(1352), + [anon_sym_DASH_EQ] = ACTIONS(1352), + [anon_sym_STAR_EQ] = ACTIONS(1352), + [anon_sym_SLASH_EQ] = ACTIONS(1352), + [anon_sym_PERCENT_EQ] = ACTIONS(1352), + [anon_sym_LT_LT_EQ] = ACTIONS(1357), + [anon_sym_GT_GT_EQ] = ACTIONS(1357), + [anon_sym_AMP_EQ] = ACTIONS(1357), + [anon_sym_CARET_EQ] = ACTIONS(1352), + [anon_sym_PIPE_EQ] = ACTIONS(1357), + [anon_sym_EQ_EQ] = ACTIONS(1352), + [anon_sym_BANG_EQ] = ACTIONS(1352), + [anon_sym_LT_EQ] = ACTIONS(1357), + [anon_sym_GT_EQ] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_PIPE_PIPE] = ACTIONS(1357), + [anon_sym_LT_LT] = ACTIONS(1352), + [anon_sym_GT_GT] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_SLASH] = ACTIONS(1352), + [anon_sym_PERCENT] = ACTIONS(1352), + [anon_sym_STAR_STAR] = ACTIONS(1352), + [anon_sym_LT] = ACTIONS(1352), + [anon_sym_GT] = ACTIONS(1352), + [anon_sym_PIPE] = ACTIONS(1352), + [anon_sym_PIPE_AMP] = ACTIONS(1357), + [anon_sym_RBRACK] = ACTIONS(1357), + [anon_sym_EQ_TILDE] = ACTIONS(1352), + [anon_sym_AMP_GT] = ACTIONS(1352), + [anon_sym_AMP_GT_GT] = ACTIONS(1357), + [anon_sym_LT_AMP] = ACTIONS(1357), + [anon_sym_GT_AMP] = ACTIONS(1357), + [anon_sym_GT_PIPE] = ACTIONS(1357), + [anon_sym_LT_LT_DASH] = ACTIONS(1357), + [anon_sym_LT_LT_LT] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_CARET] = ACTIONS(1352), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1357), + [anon_sym_DOLLAR] = ACTIONS(1352), + [sym__special_character] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1357), + [sym_raw_string] = ACTIONS(1357), + [sym_ansi_c_string] = ACTIONS(1357), + [aux_sym_number_token1] = ACTIONS(1352), + [aux_sym_number_token2] = ACTIONS(1352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1357), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1352), + [anon_sym_BQUOTE] = ACTIONS(1357), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1357), + [anon_sym_LT_LPAREN] = ACTIONS(1357), + [anon_sym_GT_LPAREN] = ACTIONS(1357), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1336), - [sym_file_descriptor] = ACTIONS(1336), - [sym__concat] = ACTIONS(1336), - [sym__bare_dollar] = ACTIONS(1336), - [sym__brace_start] = ACTIONS(1336), + [sym_test_operator] = ACTIONS(1357), + [sym_file_descriptor] = ACTIONS(1357), + [sym__bare_dollar] = ACTIONS(1357), + [sym__brace_start] = ACTIONS(1357), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 9, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1386), 1, - sym__special_character, - STATE(437), 1, - aux_sym__literal_repeat1, - ACTIONS(626), 3, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_test_operator, - ACTIONS(195), 6, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(199), 7, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - ACTIONS(624), 7, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - ACTIONS(197), 19, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_QMARK, - ACTIONS(232), 19, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [83] = 5, + [0] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1388), 1, - sym__special_character, - STATE(437), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 29, + ACTIONS(1244), 30, sym_file_descriptor, sym__bare_dollar, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -56164,7 +57642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(1358), 32, + ACTIONS(1242), 33, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -56193,18 +57671,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [158] = 7, + [71] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1374), 3, + ACTIONS(1366), 3, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_test_operator, - ACTIONS(1241), 7, + ACTIONS(1225), 7, anon_sym_AMP_GT, anon_sym_DOLLAR, sym__special_character, @@ -56212,7 +57691,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1245), 7, + ACTIONS(1229), 7, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -56220,7 +57699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_EQ_TILDE, - ACTIONS(1372), 7, + ACTIONS(1364), 7, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -56228,7 +57707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RBRACK, - ACTIONS(1243), 19, + ACTIONS(1227), 19, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -56248,10 +57727,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_QMARK, - ACTIONS(1250), 19, + ACTIONS(1234), 20, sym_file_descriptor, sym__bare_dollar, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -56268,159 +57748,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [236] = 3, + [150] = 36, ACTIONS(63), 1, sym_comment, - ACTIONS(1272), 29, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(292), 1, + anon_sym_LBRACK, + ACTIONS(296), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(302), 1, + aux_sym_unary_expression_token1, + ACTIONS(304), 1, + anon_sym_DOLLAR, + ACTIONS(306), 1, + sym__special_character, + ACTIONS(308), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(312), 1, + aux_sym_number_token1, + ACTIONS(314), 1, + aux_sym_number_token2, + ACTIONS(316), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(318), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(320), 1, anon_sym_BQUOTE, + ACTIONS(322), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(326), 1, sym_test_operator, - ACTIONS(1270), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [306] = 36, - ACTIONS(63), 1, - sym_comment, - ACTIONS(258), 1, - anon_sym_LPAREN, - ACTIONS(272), 1, - anon_sym_LBRACK, - ACTIONS(276), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(282), 1, - aux_sym_unary_expression_token1, - ACTIONS(284), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(286), 1, - anon_sym_DOLLAR, - ACTIONS(288), 1, - sym__special_character, - ACTIONS(290), 1, - anon_sym_DQUOTE, - ACTIONS(294), 1, - aux_sym_number_token1, - ACTIONS(296), 1, - aux_sym_number_token2, - ACTIONS(298), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(300), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(302), 1, - anon_sym_BQUOTE, - ACTIONS(304), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(308), 1, - sym_test_operator, - ACTIONS(312), 1, + ACTIONS(330), 1, sym_variable_name, - ACTIONS(314), 1, + ACTIONS(332), 1, sym__brace_start, - ACTIONS(631), 1, + ACTIONS(607), 1, anon_sym_BANG, - ACTIONS(1391), 1, + ACTIONS(1443), 1, sym_word, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_file_descriptor, - STATE(436), 1, + STATE(431), 1, aux_sym__literal_repeat1, - STATE(438), 1, + STATE(434), 1, sym_concatenation, - STATE(626), 1, + STATE(611), 1, sym_command_name, - STATE(2011), 1, + STATE(2096), 1, sym__expression, - STATE(2089), 1, + STATE(2154), 1, sym_variable_assignment, - STATE(3466), 1, + STATE(3591), 1, sym_command, - STATE(4091), 1, + STATE(4307), 1, sym_subscript, - ACTIONS(292), 2, + ACTIONS(272), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(310), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(306), 2, + ACTIONS(324), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(978), 2, + STATE(896), 2, sym_file_redirect, aux_sym_command_repeat1, - STATE(3467), 2, + STATE(3592), 2, sym_subshell, sym_test_command, - ACTIONS(1395), 3, + ACTIONS(1447), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(1393), 5, + ACTIONS(1445), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(1898), 5, + STATE(2073), 5, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, - STATE(413), 9, + STATE(403), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -56430,92 +57844,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [437] = 36, - ACTIONS(63), 1, - sym_comment, - ACTIONS(99), 1, + [282] = 36, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(101), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(137), 1, - sym_variable_name, - ACTIONS(163), 1, + ACTIONS(63), 1, + sym_comment, + ACTIONS(93), 1, aux_sym_unary_expression_token1, - ACTIONS(165), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(167), 1, + ACTIONS(95), 1, anon_sym_DOLLAR, - ACTIONS(169), 1, + ACTIONS(97), 1, sym__special_character, - ACTIONS(171), 1, + ACTIONS(99), 1, anon_sym_DQUOTE, - ACTIONS(175), 1, + ACTIONS(103), 1, aux_sym_number_token1, - ACTIONS(177), 1, + ACTIONS(105), 1, aux_sym_number_token2, - ACTIONS(179), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(181), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(183), 1, + ACTIONS(111), 1, anon_sym_BQUOTE, - ACTIONS(185), 1, + ACTIONS(113), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(189), 1, + ACTIONS(117), 1, sym_test_operator, - ACTIONS(191), 1, + ACTIONS(121), 1, + sym_variable_name, + ACTIONS(123), 1, sym__brace_start, - ACTIONS(320), 1, + ACTIONS(222), 1, anon_sym_BANG, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_file_descriptor, - ACTIONS(1399), 1, + ACTIONS(1451), 1, sym_word, - ACTIONS(1401), 1, + ACTIONS(1453), 1, anon_sym_LPAREN, - STATE(409), 1, + STATE(377), 1, aux_sym__literal_repeat1, - STATE(417), 1, + STATE(402), 1, sym_concatenation, - STATE(479), 1, + STATE(481), 1, sym_command_name, - STATE(1556), 1, + STATE(1484), 1, sym_variable_assignment, - STATE(1895), 1, + STATE(1990), 1, sym__expression, - STATE(2978), 1, + STATE(3033), 1, sym_command, - STATE(4092), 1, + STATE(4373), 1, sym_subscript, - ACTIONS(173), 2, + ACTIONS(75), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(101), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(187), 2, + ACTIONS(115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(886), 2, + STATE(894), 2, sym_file_redirect, aux_sym_command_repeat1, - STATE(2977), 2, + STATE(3027), 2, sym_subshell, sym_test_command, - ACTIONS(1395), 3, + ACTIONS(1447), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(1393), 5, + ACTIONS(1445), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(1911), 5, + STATE(1623), 5, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, - STATE(364), 9, + STATE(342), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -56525,92 +57940,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [568] = 36, - ACTIONS(63), 1, - sym_comment, - ACTIONS(99), 1, + [414] = 36, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(101), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(111), 1, + ACTIONS(63), 1, + sym_comment, + ACTIONS(95), 1, anon_sym_DOLLAR, - ACTIONS(113), 1, + ACTIONS(97), 1, sym__special_character, - ACTIONS(115), 1, + ACTIONS(99), 1, anon_sym_DQUOTE, - ACTIONS(119), 1, + ACTIONS(103), 1, aux_sym_number_token1, - ACTIONS(121), 1, + ACTIONS(105), 1, aux_sym_number_token2, - ACTIONS(123), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(125), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(127), 1, + ACTIONS(111), 1, anon_sym_BQUOTE, - ACTIONS(129), 1, + ACTIONS(113), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(137), 1, + ACTIONS(121), 1, sym_variable_name, - ACTIONS(139), 1, + ACTIONS(123), 1, sym__brace_start, - ACTIONS(147), 1, + ACTIONS(131), 1, aux_sym_unary_expression_token1, - ACTIONS(151), 1, + ACTIONS(135), 1, sym_test_operator, - ACTIONS(242), 1, + ACTIONS(152), 1, anon_sym_BANG, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_file_descriptor, - ACTIONS(1403), 1, - sym_word, - ACTIONS(1405), 1, + ACTIONS(1453), 1, anon_sym_LPAREN, - STATE(395), 1, + ACTIONS(1455), 1, + sym_word, + STATE(379), 1, aux_sym__literal_repeat1, - STATE(407), 1, + STATE(400), 1, sym_concatenation, - STATE(479), 1, + STATE(481), 1, sym_command_name, - STATE(1556), 1, + STATE(1484), 1, sym_variable_assignment, - STATE(1979), 1, + STATE(2060), 1, sym__expression, - STATE(2978), 1, + STATE(3033), 1, sym_command, - STATE(4092), 1, + STATE(4373), 1, sym_subscript, - ACTIONS(131), 2, + ACTIONS(75), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(149), 2, + ACTIONS(133), 2, sym_raw_string, sym_ansi_c_string, - STATE(886), 2, + STATE(894), 2, sym_file_redirect, aux_sym_command_repeat1, - STATE(2977), 2, + STATE(3027), 2, sym_subshell, sym_test_command, - ACTIONS(1395), 3, + ACTIONS(1447), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(1393), 5, + ACTIONS(1445), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(1557), 5, + STATE(1623), 5, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, - STATE(360), 9, + STATE(346), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -56620,92 +58036,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [699] = 36, - ACTIONS(63), 1, - sym_comment, - ACTIONS(99), 1, + [546] = 36, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(101), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(107), 1, + ACTIONS(63), 1, + sym_comment, + ACTIONS(121), 1, + sym_variable_name, + ACTIONS(192), 1, aux_sym_unary_expression_token1, - ACTIONS(109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(111), 1, + ACTIONS(194), 1, anon_sym_DOLLAR, - ACTIONS(113), 1, + ACTIONS(196), 1, sym__special_character, - ACTIONS(115), 1, + ACTIONS(198), 1, anon_sym_DQUOTE, - ACTIONS(119), 1, + ACTIONS(202), 1, aux_sym_number_token1, - ACTIONS(121), 1, + ACTIONS(204), 1, aux_sym_number_token2, - ACTIONS(123), 1, + ACTIONS(206), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(125), 1, + ACTIONS(208), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(127), 1, + ACTIONS(210), 1, anon_sym_BQUOTE, - ACTIONS(129), 1, + ACTIONS(212), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(133), 1, + ACTIONS(216), 1, sym_test_operator, - ACTIONS(137), 1, - sym_variable_name, - ACTIONS(139), 1, + ACTIONS(218), 1, sym__brace_start, - ACTIONS(204), 1, + ACTIONS(236), 1, anon_sym_BANG, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_file_descriptor, - ACTIONS(1405), 1, - anon_sym_LPAREN, - ACTIONS(1407), 1, + ACTIONS(1457), 1, sym_word, - STATE(392), 1, + ACTIONS(1459), 1, + anon_sym_LPAREN, + STATE(399), 1, aux_sym__literal_repeat1, - STATE(408), 1, + STATE(405), 1, sym_concatenation, - STATE(479), 1, + STATE(481), 1, sym_command_name, - STATE(1556), 1, + STATE(1484), 1, sym_variable_assignment, - STATE(1739), 1, + STATE(2122), 1, sym__expression, - STATE(2978), 1, + STATE(3033), 1, sym_command, - STATE(4092), 1, + STATE(4373), 1, sym_subscript, - ACTIONS(117), 2, + ACTIONS(186), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(200), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(131), 2, + ACTIONS(214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(886), 2, + STATE(894), 2, sym_file_redirect, aux_sym_command_repeat1, - STATE(2977), 2, + STATE(3027), 2, sym_subshell, sym_test_command, - ACTIONS(1395), 3, + ACTIONS(1447), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(1393), 5, + ACTIONS(1445), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(1557), 5, + STATE(2117), 5, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, - STATE(359), 9, + STATE(362), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -56715,55 +58132,56 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [830] = 23, + [678] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1417), 1, + ACTIONS(1469), 1, anon_sym_DOLLAR, - ACTIONS(1420), 1, + ACTIONS(1472), 1, sym__special_character, - ACTIONS(1423), 1, + ACTIONS(1475), 1, anon_sym_DQUOTE, - ACTIONS(1426), 1, + ACTIONS(1478), 1, aux_sym_number_token1, - ACTIONS(1429), 1, + ACTIONS(1481), 1, aux_sym_number_token2, - ACTIONS(1432), 1, + ACTIONS(1484), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1435), 1, + ACTIONS(1487), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, + ACTIONS(1490), 1, anon_sym_BQUOTE, - ACTIONS(1441), 1, + ACTIONS(1493), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1447), 1, + ACTIONS(1499), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1450), 1, + ACTIONS(1502), 1, sym_test_operator, - ACTIONS(1453), 1, + ACTIONS(1505), 1, sym_file_descriptor, - ACTIONS(1455), 1, + ACTIONS(1507), 1, sym_variable_name, - ACTIONS(1458), 1, + ACTIONS(1510), 1, sym__brace_start, - STATE(1009), 1, + STATE(996), 1, aux_sym__literal_repeat1, - STATE(4148), 1, + STATE(4364), 1, sym_subscript, - ACTIONS(1444), 2, + ACTIONS(1464), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1496), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1409), 3, + ACTIONS(1461), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(444), 3, + STATE(439), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(752), 9, + STATE(730), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -56773,8 +58191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1412), 22, - anon_sym_LF, + ACTIONS(1467), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56794,57 +58211,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [934] = 23, + [783] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1467), 1, + ACTIONS(1519), 1, anon_sym_DOLLAR, - ACTIONS(1469), 1, + ACTIONS(1521), 1, sym__special_character, - ACTIONS(1471), 1, + ACTIONS(1523), 1, anon_sym_DQUOTE, - ACTIONS(1473), 1, + ACTIONS(1525), 1, aux_sym_number_token1, - ACTIONS(1475), 1, + ACTIONS(1527), 1, aux_sym_number_token2, - ACTIONS(1477), 1, + ACTIONS(1529), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, + ACTIONS(1531), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, + ACTIONS(1533), 1, anon_sym_BQUOTE, - ACTIONS(1483), 1, + ACTIONS(1535), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1487), 1, + ACTIONS(1539), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1489), 1, + ACTIONS(1541), 1, sym_test_operator, - ACTIONS(1491), 1, + ACTIONS(1543), 1, sym_file_descriptor, - ACTIONS(1493), 1, + ACTIONS(1545), 1, sym_variable_name, - ACTIONS(1495), 1, + ACTIONS(1547), 1, sym__brace_start, - STATE(1009), 1, + STATE(996), 1, aux_sym__literal_repeat1, - STATE(4148), 1, + STATE(4364), 1, sym_subscript, - ACTIONS(1485), 2, + ACTIONS(1515), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1537), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1461), 3, + ACTIONS(1513), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(446), 3, + STATE(439), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(752), 9, + STATE(730), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -56854,8 +58273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1463), 22, - anon_sym_LF, + ACTIONS(1517), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56875,57 +58293,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [1038] = 23, + [888] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1467), 1, + ACTIONS(1519), 1, anon_sym_DOLLAR, - ACTIONS(1469), 1, + ACTIONS(1521), 1, sym__special_character, - ACTIONS(1471), 1, + ACTIONS(1523), 1, anon_sym_DQUOTE, - ACTIONS(1473), 1, + ACTIONS(1525), 1, aux_sym_number_token1, - ACTIONS(1475), 1, + ACTIONS(1527), 1, aux_sym_number_token2, - ACTIONS(1477), 1, + ACTIONS(1529), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, + ACTIONS(1531), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, + ACTIONS(1533), 1, anon_sym_BQUOTE, - ACTIONS(1483), 1, + ACTIONS(1535), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1489), 1, + ACTIONS(1541), 1, sym_test_operator, - ACTIONS(1493), 1, + ACTIONS(1545), 1, sym_variable_name, - ACTIONS(1495), 1, + ACTIONS(1547), 1, sym__brace_start, - ACTIONS(1499), 1, + ACTIONS(1551), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1501), 1, + ACTIONS(1553), 1, sym_file_descriptor, - STATE(1009), 1, + STATE(996), 1, aux_sym__literal_repeat1, - STATE(4148), 1, + STATE(4364), 1, sym_subscript, - ACTIONS(1485), 2, + ACTIONS(1515), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1537), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1461), 3, + ACTIONS(1513), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(444), 3, + STATE(440), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(752), 9, + STATE(730), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -56935,8 +58355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1497), 22, - anon_sym_LF, + ACTIONS(1549), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56956,56 +58375,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [1142] = 23, + [993] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(468), 1, + ACTIONS(1553), 1, + sym_file_descriptor, + ACTIONS(1559), 1, anon_sym_DOLLAR, - ACTIONS(470), 1, + ACTIONS(1561), 1, sym__special_character, - ACTIONS(476), 1, + ACTIONS(1563), 1, + anon_sym_DQUOTE, + ACTIONS(1565), 1, aux_sym_number_token1, - ACTIONS(478), 1, + ACTIONS(1567), 1, aux_sym_number_token2, - ACTIONS(482), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(496), 1, - sym__brace_start, - ACTIONS(1509), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1511), 1, - anon_sym_DQUOTE, - ACTIONS(1513), 1, + ACTIONS(1569), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1571), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1573), 1, anon_sym_BQUOTE, - ACTIONS(1517), 1, + ACTIONS(1575), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1521), 1, + ACTIONS(1579), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1581), 1, sym_test_operator, - ACTIONS(1523), 1, - sym_file_descriptor, - ACTIONS(1525), 1, - sym__bare_dollar, - STATE(450), 1, - aux_sym_command_repeat2, - STATE(812), 1, + ACTIONS(1583), 1, + sym_variable_name, + ACTIONS(1585), 1, + sym__brace_start, + STATE(1193), 1, aux_sym__literal_repeat1, - STATE(996), 1, - sym_concatenation, - ACTIONS(1507), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1519), 2, + STATE(4359), 1, + sym_subscript, + ACTIONS(1557), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1577), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1503), 3, + ACTIONS(1555), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(667), 9, + STATE(445), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(772), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57015,8 +58437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1505), 22, - anon_sym_LF, + ACTIONS(1549), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57024,7 +58445,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -57036,56 +58456,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [1245] = 23, + [1097] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(468), 1, + ACTIONS(442), 1, anon_sym_DOLLAR, - ACTIONS(470), 1, + ACTIONS(444), 1, sym__special_character, - ACTIONS(476), 1, + ACTIONS(450), 1, aux_sym_number_token1, - ACTIONS(478), 1, + ACTIONS(452), 1, aux_sym_number_token2, - ACTIONS(482), 1, + ACTIONS(456), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(496), 1, + ACTIONS(470), 1, sym__brace_start, - ACTIONS(1509), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(1513), 1, + ACTIONS(1597), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1599), 1, anon_sym_BQUOTE, - ACTIONS(1517), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1521), 1, + ACTIONS(1605), 1, sym_test_operator, - ACTIONS(1525), 1, - sym__bare_dollar, - ACTIONS(1529), 1, + ACTIONS(1607), 1, sym_file_descriptor, - STATE(451), 1, + ACTIONS(1609), 1, + sym__bare_dollar, + STATE(447), 1, aux_sym_command_repeat2, - STATE(812), 1, + STATE(809), 1, aux_sym__literal_repeat1, - STATE(996), 1, + STATE(974), 1, sym_concatenation, - ACTIONS(1507), 2, + ACTIONS(1589), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1593), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1519), 2, + ACTIONS(1603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1503), 3, + ACTIONS(1587), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(667), 9, + STATE(673), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57095,8 +58517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1527), 22, - anon_sym_LF, + ACTIONS(1591), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57116,57 +58537,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [1348] = 23, + [1201] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1501), 1, + ACTIONS(1505), 1, sym_file_descriptor, - ACTIONS(1533), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1535), 1, + ACTIONS(1617), 1, anon_sym_DOLLAR, - ACTIONS(1537), 1, + ACTIONS(1620), 1, sym__special_character, - ACTIONS(1539), 1, + ACTIONS(1623), 1, anon_sym_DQUOTE, - ACTIONS(1541), 1, + ACTIONS(1626), 1, aux_sym_number_token1, - ACTIONS(1543), 1, + ACTIONS(1629), 1, aux_sym_number_token2, - ACTIONS(1545), 1, + ACTIONS(1632), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1547), 1, + ACTIONS(1635), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1638), 1, anon_sym_BQUOTE, - ACTIONS(1551), 1, + ACTIONS(1641), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1555), 1, + ACTIONS(1647), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1557), 1, + ACTIONS(1650), 1, sym_test_operator, - ACTIONS(1559), 1, + ACTIONS(1653), 1, sym_variable_name, - ACTIONS(1561), 1, + ACTIONS(1656), 1, sym__brace_start, - STATE(1160), 1, + STATE(1193), 1, aux_sym__literal_repeat1, - STATE(4144), 1, + STATE(4359), 1, sym_subscript, - ACTIONS(1553), 2, + ACTIONS(1614), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1644), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1531), 3, + ACTIONS(1611), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(454), 3, + STATE(444), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(794), 9, + STATE(772), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57176,8 +58599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1497), 21, - anon_sym_LF, + ACTIONS(1467), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57196,56 +58618,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [1451] = 23, + [1305] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1571), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1574), 1, + ACTIONS(1543), 1, + sym_file_descriptor, + ACTIONS(1559), 1, anon_sym_DOLLAR, - ACTIONS(1577), 1, + ACTIONS(1561), 1, sym__special_character, - ACTIONS(1580), 1, + ACTIONS(1563), 1, anon_sym_DQUOTE, - ACTIONS(1583), 1, + ACTIONS(1565), 1, aux_sym_number_token1, - ACTIONS(1586), 1, + ACTIONS(1567), 1, aux_sym_number_token2, - ACTIONS(1589), 1, + ACTIONS(1569), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1592), 1, + ACTIONS(1571), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1595), 1, + ACTIONS(1573), 1, anon_sym_BQUOTE, - ACTIONS(1598), 1, + ACTIONS(1575), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1604), 1, + ACTIONS(1581), 1, sym_test_operator, - ACTIONS(1607), 1, - sym_file_descriptor, - ACTIONS(1609), 1, - sym__bare_dollar, - ACTIONS(1612), 1, + ACTIONS(1583), 1, + sym_variable_name, + ACTIONS(1585), 1, sym__brace_start, - STATE(450), 1, - aux_sym_command_repeat2, - STATE(812), 1, + ACTIONS(1659), 1, + aux_sym__simple_variable_name_token1, + STATE(1193), 1, aux_sym__literal_repeat1, - STATE(996), 1, - sym_concatenation, - ACTIONS(1568), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1601), 2, + STATE(4359), 1, + sym_subscript, + ACTIONS(1557), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1577), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1563), 3, + ACTIONS(1555), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(667), 9, + STATE(444), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(772), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57255,8 +58680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1566), 22, - anon_sym_LF, + ACTIONS(1517), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57264,7 +58688,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -57276,56 +58699,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [1554] = 23, + [1409] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(468), 1, + ACTIONS(442), 1, anon_sym_DOLLAR, - ACTIONS(470), 1, + ACTIONS(444), 1, sym__special_character, - ACTIONS(476), 1, + ACTIONS(450), 1, aux_sym_number_token1, - ACTIONS(478), 1, + ACTIONS(452), 1, aux_sym_number_token2, - ACTIONS(482), 1, + ACTIONS(456), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(496), 1, + ACTIONS(470), 1, sym__brace_start, - ACTIONS(1509), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(1513), 1, + ACTIONS(1597), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1599), 1, anon_sym_BQUOTE, - ACTIONS(1517), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1521), 1, + ACTIONS(1605), 1, sym_test_operator, - ACTIONS(1525), 1, + ACTIONS(1609), 1, sym__bare_dollar, - ACTIONS(1617), 1, + ACTIONS(1663), 1, sym_file_descriptor, - STATE(450), 1, + STATE(449), 1, aux_sym_command_repeat2, - STATE(812), 1, + STATE(809), 1, aux_sym__literal_repeat1, - STATE(996), 1, + STATE(974), 1, sym_concatenation, - ACTIONS(1507), 2, + ACTIONS(1589), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1593), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1519), 2, + ACTIONS(1603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1503), 3, + ACTIONS(1587), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(667), 9, + STATE(673), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57335,8 +58760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1615), 22, - anon_sym_LF, + ACTIONS(1661), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57356,57 +58780,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [1657] = 23, + [1513] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 1, - sym_file_descriptor, - ACTIONS(1533), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1535), 1, + ACTIONS(1676), 1, anon_sym_DOLLAR, - ACTIONS(1537), 1, + ACTIONS(1679), 1, sym__special_character, - ACTIONS(1539), 1, + ACTIONS(1682), 1, anon_sym_DQUOTE, - ACTIONS(1541), 1, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(1543), 1, + ACTIONS(1688), 1, aux_sym_number_token2, - ACTIONS(1545), 1, + ACTIONS(1691), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1547), 1, + ACTIONS(1694), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1697), 1, anon_sym_BQUOTE, - ACTIONS(1551), 1, + ACTIONS(1700), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1557), 1, + ACTIONS(1706), 1, sym_test_operator, - ACTIONS(1559), 1, - sym_variable_name, - ACTIONS(1561), 1, + ACTIONS(1709), 1, + sym_file_descriptor, + ACTIONS(1711), 1, + sym__bare_dollar, + ACTIONS(1714), 1, sym__brace_start, - ACTIONS(1619), 1, - aux_sym__simple_variable_name_token1, - STATE(1160), 1, + STATE(447), 1, + aux_sym_command_repeat2, + STATE(809), 1, aux_sym__literal_repeat1, - STATE(4144), 1, - sym_subscript, - ACTIONS(1553), 2, + STATE(974), 1, + sym_concatenation, + ACTIONS(1668), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1673), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1703), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1531), 3, + ACTIONS(1665), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(449), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(794), 9, + STATE(673), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57416,8 +58841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1463), 21, - anon_sym_LF, + ACTIONS(1671), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57425,6 +58849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -57436,56 +58861,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [1760] = 23, + [1617] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(468), 1, + ACTIONS(442), 1, anon_sym_DOLLAR, - ACTIONS(470), 1, + ACTIONS(444), 1, sym__special_character, - ACTIONS(476), 1, + ACTIONS(450), 1, aux_sym_number_token1, - ACTIONS(478), 1, + ACTIONS(452), 1, aux_sym_number_token2, - ACTIONS(482), 1, + ACTIONS(456), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(496), 1, + ACTIONS(470), 1, sym__brace_start, - ACTIONS(1509), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(1513), 1, + ACTIONS(1597), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1599), 1, anon_sym_BQUOTE, - ACTIONS(1517), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1521), 1, + ACTIONS(1605), 1, sym_test_operator, - ACTIONS(1525), 1, + ACTIONS(1609), 1, sym__bare_dollar, - ACTIONS(1623), 1, + ACTIONS(1719), 1, sym_file_descriptor, - STATE(447), 1, + STATE(443), 1, aux_sym_command_repeat2, - STATE(812), 1, + STATE(809), 1, aux_sym__literal_repeat1, - STATE(996), 1, + STATE(974), 1, sym_concatenation, - ACTIONS(1507), 2, + ACTIONS(1589), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1593), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1519), 2, + ACTIONS(1603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1503), 3, + ACTIONS(1587), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(667), 9, + STATE(673), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57495,8 +58922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1621), 22, - anon_sym_LF, + ACTIONS(1717), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57516,57 +58942,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [1863] = 23, + [1721] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - sym_file_descriptor, - ACTIONS(1628), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1631), 1, + ACTIONS(442), 1, anon_sym_DOLLAR, - ACTIONS(1634), 1, + ACTIONS(444), 1, sym__special_character, - ACTIONS(1637), 1, - anon_sym_DQUOTE, - ACTIONS(1640), 1, + ACTIONS(450), 1, aux_sym_number_token1, - ACTIONS(1643), 1, + ACTIONS(452), 1, aux_sym_number_token2, - ACTIONS(1646), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1649), 1, + ACTIONS(456), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1652), 1, + ACTIONS(470), 1, + sym__brace_start, + ACTIONS(1595), 1, + anon_sym_DQUOTE, + ACTIONS(1597), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1599), 1, anon_sym_BQUOTE, - ACTIONS(1655), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1661), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1664), 1, + ACTIONS(1605), 1, sym_test_operator, - ACTIONS(1667), 1, - sym_variable_name, - ACTIONS(1670), 1, - sym__brace_start, - STATE(1160), 1, + ACTIONS(1609), 1, + sym__bare_dollar, + ACTIONS(1723), 1, + sym_file_descriptor, + STATE(447), 1, + aux_sym_command_repeat2, + STATE(809), 1, aux_sym__literal_repeat1, - STATE(4144), 1, - sym_subscript, - ACTIONS(1658), 2, + STATE(974), 1, + sym_concatenation, + ACTIONS(1589), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1593), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1625), 3, + ACTIONS(1587), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(454), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(794), 9, + STATE(673), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57576,8 +59003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1412), 21, - anon_sym_LF, + ACTIONS(1721), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57585,6 +59011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -57596,57 +59023,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [1966] = 23, + [1825] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - sym_file_descriptor, - ACTIONS(1676), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1679), 1, + ACTIONS(562), 1, anon_sym_DOLLAR, - ACTIONS(1682), 1, + ACTIONS(564), 1, sym__special_character, - ACTIONS(1685), 1, - anon_sym_DQUOTE, - ACTIONS(1688), 1, + ACTIONS(570), 1, aux_sym_number_token1, - ACTIONS(1691), 1, + ACTIONS(572), 1, aux_sym_number_token2, - ACTIONS(1694), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1697), 1, + ACTIONS(576), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1700), 1, + ACTIONS(590), 1, + sym__brace_start, + ACTIONS(1663), 1, + sym_file_descriptor, + ACTIONS(1731), 1, + anon_sym_DQUOTE, + ACTIONS(1733), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1735), 1, anon_sym_BQUOTE, - ACTIONS(1703), 1, + ACTIONS(1737), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1709), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1712), 1, + ACTIONS(1741), 1, sym_test_operator, - ACTIONS(1715), 1, - sym_variable_name, - ACTIONS(1718), 1, - sym__brace_start, - STATE(1265), 1, + ACTIONS(1743), 1, + sym__bare_dollar, + STATE(451), 1, + aux_sym_command_repeat2, + STATE(924), 1, aux_sym__literal_repeat1, - STATE(4167), 1, - sym_subscript, - ACTIONS(1706), 2, + STATE(1183), 1, + sym_concatenation, + ACTIONS(1727), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1729), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1739), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1673), 3, + ACTIONS(1725), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(455), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(936), 9, + STATE(758), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57656,8 +59084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1412), 20, - anon_sym_LF, + ACTIONS(1661), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57665,9 +59092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -57675,58 +59103,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [2068] = 23, + [1928] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1723), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1725), 1, + ACTIONS(562), 1, anon_sym_DOLLAR, - ACTIONS(1727), 1, + ACTIONS(564), 1, sym__special_character, - ACTIONS(1729), 1, - anon_sym_DQUOTE, - ACTIONS(1731), 1, + ACTIONS(570), 1, aux_sym_number_token1, - ACTIONS(1733), 1, + ACTIONS(572), 1, aux_sym_number_token2, - ACTIONS(1735), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1737), 1, + ACTIONS(576), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1739), 1, + ACTIONS(590), 1, + sym__brace_start, + ACTIONS(1723), 1, + sym_file_descriptor, + ACTIONS(1731), 1, + anon_sym_DQUOTE, + ACTIONS(1733), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1735), 1, anon_sym_BQUOTE, - ACTIONS(1741), 1, + ACTIONS(1737), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1745), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1747), 1, + ACTIONS(1741), 1, sym_test_operator, - ACTIONS(1749), 1, - sym_variable_name, - ACTIONS(1751), 1, - sym__brace_start, - STATE(1221), 1, + ACTIONS(1743), 1, + sym__bare_dollar, + STATE(455), 1, + aux_sym_command_repeat2, + STATE(924), 1, aux_sym__literal_repeat1, - STATE(4178), 1, - sym_subscript, - ACTIONS(1491), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1743), 2, + STATE(1183), 1, + sym_concatenation, + ACTIONS(1727), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1729), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1739), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1721), 3, + ACTIONS(1725), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(459), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(959), 9, + STATE(758), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57736,8 +59164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1463), 19, - anon_sym_LF, + ACTIONS(1721), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57747,6 +59174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -57754,56 +59183,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [2170] = 23, + [2031] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(564), 1, sym__special_character, - ACTIONS(596), 1, + ACTIONS(570), 1, aux_sym_number_token1, - ACTIONS(598), 1, + ACTIONS(572), 1, aux_sym_number_token2, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(616), 1, + ACTIONS(590), 1, sym__brace_start, - ACTIONS(1623), 1, + ACTIONS(1719), 1, sym_file_descriptor, - ACTIONS(1757), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1759), 1, + ACTIONS(1731), 1, anon_sym_DQUOTE, - ACTIONS(1761), 1, + ACTIONS(1733), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1763), 1, + ACTIONS(1735), 1, anon_sym_BQUOTE, - ACTIONS(1765), 1, + ACTIONS(1737), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1769), 1, + ACTIONS(1741), 1, sym_test_operator, - ACTIONS(1771), 1, + ACTIONS(1743), 1, sym__bare_dollar, - STATE(462), 1, + STATE(453), 1, aux_sym_command_repeat2, - STATE(934), 1, + STATE(924), 1, aux_sym__literal_repeat1, - STATE(1144), 1, + STATE(1183), 1, sym_concatenation, - ACTIONS(1755), 2, + ACTIONS(1727), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1729), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1767), 2, + ACTIONS(1739), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1753), 3, + ACTIONS(1725), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(748), 9, + STATE(758), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57813,8 +59244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1621), 21, - anon_sym_LF, + ACTIONS(1717), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57833,56 +59263,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [2272] = 23, + [2134] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(564), 1, sym__special_character, - ACTIONS(596), 1, + ACTIONS(570), 1, aux_sym_number_token1, - ACTIONS(598), 1, + ACTIONS(572), 1, aux_sym_number_token2, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(616), 1, + ACTIONS(590), 1, sym__brace_start, - ACTIONS(1617), 1, + ACTIONS(1607), 1, sym_file_descriptor, - ACTIONS(1757), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1759), 1, + ACTIONS(1731), 1, anon_sym_DQUOTE, - ACTIONS(1761), 1, + ACTIONS(1733), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1763), 1, + ACTIONS(1735), 1, anon_sym_BQUOTE, - ACTIONS(1765), 1, + ACTIONS(1737), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1769), 1, + ACTIONS(1741), 1, sym_test_operator, - ACTIONS(1771), 1, + ACTIONS(1743), 1, sym__bare_dollar, - STATE(467), 1, + STATE(455), 1, aux_sym_command_repeat2, - STATE(934), 1, + STATE(924), 1, aux_sym__literal_repeat1, - STATE(1144), 1, + STATE(1183), 1, sym_concatenation, - ACTIONS(1755), 2, + ACTIONS(1727), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1729), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1767), 2, + ACTIONS(1739), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1753), 3, + ACTIONS(1725), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(748), 9, + STATE(758), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57892,8 +59324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1615), 21, - anon_sym_LF, + ACTIONS(1591), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57912,58 +59343,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [2374] = 23, + [2237] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1723), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1725), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, - ACTIONS(1727), 1, + ACTIONS(1754), 1, sym__special_character, - ACTIONS(1729), 1, + ACTIONS(1757), 1, anon_sym_DQUOTE, - ACTIONS(1731), 1, + ACTIONS(1760), 1, aux_sym_number_token1, - ACTIONS(1733), 1, + ACTIONS(1763), 1, aux_sym_number_token2, - ACTIONS(1735), 1, + ACTIONS(1766), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1737), 1, + ACTIONS(1769), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1739), 1, + ACTIONS(1772), 1, anon_sym_BQUOTE, - ACTIONS(1741), 1, + ACTIONS(1775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1747), 1, + ACTIONS(1781), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1784), 1, sym_test_operator, - ACTIONS(1749), 1, + ACTIONS(1787), 1, sym_variable_name, - ACTIONS(1751), 1, + ACTIONS(1790), 1, sym__brace_start, - ACTIONS(1773), 1, - aux_sym__simple_variable_name_token1, - STATE(1221), 1, + STATE(1336), 1, aux_sym__literal_repeat1, - STATE(4178), 1, + STATE(4386), 1, sym_subscript, - ACTIONS(1501), 2, + ACTIONS(1505), 2, sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(1743), 2, + ACTIONS(1748), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1778), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1721), 3, + ACTIONS(1745), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(461), 3, + STATE(454), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(959), 9, + STATE(999), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57973,8 +59406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1497), 19, - anon_sym_LF, + ACTIONS(1467), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57991,57 +59423,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [2476] = 23, + [2340] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1501), 1, + ACTIONS(1709), 1, sym_file_descriptor, - ACTIONS(1777), 1, + ACTIONS(1802), 1, + anon_sym_DOLLAR, + ACTIONS(1805), 1, + sym__special_character, + ACTIONS(1808), 1, + anon_sym_DQUOTE, + ACTIONS(1811), 1, + aux_sym_number_token1, + ACTIONS(1814), 1, + aux_sym_number_token2, + ACTIONS(1817), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1820), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1823), 1, + anon_sym_BQUOTE, + ACTIONS(1826), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1832), 1, + sym_test_operator, + ACTIONS(1835), 1, + sym__bare_dollar, + ACTIONS(1838), 1, + sym__brace_start, + STATE(455), 1, + aux_sym_command_repeat2, + STATE(924), 1, + aux_sym__literal_repeat1, + STATE(1183), 1, + sym_concatenation, + ACTIONS(1796), 2, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1779), 1, + ACTIONS(1799), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1829), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1793), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(758), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1671), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [2443] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1505), 1, + sym_file_descriptor, + ACTIONS(1847), 1, anon_sym_DOLLAR, - ACTIONS(1781), 1, + ACTIONS(1850), 1, sym__special_character, - ACTIONS(1783), 1, + ACTIONS(1853), 1, anon_sym_DQUOTE, - ACTIONS(1785), 1, + ACTIONS(1856), 1, aux_sym_number_token1, - ACTIONS(1787), 1, + ACTIONS(1859), 1, aux_sym_number_token2, - ACTIONS(1789), 1, + ACTIONS(1862), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1791), 1, + ACTIONS(1865), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1793), 1, + ACTIONS(1868), 1, anon_sym_BQUOTE, - ACTIONS(1795), 1, + ACTIONS(1871), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1799), 1, + ACTIONS(1877), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1801), 1, + ACTIONS(1880), 1, sym_test_operator, - ACTIONS(1803), 1, + ACTIONS(1883), 1, sym_variable_name, - ACTIONS(1805), 1, + ACTIONS(1886), 1, sym__brace_start, - STATE(1265), 1, + STATE(1289), 1, aux_sym__literal_repeat1, - STATE(4167), 1, + STATE(4394), 1, sym_subscript, - ACTIONS(1797), 2, + ACTIONS(1844), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1874), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1775), 3, + ACTIONS(1841), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(455), 3, + STATE(456), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(936), 9, + STATE(895), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58051,8 +59565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1497), 20, - anon_sym_LF, + ACTIONS(1467), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58070,58 +59583,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [2578] = 23, + [2546] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1810), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1813), 1, + ACTIONS(1893), 1, anon_sym_DOLLAR, - ACTIONS(1816), 1, + ACTIONS(1895), 1, sym__special_character, - ACTIONS(1819), 1, + ACTIONS(1897), 1, anon_sym_DQUOTE, - ACTIONS(1822), 1, + ACTIONS(1899), 1, aux_sym_number_token1, - ACTIONS(1825), 1, + ACTIONS(1901), 1, aux_sym_number_token2, - ACTIONS(1828), 1, + ACTIONS(1903), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1831), 1, + ACTIONS(1905), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1834), 1, + ACTIONS(1907), 1, anon_sym_BQUOTE, - ACTIONS(1837), 1, + ACTIONS(1909), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1843), 1, + ACTIONS(1913), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1846), 1, + ACTIONS(1915), 1, sym_test_operator, - ACTIONS(1849), 1, + ACTIONS(1917), 1, sym_variable_name, - ACTIONS(1852), 1, + ACTIONS(1919), 1, sym__brace_start, - STATE(1221), 1, + STATE(1336), 1, aux_sym__literal_repeat1, - STATE(4178), 1, + STATE(4386), 1, sym_subscript, - ACTIONS(1453), 2, + ACTIONS(1553), 2, sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(1840), 2, + ACTIONS(1891), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1911), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1807), 3, + ACTIONS(1889), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(461), 3, + STATE(459), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(959), 9, + STATE(999), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58131,8 +59646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1412), 19, - anon_sym_LF, + ACTIONS(1549), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58149,56 +59663,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [2680] = 23, + [2649] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(588), 1, + ACTIONS(1553), 1, + sym_file_descriptor, + ACTIONS(1925), 1, anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(1927), 1, sym__special_character, - ACTIONS(596), 1, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, aux_sym_number_token1, - ACTIONS(598), 1, + ACTIONS(1933), 1, aux_sym_number_token2, - ACTIONS(602), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(616), 1, - sym__brace_start, - ACTIONS(1523), 1, - sym_file_descriptor, - ACTIONS(1757), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1759), 1, - anon_sym_DQUOTE, - ACTIONS(1761), 1, + ACTIONS(1935), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1763), 1, + ACTIONS(1937), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1939), 1, anon_sym_BQUOTE, - ACTIONS(1765), 1, + ACTIONS(1941), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1769), 1, + ACTIONS(1945), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1947), 1, sym_test_operator, - ACTIONS(1771), 1, - sym__bare_dollar, - STATE(467), 1, - aux_sym_command_repeat2, - STATE(934), 1, + ACTIONS(1949), 1, + sym_variable_name, + ACTIONS(1951), 1, + sym__brace_start, + STATE(1289), 1, aux_sym__literal_repeat1, - STATE(1144), 1, - sym_concatenation, - ACTIONS(1755), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1767), 2, + STATE(4394), 1, + sym_subscript, + ACTIONS(1923), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1943), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1753), 3, + ACTIONS(1921), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(748), 9, + STATE(460), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(895), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58208,8 +59725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1505), 21, - anon_sym_LF, + ACTIONS(1549), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58217,10 +59733,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -58228,56 +59743,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [2782] = 23, + [2752] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(588), 1, + ACTIONS(1893), 1, anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(1895), 1, sym__special_character, - ACTIONS(596), 1, + ACTIONS(1897), 1, + anon_sym_DQUOTE, + ACTIONS(1899), 1, aux_sym_number_token1, - ACTIONS(598), 1, + ACTIONS(1901), 1, aux_sym_number_token2, - ACTIONS(602), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(616), 1, - sym__brace_start, - ACTIONS(1529), 1, - sym_file_descriptor, - ACTIONS(1757), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1759), 1, - anon_sym_DQUOTE, - ACTIONS(1761), 1, + ACTIONS(1903), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1763), 1, + ACTIONS(1905), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1907), 1, anon_sym_BQUOTE, - ACTIONS(1765), 1, + ACTIONS(1909), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1769), 1, + ACTIONS(1915), 1, sym_test_operator, - ACTIONS(1771), 1, - sym__bare_dollar, - STATE(458), 1, - aux_sym_command_repeat2, - STATE(934), 1, + ACTIONS(1917), 1, + sym_variable_name, + ACTIONS(1919), 1, + sym__brace_start, + ACTIONS(1953), 1, + aux_sym__simple_variable_name_token1, + STATE(1336), 1, aux_sym__literal_repeat1, - STATE(1144), 1, - sym_concatenation, - ACTIONS(1755), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1767), 2, + STATE(4386), 1, + sym_subscript, + ACTIONS(1543), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1891), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1911), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1753), 3, + ACTIONS(1889), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(748), 9, + STATE(454), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(999), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58287,8 +59806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1527), 21, - anon_sym_LF, + ACTIONS(1517), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58298,8 +59816,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -58307,57 +59823,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [2884] = 23, + [2855] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 1, + ACTIONS(1543), 1, sym_file_descriptor, - ACTIONS(1777), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1779), 1, + ACTIONS(1925), 1, anon_sym_DOLLAR, - ACTIONS(1781), 1, + ACTIONS(1927), 1, sym__special_character, - ACTIONS(1783), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(1785), 1, + ACTIONS(1931), 1, aux_sym_number_token1, - ACTIONS(1787), 1, + ACTIONS(1933), 1, aux_sym_number_token2, - ACTIONS(1789), 1, + ACTIONS(1935), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1791), 1, + ACTIONS(1937), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1793), 1, + ACTIONS(1939), 1, anon_sym_BQUOTE, - ACTIONS(1795), 1, + ACTIONS(1941), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1801), 1, + ACTIONS(1947), 1, sym_test_operator, - ACTIONS(1803), 1, + ACTIONS(1949), 1, sym_variable_name, - ACTIONS(1805), 1, + ACTIONS(1951), 1, sym__brace_start, - ACTIONS(1855), 1, + ACTIONS(1955), 1, aux_sym__simple_variable_name_token1, - STATE(1265), 1, + STATE(1289), 1, aux_sym__literal_repeat1, - STATE(4167), 1, + STATE(4394), 1, sym_subscript, - ACTIONS(1797), 2, + ACTIONS(1923), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1943), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1775), 3, + ACTIONS(1921), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(460), 3, + STATE(456), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(936), 9, + STATE(895), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58367,8 +59885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1463), 20, - anon_sym_LF, + ACTIONS(1517), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58386,23 +59903,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [2986] = 7, + [2958] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - STATE(767), 1, + STATE(691), 1, sym_string, - ACTIONS(1859), 2, + ACTIONS(1959), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1217), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1857), 9, + ACTIONS(1957), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -58412,8 +59930,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 38, - anon_sym_LF, + ACTIONS(1215), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -58435,6 +59953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -58451,21 +59970,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [3056] = 7, + [3029] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - STATE(767), 1, + STATE(691), 1, sym_string, - ACTIONS(1859), 2, + ACTIONS(1959), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1221), 3, + ACTIONS(1213), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1857), 9, + ACTIONS(1957), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -58475,8 +59994,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 38, - anon_sym_LF, + ACTIONS(1205), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -58498,6 +60017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -58514,54 +60034,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [3126] = 23, + [3100] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1607), 1, + ACTIONS(1731), 1, + anon_sym_DQUOTE, + STATE(819), 1, + sym_string, + ACTIONS(1963), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1213), 3, sym_file_descriptor, - ACTIONS(1867), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1870), 1, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1961), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1873), 1, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, - ACTIONS(1876), 1, - anon_sym_DQUOTE, - ACTIONS(1879), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1882), 1, aux_sym_number_token2, - ACTIONS(1885), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1888), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1891), 1, anon_sym_BQUOTE, - ACTIONS(1894), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1900), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - ACTIONS(1903), 1, - sym__bare_dollar, - ACTIONS(1906), 1, + [3170] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(360), 1, + anon_sym_DOLLAR, + ACTIONS(368), 1, + aux_sym_number_token1, + ACTIONS(370), 1, + aux_sym_number_token2, + ACTIONS(374), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(388), 1, sym__brace_start, - STATE(467), 1, + ACTIONS(773), 1, + sym__special_character, + ACTIONS(1719), 1, + sym_file_descriptor, + ACTIONS(1971), 1, + anon_sym_DQUOTE, + ACTIONS(1973), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1975), 1, + anon_sym_BQUOTE, + ACTIONS(1977), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1981), 1, + sym_test_operator, + ACTIONS(1983), 1, + sym__bare_dollar, + STATE(472), 1, aux_sym_command_repeat2, - STATE(934), 1, + STATE(1154), 1, aux_sym__literal_repeat1, - STATE(1144), 1, + STATE(1265), 1, sym_concatenation, - ACTIONS(1864), 2, + ACTIONS(1967), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1969), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1897), 2, + ACTIONS(1979), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1861), 3, + ACTIONS(1965), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(748), 9, + STATE(774), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58571,8 +60155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1566), 21, - anon_sym_LF, + ACTIONS(1717), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58580,10 +60163,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -58591,57 +60173,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [3228] = 23, + [3272] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 1, - sym_file_descriptor, - ACTIONS(1777), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1779), 1, + ACTIONS(1991), 1, anon_sym_DOLLAR, - ACTIONS(1783), 1, + ACTIONS(1993), 1, + sym__special_character, + ACTIONS(1995), 1, anon_sym_DQUOTE, - ACTIONS(1785), 1, + ACTIONS(1997), 1, aux_sym_number_token1, - ACTIONS(1787), 1, + ACTIONS(1999), 1, aux_sym_number_token2, - ACTIONS(1789), 1, + ACTIONS(2001), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1791), 1, + ACTIONS(2003), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1793), 1, + ACTIONS(2005), 1, anon_sym_BQUOTE, - ACTIONS(1795), 1, + ACTIONS(2007), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1805), 1, - sym__brace_start, - ACTIONS(1911), 1, - sym__special_character, - ACTIONS(1913), 1, + ACTIONS(2011), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1915), 1, + ACTIONS(2013), 1, sym_test_operator, - ACTIONS(1917), 1, - sym_variable_name, - STATE(1265), 1, + ACTIONS(2015), 1, + sym_file_descriptor, + ACTIONS(2017), 1, + sym__brace_start, + STATE(1103), 1, aux_sym__literal_repeat1, - STATE(4162), 1, - sym_subscript, - ACTIONS(1797), 2, + ACTIONS(1987), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2009), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1909), 3, + STATE(485), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1985), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(476), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1139), 9, + STATE(818), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58651,8 +60230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1463), 19, - anon_sym_LF, + ACTIONS(1989), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58660,8 +60238,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -58669,120 +60250,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [3329] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1927), 1, - sym__simple_heredoc_body, - ACTIONS(1929), 1, - sym__heredoc_body_beginning, - STATE(3833), 1, - sym_heredoc_body, - ACTIONS(1923), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(1925), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(1921), 21, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(1919), 25, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [3400] = 23, + [3370] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(1991), 1, anon_sym_DOLLAR, - ACTIONS(43), 1, + ACTIONS(1993), 1, sym__special_character, - ACTIONS(49), 1, + ACTIONS(1995), 1, + anon_sym_DQUOTE, + ACTIONS(1997), 1, aux_sym_number_token1, - ACTIONS(51), 1, + ACTIONS(1999), 1, aux_sym_number_token2, - ACTIONS(55), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(71), 1, - sym__brace_start, - ACTIONS(1935), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1937), 1, - anon_sym_DQUOTE, - ACTIONS(1939), 1, + ACTIONS(2001), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1941), 1, + ACTIONS(2003), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2005), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, + ACTIONS(2007), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1947), 1, + ACTIONS(2013), 1, sym_test_operator, - ACTIONS(1949), 1, - sym__bare_dollar, - STATE(488), 1, - aux_sym_command_repeat2, - STATE(1137), 1, - aux_sym__literal_repeat1, - STATE(1227), 1, - sym_concatenation, - ACTIONS(1617), 2, + ACTIONS(2017), 1, + sym__brace_start, + ACTIONS(2021), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2023), 1, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1933), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1945), 2, + STATE(1103), 1, + aux_sym__literal_repeat1, + ACTIONS(1987), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2009), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1931), 3, + STATE(465), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1985), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(800), 9, + STATE(818), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58792,8 +60307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1615), 19, - anon_sym_LF, + ACTIONS(2019), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58801,8 +60315,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -58810,52 +60327,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [3501] = 21, + [3468] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1956), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1959), 1, + ACTIONS(41), 1, anon_sym_DOLLAR, - ACTIONS(1962), 1, + ACTIONS(43), 1, sym__special_character, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1968), 1, + ACTIONS(49), 1, aux_sym_number_token1, - ACTIONS(1971), 1, + ACTIONS(51), 1, aux_sym_number_token2, - ACTIONS(1974), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1977), 1, + ACTIONS(55), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1980), 1, + ACTIONS(71), 1, + sym__brace_start, + ACTIONS(2031), 1, + anon_sym_DQUOTE, + ACTIONS(2033), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2035), 1, anon_sym_BQUOTE, - ACTIONS(1983), 1, + ACTIONS(2037), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1989), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1992), 1, + ACTIONS(2041), 1, sym_test_operator, - ACTIONS(1995), 1, - sym_file_descriptor, - ACTIONS(1997), 1, - sym__brace_start, - STATE(1062), 1, + ACTIONS(2043), 1, + sym__bare_dollar, + STATE(484), 1, + aux_sym_command_repeat2, + STATE(1059), 1, aux_sym__literal_repeat1, - ACTIONS(1986), 2, + STATE(1358), 1, + sym_concatenation, + ACTIONS(1723), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(2027), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2029), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2039), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(471), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1951), 3, + ACTIONS(2025), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(821), 9, + STATE(769), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58865,8 +60389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1954), 22, - anon_sym_LF, + ACTIONS(1721), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58874,11 +60397,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -58886,21 +60406,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [3598] = 6, + [3570] = 6, ACTIONS(3), 1, sym_comment, - STATE(1120), 1, + STATE(1140), 1, aux_sym__literal_repeat1, - STATE(475), 2, + STATE(471), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2002), 3, + ACTIONS(2047), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - STATE(774), 9, + STATE(784), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58910,8 +60431,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2000), 38, - anon_sym_LF, + ACTIONS(2045), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58931,6 +60452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -58949,19 +60471,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [3665] = 6, + [3638] = 6, ACTIONS(3), 1, sym_comment, - STATE(1120), 1, + STATE(1140), 1, aux_sym__literal_repeat1, - STATE(475), 2, + STATE(471), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2006), 3, + ACTIONS(2051), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - STATE(774), 9, + STATE(784), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58971,8 +60493,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2004), 38, - anon_sym_LF, + ACTIONS(2049), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58992,6 +60514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -59010,110 +60533,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [3732] = 6, - ACTIONS(63), 1, + [3706] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(2008), 1, - sym__simple_heredoc_body, - ACTIONS(2010), 1, - sym__heredoc_body_beginning, - STATE(3974), 1, - sym_heredoc_body, - ACTIONS(965), 21, - sym_file_descriptor, - sym_variable_name, + ACTIONS(41), 1, + anon_sym_DOLLAR, + ACTIONS(43), 1, + sym__special_character, + ACTIONS(49), 1, + aux_sym_number_token1, + ACTIONS(51), 1, + aux_sym_number_token2, + ACTIONS(55), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(71), 1, sym__brace_start, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2031), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2033), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2035), 1, anon_sym_BQUOTE, + ACTIONS(2037), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2041), 1, + sym_test_operator, + ACTIONS(2043), 1, + sym__bare_dollar, + STATE(474), 1, + aux_sym_command_repeat2, + STATE(1059), 1, + aux_sym__literal_repeat1, + STATE(1358), 1, + sym_concatenation, + ACTIONS(1719), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(2027), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2029), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2039), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(696), 29, - anon_sym_for, - anon_sym_select, + ACTIONS(2025), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(769), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1717), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_done, - anon_sym_if, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [3799] = 20, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [3808] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2020), 1, + ACTIONS(2061), 1, anon_sym_DOLLAR, - ACTIONS(2023), 1, + ACTIONS(2064), 1, sym__special_character, - ACTIONS(2026), 1, + ACTIONS(2067), 1, anon_sym_DQUOTE, - ACTIONS(2029), 1, + ACTIONS(2070), 1, aux_sym_number_token1, - ACTIONS(2032), 1, + ACTIONS(2073), 1, aux_sym_number_token2, - ACTIONS(2035), 1, + ACTIONS(2076), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2038), 1, + ACTIONS(2079), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2041), 1, + ACTIONS(2082), 1, anon_sym_BQUOTE, - ACTIONS(2044), 1, + ACTIONS(2085), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2050), 1, + ACTIONS(2091), 1, sym_test_operator, - ACTIONS(2055), 1, + ACTIONS(2096), 1, sym__brace_start, - STATE(1120), 1, + STATE(1140), 1, aux_sym__literal_repeat1, - ACTIONS(2047), 2, + ACTIONS(2056), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2088), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2053), 2, + ACTIONS(2094), 2, sym_file_descriptor, sym_variable_name, - STATE(475), 2, + STATE(471), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2012), 3, + ACTIONS(2053), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(774), 9, + STATE(784), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59123,8 +60665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2015), 22, - anon_sym_LF, + ACTIONS(2059), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59144,57 +60685,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [3894] = 23, + [3904] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1501), 1, - sym_file_descriptor, - ACTIONS(1777), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1779), 1, + ACTIONS(360), 1, anon_sym_DOLLAR, - ACTIONS(1783), 1, - anon_sym_DQUOTE, - ACTIONS(1785), 1, + ACTIONS(368), 1, aux_sym_number_token1, - ACTIONS(1787), 1, + ACTIONS(370), 1, aux_sym_number_token2, - ACTIONS(1789), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1791), 1, + ACTIONS(374), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1793), 1, - anon_sym_BQUOTE, - ACTIONS(1795), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1805), 1, + ACTIONS(388), 1, sym__brace_start, - ACTIONS(1911), 1, + ACTIONS(773), 1, sym__special_character, - ACTIONS(1915), 1, + ACTIONS(1607), 1, + sym_file_descriptor, + ACTIONS(1971), 1, + anon_sym_DQUOTE, + ACTIONS(1973), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1975), 1, + anon_sym_BQUOTE, + ACTIONS(1977), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1981), 1, sym_test_operator, - ACTIONS(1917), 1, - sym_variable_name, - ACTIONS(2058), 1, - aux_sym__simple_variable_name_token1, - STATE(1265), 1, + ACTIONS(1983), 1, + sym__bare_dollar, + STATE(476), 1, + aux_sym_command_repeat2, + STATE(1154), 1, aux_sym__literal_repeat1, - STATE(4162), 1, - sym_subscript, - ACTIONS(1797), 2, + STATE(1265), 1, + sym_concatenation, + ACTIONS(1967), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1979), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1909), 3, + ACTIONS(1965), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(478), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1139), 9, + STATE(774), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59204,8 +60746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1497), 19, - anon_sym_LF, + ACTIONS(1591), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59213,6 +60754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -59222,55 +60764,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [3995] = 22, + [4006] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 1, - sym_file_descriptor, - ACTIONS(1777), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1779), 1, + ACTIONS(41), 1, anon_sym_DOLLAR, - ACTIONS(1783), 1, - anon_sym_DQUOTE, - ACTIONS(1785), 1, + ACTIONS(43), 1, + sym__special_character, + ACTIONS(49), 1, aux_sym_number_token1, - ACTIONS(1787), 1, + ACTIONS(51), 1, aux_sym_number_token2, - ACTIONS(1789), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1791), 1, + ACTIONS(55), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1795), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1805), 1, + ACTIONS(71), 1, sym__brace_start, - ACTIONS(1911), 1, - sym__special_character, - ACTIONS(1915), 1, + ACTIONS(2031), 1, + anon_sym_DQUOTE, + ACTIONS(2033), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2035), 1, + anon_sym_BQUOTE, + ACTIONS(2037), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2041), 1, sym_test_operator, - ACTIONS(1917), 1, - sym_variable_name, - ACTIONS(2060), 1, - aux_sym__simple_variable_name_token1, - STATE(1265), 1, + ACTIONS(2043), 1, + sym__bare_dollar, + STATE(467), 1, + aux_sym_command_repeat2, + STATE(1059), 1, aux_sym__literal_repeat1, - STATE(4162), 1, - sym_subscript, - ACTIONS(1797), 2, + STATE(1358), 1, + sym_concatenation, + ACTIONS(1663), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(2027), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2029), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2039), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1909), 3, + ACTIONS(2025), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(487), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1139), 9, + STATE(769), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59280,8 +60826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1463), 20, - anon_sym_LF, + ACTIONS(1661), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59298,58 +60843,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [4094] = 23, + [4108] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - sym_file_descriptor, - ACTIONS(1676), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1679), 1, + ACTIONS(41), 1, anon_sym_DOLLAR, - ACTIONS(1685), 1, - anon_sym_DQUOTE, - ACTIONS(1688), 1, + ACTIONS(43), 1, + sym__special_character, + ACTIONS(49), 1, aux_sym_number_token1, - ACTIONS(1691), 1, + ACTIONS(51), 1, aux_sym_number_token2, - ACTIONS(1694), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1697), 1, + ACTIONS(55), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1700), 1, + ACTIONS(71), 1, + sym__brace_start, + ACTIONS(2031), 1, + anon_sym_DQUOTE, + ACTIONS(2033), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2035), 1, anon_sym_BQUOTE, - ACTIONS(1703), 1, + ACTIONS(2037), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1718), 1, - sym__brace_start, - ACTIONS(2065), 1, - sym__special_character, - ACTIONS(2068), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2071), 1, + ACTIONS(2041), 1, sym_test_operator, - ACTIONS(2074), 1, - sym_variable_name, - STATE(1265), 1, + ACTIONS(2043), 1, + sym__bare_dollar, + STATE(484), 1, + aux_sym_command_repeat2, + STATE(1059), 1, aux_sym__literal_repeat1, - STATE(4162), 1, - sym_subscript, - ACTIONS(1706), 2, + STATE(1358), 1, + sym_concatenation, + ACTIONS(1607), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(2027), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2029), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2039), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2062), 3, + ACTIONS(2025), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(478), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1139), 9, + STATE(769), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59359,8 +60905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1412), 19, - anon_sym_LF, + ACTIONS(1591), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59377,56 +60922,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [4195] = 23, + [4210] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(382), 1, + ACTIONS(360), 1, anon_sym_DOLLAR, - ACTIONS(390), 1, + ACTIONS(368), 1, aux_sym_number_token1, - ACTIONS(392), 1, + ACTIONS(370), 1, aux_sym_number_token2, - ACTIONS(396), 1, + ACTIONS(374), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(410), 1, + ACTIONS(388), 1, sym__brace_start, - ACTIONS(801), 1, + ACTIONS(773), 1, sym__special_character, - ACTIONS(1529), 1, + ACTIONS(1723), 1, sym_file_descriptor, - ACTIONS(2081), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2083), 1, + ACTIONS(1971), 1, anon_sym_DQUOTE, - ACTIONS(2085), 1, + ACTIONS(1973), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2087), 1, + ACTIONS(1975), 1, anon_sym_BQUOTE, - ACTIONS(2089), 1, + ACTIONS(1977), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2093), 1, + ACTIONS(1981), 1, sym_test_operator, - ACTIONS(2095), 1, + ACTIONS(1983), 1, sym__bare_dollar, - STATE(484), 1, + STATE(476), 1, aux_sym_command_repeat2, - STATE(1038), 1, + STATE(1154), 1, aux_sym__literal_repeat1, - STATE(1256), 1, + STATE(1265), 1, sym_concatenation, - ACTIONS(2079), 2, + ACTIONS(1967), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1969), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2091), 2, + ACTIONS(1979), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2077), 3, + ACTIONS(1965), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(831), 9, + STATE(774), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59436,8 +60983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1527), 20, - anon_sym_LF, + ACTIONS(1721), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59455,85 +61001,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [4296] = 7, + [4312] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_DQUOTE, - STATE(835), 1, - sym_string, - ACTIONS(2099), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + ACTIONS(1709), 1, sym_file_descriptor, + ACTIONS(2108), 1, + anon_sym_DOLLAR, + ACTIONS(2111), 1, + sym__special_character, + ACTIONS(2114), 1, + anon_sym_DQUOTE, + ACTIONS(2117), 1, + aux_sym_number_token1, + ACTIONS(2120), 1, + aux_sym_number_token2, + ACTIONS(2123), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2126), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2129), 1, + anon_sym_BQUOTE, + ACTIONS(2132), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2138), 1, + sym_test_operator, + ACTIONS(2141), 1, sym__bare_dollar, + ACTIONS(2144), 1, sym__brace_start, - ACTIONS(2097), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 37, - anon_sym_LF, - anon_sym_SEMI, + STATE(476), 1, + aux_sym_command_repeat2, + STATE(1154), 1, + aux_sym__literal_repeat1, + STATE(1265), 1, + sym_concatenation, + ACTIONS(2102), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2105), 2, anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2099), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(774), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1671), 20, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + [4414] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1505), 1, + sym_file_descriptor, + ACTIONS(1847), 1, + anon_sym_DOLLAR, + ACTIONS(1853), 1, + anon_sym_DQUOTE, + ACTIONS(1856), 1, aux_sym_number_token1, + ACTIONS(1859), 1, aux_sym_number_token2, + ACTIONS(1862), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1865), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1868), 1, anon_sym_BQUOTE, + ACTIONS(1871), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1886), 1, + sym__brace_start, + ACTIONS(2150), 1, + sym__special_character, + ACTIONS(2153), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2156), 1, + sym_test_operator, + ACTIONS(2159), 1, + sym_variable_name, + STATE(1289), 1, + aux_sym__literal_repeat1, + STATE(4387), 1, + sym_subscript, + ACTIONS(1844), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1874), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(2147), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - sym_test_operator, - [4365] = 7, + STATE(477), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1174), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1467), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [4516] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, + ACTIONS(1731), 1, anon_sym_DQUOTE, - STATE(835), 1, + STATE(819), 1, sym_string, - ACTIONS(2099), 2, + ACTIONS(1963), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1221), 3, + ACTIONS(1217), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(2097), 9, + ACTIONS(1961), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -59543,8 +61186,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 37, - anon_sym_LF, + ACTIONS(1215), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -59565,6 +61208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -59581,50 +61225,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [4434] = 21, + [4586] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2105), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2107), 1, + ACTIONS(1553), 1, + sym_file_descriptor, + ACTIONS(1925), 1, anon_sym_DOLLAR, - ACTIONS(2109), 1, - sym__special_character, - ACTIONS(2111), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(2113), 1, + ACTIONS(1931), 1, aux_sym_number_token1, - ACTIONS(2115), 1, + ACTIONS(1933), 1, aux_sym_number_token2, - ACTIONS(2117), 1, + ACTIONS(1935), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2119), 1, + ACTIONS(1937), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2121), 1, + ACTIONS(1939), 1, anon_sym_BQUOTE, - ACTIONS(2123), 1, + ACTIONS(1941), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2127), 1, + ACTIONS(1951), 1, + sym__brace_start, + ACTIONS(2164), 1, + sym__special_character, + ACTIONS(2166), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2129), 1, + ACTIONS(2168), 1, sym_test_operator, - ACTIONS(2131), 1, - sym_file_descriptor, - ACTIONS(2133), 1, - sym__brace_start, - STATE(1062), 1, + ACTIONS(2170), 1, + sym_variable_name, + STATE(1289), 1, aux_sym__literal_repeat1, - ACTIONS(2125), 2, + STATE(4387), 1, + sym_subscript, + ACTIONS(1923), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1943), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(471), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2101), 3, + ACTIONS(2162), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(821), 9, + STATE(480), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1174), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59634,8 +61284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2103), 22, - anon_sym_LF, + ACTIONS(1549), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59643,11 +61292,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -59655,57 +61301,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [4531] = 23, + [4688] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(1543), 1, + sym_file_descriptor, + ACTIONS(1925), 1, anon_sym_DOLLAR, - ACTIONS(43), 1, - sym__special_character, - ACTIONS(49), 1, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, aux_sym_number_token1, - ACTIONS(51), 1, + ACTIONS(1933), 1, aux_sym_number_token2, - ACTIONS(55), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(71), 1, - sym__brace_start, ACTIONS(1935), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(1937), 1, - anon_sym_DQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(1939), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1941), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, + ACTIONS(1941), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1947), 1, + ACTIONS(1951), 1, + sym__brace_start, + ACTIONS(2164), 1, + sym__special_character, + ACTIONS(2168), 1, sym_test_operator, - ACTIONS(1949), 1, - sym__bare_dollar, - STATE(470), 1, - aux_sym_command_repeat2, - STATE(1137), 1, + ACTIONS(2170), 1, + sym_variable_name, + ACTIONS(2172), 1, + aux_sym__simple_variable_name_token1, + STATE(1289), 1, aux_sym__literal_repeat1, - STATE(1227), 1, - sym_concatenation, - ACTIONS(1529), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1933), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1945), 2, + STATE(4387), 1, + sym_subscript, + ACTIONS(1923), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1943), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1931), 3, + ACTIONS(2162), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(800), 9, + STATE(477), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1174), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59715,8 +61363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1527), 19, - anon_sym_LF, + ACTIONS(1517), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59733,56 +61380,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [4632] = 23, + [4790] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(382), 1, + ACTIONS(360), 1, anon_sym_DOLLAR, - ACTIONS(390), 1, + ACTIONS(368), 1, aux_sym_number_token1, - ACTIONS(392), 1, + ACTIONS(370), 1, aux_sym_number_token2, - ACTIONS(396), 1, + ACTIONS(374), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(410), 1, + ACTIONS(388), 1, sym__brace_start, - ACTIONS(801), 1, + ACTIONS(773), 1, sym__special_character, - ACTIONS(1617), 1, + ACTIONS(1663), 1, sym_file_descriptor, - ACTIONS(2081), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2083), 1, + ACTIONS(1971), 1, anon_sym_DQUOTE, - ACTIONS(2085), 1, + ACTIONS(1973), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2087), 1, + ACTIONS(1975), 1, anon_sym_BQUOTE, - ACTIONS(2089), 1, + ACTIONS(1977), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2093), 1, + ACTIONS(1981), 1, sym_test_operator, - ACTIONS(2095), 1, + ACTIONS(1983), 1, sym__bare_dollar, - STATE(492), 1, + STATE(475), 1, aux_sym_command_repeat2, - STATE(1038), 1, + STATE(1154), 1, aux_sym__literal_repeat1, - STATE(1256), 1, + STATE(1265), 1, sym_concatenation, - ACTIONS(2079), 2, + ACTIONS(1967), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1969), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2091), 2, + ACTIONS(1979), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2077), 3, + ACTIONS(1965), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(831), 9, + STATE(774), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59792,8 +61441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1615), 20, - anon_sym_LF, + ACTIONS(1661), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59811,56 +61459,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [4733] = 23, + [4892] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(382), 1, + ACTIONS(1543), 1, + sym_file_descriptor, + ACTIONS(1925), 1, anon_sym_DOLLAR, - ACTIONS(390), 1, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, aux_sym_number_token1, - ACTIONS(392), 1, + ACTIONS(1933), 1, aux_sym_number_token2, - ACTIONS(396), 1, + ACTIONS(1935), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1937), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(410), 1, + ACTIONS(1941), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1951), 1, sym__brace_start, - ACTIONS(801), 1, + ACTIONS(2164), 1, sym__special_character, - ACTIONS(1623), 1, - sym_file_descriptor, - ACTIONS(2081), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2083), 1, - anon_sym_DQUOTE, - ACTIONS(2085), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2087), 1, - anon_sym_BQUOTE, - ACTIONS(2089), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2093), 1, + ACTIONS(2168), 1, sym_test_operator, - ACTIONS(2095), 1, - sym__bare_dollar, - STATE(493), 1, - aux_sym_command_repeat2, - STATE(1038), 1, + ACTIONS(2170), 1, + sym_variable_name, + ACTIONS(2172), 1, + aux_sym__simple_variable_name_token1, + STATE(1289), 1, aux_sym__literal_repeat1, - STATE(1256), 1, - sym_concatenation, - ACTIONS(2079), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2091), 2, + STATE(4387), 1, + sym_subscript, + ACTIONS(1923), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1943), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2077), 3, + ACTIONS(2162), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(831), 9, + STATE(477), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1174), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59870,8 +61519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1621), 20, - anon_sym_LF, + ACTIONS(1517), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59879,7 +61527,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -59889,57 +61536,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [4834] = 23, + anon_sym_BQUOTE, + [4992] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(1553), 1, + sym_file_descriptor, + ACTIONS(1925), 1, anon_sym_DOLLAR, - ACTIONS(43), 1, - sym__special_character, - ACTIONS(49), 1, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + ACTIONS(1931), 1, aux_sym_number_token1, - ACTIONS(51), 1, + ACTIONS(1933), 1, aux_sym_number_token2, - ACTIONS(55), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(71), 1, - sym__brace_start, ACTIONS(1935), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1937), 1, - anon_sym_DQUOTE, - ACTIONS(1939), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1937), 1, + anon_sym_DOLLAR_LPAREN, ACTIONS(1941), 1, - anon_sym_BQUOTE, - ACTIONS(1943), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1947), 1, + ACTIONS(1951), 1, + sym__brace_start, + ACTIONS(2164), 1, + sym__special_character, + ACTIONS(2168), 1, sym_test_operator, - ACTIONS(1949), 1, - sym__bare_dollar, - STATE(490), 1, - aux_sym_command_repeat2, - STATE(1137), 1, + ACTIONS(2170), 1, + sym_variable_name, + ACTIONS(2174), 1, + aux_sym__simple_variable_name_token1, + STATE(1289), 1, aux_sym__literal_repeat1, - STATE(1227), 1, - sym_concatenation, - ACTIONS(1623), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1933), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1945), 2, + STATE(4387), 1, + sym_subscript, + ACTIONS(1923), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1943), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1931), 3, + ACTIONS(2162), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(800), 9, + STATE(482), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1174), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59949,8 +61597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1621), 19, - anon_sym_LF, + ACTIONS(1549), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59967,55 +61614,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [4935] = 22, + anon_sym_BQUOTE, + [5092] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1501), 1, - sym_file_descriptor, - ACTIONS(1777), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1779), 1, + ACTIONS(2185), 1, anon_sym_DOLLAR, - ACTIONS(1783), 1, + ACTIONS(2188), 1, + sym__special_character, + ACTIONS(2191), 1, anon_sym_DQUOTE, - ACTIONS(1785), 1, + ACTIONS(2194), 1, aux_sym_number_token1, - ACTIONS(1787), 1, + ACTIONS(2197), 1, aux_sym_number_token2, - ACTIONS(1789), 1, + ACTIONS(2200), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1791), 1, + ACTIONS(2203), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1795), 1, + ACTIONS(2206), 1, + anon_sym_BQUOTE, + ACTIONS(2209), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1805), 1, - sym__brace_start, - ACTIONS(1911), 1, - sym__special_character, - ACTIONS(1915), 1, + ACTIONS(2215), 1, sym_test_operator, - ACTIONS(1917), 1, - sym_variable_name, - ACTIONS(2058), 1, - aux_sym__simple_variable_name_token1, - STATE(1265), 1, + ACTIONS(2218), 1, + sym__bare_dollar, + ACTIONS(2221), 1, + sym__brace_start, + STATE(484), 1, + aux_sym_command_repeat2, + STATE(1059), 1, aux_sym__literal_repeat1, - STATE(4162), 1, - sym_subscript, - ACTIONS(1797), 2, + STATE(1358), 1, + sym_concatenation, + ACTIONS(1709), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(2179), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2182), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2212), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1909), 3, + ACTIONS(2176), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(478), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1139), 9, + STATE(769), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -60025,8 +61677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1497), 20, - anon_sym_LF, + ACTIONS(1671), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -60043,58 +61694,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [5034] = 23, + [5194] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2141), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2144), 1, + ACTIONS(2232), 1, anon_sym_DOLLAR, - ACTIONS(2147), 1, + ACTIONS(2235), 1, sym__special_character, - ACTIONS(2150), 1, + ACTIONS(2238), 1, anon_sym_DQUOTE, - ACTIONS(2153), 1, + ACTIONS(2241), 1, aux_sym_number_token1, - ACTIONS(2156), 1, + ACTIONS(2244), 1, aux_sym_number_token2, - ACTIONS(2159), 1, + ACTIONS(2247), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2162), 1, + ACTIONS(2250), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2165), 1, + ACTIONS(2253), 1, anon_sym_BQUOTE, - ACTIONS(2168), 1, + ACTIONS(2256), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2174), 1, + ACTIONS(2262), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2265), 1, sym_test_operator, - ACTIONS(2177), 1, - sym__bare_dollar, - ACTIONS(2180), 1, + ACTIONS(2268), 1, + sym_file_descriptor, + ACTIONS(2270), 1, sym__brace_start, - STATE(488), 1, - aux_sym_command_repeat2, - STATE(1137), 1, + STATE(1103), 1, aux_sym__literal_repeat1, - STATE(1227), 1, - sym_concatenation, - ACTIONS(1607), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2138), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2171), 2, + ACTIONS(2227), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2259), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2135), 3, + STATE(485), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2224), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(800), 9, + STATE(818), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -60104,8 +61751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1566), 19, - anon_sym_LF, + ACTIONS(2230), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -60113,8 +61759,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -60122,52 +61771,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [5135] = 21, + [5292] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2105), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2107), 1, + ACTIONS(2094), 1, + sym_file_descriptor, + ACTIONS(2279), 1, anon_sym_DOLLAR, - ACTIONS(2109), 1, + ACTIONS(2282), 1, sym__special_character, - ACTIONS(2111), 1, + ACTIONS(2285), 1, anon_sym_DQUOTE, - ACTIONS(2113), 1, + ACTIONS(2288), 1, aux_sym_number_token1, - ACTIONS(2115), 1, + ACTIONS(2291), 1, aux_sym_number_token2, - ACTIONS(2117), 1, + ACTIONS(2294), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2119), 1, + ACTIONS(2297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2121), 1, + ACTIONS(2300), 1, anon_sym_BQUOTE, - ACTIONS(2123), 1, + ACTIONS(2303), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2129), 1, + ACTIONS(2309), 1, sym_test_operator, - ACTIONS(2133), 1, + ACTIONS(2312), 1, sym__brace_start, - ACTIONS(2185), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2187), 1, - sym_file_descriptor, - STATE(1062), 1, + STATE(1254), 1, aux_sym__literal_repeat1, - ACTIONS(2125), 2, + ACTIONS(2276), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2306), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(482), 2, + STATE(486), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2101), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2273), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(821), 9, + STATE(913), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -60177,8 +61826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2183), 22, - anon_sym_LF, + ACTIONS(2059), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -60198,57 +61846,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [5232] = 23, + [5387] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(2031), 1, + anon_sym_DQUOTE, + STATE(1008), 1, + sym_string, + ACTIONS(2317), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1213), 4, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(2315), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(43), 1, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, - ACTIONS(49), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(51), 1, aux_sym_number_token2, - ACTIONS(55), 1, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(71), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [5456] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(360), 1, + anon_sym_DOLLAR, + ACTIONS(362), 1, + sym__special_character, + ACTIONS(368), 1, + aux_sym_number_token1, + ACTIONS(370), 1, + aux_sym_number_token2, + ACTIONS(374), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(388), 1, sym__brace_start, - ACTIONS(1935), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1937), 1, + ACTIONS(1663), 1, + sym_file_descriptor, + ACTIONS(1971), 1, anon_sym_DQUOTE, - ACTIONS(1939), 1, + ACTIONS(1973), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1941), 1, + ACTIONS(1975), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, + ACTIONS(1977), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1947), 1, - sym_test_operator, - ACTIONS(1949), 1, + ACTIONS(1983), 1, sym__bare_dollar, - STATE(488), 1, + ACTIONS(2323), 1, + sym_test_operator, + STATE(491), 1, aux_sym_command_repeat2, - STATE(1137), 1, + STATE(1154), 1, aux_sym__literal_repeat1, - STATE(1227), 1, + STATE(1265), 1, sym_concatenation, - ACTIONS(1523), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1933), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1945), 2, + ACTIONS(1967), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1979), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1931), 3, + ACTIONS(2321), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2319), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(800), 9, + STATE(945), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -60258,8 +61969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1505), 19, - anon_sym_LF, + ACTIONS(1661), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -60276,119 +61986,271 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [5333] = 8, - ACTIONS(63), 1, + [5557] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(1927), 1, - sym__simple_heredoc_body, - ACTIONS(1929), 1, - sym__heredoc_body_beginning, - STATE(3850), 1, - sym_heredoc_body, - ACTIONS(2189), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(2191), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(1921), 21, - sym_file_descriptor, + ACTIONS(2331), 1, + anon_sym_DOLLAR, + ACTIONS(2334), 1, + sym__special_character, + ACTIONS(2337), 1, + anon_sym_DQUOTE, + ACTIONS(2340), 1, + aux_sym_number_token1, + ACTIONS(2343), 1, + aux_sym_number_token2, + ACTIONS(2346), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2349), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2352), 1, + anon_sym_BQUOTE, + ACTIONS(2355), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2361), 1, + sym_test_operator, + ACTIONS(2364), 1, + sym__brace_start, + STATE(1204), 1, + aux_sym__literal_repeat1, + ACTIONS(2094), 2, + sym_file_descriptor, sym_variable_name, + ACTIONS(2328), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2358), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(489), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2325), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(942), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2059), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [5652] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1971), 1, + anon_sym_DQUOTE, + STATE(926), 1, + sym_string, + ACTIONS(2369), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1213), 3, + sym_file_descriptor, + sym__bare_dollar, sym__brace_start, + ACTIONS(2367), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - ACTIONS(1919), 25, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, + [5721] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(360), 1, anon_sym_DOLLAR, + ACTIONS(362), 1, sym__special_character, + ACTIONS(368), 1, aux_sym_number_token1, + ACTIONS(370), 1, aux_sym_number_token2, + ACTIONS(374), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(388), 1, + sym__brace_start, + ACTIONS(1723), 1, + sym_file_descriptor, + ACTIONS(1971), 1, + anon_sym_DQUOTE, + ACTIONS(1973), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1975), 1, + anon_sym_BQUOTE, + ACTIONS(1977), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1983), 1, + sym__bare_dollar, + ACTIONS(2323), 1, + sym_test_operator, + STATE(503), 1, + aux_sym_command_repeat2, + STATE(1154), 1, + aux_sym__literal_repeat1, + STATE(1265), 1, + sym_concatenation, + ACTIONS(1967), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1979), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2321), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2319), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [5404] = 23, + STATE(945), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1721), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [5822] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1607), 1, - sym_file_descriptor, - ACTIONS(2199), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2202), 1, + ACTIONS(360), 1, anon_sym_DOLLAR, - ACTIONS(2205), 1, + ACTIONS(362), 1, sym__special_character, - ACTIONS(2208), 1, - anon_sym_DQUOTE, - ACTIONS(2211), 1, + ACTIONS(368), 1, aux_sym_number_token1, - ACTIONS(2214), 1, + ACTIONS(370), 1, aux_sym_number_token2, - ACTIONS(2217), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2220), 1, + ACTIONS(374), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2223), 1, - anon_sym_BQUOTE, - ACTIONS(2226), 1, + ACTIONS(388), 1, + sym__brace_start, + ACTIONS(1607), 1, + sym_file_descriptor, + ACTIONS(1971), 1, + anon_sym_DQUOTE, + ACTIONS(1973), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1977), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2232), 1, - sym_test_operator, - ACTIONS(2235), 1, + ACTIONS(1983), 1, sym__bare_dollar, - ACTIONS(2238), 1, - sym__brace_start, - STATE(492), 1, + ACTIONS(2323), 1, + sym_test_operator, + STATE(503), 1, aux_sym_command_repeat2, - STATE(1038), 1, + STATE(1154), 1, aux_sym__literal_repeat1, - STATE(1256), 1, + STATE(1265), 1, sym_concatenation, - ACTIONS(2196), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2229), 2, + ACTIONS(1967), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1979), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2193), 3, + ACTIONS(2321), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2319), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(831), 9, + STATE(945), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -60398,8 +62260,53 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1566), 20, + ACTIONS(1591), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [5921] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1523), 1, + anon_sym_DQUOTE, + STATE(802), 1, + sym_string, + ACTIONS(2373), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1217), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(2371), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -60407,9 +62314,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -60417,56 +62326,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [5505] = 23, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [5990] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(382), 1, + ACTIONS(360), 1, anon_sym_DOLLAR, - ACTIONS(390), 1, + ACTIONS(362), 1, + sym__special_character, + ACTIONS(368), 1, aux_sym_number_token1, - ACTIONS(392), 1, + ACTIONS(370), 1, aux_sym_number_token2, - ACTIONS(396), 1, + ACTIONS(374), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(410), 1, + ACTIONS(388), 1, sym__brace_start, - ACTIONS(801), 1, - sym__special_character, - ACTIONS(1523), 1, + ACTIONS(1719), 1, sym_file_descriptor, - ACTIONS(2081), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2083), 1, + ACTIONS(1971), 1, anon_sym_DQUOTE, - ACTIONS(2085), 1, + ACTIONS(1973), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2087), 1, + ACTIONS(1975), 1, anon_sym_BQUOTE, - ACTIONS(2089), 1, + ACTIONS(1977), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2093), 1, - sym_test_operator, - ACTIONS(2095), 1, + ACTIONS(1983), 1, sym__bare_dollar, - STATE(492), 1, + ACTIONS(2323), 1, + sym_test_operator, + STATE(505), 1, aux_sym_command_repeat2, - STATE(1038), 1, + STATE(1154), 1, aux_sym__literal_repeat1, - STATE(1256), 1, + STATE(1265), 1, sym_concatenation, - ACTIONS(2079), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2091), 2, + ACTIONS(1967), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1979), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2077), 3, + ACTIONS(2321), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2319), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(831), 9, + STATE(945), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -60476,8 +62401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1505), 20, - anon_sym_LF, + ACTIONS(1717), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -60485,7 +62409,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -60495,54 +62418,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [5606] = 22, + [6091] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(382), 1, + ACTIONS(360), 1, anon_sym_DOLLAR, - ACTIONS(384), 1, + ACTIONS(362), 1, sym__special_character, - ACTIONS(390), 1, + ACTIONS(368), 1, aux_sym_number_token1, - ACTIONS(392), 1, + ACTIONS(370), 1, aux_sym_number_token2, - ACTIONS(396), 1, + ACTIONS(374), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(410), 1, + ACTIONS(388), 1, sym__brace_start, - ACTIONS(1523), 1, + ACTIONS(1663), 1, sym_file_descriptor, - ACTIONS(2081), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2083), 1, + ACTIONS(1971), 1, anon_sym_DQUOTE, - ACTIONS(2085), 1, + ACTIONS(1973), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2089), 1, + ACTIONS(1977), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2095), 1, + ACTIONS(1983), 1, sym__bare_dollar, - ACTIONS(2245), 1, + ACTIONS(2323), 1, sym_test_operator, - STATE(500), 1, + STATE(506), 1, aux_sym_command_repeat2, - STATE(1038), 1, + STATE(1154), 1, aux_sym__literal_repeat1, - STATE(1256), 1, + STATE(1265), 1, sym_concatenation, - ACTIONS(2091), 2, + ACTIONS(1967), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1979), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2243), 2, + ACTIONS(2321), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2241), 3, + ACTIONS(2319), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(968), 9, + STATE(945), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -60552,8 +62477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1505), 20, - anon_sym_LF, + ACTIONS(1661), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -60570,35 +62494,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [5704] = 7, + [6190] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2015), 1, + sym_file_descriptor, + ACTIONS(2379), 1, + anon_sym_DOLLAR, + ACTIONS(2381), 1, + sym__special_character, + ACTIONS(2383), 1, anon_sym_DQUOTE, - STATE(901), 1, - sym_string, - ACTIONS(2251), 2, + ACTIONS(2385), 1, + aux_sym_number_token1, + ACTIONS(2387), 1, + aux_sym_number_token2, + ACTIONS(2389), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2391), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2393), 1, + anon_sym_BQUOTE, + ACTIONS(2395), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2399), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + ACTIONS(2401), 1, + sym_test_operator, + ACTIONS(2403), 1, + sym__brace_start, + STATE(1226), 1, + aux_sym__literal_repeat1, + ACTIONS(2377), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2397), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(504), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2375), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(936), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1989), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [6287] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1204), 1, + aux_sym__literal_repeat1, + STATE(489), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2051), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(2247), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 36, - anon_sym_LF, + STATE(942), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2049), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -60606,7 +62605,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -60618,10 +62616,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -60634,22 +62635,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [5772] = 7, + [6354] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1937), 1, + ACTIONS(1523), 1, anon_sym_DQUOTE, - STATE(950), 1, + STATE(802), 1, sym_string, - ACTIONS(2255), 2, + ACTIONS(2373), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 4, + ACTIONS(1213), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2253), 9, + ACTIONS(2371), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -60659,26 +62659,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 35, - anon_sym_LF, + ACTIONS(1205), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -60695,21 +62697,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [5840] = 7, + [6423] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2083), 1, + ACTIONS(1971), 1, anon_sym_DQUOTE, - STATE(871), 1, + STATE(926), 1, sym_string, - ACTIONS(2259), 2, + ACTIONS(2369), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1221), 3, + ACTIONS(1217), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(2257), 9, + ACTIONS(2367), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -60719,8 +62721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 36, - anon_sym_LF, + ACTIONS(1215), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -60740,6 +62742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -60756,83 +62759,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [5908] = 8, - ACTIONS(63), 1, + [6492] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, - anon_sym_SEMI_SEMI, - ACTIONS(1927), 1, - sym__simple_heredoc_body, - ACTIONS(1929), 1, - sym__heredoc_body_beginning, - STATE(3884), 1, - sym_heredoc_body, - ACTIONS(1925), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(1921), 21, + STATE(1204), 1, + aux_sym__literal_repeat1, + STATE(489), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2047), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, + STATE(942), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2045), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(1919), 25, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - [5978] = 7, + sym_test_operator, + [6559] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2083), 1, + ACTIONS(2407), 1, anon_sym_DQUOTE, - STATE(871), 1, + STATE(873), 1, sym_string, - ACTIONS(2259), 2, + ACTIONS(2409), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + ACTIONS(1213), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(2257), 9, + ACTIONS(2405), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -60842,27 +62844,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 36, - anon_sym_LF, + ACTIONS(1205), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -60879,54 +62882,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [6046] = 23, + [6628] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1607), 1, + ACTIONS(2023), 1, sym_file_descriptor, - ACTIONS(2199), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2202), 1, + ACTIONS(2379), 1, anon_sym_DOLLAR, - ACTIONS(2208), 1, + ACTIONS(2381), 1, + sym__special_character, + ACTIONS(2383), 1, anon_sym_DQUOTE, - ACTIONS(2211), 1, + ACTIONS(2385), 1, aux_sym_number_token1, - ACTIONS(2214), 1, + ACTIONS(2387), 1, aux_sym_number_token2, - ACTIONS(2217), 1, + ACTIONS(2389), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2391), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2223), 1, + ACTIONS(2393), 1, anon_sym_BQUOTE, - ACTIONS(2226), 1, + ACTIONS(2395), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2235), 1, - sym__bare_dollar, - ACTIONS(2238), 1, - sym__brace_start, - ACTIONS(2267), 1, - sym__special_character, - ACTIONS(2270), 1, + ACTIONS(2401), 1, sym_test_operator, - STATE(500), 1, - aux_sym_command_repeat2, - STATE(1038), 1, + ACTIONS(2403), 1, + sym__brace_start, + ACTIONS(2411), 1, + aux_sym__simple_variable_name_token1, + STATE(1226), 1, aux_sym__literal_repeat1, - STATE(1256), 1, - sym_concatenation, - ACTIONS(2229), 2, + ACTIONS(2377), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2397), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2264), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2261), 3, + STATE(496), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2375), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(968), 9, + STATE(936), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -60936,8 +62936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1566), 19, - anon_sym_LF, + ACTIONS(2019), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -60947,6 +62946,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -60954,118 +62955,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [6146] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1927), 1, - sym__simple_heredoc_body, - ACTIONS(1929), 1, - sym__heredoc_body_beginning, - ACTIONS(2189), 1, - anon_sym_SEMI_SEMI, - STATE(3882), 1, - sym_heredoc_body, - ACTIONS(2191), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(1921), 21, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(1919), 25, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [6216] = 23, + [6725] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(382), 1, + ACTIONS(1709), 1, + sym_file_descriptor, + ACTIONS(2108), 1, anon_sym_DOLLAR, - ACTIONS(384), 1, - sym__special_character, - ACTIONS(390), 1, + ACTIONS(2114), 1, + anon_sym_DQUOTE, + ACTIONS(2117), 1, aux_sym_number_token1, - ACTIONS(392), 1, + ACTIONS(2120), 1, aux_sym_number_token2, - ACTIONS(396), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(410), 1, - sym__brace_start, - ACTIONS(1617), 1, - sym_file_descriptor, - ACTIONS(2081), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2083), 1, - anon_sym_DQUOTE, - ACTIONS(2085), 1, + ACTIONS(2123), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2087), 1, + ACTIONS(2126), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2129), 1, anon_sym_BQUOTE, - ACTIONS(2089), 1, + ACTIONS(2132), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2095), 1, + ACTIONS(2141), 1, sym__bare_dollar, - ACTIONS(2245), 1, + ACTIONS(2144), 1, + sym__brace_start, + ACTIONS(2419), 1, + sym__special_character, + ACTIONS(2422), 1, sym_test_operator, - STATE(500), 1, + STATE(503), 1, aux_sym_command_repeat2, - STATE(1038), 1, + STATE(1154), 1, aux_sym__literal_repeat1, - STATE(1256), 1, + STATE(1265), 1, sym_concatenation, - ACTIONS(2091), 2, + ACTIONS(2102), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2243), 2, + ACTIONS(2416), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2241), 3, + ACTIONS(2413), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(968), 9, + STATE(945), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -61075,8 +63016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1615), 19, - anon_sym_LF, + ACTIONS(1671), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61093,52 +63033,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [6316] = 21, + [6826] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1995), 1, + ACTIONS(2268), 1, sym_file_descriptor, - ACTIONS(2276), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2279), 1, + ACTIONS(2431), 1, anon_sym_DOLLAR, - ACTIONS(2282), 1, + ACTIONS(2434), 1, sym__special_character, - ACTIONS(2285), 1, + ACTIONS(2437), 1, anon_sym_DQUOTE, - ACTIONS(2288), 1, + ACTIONS(2440), 1, aux_sym_number_token1, - ACTIONS(2291), 1, + ACTIONS(2443), 1, aux_sym_number_token2, - ACTIONS(2294), 1, + ACTIONS(2446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2297), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2300), 1, + ACTIONS(2452), 1, anon_sym_BQUOTE, - ACTIONS(2303), 1, + ACTIONS(2455), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2309), 1, + ACTIONS(2461), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2312), 1, + ACTIONS(2464), 1, sym_test_operator, - ACTIONS(2315), 1, + ACTIONS(2467), 1, sym__brace_start, - STATE(1224), 1, + STATE(1226), 1, aux_sym__literal_repeat1, - ACTIONS(2306), 2, + ACTIONS(2428), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2458), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(503), 2, + STATE(504), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2273), 3, + ACTIONS(2425), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(907), 9, + STATE(936), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -61148,8 +63090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1954), 21, - anon_sym_LF, + ACTIONS(2230), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61168,52 +63109,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [6412] = 21, + [6923] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2187), 1, - sym_file_descriptor, - ACTIONS(2320), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2322), 1, + ACTIONS(360), 1, anon_sym_DOLLAR, - ACTIONS(2324), 1, + ACTIONS(362), 1, sym__special_character, - ACTIONS(2326), 1, - anon_sym_DQUOTE, - ACTIONS(2328), 1, + ACTIONS(368), 1, aux_sym_number_token1, - ACTIONS(2330), 1, + ACTIONS(370), 1, aux_sym_number_token2, - ACTIONS(2332), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2334), 1, + ACTIONS(374), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2336), 1, + ACTIONS(388), 1, + sym__brace_start, + ACTIONS(1607), 1, + sym_file_descriptor, + ACTIONS(1971), 1, + anon_sym_DQUOTE, + ACTIONS(1973), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1975), 1, anon_sym_BQUOTE, - ACTIONS(2338), 1, + ACTIONS(1977), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2342), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2344), 1, + ACTIONS(1983), 1, + sym__bare_dollar, + ACTIONS(2323), 1, sym_test_operator, - ACTIONS(2346), 1, - sym__brace_start, - STATE(1224), 1, + STATE(503), 1, + aux_sym_command_repeat2, + STATE(1154), 1, aux_sym__literal_repeat1, - ACTIONS(2340), 2, + STATE(1265), 1, + sym_concatenation, + ACTIONS(1967), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1979), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(513), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2318), 3, + ACTIONS(2321), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2319), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(907), 9, + STATE(945), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -61223,8 +63170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2183), 21, - anon_sym_LF, + ACTIONS(1591), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61234,8 +63180,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -61243,56 +63187,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [6508] = 23, + [7024] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(382), 1, + ACTIONS(360), 1, anon_sym_DOLLAR, - ACTIONS(384), 1, + ACTIONS(362), 1, sym__special_character, - ACTIONS(390), 1, + ACTIONS(368), 1, aux_sym_number_token1, - ACTIONS(392), 1, + ACTIONS(370), 1, aux_sym_number_token2, - ACTIONS(396), 1, + ACTIONS(374), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(410), 1, + ACTIONS(388), 1, sym__brace_start, - ACTIONS(1623), 1, + ACTIONS(1723), 1, sym_file_descriptor, - ACTIONS(2081), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2083), 1, + ACTIONS(1971), 1, anon_sym_DQUOTE, - ACTIONS(2085), 1, + ACTIONS(1973), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2087), 1, - anon_sym_BQUOTE, - ACTIONS(2089), 1, + ACTIONS(1977), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2095), 1, + ACTIONS(1983), 1, sym__bare_dollar, - ACTIONS(2245), 1, + ACTIONS(2323), 1, sym_test_operator, - STATE(507), 1, + STATE(503), 1, aux_sym_command_repeat2, - STATE(1038), 1, + STATE(1154), 1, aux_sym__literal_repeat1, - STATE(1256), 1, + STATE(1265), 1, sym_concatenation, - ACTIONS(2091), 2, + ACTIONS(1967), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1979), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2243), 2, + ACTIONS(2321), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2241), 3, + ACTIONS(2319), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(968), 9, + STATE(945), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -61302,8 +63246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1621), 19, - anon_sym_LF, + ACTIONS(1721), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61320,50 +63263,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [6608] = 20, + anon_sym_BQUOTE, + [7123] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2002), 1, + ACTIONS(2051), 1, sym_file_descriptor, - ACTIONS(2350), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2352), 1, + ACTIONS(2474), 1, anon_sym_DOLLAR, - ACTIONS(2354), 1, + ACTIONS(2476), 1, sym__special_character, - ACTIONS(2356), 1, + ACTIONS(2478), 1, anon_sym_DQUOTE, - ACTIONS(2358), 1, + ACTIONS(2480), 1, aux_sym_number_token1, - ACTIONS(2360), 1, + ACTIONS(2482), 1, aux_sym_number_token2, - ACTIONS(2362), 1, + ACTIONS(2484), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2364), 1, + ACTIONS(2486), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2366), 1, + ACTIONS(2488), 1, anon_sym_BQUOTE, - ACTIONS(2368), 1, + ACTIONS(2490), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2372), 1, + ACTIONS(2494), 1, sym_test_operator, - ACTIONS(2374), 1, + ACTIONS(2496), 1, sym__brace_start, - STATE(1247), 1, + STATE(1254), 1, aux_sym__literal_repeat1, - ACTIONS(2370), 2, + ACTIONS(2472), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2492), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(511), 2, + STATE(486), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2348), 3, + ACTIONS(2470), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(932), 9, + STATE(913), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -61373,8 +63319,55 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2000), 22, + ACTIONS(2049), 22, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [7218] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2407), 1, + anon_sym_DQUOTE, + STATE(873), 1, + sym_string, + ACTIONS(2409), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1217), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(2405), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61394,56 +63387,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [6702] = 23, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [7287] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(382), 1, + ACTIONS(360), 1, anon_sym_DOLLAR, - ACTIONS(384), 1, + ACTIONS(362), 1, sym__special_character, - ACTIONS(390), 1, + ACTIONS(368), 1, aux_sym_number_token1, - ACTIONS(392), 1, + ACTIONS(370), 1, aux_sym_number_token2, - ACTIONS(396), 1, + ACTIONS(374), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(410), 1, + ACTIONS(388), 1, sym__brace_start, - ACTIONS(1523), 1, + ACTIONS(1719), 1, sym_file_descriptor, - ACTIONS(2081), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2083), 1, + ACTIONS(1971), 1, anon_sym_DQUOTE, - ACTIONS(2085), 1, + ACTIONS(1973), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2087), 1, - anon_sym_BQUOTE, - ACTIONS(2089), 1, + ACTIONS(1977), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2095), 1, + ACTIONS(1983), 1, sym__bare_dollar, - ACTIONS(2245), 1, + ACTIONS(2323), 1, sym_test_operator, - STATE(500), 1, + STATE(492), 1, aux_sym_command_repeat2, - STATE(1038), 1, + STATE(1154), 1, aux_sym__literal_repeat1, - STATE(1256), 1, + STATE(1265), 1, sym_concatenation, - ACTIONS(2091), 2, + ACTIONS(1967), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1979), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2243), 2, + ACTIONS(2321), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2241), 3, + ACTIONS(2319), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(968), 9, + STATE(945), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -61453,8 +63460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1505), 19, - anon_sym_LF, + ACTIONS(1717), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61471,21 +63477,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [6802] = 6, + anon_sym_BQUOTE, + [7386] = 20, ACTIONS(3), 1, sym_comment, - STATE(1222), 1, + ACTIONS(2047), 1, + sym_file_descriptor, + ACTIONS(2474), 1, + anon_sym_DOLLAR, + ACTIONS(2476), 1, + sym__special_character, + ACTIONS(2478), 1, + anon_sym_DQUOTE, + ACTIONS(2480), 1, + aux_sym_number_token1, + ACTIONS(2482), 1, + aux_sym_number_token2, + ACTIONS(2484), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2486), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2488), 1, + anon_sym_BQUOTE, + ACTIONS(2490), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2494), 1, + sym_test_operator, + ACTIONS(2496), 1, + sym__brace_start, + STATE(1254), 1, aux_sym__literal_repeat1, - STATE(518), 2, + ACTIONS(2472), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2492), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(486), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2006), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - STATE(903), 9, + ACTIONS(2470), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(913), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -61495,8 +63533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2004), 37, - anon_sym_LF, + ACTIONS(2045), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61504,6 +63541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -61515,40 +63553,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [6868] = 7, + [7481] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1937), 1, + ACTIONS(2031), 1, anon_sym_DQUOTE, - STATE(950), 1, + STATE(1008), 1, sym_string, - ACTIONS(2255), 2, + ACTIONS(2317), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1221), 4, + ACTIONS(1217), 4, sym_file_descriptor, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(2253), 9, + ACTIONS(2315), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -61558,8 +63581,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 35, - anon_sym_LF, + ACTIONS(1215), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -61578,70 +63601,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [6936] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1222), 1, - aux_sym__literal_repeat1, - STATE(518), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2002), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - STATE(903), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2000), 37, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -61654,48 +63618,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [7002] = 20, + [7550] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 1, + ACTIONS(2015), 1, sym_file_descriptor, - ACTIONS(2379), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2382), 1, + ACTIONS(2502), 1, anon_sym_DOLLAR, - ACTIONS(2385), 1, + ACTIONS(2504), 1, sym__special_character, - ACTIONS(2388), 1, + ACTIONS(2506), 1, anon_sym_DQUOTE, - ACTIONS(2391), 1, + ACTIONS(2508), 1, aux_sym_number_token1, - ACTIONS(2394), 1, + ACTIONS(2510), 1, aux_sym_number_token2, - ACTIONS(2397), 1, + ACTIONS(2512), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2400), 1, + ACTIONS(2514), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2403), 1, + ACTIONS(2516), 1, anon_sym_BQUOTE, - ACTIONS(2406), 1, + ACTIONS(2518), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2412), 1, + ACTIONS(2522), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2524), 1, sym_test_operator, - ACTIONS(2415), 1, + ACTIONS(2526), 1, sym__brace_start, - STATE(1247), 1, + STATE(1390), 1, aux_sym__literal_repeat1, - ACTIONS(2409), 2, + ACTIONS(2500), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2520), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(511), 2, + STATE(514), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2376), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2498), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(932), 9, + STATE(1135), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -61705,8 +63672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2015), 22, - anon_sym_LF, + ACTIONS(1989), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61714,11 +63680,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -61726,54 +63690,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [7096] = 22, + [7646] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(382), 1, + ACTIONS(2532), 1, anon_sym_DOLLAR, - ACTIONS(384), 1, + ACTIONS(2534), 1, sym__special_character, - ACTIONS(390), 1, + ACTIONS(2536), 1, + anon_sym_DQUOTE, + ACTIONS(2538), 1, aux_sym_number_token1, - ACTIONS(392), 1, + ACTIONS(2540), 1, aux_sym_number_token2, - ACTIONS(396), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(410), 1, - sym__brace_start, - ACTIONS(1529), 1, - sym_file_descriptor, - ACTIONS(2081), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2083), 1, - anon_sym_DQUOTE, - ACTIONS(2085), 1, + ACTIONS(2542), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2089), 1, + ACTIONS(2544), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2546), 1, + anon_sym_BQUOTE, + ACTIONS(2548), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2095), 1, - sym__bare_dollar, - ACTIONS(2245), 1, + ACTIONS(2552), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2554), 1, sym_test_operator, - STATE(520), 1, - aux_sym_command_repeat2, - STATE(1038), 1, + ACTIONS(2556), 1, + sym__brace_start, + STATE(1421), 1, aux_sym__literal_repeat1, - STATE(1256), 1, - sym_concatenation, - ACTIONS(2091), 2, + ACTIONS(2023), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(2530), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2550), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2243), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2241), 3, + STATE(527), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2528), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(968), 9, + STATE(1091), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -61783,8 +63748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1527), 20, - anon_sym_LF, + ACTIONS(2019), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61801,53 +63765,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [7194] = 21, + [7742] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 1, + ACTIONS(2268), 1, sym_file_descriptor, - ACTIONS(2320), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2322), 1, + ACTIONS(2564), 1, anon_sym_DOLLAR, - ACTIONS(2324), 1, + ACTIONS(2567), 1, sym__special_character, - ACTIONS(2326), 1, + ACTIONS(2570), 1, anon_sym_DQUOTE, - ACTIONS(2328), 1, + ACTIONS(2573), 1, aux_sym_number_token1, - ACTIONS(2330), 1, + ACTIONS(2576), 1, aux_sym_number_token2, - ACTIONS(2332), 1, + ACTIONS(2579), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2334), 1, + ACTIONS(2582), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2336), 1, + ACTIONS(2585), 1, anon_sym_BQUOTE, - ACTIONS(2338), 1, + ACTIONS(2588), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2344), 1, + ACTIONS(2594), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2597), 1, sym_test_operator, - ACTIONS(2346), 1, + ACTIONS(2600), 1, sym__brace_start, - ACTIONS(2418), 1, - aux_sym__simple_variable_name_token1, - STATE(1224), 1, + STATE(1390), 1, aux_sym__literal_repeat1, - ACTIONS(2340), 2, + ACTIONS(2561), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2591), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(503), 2, + STATE(514), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2318), 3, + ACTIONS(2558), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(907), 9, + STATE(1135), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -61857,8 +63822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2103), 21, - anon_sym_LF, + ACTIONS(2230), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61866,10 +63830,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -61877,23 +63840,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [7290] = 7, + [7838] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1471), 1, + ACTIONS(1563), 1, anon_sym_DQUOTE, - STATE(788), 1, + STATE(960), 1, sym_string, - ACTIONS(2422), 2, + ACTIONS(2605), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1217), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(2420), 9, + ACTIONS(2603), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -61903,8 +63867,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 36, - anon_sym_LF, + ACTIONS(1215), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61912,7 +63876,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -61924,6 +63887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -61940,95 +63904,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [7358] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2006), 1, - sym_file_descriptor, - ACTIONS(2350), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2352), 1, - anon_sym_DOLLAR, - ACTIONS(2354), 1, - sym__special_character, - ACTIONS(2356), 1, - anon_sym_DQUOTE, - ACTIONS(2358), 1, - aux_sym_number_token1, - ACTIONS(2360), 1, - aux_sym_number_token2, - ACTIONS(2362), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2364), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2366), 1, - anon_sym_BQUOTE, - ACTIONS(2368), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2372), 1, - sym_test_operator, - ACTIONS(2374), 1, - sym__brace_start, - STATE(1247), 1, - aux_sym__literal_repeat1, - ACTIONS(2370), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(511), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2348), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(932), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2004), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [7452] = 7, + [7906] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1471), 1, + ACTIONS(2609), 1, anon_sym_DQUOTE, - STATE(788), 1, + STATE(1190), 1, sym_string, - ACTIONS(2422), 2, + ACTIONS(2611), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1221), 3, + ACTIONS(1213), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(2420), 9, + ACTIONS(2607), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -62038,8 +63928,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 36, - anon_sym_LF, + ACTIONS(1205), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -62047,7 +63937,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -62059,6 +63948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -62075,52 +63965,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [7520] = 22, + [7974] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(382), 1, - anon_sym_DOLLAR, - ACTIONS(384), 1, - sym__special_character, - ACTIONS(390), 1, - aux_sym_number_token1, - ACTIONS(392), 1, - aux_sym_number_token2, - ACTIONS(396), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(410), 1, - sym__brace_start, - ACTIONS(1623), 1, - sym_file_descriptor, - ACTIONS(2081), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2083), 1, - anon_sym_DQUOTE, - ACTIONS(2085), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2089), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2095), 1, - sym__bare_dollar, - ACTIONS(2245), 1, - sym_test_operator, - STATE(494), 1, - aux_sym_command_repeat2, - STATE(1038), 1, + STATE(1438), 1, aux_sym__literal_repeat1, - STATE(1256), 1, + STATE(518), 2, sym_concatenation, - ACTIONS(2091), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2243), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2241), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(968), 9, + aux_sym_for_statement_repeat1, + ACTIONS(2051), 4, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ts_builtin_sym_end, + STATE(1129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -62130,8 +63988,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1621), 20, - anon_sym_LF, + ACTIONS(2049), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -62148,52 +64006,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [7618] = 20, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [8040] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2430), 1, + ACTIONS(2619), 1, anon_sym_DOLLAR, - ACTIONS(2433), 1, + ACTIONS(2622), 1, sym__special_character, - ACTIONS(2436), 1, + ACTIONS(2625), 1, anon_sym_DQUOTE, - ACTIONS(2439), 1, + ACTIONS(2628), 1, aux_sym_number_token1, - ACTIONS(2442), 1, + ACTIONS(2631), 1, aux_sym_number_token2, - ACTIONS(2445), 1, + ACTIONS(2634), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2448), 1, + ACTIONS(2637), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2451), 1, + ACTIONS(2640), 1, anon_sym_BQUOTE, - ACTIONS(2454), 1, + ACTIONS(2643), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2460), 1, + ACTIONS(2649), 1, sym_test_operator, - ACTIONS(2463), 1, + ACTIONS(2652), 1, sym__brace_start, - STATE(1222), 1, + STATE(1438), 1, aux_sym__literal_repeat1, - ACTIONS(2053), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(2457), 2, + ACTIONS(2616), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2646), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, STATE(518), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2424), 3, + ACTIONS(2094), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(2613), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(903), 9, + STATE(1129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -62203,8 +64079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2015), 21, - anon_sym_LF, + ACTIONS(2059), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -62214,8 +64089,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -62223,34 +64096,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [7712] = 7, + [8134] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_DQUOTE, - STATE(901), 1, - sym_string, - ACTIONS(2251), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1221), 3, + STATE(1443), 1, + aux_sym__literal_repeat1, + STATE(523), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2051), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(2247), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 36, - anon_sym_LF, + STATE(1122), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2049), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -62258,11 +64130,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -62270,10 +64140,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -62286,52 +64159,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [7780] = 22, + [8200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(382), 1, - anon_sym_DOLLAR, - ACTIONS(384), 1, - sym__special_character, - ACTIONS(390), 1, - aux_sym_number_token1, - ACTIONS(392), 1, - aux_sym_number_token2, - ACTIONS(396), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(410), 1, - sym__brace_start, - ACTIONS(1617), 1, - sym_file_descriptor, - ACTIONS(2081), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2083), 1, - anon_sym_DQUOTE, - ACTIONS(2085), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2089), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2095), 1, - sym__bare_dollar, - ACTIONS(2245), 1, - sym_test_operator, - STATE(500), 1, - aux_sym_command_repeat2, - STATE(1038), 1, + STATE(1438), 1, aux_sym__literal_repeat1, - STATE(1256), 1, + STATE(518), 2, sym_concatenation, - ACTIONS(2091), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2243), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2241), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(968), 9, + aux_sym_for_statement_repeat1, + ACTIONS(2047), 4, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ts_builtin_sym_end, + STATE(1129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -62341,8 +64182,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1615), 20, - anon_sym_LF, + ACTIONS(2045), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -62359,128 +64200,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [7878] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(382), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - ACTIONS(384), 1, sym__special_character, - ACTIONS(390), 1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(392), 1, aux_sym_number_token2, - ACTIONS(396), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(410), 1, - sym__brace_start, - ACTIONS(1529), 1, - sym_file_descriptor, - ACTIONS(2081), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2083), 1, - anon_sym_DQUOTE, - ACTIONS(2085), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2087), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(2089), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2095), 1, - sym__bare_dollar, - ACTIONS(2245), 1, - sym_test_operator, - STATE(502), 1, - aux_sym_command_repeat2, - STATE(1038), 1, - aux_sym__literal_repeat1, - STATE(1256), 1, - sym_concatenation, - ACTIONS(2091), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2243), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2241), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(968), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1527), 19, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [7978] = 20, + sym_test_operator, + [8266] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2002), 1, + ACTIONS(2094), 1, sym_file_descriptor, - ACTIONS(2468), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2470), 1, + ACTIONS(2661), 1, anon_sym_DOLLAR, - ACTIONS(2472), 1, + ACTIONS(2664), 1, sym__special_character, - ACTIONS(2474), 1, + ACTIONS(2667), 1, anon_sym_DQUOTE, - ACTIONS(2476), 1, + ACTIONS(2670), 1, aux_sym_number_token1, - ACTIONS(2478), 1, + ACTIONS(2673), 1, aux_sym_number_token2, - ACTIONS(2480), 1, + ACTIONS(2676), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2482), 1, + ACTIONS(2679), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2484), 1, + ACTIONS(2682), 1, anon_sym_BQUOTE, - ACTIONS(2486), 1, + ACTIONS(2685), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2490), 1, + ACTIONS(2691), 1, sym_test_operator, - ACTIONS(2492), 1, + ACTIONS(2694), 1, sym__brace_start, - STATE(1340), 1, + STATE(1386), 1, aux_sym__literal_repeat1, - ACTIONS(2488), 2, + ACTIONS(2658), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2688), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(546), 2, + STATE(521), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2466), 3, + ACTIONS(2655), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1176), 9, + STATE(1179), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -62490,8 +64271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2000), 21, - anon_sym_LF, + ACTIONS(2059), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -62510,53 +64290,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [8071] = 21, + [8360] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2496), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2498), 1, + ACTIONS(2051), 1, + sym_file_descriptor, + ACTIONS(2701), 1, anon_sym_DOLLAR, - ACTIONS(2500), 1, + ACTIONS(2703), 1, sym__special_character, - ACTIONS(2502), 1, + ACTIONS(2705), 1, anon_sym_DQUOTE, - ACTIONS(2504), 1, + ACTIONS(2707), 1, aux_sym_number_token1, - ACTIONS(2506), 1, + ACTIONS(2709), 1, aux_sym_number_token2, - ACTIONS(2508), 1, + ACTIONS(2711), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2510), 1, + ACTIONS(2713), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2512), 1, + ACTIONS(2715), 1, anon_sym_BQUOTE, - ACTIONS(2514), 1, + ACTIONS(2717), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2518), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2520), 1, + ACTIONS(2721), 1, sym_test_operator, - ACTIONS(2522), 1, + ACTIONS(2723), 1, sym__brace_start, - STATE(1350), 1, + STATE(1386), 1, aux_sym__literal_repeat1, - ACTIONS(2187), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2516), 2, + ACTIONS(2699), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2719), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(544), 2, + STATE(521), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2494), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2697), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1121), 9, + STATE(1179), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -62566,8 +64345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2183), 19, - anon_sym_LF, + ACTIONS(2049), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -62577,6 +64355,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -62584,53 +64364,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [8166] = 21, + [8454] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2527), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2530), 1, + ACTIONS(2731), 1, anon_sym_DOLLAR, - ACTIONS(2533), 1, + ACTIONS(2734), 1, sym__special_character, - ACTIONS(2536), 1, + ACTIONS(2737), 1, anon_sym_DQUOTE, - ACTIONS(2539), 1, + ACTIONS(2740), 1, aux_sym_number_token1, - ACTIONS(2542), 1, + ACTIONS(2743), 1, aux_sym_number_token2, - ACTIONS(2545), 1, + ACTIONS(2746), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2548), 1, + ACTIONS(2749), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2551), 1, + ACTIONS(2752), 1, anon_sym_BQUOTE, - ACTIONS(2554), 1, + ACTIONS(2755), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2560), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2563), 1, + ACTIONS(2761), 1, sym_test_operator, - ACTIONS(2566), 1, + ACTIONS(2764), 1, sym__brace_start, - STATE(1350), 1, + STATE(1443), 1, aux_sym__literal_repeat1, - ACTIONS(1995), 2, + ACTIONS(2094), 2, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2557), 2, + sym_variable_name, + ACTIONS(2728), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2758), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(524), 2, + STATE(523), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2524), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2725), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1121), 9, + STATE(1122), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -62640,8 +64420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1954), 19, - anon_sym_LF, + ACTIONS(2059), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -62649,6 +64428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -62658,23 +64438,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [8261] = 7, + [8548] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2571), 1, + ACTIONS(1995), 1, anon_sym_DQUOTE, - STATE(1167), 1, + STATE(878), 1, sym_string, - ACTIONS(2573), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1221), 3, + ACTIONS(1213), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(2569), 9, + ACTIONS(2769), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2767), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -62684,8 +64464,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 35, - anon_sym_LF, + ACTIONS(1205), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -62693,6 +64473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -62704,6 +64485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -62720,20 +64502,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [8328] = 7, + [8616] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2356), 1, + ACTIONS(1995), 1, anon_sym_DQUOTE, - STATE(1135), 1, + STATE(878), 1, sym_string, ACTIONS(1217), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(2577), 2, + ACTIONS(2769), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2575), 9, + ACTIONS(2767), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -62743,8 +64525,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 36, - anon_sym_LF, + ACTIONS(1215), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -62764,6 +64546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -62780,31 +64563,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [8395] = 7, + [8684] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2356), 1, - anon_sym_DQUOTE, - STATE(1135), 1, - sym_string, - ACTIONS(1221), 2, + ACTIONS(2047), 1, sym_file_descriptor, - sym__brace_start, - ACTIONS(2577), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2575), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(2701), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 36, - anon_sym_LF, + ACTIONS(2703), 1, + sym__special_character, + ACTIONS(2705), 1, + anon_sym_DQUOTE, + ACTIONS(2707), 1, + aux_sym_number_token1, + ACTIONS(2709), 1, + aux_sym_number_token2, + ACTIONS(2711), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2713), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2715), 1, + anon_sym_BQUOTE, + ACTIONS(2717), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2721), 1, + sym_test_operator, + ACTIONS(2723), 1, + sym__brace_start, + STATE(1386), 1, + aux_sym__literal_repeat1, + ACTIONS(2699), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2719), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(521), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2697), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1179), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2045), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -62812,7 +64623,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -62824,65 +64634,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [8462] = 20, + [8778] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2585), 1, + ACTIONS(2532), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2534), 1, sym__special_character, - ACTIONS(2591), 1, + ACTIONS(2536), 1, anon_sym_DQUOTE, - ACTIONS(2594), 1, + ACTIONS(2538), 1, aux_sym_number_token1, - ACTIONS(2597), 1, + ACTIONS(2540), 1, aux_sym_number_token2, - ACTIONS(2600), 1, + ACTIONS(2542), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2603), 1, + ACTIONS(2544), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2546), 1, anon_sym_BQUOTE, - ACTIONS(2609), 1, + ACTIONS(2548), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2615), 1, + ACTIONS(2554), 1, sym_test_operator, - ACTIONS(2618), 1, + ACTIONS(2556), 1, sym__brace_start, - STATE(1380), 1, + ACTIONS(2771), 1, + aux_sym__simple_variable_name_token1, + STATE(1421), 1, aux_sym__literal_repeat1, - ACTIONS(2053), 2, + ACTIONS(2015), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(2612), 2, + ts_builtin_sym_end, + ACTIONS(2530), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2550), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(528), 2, + STATE(536), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2579), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2528), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1173), 9, + STATE(1091), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -62892,8 +64692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2015), 20, - anon_sym_LF, + ACTIONS(1989), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -62901,7 +64700,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -62911,22 +64709,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [8555] = 7, + [8874] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2111), 1, + ACTIONS(2609), 1, anon_sym_DQUOTE, - STATE(1016), 1, + STATE(1190), 1, sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2623), 2, + ACTIONS(2611), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2621), 9, + ACTIONS(1217), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(2607), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -62936,8 +64736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 36, - anon_sym_LF, + ACTIONS(1215), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -62945,7 +64745,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -62957,6 +64756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -62973,62 +64773,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [8622] = 20, + [8942] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2628), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2631), 1, - anon_sym_DOLLAR, - ACTIONS(2634), 1, - sym__special_character, - ACTIONS(2637), 1, + ACTIONS(1971), 1, anon_sym_DQUOTE, - ACTIONS(2640), 1, - aux_sym_number_token1, - ACTIONS(2643), 1, - aux_sym_number_token2, - ACTIONS(2646), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2649), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2652), 1, - anon_sym_BQUOTE, - ACTIONS(2655), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2661), 1, - sym_test_operator, - ACTIONS(2664), 1, - sym__brace_start, - STATE(1377), 1, - aux_sym__literal_repeat1, - ACTIONS(2658), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(530), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2053), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(2625), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1113), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(926), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2015), 19, - anon_sym_LF, + ACTIONS(2369), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1213), 3, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ACTIONS(2367), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -63038,27 +64810,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [8715] = 6, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [9010] = 6, ACTIONS(3), 1, sym_comment, - STATE(1380), 1, + STATE(1443), 1, aux_sym__literal_repeat1, - STATE(528), 2, + STATE(523), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2006), 3, + ACTIONS(2047), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - STATE(1173), 9, + STATE(1122), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63068,8 +64856,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2004), 36, - anon_sym_LF, + ACTIONS(2045), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -63087,6 +64875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -63105,31 +64894,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [8780] = 6, + [9076] = 7, ACTIONS(3), 1, sym_comment, - STATE(1377), 1, - aux_sym__literal_repeat1, - STATE(530), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2006), 4, + ACTIONS(2478), 1, + anon_sym_DQUOTE, + STATE(1047), 1, + sym_string, + ACTIONS(1213), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - STATE(1113), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2004), 35, - anon_sym_LF, + ACTIONS(2775), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2773), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -63137,8 +64926,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -63146,12 +64938,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -63164,21 +64955,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [8845] = 7, + [9144] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1539), 1, + ACTIONS(2023), 1, + sym_file_descriptor, + ACTIONS(2502), 1, + anon_sym_DOLLAR, + ACTIONS(2504), 1, + sym__special_character, + ACTIONS(2506), 1, anon_sym_DQUOTE, - STATE(937), 1, + ACTIONS(2508), 1, + aux_sym_number_token1, + ACTIONS(2510), 1, + aux_sym_number_token2, + ACTIONS(2512), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2514), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2516), 1, + anon_sym_BQUOTE, + ACTIONS(2518), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2524), 1, + sym_test_operator, + ACTIONS(2526), 1, + sym__brace_start, + ACTIONS(2777), 1, + aux_sym__simple_variable_name_token1, + STATE(1390), 1, + aux_sym__literal_repeat1, + ACTIONS(2500), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2520), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(512), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2498), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1135), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2019), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [9240] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1971), 1, + anon_sym_DQUOTE, + STATE(926), 1, sym_string, - ACTIONS(2669), 2, + ACTIONS(2369), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1221), 3, + ACTIONS(1217), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(2667), 9, + ACTIONS(2367), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -63188,9 +65054,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 35, - anon_sym_LF, + ACTIONS(1215), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -63199,15 +65066,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -63224,20 +65091,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [8912] = 7, + [9308] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2111), 1, + ACTIONS(2478), 1, anon_sym_DQUOTE, - STATE(1016), 1, + STATE(1047), 1, sym_string, - ACTIONS(1221), 2, + ACTIONS(1217), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(2623), 2, + ACTIONS(2775), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2621), 9, + ACTIONS(2773), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -63247,8 +65114,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 36, - anon_sym_LF, + ACTIONS(1215), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -63268,6 +65135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -63284,21 +65152,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [8979] = 7, + [9376] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1539), 1, + ACTIONS(1563), 1, anon_sym_DQUOTE, - STATE(937), 1, + STATE(960), 1, sym_string, - ACTIONS(2669), 2, + ACTIONS(2605), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + ACTIONS(1213), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(2667), 9, + ACTIONS(2603), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -63308,8 +65176,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 35, - anon_sym_LF, + ACTIONS(1205), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -63328,6 +65196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -63344,19 +65213,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [9046] = 6, + [9444] = 21, ACTIONS(3), 1, sym_comment, - STATE(1380), 1, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2788), 1, + sym__special_character, + ACTIONS(2791), 1, + anon_sym_DQUOTE, + ACTIONS(2794), 1, + aux_sym_number_token1, + ACTIONS(2797), 1, + aux_sym_number_token2, + ACTIONS(2800), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2803), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2806), 1, + anon_sym_BQUOTE, + ACTIONS(2809), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2815), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2818), 1, + sym_test_operator, + ACTIONS(2821), 1, + sym__brace_start, + STATE(1421), 1, aux_sym__literal_repeat1, - STATE(528), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2002), 3, + ACTIONS(2268), 2, sym_file_descriptor, - sym_variable_name, - sym__brace_start, - STATE(1173), 9, + ts_builtin_sym_end, + ACTIONS(2782), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2812), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(536), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2779), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1091), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63366,8 +65268,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2000), 36, + ACTIONS(2230), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [9540] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2383), 1, + anon_sym_DQUOTE, + STATE(1105), 1, + sym_string, + ACTIONS(1217), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(2826), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2824), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -63375,9 +65320,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -63385,12 +65331,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -63403,50 +65348,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [9111] = 21, + [9607] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1995), 1, + ACTIONS(1505), 1, sym_file_descriptor, - ACTIONS(2674), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2677), 1, + ACTIONS(1847), 1, anon_sym_DOLLAR, - ACTIONS(2680), 1, - sym__special_character, - ACTIONS(2683), 1, + ACTIONS(1853), 1, anon_sym_DQUOTE, - ACTIONS(2686), 1, + ACTIONS(1856), 1, aux_sym_number_token1, - ACTIONS(2689), 1, + ACTIONS(1859), 1, aux_sym_number_token2, - ACTIONS(2692), 1, + ACTIONS(1862), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2695), 1, + ACTIONS(1865), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2698), 1, + ACTIONS(1868), 1, anon_sym_BQUOTE, - ACTIONS(2701), 1, + ACTIONS(1871), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2707), 1, + ACTIONS(1886), 1, + sym__brace_start, + ACTIONS(2831), 1, + sym__special_character, + ACTIONS(2834), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2710), 1, + ACTIONS(2837), 1, sym_test_operator, - ACTIONS(2713), 1, - sym__brace_start, - STATE(1385), 1, + ACTIONS(2840), 1, + sym_variable_name, + STATE(1289), 1, aux_sym__literal_repeat1, - ACTIONS(2704), 2, + STATE(4369), 1, + sym_subscript, + ACTIONS(1844), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1874), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(537), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2671), 3, + ACTIONS(2828), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1111), 9, + STATE(538), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1533), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63456,18 +65407,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1954), 20, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(1467), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -63475,22 +65422,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - [9206] = 6, + [9706] = 20, ACTIONS(3), 1, sym_comment, - STATE(1377), 1, - aux_sym__literal_repeat1, - STATE(530), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2002), 4, + ACTIONS(2023), 1, sym_file_descriptor, - sym_variable_name, + ACTIONS(2502), 1, + anon_sym_DOLLAR, + ACTIONS(2506), 1, + anon_sym_DQUOTE, + ACTIONS(2508), 1, + aux_sym_number_token1, + ACTIONS(2510), 1, + aux_sym_number_token2, + ACTIONS(2512), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2514), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2518), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2526), 1, sym__brace_start, - ts_builtin_sym_end, - STATE(1113), 9, + ACTIONS(2845), 1, + sym__special_character, + ACTIONS(2847), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2849), 1, + sym_test_operator, + STATE(1390), 1, + aux_sym__literal_repeat1, + ACTIONS(2500), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2520), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(549), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2843), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1242), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63500,8 +65476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2000), 35, - anon_sym_LF, + ACTIONS(2019), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -63518,68 +65493,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + anon_sym_BQUOTE, + [9799] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(2857), 1, + anon_sym_SEMI_SEMI, + ACTIONS(2855), 3, + anon_sym_RPAREN, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2853), 21, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [9271] = 21, + ACTIONS(2851), 26, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [9862] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 1, - sym_file_descriptor, - ACTIONS(2718), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2720), 1, + ACTIONS(2865), 1, anon_sym_DOLLAR, - ACTIONS(2722), 1, + ACTIONS(2868), 1, sym__special_character, - ACTIONS(2724), 1, + ACTIONS(2871), 1, anon_sym_DQUOTE, - ACTIONS(2726), 1, + ACTIONS(2874), 1, aux_sym_number_token1, - ACTIONS(2728), 1, + ACTIONS(2877), 1, aux_sym_number_token2, - ACTIONS(2730), 1, + ACTIONS(2880), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2732), 1, + ACTIONS(2883), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2734), 1, + ACTIONS(2886), 1, anon_sym_BQUOTE, - ACTIONS(2736), 1, + ACTIONS(2889), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2740), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2742), 1, + ACTIONS(2895), 1, sym_test_operator, - ACTIONS(2744), 1, + ACTIONS(2898), 1, sym__brace_start, - STATE(1385), 1, + STATE(1555), 1, aux_sym__literal_repeat1, - ACTIONS(2738), 2, + ACTIONS(2094), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(2862), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2892), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(537), 2, + STATE(541), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2716), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2859), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1111), 9, + STATE(1212), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63589,8 +65608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2103), 20, - anon_sym_LF, + ACTIONS(2059), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -63598,7 +65616,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -63608,36 +65625,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [9366] = 7, + [9955] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2083), 1, - anon_sym_DQUOTE, - STATE(871), 1, - sym_string, - ACTIONS(2259), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + STATE(1443), 1, + aux_sym__literal_repeat1, + STATE(553), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2047), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(2257), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 35, - anon_sym_LF, + STATE(1287), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2045), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -63647,17 +65662,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -63670,48 +65687,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [9433] = 20, + [10020] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2006), 1, + ACTIONS(2015), 1, sym_file_descriptor, - ACTIONS(2468), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2470), 1, + ACTIONS(2502), 1, anon_sym_DOLLAR, - ACTIONS(2472), 1, - sym__special_character, - ACTIONS(2474), 1, + ACTIONS(2506), 1, anon_sym_DQUOTE, - ACTIONS(2476), 1, + ACTIONS(2508), 1, aux_sym_number_token1, - ACTIONS(2478), 1, + ACTIONS(2510), 1, aux_sym_number_token2, - ACTIONS(2480), 1, + ACTIONS(2512), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2482), 1, + ACTIONS(2514), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2484), 1, + ACTIONS(2516), 1, anon_sym_BQUOTE, - ACTIONS(2486), 1, + ACTIONS(2518), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2490), 1, - sym_test_operator, - ACTIONS(2492), 1, + ACTIONS(2526), 1, sym__brace_start, - STATE(1340), 1, + ACTIONS(2845), 1, + sym__special_character, + ACTIONS(2849), 1, + sym_test_operator, + ACTIONS(2901), 1, + aux_sym__simple_variable_name_token1, + STATE(1390), 1, aux_sym__literal_repeat1, - ACTIONS(2488), 2, + ACTIONS(2500), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2520), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(546), 2, + STATE(547), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2466), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2843), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1176), 9, + STATE(1242), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63721,8 +65741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2004), 21, - anon_sym_LF, + ACTIONS(1989), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -63732,8 +65751,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -63741,83 +65758,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [9526] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2083), 1, - anon_sym_DQUOTE, - STATE(871), 1, - sym_string, - ACTIONS(2259), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1221), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(2257), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 35, anon_sym_LF, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [9593] = 7, + [10115] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2571), 1, + ACTIONS(2905), 1, anon_sym_DQUOTE, - STATE(1167), 1, + STATE(1276), 1, sym_string, - ACTIONS(2573), 2, + ACTIONS(2907), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + ACTIONS(1217), 4, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(2569), 9, + ts_builtin_sym_end, + ACTIONS(2903), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -63827,8 +65786,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 35, - anon_sym_LF, + ACTIONS(1215), 34, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -63838,8 +65797,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -63847,6 +65804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -63863,51 +65821,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [9660] = 21, + [10182] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2496), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2498), 1, + ACTIONS(2051), 1, + sym_file_descriptor, + ACTIONS(2913), 1, anon_sym_DOLLAR, - ACTIONS(2500), 1, + ACTIONS(2915), 1, sym__special_character, - ACTIONS(2502), 1, + ACTIONS(2917), 1, anon_sym_DQUOTE, - ACTIONS(2504), 1, + ACTIONS(2919), 1, aux_sym_number_token1, - ACTIONS(2506), 1, + ACTIONS(2921), 1, aux_sym_number_token2, - ACTIONS(2508), 1, + ACTIONS(2923), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2510), 1, + ACTIONS(2925), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2512), 1, + ACTIONS(2927), 1, anon_sym_BQUOTE, - ACTIONS(2514), 1, + ACTIONS(2929), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2520), 1, + ACTIONS(2933), 1, sym_test_operator, - ACTIONS(2522), 1, + ACTIONS(2935), 1, sym__brace_start, - ACTIONS(2746), 1, - aux_sym__simple_variable_name_token1, - STATE(1350), 1, + STATE(1519), 1, aux_sym__literal_repeat1, - ACTIONS(2131), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2516), 2, + ACTIONS(2911), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2931), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(524), 2, + STATE(555), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2494), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2909), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1121), 9, + STATE(1339), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63917,8 +65873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2103), 19, - anon_sym_LF, + ACTIONS(2049), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -63926,6 +65881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -63935,63 +65891,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [9755] = 21, + [10275] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2187), 1, - sym_file_descriptor, - ACTIONS(2718), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2720), 1, - anon_sym_DOLLAR, - ACTIONS(2722), 1, - sym__special_character, - ACTIONS(2724), 1, + ACTIONS(2905), 1, anon_sym_DQUOTE, - ACTIONS(2726), 1, - aux_sym_number_token1, - ACTIONS(2728), 1, - aux_sym_number_token2, - ACTIONS(2730), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2732), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2734), 1, - anon_sym_BQUOTE, - ACTIONS(2736), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2742), 1, - sym_test_operator, - ACTIONS(2744), 1, - sym__brace_start, - ACTIONS(2748), 1, - aux_sym__simple_variable_name_token1, - STATE(1385), 1, - aux_sym__literal_repeat1, - ACTIONS(2738), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(539), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2716), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1111), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(1276), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2183), 20, - anon_sym_LF, + ACTIONS(2907), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1213), 4, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(2903), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 34, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -63999,7 +65928,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -64009,50 +65937,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [9850] = 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [10342] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 1, + ACTIONS(2268), 1, sym_file_descriptor, - ACTIONS(2753), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2756), 1, + ACTIONS(2564), 1, anon_sym_DOLLAR, - ACTIONS(2759), 1, - sym__special_character, - ACTIONS(2762), 1, + ACTIONS(2570), 1, anon_sym_DQUOTE, - ACTIONS(2765), 1, + ACTIONS(2573), 1, aux_sym_number_token1, - ACTIONS(2768), 1, + ACTIONS(2576), 1, aux_sym_number_token2, - ACTIONS(2771), 1, + ACTIONS(2579), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2774), 1, + ACTIONS(2582), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2777), 1, + ACTIONS(2585), 1, anon_sym_BQUOTE, - ACTIONS(2780), 1, + ACTIONS(2588), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2786), 1, - sym_test_operator, - ACTIONS(2789), 1, + ACTIONS(2600), 1, sym__brace_start, - STATE(1340), 1, + ACTIONS(2940), 1, + sym__special_character, + ACTIONS(2943), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2946), 1, + sym_test_operator, + STATE(1390), 1, aux_sym__literal_repeat1, - ACTIONS(2783), 2, + ACTIONS(2561), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2591), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(546), 2, + STATE(547), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2750), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2937), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1176), 9, + STATE(1242), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64062,8 +66008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2015), 21, - anon_sym_LF, + ACTIONS(2230), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -64073,8 +66018,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -64082,23 +66025,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [9943] = 5, + [10437] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(2796), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(2798), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2794), 21, + ACTIONS(931), 21, sym_file_descriptor, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, @@ -64115,14 +66053,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(2792), 25, + ACTIONS(663), 30, anon_sym_for, anon_sym_select, anon_sym_LT, anon_sym_GT, + anon_sym_LPAREN, anon_sym_while, anon_sym_until, + anon_sym_done, anon_sym_if, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_case, anon_sym_function, anon_sym_BANG, @@ -64141,149 +66084,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [10005] = 5, - ACTIONS(63), 1, + [10496] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(2189), 1, - anon_sym_SEMI_SEMI, - ACTIONS(2191), 3, - anon_sym_RPAREN, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(1921), 21, + ACTIONS(2015), 1, sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(1919), 25, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, + ACTIONS(2502), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(2506), 1, + anon_sym_DQUOTE, + ACTIONS(2508), 1, aux_sym_number_token1, + ACTIONS(2510), 1, aux_sym_number_token2, + ACTIONS(2512), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2514), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - [10067] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2008), 1, - sym__simple_heredoc_body, - ACTIONS(2010), 1, - sym__heredoc_body_beginning, - ACTIONS(2800), 1, - anon_sym_RBRACE, - STATE(3965), 1, - sym_heredoc_body, - ACTIONS(965), 21, - sym_file_descriptor, - sym_variable_name, + ACTIONS(2518), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2526), 1, sym__brace_start, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(2845), 1, + sym__special_character, + ACTIONS(2849), 1, + sym_test_operator, + ACTIONS(2901), 1, + aux_sym__simple_variable_name_token1, + STATE(1390), 1, + aux_sym__literal_repeat1, + ACTIONS(2500), 2, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(2520), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(696), 25, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, + STATE(547), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2843), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [10133] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2805), 1, - anon_sym_DQUOTE, - STATE(1261), 1, + STATE(1242), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(2807), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1221), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2803), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 33, - anon_sym_LF, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1989), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -64300,65 +66153,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [10199] = 20, + [10589] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2812), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2815), 1, - anon_sym_DOLLAR, - ACTIONS(2818), 1, - sym__special_character, - ACTIONS(2821), 1, - anon_sym_DQUOTE, - ACTIONS(2824), 1, - aux_sym_number_token1, - ACTIONS(2827), 1, - aux_sym_number_token2, - ACTIONS(2830), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2833), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2836), 1, - anon_sym_BQUOTE, - ACTIONS(2839), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2845), 1, - sym_test_operator, - ACTIONS(2848), 1, - sym__brace_start, - STATE(1465), 1, + STATE(1443), 1, aux_sym__literal_repeat1, - ACTIONS(2053), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2842), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(551), 2, + STATE(553), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2809), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1210), 9, + ACTIONS(2051), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + STATE(1287), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64368,8 +66179,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2015), 19, - anon_sym_LF, + ACTIONS(2049), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -64386,25 +66197,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [10291] = 7, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [10654] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(2008), 1, - sym__simple_heredoc_body, - ACTIONS(2010), 1, - sym__heredoc_body_beginning, - ACTIONS(2851), 1, - anon_sym_RBRACE, - STATE(3965), 1, - sym_heredoc_body, - ACTIONS(965), 21, + ACTIONS(2855), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2857), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(2853), 21, sym_file_descriptor, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, @@ -64421,11 +66247,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(696), 25, + ACTIONS(2851), 26, anon_sym_for, anon_sym_select, anon_sym_LT, anon_sym_GT, + anon_sym_LPAREN, anon_sym_while, anon_sym_until, anon_sym_if, @@ -64447,107 +66274,110 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [10357] = 7, - ACTIONS(63), 1, + [10717] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(2008), 1, - sym__simple_heredoc_body, - ACTIONS(2010), 1, - sym__heredoc_body_beginning, - ACTIONS(2854), 1, - anon_sym_RBRACE, - STATE(3965), 1, - sym_heredoc_body, - ACTIONS(965), 21, + ACTIONS(2383), 1, + anon_sym_DQUOTE, + STATE(1105), 1, + sym_string, + ACTIONS(1213), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, + ACTIONS(2826), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2824), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(696), 25, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - [10423] = 20, + sym_test_operator, + [10784] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2187), 1, - sym_file_descriptor, - ACTIONS(2718), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2720), 1, + ACTIONS(2731), 1, anon_sym_DOLLAR, - ACTIONS(2724), 1, + ACTIONS(2737), 1, anon_sym_DQUOTE, - ACTIONS(2726), 1, + ACTIONS(2740), 1, aux_sym_number_token1, - ACTIONS(2728), 1, + ACTIONS(2743), 1, aux_sym_number_token2, - ACTIONS(2730), 1, + ACTIONS(2746), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2732), 1, + ACTIONS(2749), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2736), 1, + ACTIONS(2752), 1, + anon_sym_BQUOTE, + ACTIONS(2755), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2744), 1, + ACTIONS(2764), 1, sym__brace_start, - ACTIONS(2859), 1, + ACTIONS(2952), 1, sym__special_character, - ACTIONS(2861), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2863), 1, + ACTIONS(2955), 1, sym_test_operator, - STATE(1385), 1, + STATE(1443), 1, aux_sym__literal_repeat1, - ACTIONS(2738), 2, + ACTIONS(2094), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(2728), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2758), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(572), 2, + STATE(553), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2857), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2949), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1201), 9, + STATE(1287), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64557,8 +66387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2183), 20, - anon_sym_LF, + ACTIONS(2059), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -64575,33 +66404,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [10515] = 6, + [10877] = 7, ACTIONS(3), 1, sym_comment, - STATE(1380), 1, - aux_sym__literal_repeat1, - STATE(575), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2006), 3, + ACTIONS(1897), 1, + anon_sym_DQUOTE, + STATE(1051), 1, + sym_string, + ACTIONS(2960), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1213), 4, sym_file_descriptor, sym_variable_name, sym__brace_start, - STATE(1203), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2004), 35, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(2958), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 34, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -64618,12 +66450,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -64636,48 +66467,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [10579] = 20, + [10944] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 1, + ACTIONS(2094), 1, sym_file_descriptor, - ACTIONS(2868), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2871), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(2874), 1, + ACTIONS(2971), 1, sym__special_character, - ACTIONS(2877), 1, + ACTIONS(2974), 1, anon_sym_DQUOTE, - ACTIONS(2880), 1, + ACTIONS(2977), 1, aux_sym_number_token1, - ACTIONS(2883), 1, + ACTIONS(2980), 1, aux_sym_number_token2, - ACTIONS(2886), 1, + ACTIONS(2983), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2889), 1, + ACTIONS(2986), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2892), 1, + ACTIONS(2989), 1, anon_sym_BQUOTE, - ACTIONS(2895), 1, + ACTIONS(2992), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2901), 1, + ACTIONS(2998), 1, sym_test_operator, - ACTIONS(2904), 1, + ACTIONS(3001), 1, sym__brace_start, - STATE(1499), 1, + STATE(1519), 1, aux_sym__literal_repeat1, - ACTIONS(2898), 2, + ACTIONS(2965), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2995), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(556), 2, + STATE(555), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2865), 3, + ACTIONS(2962), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1325), 9, + STATE(1339), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64687,8 +66519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2015), 20, - anon_sym_LF, + ACTIONS(2059), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -64706,24 +66537,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [10671] = 7, + [11037] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1897), 1, anon_sym_DQUOTE, - STATE(1052), 1, + STATE(1051), 1, sym_string, - ACTIONS(2909), 2, + ACTIONS(2960), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1221), 4, + ACTIONS(1217), 4, sym_file_descriptor, sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(2907), 9, + ACTIONS(2958), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -64733,8 +66565,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 33, - anon_sym_LF, + ACTIONS(1215), 34, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -64751,6 +66583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -64767,34 +66600,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [10737] = 7, + [11104] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1543), 1, + sym_file_descriptor, + ACTIONS(1925), 1, + anon_sym_DOLLAR, + ACTIONS(1929), 1, anon_sym_DQUOTE, - STATE(1052), 1, - sym_string, - ACTIONS(2909), 2, + ACTIONS(1931), 1, + aux_sym_number_token1, + ACTIONS(1933), 1, + aux_sym_number_token2, + ACTIONS(1935), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1937), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1939), 1, + anon_sym_BQUOTE, + ACTIONS(1941), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1951), 1, + sym__brace_start, + ACTIONS(3006), 1, + sym__special_character, + ACTIONS(3008), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 4, - sym_file_descriptor, + ACTIONS(3010), 1, + sym_test_operator, + ACTIONS(3012), 1, sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2907), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 33, - anon_sym_LF, - anon_sym_SEMI, + STATE(1289), 1, + aux_sym__literal_repeat1, + STATE(4369), 1, + sym_subscript, + ACTIONS(1923), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1943), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3004), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(538), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1533), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1517), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -64802,7 +66667,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -64810,66 +66674,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [10803] = 21, + [11203] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1995), 1, - sym_file_descriptor, - ACTIONS(2674), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2677), 1, + ACTIONS(3018), 1, anon_sym_DOLLAR, - ACTIONS(2683), 1, + ACTIONS(3020), 1, + sym__special_character, + ACTIONS(3022), 1, anon_sym_DQUOTE, - ACTIONS(2686), 1, + ACTIONS(3024), 1, aux_sym_number_token1, - ACTIONS(2689), 1, + ACTIONS(3026), 1, aux_sym_number_token2, - ACTIONS(2692), 1, + ACTIONS(3028), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2695), 1, + ACTIONS(3030), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2698), 1, + ACTIONS(3032), 1, anon_sym_BQUOTE, - ACTIONS(2701), 1, + ACTIONS(3034), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2713), 1, - sym__brace_start, - ACTIONS(2914), 1, - sym__special_character, - ACTIONS(2917), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2920), 1, + ACTIONS(3038), 1, sym_test_operator, - STATE(1385), 1, + ACTIONS(3040), 1, + sym__brace_start, + STATE(1555), 1, aux_sym__literal_repeat1, - ACTIONS(2704), 2, + ACTIONS(2047), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(3016), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3036), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(559), 2, + STATE(541), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2911), 3, + aux_sym_for_statement_repeat1, + ACTIONS(3014), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1201), 9, + STATE(1212), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64879,8 +66729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1954), 19, - anon_sym_LF, + ACTIONS(2045), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -64897,89 +66746,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [10897] = 3, - ACTIONS(63), 1, + [11296] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(2925), 21, + ACTIONS(2023), 1, sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2502), 1, + anon_sym_DOLLAR, + ACTIONS(2506), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2508), 1, + aux_sym_number_token1, + ACTIONS(2510), 1, + aux_sym_number_token2, + ACTIONS(2512), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2514), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2516), 1, anon_sym_BQUOTE, + ACTIONS(2518), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2526), 1, + sym__brace_start, + ACTIONS(2845), 1, + sym__special_character, + ACTIONS(2849), 1, + sym_test_operator, + ACTIONS(3042), 1, + aux_sym__simple_variable_name_token1, + STATE(1390), 1, + aux_sym__literal_repeat1, + ACTIONS(2500), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2520), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2923), 29, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_done, - anon_sym_if, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, + STATE(543), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2843), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [10955] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_DQUOTE, - STATE(1123), 1, + STATE(1242), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(2929), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(2927), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 34, - anon_sym_LF, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2019), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -64987,7 +66811,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -64997,39 +66820,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [11021] = 7, + [11391] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(2008), 1, - sym__simple_heredoc_body, - ACTIONS(2010), 1, - sym__heredoc_body_beginning, - ACTIONS(2931), 1, - anon_sym_RBRACE, - STATE(3965), 1, - sym_heredoc_body, - ACTIONS(965), 21, + ACTIONS(3044), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(3046), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2853), 21, sym_file_descriptor, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, @@ -65046,11 +66854,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(696), 25, + ACTIONS(2851), 26, anon_sym_for, anon_sym_select, anon_sym_LT, anon_sym_GT, + anon_sym_LPAREN, anon_sym_while, anon_sym_until, anon_sym_if, @@ -65072,50 +66881,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [11087] = 21, + [11454] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2187), 1, + ACTIONS(1553), 1, sym_file_descriptor, - ACTIONS(2718), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2720), 1, + ACTIONS(1925), 1, anon_sym_DOLLAR, - ACTIONS(2724), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(2726), 1, + ACTIONS(1931), 1, aux_sym_number_token1, - ACTIONS(2728), 1, + ACTIONS(1933), 1, aux_sym_number_token2, - ACTIONS(2730), 1, + ACTIONS(1935), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2732), 1, + ACTIONS(1937), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2734), 1, + ACTIONS(1939), 1, anon_sym_BQUOTE, - ACTIONS(2736), 1, + ACTIONS(1941), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2744), 1, + ACTIONS(1951), 1, sym__brace_start, - ACTIONS(2859), 1, + ACTIONS(3006), 1, sym__special_character, - ACTIONS(2863), 1, + ACTIONS(3010), 1, sym_test_operator, - ACTIONS(2934), 1, + ACTIONS(3012), 1, + sym_variable_name, + ACTIONS(3048), 1, aux_sym__simple_variable_name_token1, - STATE(1385), 1, + STATE(1289), 1, aux_sym__literal_repeat1, - ACTIONS(2738), 2, + STATE(4369), 1, + sym_subscript, + ACTIONS(1923), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1943), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(569), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2857), 3, + ACTIONS(3004), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1201), 9, + STATE(557), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1533), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -65125,9 +66940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2183), 19, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(1549), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -65135,7 +66948,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -65143,61 +66955,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - [11181] = 20, + [11553] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2006), 1, - sym_file_descriptor, - ACTIONS(2938), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2940), 1, - anon_sym_DOLLAR, - ACTIONS(2942), 1, - sym__special_character, - ACTIONS(2944), 1, + ACTIONS(2705), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, - aux_sym_number_token1, - ACTIONS(2948), 1, - aux_sym_number_token2, - ACTIONS(2950), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2952), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2954), 1, - anon_sym_BQUOTE, - ACTIONS(2956), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2960), 1, - sym_test_operator, - ACTIONS(2962), 1, - sym__brace_start, - STATE(1499), 1, - aux_sym__literal_repeat1, - ACTIONS(2958), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(556), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2936), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1325), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(1351), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2004), 20, - anon_sym_LF, + ACTIONS(1213), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(3052), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3050), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -65205,9 +66989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -65215,24 +67000,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [11273] = 7, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [11620] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(3056), 1, anon_sym_DQUOTE, - STATE(1261), 1, + STATE(1302), 1, sym_string, - ACTIONS(2807), 2, + ACTIONS(3058), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 4, + ACTIONS(1213), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2803), 9, + ACTIONS(3054), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -65242,8 +67041,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 33, - anon_sym_LF, + ACTIONS(1205), 35, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -65251,6 +67050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -65260,6 +67060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -65276,78 +67077,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [11339] = 5, - ACTIONS(63), 1, + [11687] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(2964), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(2966), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2794), 21, + ACTIONS(2705), 1, + anon_sym_DQUOTE, + STATE(1351), 1, + sym_string, + ACTIONS(1217), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, + ACTIONS(3052), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3050), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2792), 25, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - [11401] = 7, + sym_test_operator, + [11754] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - STATE(1123), 1, + STATE(1144), 1, sym_string, - ACTIONS(2929), 2, + ACTIONS(3062), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1221), 3, + ACTIONS(1213), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(2927), 9, + ACTIONS(3060), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -65357,8 +67161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 34, - anon_sym_LF, + ACTIONS(1205), 35, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -65376,6 +67180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -65392,21 +67197,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [11467] = 5, + [11821] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(2796), 1, + ACTIONS(3044), 1, anon_sym_SEMI_SEMI, - ACTIONS(2798), 3, + ACTIONS(3046), 3, anon_sym_RPAREN, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(2794), 21, + ACTIONS(2853), 21, sym_file_descriptor, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, @@ -65423,11 +67228,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(2792), 25, + ACTIONS(2851), 26, anon_sym_for, anon_sym_select, anon_sym_LT, anon_sym_GT, + anon_sym_LPAREN, anon_sym_while, anon_sym_until, anon_sym_if, @@ -65449,50 +67255,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [11529] = 21, + [11884] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 1, + ACTIONS(2047), 1, sym_file_descriptor, - ACTIONS(2718), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2720), 1, + ACTIONS(2913), 1, anon_sym_DOLLAR, - ACTIONS(2724), 1, + ACTIONS(2915), 1, + sym__special_character, + ACTIONS(2917), 1, anon_sym_DQUOTE, - ACTIONS(2726), 1, + ACTIONS(2919), 1, aux_sym_number_token1, - ACTIONS(2728), 1, + ACTIONS(2921), 1, aux_sym_number_token2, - ACTIONS(2730), 1, + ACTIONS(2923), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2732), 1, + ACTIONS(2925), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2734), 1, + ACTIONS(2927), 1, anon_sym_BQUOTE, - ACTIONS(2736), 1, + ACTIONS(2929), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2744), 1, - sym__brace_start, - ACTIONS(2859), 1, - sym__special_character, - ACTIONS(2863), 1, + ACTIONS(2933), 1, sym_test_operator, - ACTIONS(2968), 1, - aux_sym__simple_variable_name_token1, - STATE(1385), 1, + ACTIONS(2935), 1, + sym__brace_start, + STATE(1519), 1, aux_sym__literal_repeat1, - ACTIONS(2738), 2, + ACTIONS(2911), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2931), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(559), 2, + STATE(555), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2857), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2909), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1201), 9, + STATE(1339), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -65502,8 +67307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2103), 19, - anon_sym_LF, + ACTIONS(2045), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -65511,6 +67315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -65520,51 +67325,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [11623] = 20, + [11977] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2974), 1, + ACTIONS(3018), 1, anon_sym_DOLLAR, - ACTIONS(2976), 1, + ACTIONS(3020), 1, sym__special_character, - ACTIONS(2978), 1, + ACTIONS(3022), 1, anon_sym_DQUOTE, - ACTIONS(2980), 1, + ACTIONS(3024), 1, aux_sym_number_token1, - ACTIONS(2982), 1, + ACTIONS(3026), 1, aux_sym_number_token2, - ACTIONS(2984), 1, + ACTIONS(3028), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2986), 1, + ACTIONS(3030), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2988), 1, + ACTIONS(3032), 1, anon_sym_BQUOTE, - ACTIONS(2990), 1, + ACTIONS(3034), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2994), 1, + ACTIONS(3038), 1, sym_test_operator, - ACTIONS(2996), 1, + ACTIONS(3040), 1, sym__brace_start, - STATE(1465), 1, + STATE(1555), 1, aux_sym__literal_repeat1, - ACTIONS(2006), 2, + ACTIONS(2051), 2, sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(2992), 2, + ACTIONS(3016), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3036), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(551), 2, + STATE(541), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2970), 3, + ACTIONS(3014), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1210), 9, + STATE(1212), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -65574,8 +67381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2004), 19, - anon_sym_LF, + ACTIONS(2049), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -65592,120 +67398,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [11715] = 7, - ACTIONS(63), 1, + [12070] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1925), 1, - anon_sym_RPAREN, - ACTIONS(2008), 1, - sym__simple_heredoc_body, - ACTIONS(2010), 1, - sym__heredoc_body_beginning, - STATE(3920), 1, - sym_heredoc_body, - ACTIONS(1921), 21, + ACTIONS(3056), 1, + anon_sym_DQUOTE, + STATE(1302), 1, + sym_string, + ACTIONS(3058), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1217), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, + ACTIONS(3054), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(1919), 25, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - [11781] = 20, + sym_test_operator, + [12137] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 1, - sym_file_descriptor, - ACTIONS(2718), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2720), 1, - anon_sym_DOLLAR, - ACTIONS(2724), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(2726), 1, - aux_sym_number_token1, - ACTIONS(2728), 1, - aux_sym_number_token2, - ACTIONS(2730), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2732), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2736), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2744), 1, - sym__brace_start, - ACTIONS(2859), 1, - sym__special_character, - ACTIONS(2863), 1, - sym_test_operator, - ACTIONS(2968), 1, - aux_sym__simple_variable_name_token1, - STATE(1385), 1, - aux_sym__literal_repeat1, - ACTIONS(2738), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(559), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2857), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1201), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(1144), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2103), 20, - anon_sym_LF, + ACTIONS(3062), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1217), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(3060), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 35, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -65713,6 +67494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -65722,80 +67504,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [11873] = 5, - ACTIONS(63), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [12204] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, - anon_sym_SEMI_SEMI, - ACTIONS(1925), 3, - anon_sym_RPAREN, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(1921), 21, + ACTIONS(2917), 1, + anon_sym_DQUOTE, + STATE(1431), 1, + sym_string, + ACTIONS(1213), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, + ACTIONS(3066), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3064), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(1919), 25, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - [11935] = 7, + sym_test_operator, + [12270] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(3056), 1, anon_sym_DQUOTE, - STATE(1107), 1, + STATE(1302), 1, sym_string, - ACTIONS(1221), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3000), 2, + ACTIONS(3058), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2998), 9, + ACTIONS(1213), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(3054), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -65805,8 +67604,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 35, - anon_sym_LF, + ACTIONS(1205), 34, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -65816,8 +67615,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -65825,6 +67622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -65841,49 +67639,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [12001] = 20, + [12336] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2585), 1, + ACTIONS(2051), 1, + sym_file_descriptor, + ACTIONS(2913), 1, anon_sym_DOLLAR, - ACTIONS(2591), 1, + ACTIONS(2917), 1, anon_sym_DQUOTE, - ACTIONS(2594), 1, + ACTIONS(2919), 1, aux_sym_number_token1, - ACTIONS(2597), 1, + ACTIONS(2921), 1, aux_sym_number_token2, - ACTIONS(2600), 1, + ACTIONS(2923), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2603), 1, + ACTIONS(2925), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2606), 1, - anon_sym_BQUOTE, - ACTIONS(2609), 1, + ACTIONS(2929), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2618), 1, + ACTIONS(2935), 1, sym__brace_start, - ACTIONS(3005), 1, + ACTIONS(3070), 1, sym__special_character, - ACTIONS(3008), 1, + ACTIONS(3072), 1, sym_test_operator, - STATE(1380), 1, + STATE(1519), 1, aux_sym__literal_repeat1, - ACTIONS(2053), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(2612), 2, + ACTIONS(2911), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2931), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(575), 2, + STATE(598), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(3002), 3, + ACTIONS(3068), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1203), 9, + STATE(1375), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -65893,8 +67689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2015), 19, - anon_sym_LF, + ACTIONS(2049), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -65911,196 +67706,603 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [12093] = 7, - ACTIONS(63), 1, + anon_sym_BQUOTE, + [12426] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(2008), 1, - sym__simple_heredoc_body, - ACTIONS(2010), 1, - sym__heredoc_body_beginning, - ACTIONS(2191), 1, - anon_sym_RPAREN, - STATE(3916), 1, - sym_heredoc_body, - ACTIONS(1921), 21, + ACTIONS(2536), 1, + anon_sym_DQUOTE, + STATE(1333), 1, + sym_string, + ACTIONS(3076), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1213), 3, sym_file_descriptor, - sym_variable_name, sym__brace_start, + ts_builtin_sym_end, + ACTIONS(3074), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - ACTIONS(1919), 25, - anon_sym_for, - anon_sym_select, + [12492] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2536), 1, + anon_sym_DQUOTE, + STATE(1333), 1, + sym_string, + ACTIONS(3076), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1217), 3, + sym_file_descriptor, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(3074), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_DOLLAR, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - [12159] = 7, + sym_test_operator, + [12558] = 32, ACTIONS(63), 1, sym_comment, - ACTIONS(2191), 1, - ts_builtin_sym_end, - ACTIONS(3011), 1, - sym__simple_heredoc_body, - ACTIONS(3013), 1, - sym__heredoc_body_beginning, - STATE(3925), 1, - sym_heredoc_body, - ACTIONS(1921), 21, - sym_file_descriptor, + ACTIONS(412), 1, + anon_sym_LPAREN, + ACTIONS(434), 1, + anon_sym_LBRACK, + ACTIONS(436), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(562), 1, + anon_sym_DOLLAR, + ACTIONS(564), 1, + sym__special_character, + ACTIONS(566), 1, + anon_sym_DQUOTE, + ACTIONS(570), 1, + aux_sym_number_token1, + ACTIONS(572), 1, + aux_sym_number_token2, + ACTIONS(574), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(576), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(578), 1, + anon_sym_BQUOTE, + ACTIONS(580), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(584), 1, + sym_test_operator, + ACTIONS(588), 1, sym_variable_name, + ACTIONS(590), 1, sym__brace_start, + ACTIONS(1449), 1, + sym_file_descriptor, + ACTIONS(3078), 1, + sym_word, + STATE(450), 1, + sym_command_name, + STATE(940), 1, + aux_sym__literal_repeat1, + STATE(1200), 1, + sym_concatenation, + STATE(1408), 1, + sym_variable_assignment, + STATE(3072), 1, + sym_command, + STATE(4360), 1, + sym_subscript, + ACTIONS(546), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(568), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(582), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(941), 2, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(3067), 2, + sym_subshell, + sym_test_command, + ACTIONS(1447), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(1445), 5, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(734), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [12674] = 32, + ACTIONS(63), 1, + sym_comment, + ACTIONS(412), 1, + anon_sym_LPAREN, + ACTIONS(434), 1, + anon_sym_LBRACK, + ACTIONS(436), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(442), 1, + anon_sym_DOLLAR, + ACTIONS(444), 1, + sym__special_character, + ACTIONS(446), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(450), 1, + aux_sym_number_token1, + ACTIONS(452), 1, + aux_sym_number_token2, + ACTIONS(454), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(456), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(458), 1, anon_sym_BQUOTE, + ACTIONS(460), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(464), 1, + sym_test_operator, + ACTIONS(468), 1, + sym_variable_name, + ACTIONS(470), 1, + sym__brace_start, + ACTIONS(1449), 1, + sym_file_descriptor, + ACTIONS(3080), 1, + sym_word, + STATE(446), 1, + sym_command_name, + STATE(831), 1, + aux_sym__literal_repeat1, + STATE(1003), 1, + sym_concatenation, + STATE(1216), 1, + sym_variable_assignment, + STATE(3072), 1, + sym_command, + STATE(4372), 1, + sym_subscript, + ACTIONS(406), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(448), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(462), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(1919), 25, - anon_sym_for, - anon_sym_select, + STATE(1002), 2, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(3067), 2, + sym_subshell, + sym_test_command, + ACTIONS(1447), 3, anon_sym_LT, anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, anon_sym_AMP_GT, + ACTIONS(1445), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(665), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [12790] = 32, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(63), 1, + sym_comment, + ACTIONS(121), 1, + sym_variable_name, + ACTIONS(360), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(364), 1, + anon_sym_DQUOTE, + ACTIONS(368), 1, aux_sym_number_token1, + ACTIONS(370), 1, aux_sym_number_token2, + ACTIONS(372), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(374), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(376), 1, + anon_sym_BQUOTE, + ACTIONS(378), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(388), 1, + sym__brace_start, + ACTIONS(773), 1, + sym__special_character, + ACTIONS(777), 1, + sym_test_operator, + ACTIONS(1449), 1, + sym_file_descriptor, + ACTIONS(3082), 1, sym_word, - [12225] = 5, + STATE(481), 1, + sym_command_name, + STATE(1096), 1, + aux_sym__literal_repeat1, + STATE(1341), 1, + sym_concatenation, + STATE(1484), 1, + sym_variable_assignment, + STATE(3033), 1, + sym_command, + STATE(4373), 1, + sym_subscript, + ACTIONS(340), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(380), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(775), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(894), 2, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(3027), 2, + sym_subshell, + sym_test_command, + ACTIONS(1447), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(1445), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(778), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [12906] = 32, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(2964), 1, - anon_sym_SEMI_SEMI, - ACTIONS(2966), 3, - anon_sym_RPAREN, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2794), 21, - sym_file_descriptor, + ACTIONS(360), 1, + anon_sym_DOLLAR, + ACTIONS(362), 1, + sym__special_character, + ACTIONS(364), 1, + anon_sym_DQUOTE, + ACTIONS(368), 1, + aux_sym_number_token1, + ACTIONS(370), 1, + aux_sym_number_token2, + ACTIONS(372), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(374), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(376), 1, + anon_sym_BQUOTE, + ACTIONS(378), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(382), 1, + sym_test_operator, + ACTIONS(386), 1, sym_variable_name, + ACTIONS(388), 1, sym__brace_start, + ACTIONS(1449), 1, + sym_file_descriptor, + ACTIONS(3084), 1, + sym_word, + STATE(488), 1, + sym_command_name, + STATE(1096), 1, + aux_sym__literal_repeat1, + STATE(1341), 1, + sym_concatenation, + STATE(1484), 1, + sym_variable_assignment, + STATE(3033), 1, + sym_command, + STATE(4321), 1, + sym_subscript, + ACTIONS(340), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(366), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(380), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(957), 2, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(3027), 2, + sym_subshell, + sym_test_command, + ACTIONS(1447), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(1445), 5, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(959), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [13022] = 32, + ACTIONS(63), 1, + sym_comment, + ACTIONS(292), 1, + anon_sym_LBRACK, + ACTIONS(296), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(330), 1, + sym_variable_name, + ACTIONS(1039), 1, + anon_sym_LPAREN, + ACTIONS(1043), 1, + anon_sym_DOLLAR, + ACTIONS(1045), 1, + sym__special_character, + ACTIONS(1047), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1051), 1, + aux_sym_number_token1, + ACTIONS(1053), 1, + aux_sym_number_token2, + ACTIONS(1055), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1057), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1059), 1, anon_sym_BQUOTE, + ACTIONS(1061), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1065), 1, + sym_test_operator, + ACTIONS(1069), 1, + sym__brace_start, + ACTIONS(1449), 1, + sym_file_descriptor, + ACTIONS(3086), 1, + sym_word, + STATE(611), 1, + sym_command_name, + STATE(1731), 1, + aux_sym__literal_repeat1, + STATE(1970), 1, + sym_concatenation, + STATE(2154), 1, + sym_variable_assignment, + STATE(3591), 1, + sym_command, + STATE(4307), 1, + sym_subscript, + ACTIONS(1033), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1049), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1063), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2792), 25, - anon_sym_for, - anon_sym_select, + STATE(896), 2, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(3592), 2, + sym_subshell, + sym_test_command, + ACTIONS(1447), 3, anon_sym_LT, anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, anon_sym_AMP_GT, + ACTIONS(1445), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(1544), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [13138] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3088), 1, + sym_word, + ACTIONS(3092), 1, anon_sym_DOLLAR, + ACTIONS(3094), 1, sym__special_character, + ACTIONS(3096), 1, + anon_sym_DQUOTE, + ACTIONS(3100), 1, aux_sym_number_token1, + ACTIONS(3102), 1, aux_sym_number_token2, + ACTIONS(3104), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3106), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - [12287] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1380), 1, - aux_sym__literal_repeat1, - STATE(575), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2002), 3, - sym_file_descriptor, + ACTIONS(3108), 1, + anon_sym_BQUOTE, + ACTIONS(3110), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3114), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3116), 1, + sym_test_operator, + ACTIONS(3118), 1, sym_variable_name, + ACTIONS(3120), 1, sym__brace_start, - STATE(1203), 9, + STATE(1986), 1, + aux_sym__literal_repeat1, + STATE(4382), 1, + sym_subscript, + ACTIONS(3090), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3098), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3112), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(603), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1517), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + STATE(1588), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -66110,111 +68312,192 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2000), 35, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(1543), 11, + sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, + [13238] = 32, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, anon_sym_DOLLAR, + ACTIONS(43), 1, sym__special_character, + ACTIONS(45), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(49), 1, aux_sym_number_token1, + ACTIONS(51), 1, aux_sym_number_token2, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(55), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(57), 1, anon_sym_BQUOTE, + ACTIONS(59), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [12351] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(965), 21, - sym_file_descriptor, + ACTIONS(65), 1, + sym_test_operator, + ACTIONS(69), 1, sym_variable_name, + ACTIONS(71), 1, sym__brace_start, + ACTIONS(1449), 1, + sym_file_descriptor, + ACTIONS(3122), 1, + sym_word, + STATE(473), 1, + sym_command_name, + STATE(1104), 1, + aux_sym__literal_repeat1, + STATE(1275), 1, + sym_concatenation, + STATE(1461), 1, + sym_variable_assignment, + STATE(3033), 1, + sym_command, + STATE(4317), 1, + sym_subscript, + ACTIONS(13), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(47), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(61), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(908), 2, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(3027), 2, + sym_subshell, + sym_test_command, + ACTIONS(1447), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(1445), 5, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(794), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [13354] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3088), 1, + sym_word, + ACTIONS(3092), 1, + anon_sym_DOLLAR, + ACTIONS(3094), 1, + sym__special_character, + ACTIONS(3096), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3100), 1, + aux_sym_number_token1, + ACTIONS(3102), 1, + aux_sym_number_token2, + ACTIONS(3104), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3106), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3108), 1, anon_sym_BQUOTE, + ACTIONS(3110), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3116), 1, + sym_test_operator, + ACTIONS(3118), 1, + sym_variable_name, + ACTIONS(3120), 1, + sym__brace_start, + ACTIONS(3124), 1, + aux_sym__simple_variable_name_token1, + STATE(1986), 1, + aux_sym__literal_repeat1, + STATE(4382), 1, + sym_subscript, + ACTIONS(3090), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3098), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3112), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(696), 29, - anon_sym_for, - anon_sym_select, + STATE(581), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1549), 5, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_done, - anon_sym_if, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_PIPE, anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [12409] = 7, + STATE(1588), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1553), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [13454] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2506), 1, anon_sym_DQUOTE, - STATE(1107), 1, + STATE(1253), 1, sym_string, - ACTIONS(1217), 2, + ACTIONS(1213), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3000), 2, + ACTIONS(3128), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2998), 9, + ACTIONS(3126), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -66224,8 +68507,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 35, - anon_sym_LF, + ACTIONS(1205), 35, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -66233,10 +68516,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -66244,6 +68526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -66260,79 +68543,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [12475] = 7, - ACTIONS(63), 1, + [13520] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1925), 1, - ts_builtin_sym_end, - ACTIONS(3011), 1, - sym__simple_heredoc_body, - ACTIONS(3013), 1, - sym__heredoc_body_beginning, - STATE(3939), 1, - sym_heredoc_body, - ACTIONS(1921), 21, + ACTIONS(2506), 1, + anon_sym_DQUOTE, + STATE(1253), 1, + sym_string, + ACTIONS(1217), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, + ACTIONS(3128), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3126), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(1919), 25, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - [12541] = 7, + sym_test_operator, + [13586] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2474), 1, + ACTIONS(3022), 1, anon_sym_DQUOTE, - STATE(1272), 1, + STATE(1395), 1, sym_string, - ACTIONS(1221), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3017), 2, + ACTIONS(3132), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3015), 9, + ACTIONS(1213), 3, + sym_file_descriptor, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(3130), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -66342,8 +68626,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 35, - anon_sym_LF, + ACTIONS(1205), 34, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -66353,8 +68637,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -66362,6 +68644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -66378,106 +68661,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [12607] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2189), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(2191), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(1921), 21, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_GT_GT, + [13652] = 32, + ACTIONS(19), 1, anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(63), 1, + sym_comment, + ACTIONS(360), 1, + anon_sym_DOLLAR, + ACTIONS(364), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(368), 1, + aux_sym_number_token1, + ACTIONS(370), 1, + aux_sym_number_token2, + ACTIONS(372), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(374), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(376), 1, anon_sym_BQUOTE, + ACTIONS(378), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(388), 1, + sym__brace_start, + ACTIONS(1085), 1, + sym__special_character, + ACTIONS(1089), 1, + sym_test_operator, + ACTIONS(1093), 1, + sym_variable_name, + ACTIONS(1449), 1, + sym_file_descriptor, + ACTIONS(3134), 1, + sym_word, + STATE(597), 1, + sym_command_name, + STATE(1096), 1, + aux_sym__literal_repeat1, + STATE(1341), 1, + sym_concatenation, + STATE(1484), 1, + sym_variable_assignment, + STATE(3033), 1, + sym_command, + STATE(4311), 1, + sym_subscript, + ACTIONS(340), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(380), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(1919), 25, - anon_sym_for, - anon_sym_select, + ACTIONS(1087), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(899), 2, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(3027), 2, + sym_subshell, + sym_test_command, + ACTIONS(1447), 3, anon_sym_LT, anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, anon_sym_AMP_GT, + ACTIONS(1445), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(1407), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [13768] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(360), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(368), 1, aux_sym_number_token1, + ACTIONS(370), 1, aux_sym_number_token2, + ACTIONS(374), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - [12669] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2974), 1, - anon_sym_DOLLAR, - ACTIONS(2976), 1, + ACTIONS(388), 1, + sym__brace_start, + ACTIONS(1085), 1, sym__special_character, - ACTIONS(2978), 1, + ACTIONS(1607), 1, + sym_file_descriptor, + ACTIONS(1971), 1, anon_sym_DQUOTE, - ACTIONS(2980), 1, - aux_sym_number_token1, - ACTIONS(2982), 1, - aux_sym_number_token2, - ACTIONS(2984), 1, + ACTIONS(1973), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2986), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2988), 1, + ACTIONS(1975), 1, anon_sym_BQUOTE, - ACTIONS(2990), 1, + ACTIONS(1977), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2994), 1, + ACTIONS(1983), 1, + sym__bare_dollar, + ACTIONS(3140), 1, sym_test_operator, - ACTIONS(2996), 1, - sym__brace_start, - STATE(1465), 1, + STATE(596), 1, + aux_sym_command_repeat2, + STATE(1154), 1, aux_sym__literal_repeat1, - ACTIONS(2002), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2992), 2, + STATE(1265), 1, + sym_concatenation, + ACTIONS(1967), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1979), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(551), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2970), 3, + ACTIONS(3138), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3136), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1210), 9, + STATE(1382), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -66487,9 +68803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2000), 19, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(1591), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -66497,7 +68811,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -66505,22 +68818,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - [12761] = 7, + [13866] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2474), 1, + ACTIONS(3022), 1, anon_sym_DQUOTE, - STATE(1272), 1, + STATE(1395), 1, sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3017), 2, + ACTIONS(3132), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3015), 9, + ACTIONS(1217), 3, + sym_file_descriptor, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(3130), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -66530,8 +68844,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 35, - anon_sym_LF, + ACTIONS(1215), 34, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -66541,8 +68855,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -66550,6 +68862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -66566,78 +68879,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [12827] = 5, - ACTIONS(63), 1, + [13932] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(1925), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(1921), 21, - sym_file_descriptor, - sym_variable_name, + ACTIONS(360), 1, + anon_sym_DOLLAR, + ACTIONS(368), 1, + aux_sym_number_token1, + ACTIONS(370), 1, + aux_sym_number_token2, + ACTIONS(374), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(388), 1, sym__brace_start, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1085), 1, + sym__special_character, + ACTIONS(1723), 1, + sym_file_descriptor, + ACTIONS(1971), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1973), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1975), 1, anon_sym_BQUOTE, + ACTIONS(1977), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1983), 1, + sym__bare_dollar, + ACTIONS(3140), 1, + sym_test_operator, + STATE(596), 1, + aux_sym_command_repeat2, + STATE(1154), 1, + aux_sym__literal_repeat1, + STATE(1265), 1, + sym_concatenation, + ACTIONS(1967), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1979), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(1919), 25, - anon_sym_for, - anon_sym_select, + ACTIONS(3138), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3136), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1382), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1721), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + [14030] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2917), 1, + anon_sym_DQUOTE, + STATE(1431), 1, + sym_string, + ACTIONS(1217), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(3066), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3064), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - [12889] = 7, + sym_test_operator, + [14096] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - STATE(1307), 1, + STATE(1144), 1, sym_string, - ACTIONS(3023), 2, + ACTIONS(3062), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1221), 3, + ACTIONS(1213), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3019), 9, + ACTIONS(3060), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -66647,8 +69037,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 34, - anon_sym_LF, + ACTIONS(1205), 34, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -66656,7 +69046,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -66666,6 +69055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -66682,21 +69072,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [12955] = 7, + [14162] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - STATE(1307), 1, + STATE(1144), 1, sym_string, - ACTIONS(3023), 2, + ACTIONS(3062), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1217), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3019), 9, + ACTIONS(3060), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -66706,8 +69096,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 34, - anon_sym_LF, + ACTIONS(1215), 34, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -66715,7 +69105,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -66725,6 +69114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -66741,48 +69131,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [13021] = 20, + [14228] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2002), 1, + ACTIONS(2047), 1, sym_file_descriptor, - ACTIONS(2938), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2913), 1, anon_sym_DOLLAR, - ACTIONS(2942), 1, - sym__special_character, - ACTIONS(2944), 1, + ACTIONS(2917), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(2919), 1, aux_sym_number_token1, - ACTIONS(2948), 1, + ACTIONS(2921), 1, aux_sym_number_token2, - ACTIONS(2950), 1, + ACTIONS(2923), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2952), 1, + ACTIONS(2925), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2954), 1, - anon_sym_BQUOTE, - ACTIONS(2956), 1, + ACTIONS(2929), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2960), 1, - sym_test_operator, - ACTIONS(2962), 1, + ACTIONS(2935), 1, sym__brace_start, - STATE(1499), 1, + ACTIONS(3070), 1, + sym__special_character, + ACTIONS(3072), 1, + sym_test_operator, + STATE(1519), 1, aux_sym__literal_repeat1, - ACTIONS(2958), 2, + ACTIONS(2911), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2931), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(556), 2, + STATE(598), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2936), 3, + ACTIONS(3068), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1325), 9, + STATE(1375), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -66792,8 +69181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2000), 20, - anon_sym_LF, + ACTIONS(2045), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -66801,7 +69189,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -66811,140 +69198,366 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [13113] = 6, - ACTIONS(63), 1, + anon_sym_BQUOTE, + [14318] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(2008), 1, - sym__simple_heredoc_body, - ACTIONS(2010), 1, - sym__heredoc_body_beginning, - STATE(3965), 1, - sym_heredoc_body, - ACTIONS(965), 22, + ACTIONS(3056), 1, + anon_sym_DQUOTE, + STATE(1302), 1, + sym_string, + ACTIONS(3058), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1217), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(3054), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - ACTIONS(696), 25, - anon_sym_for, - anon_sym_select, + [14384] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1709), 1, + sym_file_descriptor, + ACTIONS(2108), 1, + anon_sym_DOLLAR, + ACTIONS(2114), 1, + anon_sym_DQUOTE, + ACTIONS(2117), 1, + aux_sym_number_token1, + ACTIONS(2120), 1, + aux_sym_number_token2, + ACTIONS(2123), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2126), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2129), 1, + anon_sym_BQUOTE, + ACTIONS(2132), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2141), 1, + sym__bare_dollar, + ACTIONS(2144), 1, + sym__brace_start, + ACTIONS(3148), 1, + sym__special_character, + ACTIONS(3151), 1, + sym_test_operator, + STATE(596), 1, + aux_sym_command_repeat2, + STATE(1154), 1, + aux_sym__literal_repeat1, + STATE(1265), 1, + sym_concatenation, + ACTIONS(2102), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3145), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3142), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1382), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1671), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + [14482] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(360), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(368), 1, aux_sym_number_token1, + ACTIONS(370), 1, aux_sym_number_token2, + ACTIONS(374), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(388), 1, + sym__brace_start, + ACTIONS(1085), 1, + sym__special_character, + ACTIONS(1663), 1, + sym_file_descriptor, + ACTIONS(1971), 1, + anon_sym_DQUOTE, + ACTIONS(1973), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1975), 1, + anon_sym_BQUOTE, + ACTIONS(1977), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1983), 1, + sym__bare_dollar, + ACTIONS(3140), 1, + sym_test_operator, + STATE(590), 1, + aux_sym_command_repeat2, + STATE(1154), 1, + aux_sym__literal_repeat1, + STATE(1265), 1, + sym_concatenation, + ACTIONS(1967), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1979), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3138), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3136), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [13177] = 32, - ACTIONS(63), 1, + STATE(1382), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1661), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + [14580] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(436), 1, + ACTIONS(2094), 1, + sym_file_descriptor, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(2974), 1, + anon_sym_DQUOTE, + ACTIONS(2977), 1, + aux_sym_number_token1, + ACTIONS(2980), 1, + aux_sym_number_token2, + ACTIONS(2983), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2986), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2989), 1, + anon_sym_BQUOTE, + ACTIONS(2992), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3001), 1, + sym__brace_start, + ACTIONS(3157), 1, + sym__special_character, + ACTIONS(3160), 1, + sym_test_operator, + STATE(1519), 1, + aux_sym__literal_repeat1, + ACTIONS(2965), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2995), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(598), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3154), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1375), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2059), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [14672] = 32, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(458), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(460), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(466), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(468), 1, + ACTIONS(63), 1, + sym_comment, + ACTIONS(360), 1, anon_sym_DOLLAR, - ACTIONS(470), 1, + ACTIONS(362), 1, sym__special_character, - ACTIONS(472), 1, + ACTIONS(364), 1, anon_sym_DQUOTE, - ACTIONS(476), 1, + ACTIONS(368), 1, aux_sym_number_token1, - ACTIONS(478), 1, + ACTIONS(370), 1, aux_sym_number_token2, - ACTIONS(480), 1, + ACTIONS(372), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(482), 1, + ACTIONS(374), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(484), 1, + ACTIONS(376), 1, anon_sym_BQUOTE, - ACTIONS(486), 1, + ACTIONS(378), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(490), 1, + ACTIONS(382), 1, sym_test_operator, - ACTIONS(494), 1, + ACTIONS(386), 1, sym_variable_name, - ACTIONS(496), 1, + ACTIONS(388), 1, sym__brace_start, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_file_descriptor, - ACTIONS(3025), 1, + ACTIONS(3084), 1, sym_word, - STATE(448), 1, + STATE(495), 1, sym_command_name, - STATE(823), 1, + STATE(1096), 1, aux_sym__literal_repeat1, - STATE(1020), 1, + STATE(1341), 1, sym_concatenation, - STATE(1214), 1, + STATE(1665), 1, sym_variable_assignment, - STATE(2858), 1, + STATE(3033), 1, sym_command, - STATE(4152), 1, + STATE(4321), 1, sym_subscript, - ACTIONS(474), 2, + ACTIONS(340), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(366), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(488), 2, + ACTIONS(380), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1023), 2, + STATE(949), 2, sym_file_redirect, aux_sym_command_repeat1, - STATE(2872), 2, + STATE(3027), 2, sym_subshell, sym_test_command, - ACTIONS(1395), 3, + ACTIONS(1447), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(1393), 5, + ACTIONS(1445), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(688), 9, + STATE(959), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -66954,32 +69567,59 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [13292] = 7, + [14788] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2978), 1, - anon_sym_DQUOTE, - STATE(1416), 1, - sym_string, - ACTIONS(3029), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1221), 3, + ACTIONS(2047), 1, sym_file_descriptor, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3027), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(2913), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 33, - anon_sym_LF, + ACTIONS(2917), 1, + anon_sym_DQUOTE, + ACTIONS(2919), 1, + aux_sym_number_token1, + ACTIONS(2921), 1, + aux_sym_number_token2, + ACTIONS(2923), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2925), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2927), 1, + anon_sym_BQUOTE, + ACTIONS(2929), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2935), 1, + sym__brace_start, + ACTIONS(3070), 1, + sym__special_character, + ACTIONS(3072), 1, + sym_test_operator, + STATE(1519), 1, + aux_sym__literal_repeat1, + ACTIONS(2911), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2931), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(598), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3068), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1375), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2045), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -66996,153 +69636,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + [14880] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2051), 1, + sym_file_descriptor, + ACTIONS(2913), 1, + anon_sym_DOLLAR, + ACTIONS(2917), 1, + anon_sym_DQUOTE, + ACTIONS(2919), 1, aux_sym_number_token1, + ACTIONS(2921), 1, aux_sym_number_token2, + ACTIONS(2923), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2925), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2927), 1, anon_sym_BQUOTE, + ACTIONS(2929), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2935), 1, + sym__brace_start, + ACTIONS(3070), 1, + sym__special_character, + ACTIONS(3072), 1, + sym_test_operator, + STATE(1519), 1, + aux_sym__literal_repeat1, + ACTIONS(2911), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2931), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(598), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3068), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - sym_test_operator, - [13357] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2008), 1, - sym__simple_heredoc_body, - ACTIONS(2010), 1, - sym__heredoc_body_beginning, - STATE(3946), 1, - sym_heredoc_body, - ACTIONS(1921), 21, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, + STATE(1375), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2049), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [14972] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(360), 1, + anon_sym_DOLLAR, + ACTIONS(368), 1, + aux_sym_number_token1, + ACTIONS(370), 1, + aux_sym_number_token2, + ACTIONS(374), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(388), 1, + sym__brace_start, + ACTIONS(1085), 1, + sym__special_character, + ACTIONS(1719), 1, + sym_file_descriptor, + ACTIONS(1971), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1973), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1975), 1, anon_sym_BQUOTE, + ACTIONS(1977), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1983), 1, + sym__bare_dollar, + ACTIONS(3140), 1, + sym_test_operator, + STATE(588), 1, + aux_sym_command_repeat2, + STATE(1154), 1, + aux_sym__literal_repeat1, + STATE(1265), 1, + sym_concatenation, + ACTIONS(1967), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1979), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(1919), 25, - anon_sym_for, - anon_sym_select, + ACTIONS(3138), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3136), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1382), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1717), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [13420] = 32, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + [15070] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(458), 1, - anon_sym_LBRACK, - ACTIONS(460), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(586), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(588), 1, + ACTIONS(3163), 1, + sym_word, + ACTIONS(3169), 1, anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(3172), 1, sym__special_character, - ACTIONS(592), 1, + ACTIONS(3175), 1, anon_sym_DQUOTE, - ACTIONS(596), 1, + ACTIONS(3181), 1, aux_sym_number_token1, - ACTIONS(598), 1, + ACTIONS(3184), 1, aux_sym_number_token2, - ACTIONS(600), 1, + ACTIONS(3187), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(602), 1, + ACTIONS(3190), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(604), 1, + ACTIONS(3193), 1, anon_sym_BQUOTE, - ACTIONS(606), 1, + ACTIONS(3196), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(610), 1, + ACTIONS(3202), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3205), 1, sym_test_operator, - ACTIONS(614), 1, + ACTIONS(3208), 1, sym_variable_name, - ACTIONS(616), 1, + ACTIONS(3211), 1, sym__brace_start, - ACTIONS(1397), 1, - sym_file_descriptor, - ACTIONS(3031), 1, - sym_word, - STATE(463), 1, - sym_command_name, - STATE(896), 1, + STATE(1986), 1, aux_sym__literal_repeat1, - STATE(1170), 1, - sym_concatenation, - STATE(1405), 1, - sym_variable_assignment, - STATE(2858), 1, - sym_command, - STATE(4145), 1, + STATE(4382), 1, sym_subscript, - ACTIONS(594), 2, + ACTIONS(3166), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3178), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(608), 2, + ACTIONS(3199), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(894), 2, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(2872), 2, - sym_subshell, - sym_test_command, - ACTIONS(1395), 3, + STATE(603), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1467), 5, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1393), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(725), 9, + STATE(1588), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -67152,80 +69850,72 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [13535] = 32, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(39), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(41), 1, + ACTIONS(1505), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [15170] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1043), 1, anon_sym_DOLLAR, - ACTIONS(43), 1, - sym__special_character, - ACTIONS(45), 1, + ACTIONS(1047), 1, anon_sym_DQUOTE, - ACTIONS(49), 1, + ACTIONS(1051), 1, aux_sym_number_token1, - ACTIONS(51), 1, + ACTIONS(1053), 1, aux_sym_number_token2, - ACTIONS(53), 1, + ACTIONS(1055), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, + ACTIONS(1057), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(57), 1, + ACTIONS(1059), 1, anon_sym_BQUOTE, - ACTIONS(59), 1, + ACTIONS(1061), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(63), 1, - sym_comment, - ACTIONS(65), 1, - sym_test_operator, - ACTIONS(69), 1, - sym_variable_name, - ACTIONS(71), 1, + ACTIONS(1069), 1, sym__brace_start, - ACTIONS(1397), 1, - sym_file_descriptor, - ACTIONS(3033), 1, + ACTIONS(3214), 1, sym_word, - STATE(483), 1, - sym_command_name, - STATE(1106), 1, + ACTIONS(3218), 1, + sym__special_character, + ACTIONS(3222), 1, + sym_test_operator, + ACTIONS(3224), 1, + sym__bare_dollar, + STATE(609), 1, + aux_sym_command_repeat2, + STATE(1765), 1, aux_sym__literal_repeat1, - STATE(1197), 1, + STATE(1991), 1, sym_concatenation, - STATE(1487), 1, - sym_variable_assignment, - STATE(3118), 1, - sym_command, - STATE(4112), 1, - sym_subscript, - ACTIONS(47), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(61), 2, + ACTIONS(1033), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1063), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(975), 2, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(3119), 2, - sym_subshell, - sym_test_command, - ACTIONS(1395), 3, + ACTIONS(3216), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3220), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1721), 5, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1393), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(852), 9, + STATE(1475), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -67235,80 +69925,85 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [13650] = 32, - ACTIONS(63), 1, + ACTIONS(1723), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [15269] = 25, + ACTIONS(3), 1, sym_comment, - ACTIONS(272), 1, - anon_sym_LBRACK, - ACTIONS(276), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(312), 1, - sym_variable_name, - ACTIONS(1073), 1, + ACTIONS(1378), 1, + sym_word, + ACTIONS(1396), 1, anon_sym_LPAREN, - ACTIONS(1077), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1079), 1, + ACTIONS(1400), 1, anon_sym_DOLLAR, - ACTIONS(1081), 1, + ACTIONS(1402), 1, sym__special_character, - ACTIONS(1083), 1, + ACTIONS(1404), 1, anon_sym_DQUOTE, - ACTIONS(1087), 1, + ACTIONS(1408), 1, aux_sym_number_token1, - ACTIONS(1089), 1, + ACTIONS(1410), 1, aux_sym_number_token2, - ACTIONS(1091), 1, + ACTIONS(1412), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1093), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1095), 1, + ACTIONS(1428), 1, anon_sym_BQUOTE, - ACTIONS(1097), 1, + ACTIONS(1430), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1101), 1, + ACTIONS(1434), 1, sym_test_operator, - ACTIONS(1105), 1, + ACTIONS(1436), 1, sym__brace_start, - ACTIONS(1397), 1, - sym_file_descriptor, - ACTIONS(3035), 1, - sym_word, - STATE(626), 1, - sym_command_name, - STATE(1722), 1, + ACTIONS(3230), 1, + anon_sym_RBRACE3, + STATE(2262), 1, aux_sym__literal_repeat1, - STATE(1977), 1, - sym_concatenation, - STATE(2089), 1, - sym_variable_assignment, - STATE(3466), 1, - sym_command, - STATE(4091), 1, - sym_subscript, - ACTIONS(1085), 2, + ACTIONS(1380), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1406), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1099), 2, + ACTIONS(1432), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(978), 2, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(3467), 2, - sym_subshell, - sym_test_command, - ACTIONS(1395), 3, + ACTIONS(3232), 2, + anon_sym_COMMA2, + anon_sym_CARET2, + ACTIONS(3234), 2, + anon_sym_COMMA_COMMA2, + anon_sym_CARET_CARET2, + STATE(824), 3, + sym_concatenation, + sym_array, + aux_sym__expansion_body_repeat2, + ACTIONS(3226), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_POUND, + ACTIONS(3228), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1393), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(1555), 9, + anon_sym_COLON, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + STATE(2173), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -67318,21 +70013,20 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [13765] = 7, + [15370] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(2506), 1, anon_sym_DQUOTE, - STATE(1123), 1, + STATE(1253), 1, sym_string, - ACTIONS(2929), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + ACTIONS(1217), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(2927), 9, + ACTIONS(3128), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3126), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -67342,8 +70036,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 33, - anon_sym_LF, + ACTIONS(1215), 34, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -67360,6 +70054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -67376,21 +70071,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [13830] = 7, + [15435] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(2506), 1, anon_sym_DQUOTE, - STATE(1123), 1, + STATE(1253), 1, sym_string, - ACTIONS(2929), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1221), 3, + ACTIONS(1213), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(2927), 9, + ACTIONS(3128), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3126), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -67400,8 +70094,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 33, - anon_sym_LF, + ACTIONS(1205), 34, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -67418,6 +70112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -67434,163 +70129,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [13895] = 32, - ACTIONS(63), 1, + [15500] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(99), 1, - anon_sym_LBRACK, - ACTIONS(101), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(380), 1, + ACTIONS(3246), 1, + anon_sym_LT_LT_LT, + ACTIONS(3250), 1, + sym_variable_name, + STATE(4363), 1, + sym_subscript, + ACTIONS(3240), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3242), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3244), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3248), 2, + sym_file_descriptor, + sym__brace_start, + STATE(2722), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3238), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_AMP, + ACTIONS(2857), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(2720), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3236), 25, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(382), 1, anon_sym_DOLLAR, - ACTIONS(384), 1, sym__special_character, - ACTIONS(386), 1, anon_sym_DQUOTE, - ACTIONS(390), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(392), 1, aux_sym_number_token2, - ACTIONS(394), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(396), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(400), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(404), 1, - sym_test_operator, - ACTIONS(408), 1, - sym_variable_name, - ACTIONS(410), 1, - sym__brace_start, - ACTIONS(1397), 1, - sym_file_descriptor, - ACTIONS(3037), 1, - sym_word, - STATE(512), 1, - sym_command_name, - STATE(1172), 1, - aux_sym__literal_repeat1, - STATE(1268), 1, - sym_concatenation, - STATE(1587), 1, - sym_variable_assignment, - STATE(2978), 1, - sym_command, - STATE(4106), 1, - sym_subscript, - ACTIONS(388), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(402), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(961), 2, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(2977), 2, - sym_subshell, - sym_test_command, - ACTIONS(1395), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1393), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(1012), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [14010] = 32, + sym_word, + sym_test_operator, + [15577] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(99), 1, - anon_sym_LBRACK, - ACTIONS(101), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(380), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(382), 1, + ACTIONS(3253), 1, + sym_word, + ACTIONS(3262), 1, anon_sym_DOLLAR, - ACTIONS(384), 1, + ACTIONS(3265), 1, sym__special_character, - ACTIONS(386), 1, + ACTIONS(3268), 1, anon_sym_DQUOTE, - ACTIONS(390), 1, + ACTIONS(3274), 1, aux_sym_number_token1, - ACTIONS(392), 1, + ACTIONS(3277), 1, aux_sym_number_token2, - ACTIONS(394), 1, + ACTIONS(3280), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(396), 1, + ACTIONS(3283), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(398), 1, + ACTIONS(3286), 1, anon_sym_BQUOTE, - ACTIONS(400), 1, + ACTIONS(3289), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(404), 1, + ACTIONS(3295), 1, sym_test_operator, - ACTIONS(408), 1, - sym_variable_name, - ACTIONS(410), 1, + ACTIONS(3298), 1, + sym__bare_dollar, + ACTIONS(3301), 1, sym__brace_start, - ACTIONS(1397), 1, - sym_file_descriptor, - ACTIONS(3037), 1, - sym_word, - STATE(521), 1, - sym_command_name, - STATE(1172), 1, + STATE(609), 1, + aux_sym_command_repeat2, + STATE(1765), 1, aux_sym__literal_repeat1, - STATE(1268), 1, + STATE(1991), 1, sym_concatenation, - STATE(1556), 1, - sym_variable_assignment, - STATE(2978), 1, - sym_command, - STATE(4106), 1, - sym_subscript, - ACTIONS(388), 2, + ACTIONS(3256), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3259), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3271), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(402), 2, + ACTIONS(3292), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(964), 2, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(2977), 2, - sym_subshell, - sym_test_command, - ACTIONS(1395), 3, + ACTIONS(1671), 5, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1393), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(1012), 9, + STATE(1475), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -67600,89 +70256,56 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [14125] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1925), 1, - anon_sym_BQUOTE, - ACTIONS(2008), 1, - sym__simple_heredoc_body, - ACTIONS(2010), 1, - sym__heredoc_body_beginning, - STATE(3934), 1, - sym_heredoc_body, - ACTIONS(1921), 20, + ACTIONS(1709), 11, sym_file_descriptor, - sym_variable_name, - sym__brace_start, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [15676] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3248), 1, + sym__brace_start, + ACTIONS(3250), 1, + sym_variable_name, + ACTIONS(3306), 1, + sym_file_descriptor, + STATE(4363), 1, + sym_subscript, + STATE(2722), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(2720), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(1919), 25, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - [14190] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2944), 1, - anon_sym_DQUOTE, - STATE(1378), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3041), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3039), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 34, - anon_sym_LF, + sym_test_operator, + ACTIONS(3304), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -67690,9 +70313,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -67700,76 +70325,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [14255] = 24, + [15745] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(3043), 1, - sym_word, - ACTIONS(3045), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3047), 1, + ACTIONS(1043), 1, anon_sym_DOLLAR, - ACTIONS(3049), 1, - sym__special_character, - ACTIONS(3051), 1, + ACTIONS(1047), 1, anon_sym_DQUOTE, - ACTIONS(3055), 1, + ACTIONS(1051), 1, aux_sym_number_token1, - ACTIONS(3057), 1, + ACTIONS(1053), 1, aux_sym_number_token2, - ACTIONS(3059), 1, + ACTIONS(1055), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3061), 1, + ACTIONS(1057), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3063), 1, + ACTIONS(1059), 1, anon_sym_BQUOTE, - ACTIONS(3065), 1, + ACTIONS(1061), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3069), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3071), 1, - sym_test_operator, - ACTIONS(3073), 1, - sym_variable_name, - ACTIONS(3075), 1, + ACTIONS(1069), 1, sym__brace_start, - STATE(2016), 1, + ACTIONS(3214), 1, + sym_word, + ACTIONS(3218), 1, + sym__special_character, + ACTIONS(3222), 1, + sym_test_operator, + ACTIONS(3224), 1, + sym__bare_dollar, + STATE(604), 1, + aux_sym_command_repeat2, + STATE(1765), 1, aux_sym__literal_repeat1, - STATE(4158), 1, - sym_subscript, - ACTIONS(3053), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3067), 2, + STATE(1991), 1, + sym_concatenation, + ACTIONS(1033), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1063), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(614), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1497), 5, + ACTIONS(3216), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3220), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1661), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - STATE(1665), 9, + STATE(1475), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -67779,7 +70391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1501), 11, + ACTIONS(1663), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -67791,48 +70403,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [14354] = 20, - ACTIONS(3), 1, + [15844] = 24, + ACTIONS(63), 1, sym_comment, - ACTIONS(2053), 1, - sym_file_descriptor, - ACTIONS(2868), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2871), 1, + ACTIONS(1043), 1, anon_sym_DOLLAR, - ACTIONS(2877), 1, + ACTIONS(1047), 1, anon_sym_DQUOTE, - ACTIONS(2880), 1, + ACTIONS(1051), 1, aux_sym_number_token1, - ACTIONS(2883), 1, + ACTIONS(1053), 1, aux_sym_number_token2, - ACTIONS(2886), 1, + ACTIONS(1055), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2889), 1, + ACTIONS(1057), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2892), 1, + ACTIONS(1059), 1, anon_sym_BQUOTE, - ACTIONS(2895), 1, + ACTIONS(1061), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2904), 1, + ACTIONS(1069), 1, sym__brace_start, - ACTIONS(3080), 1, + ACTIONS(3214), 1, + sym_word, + ACTIONS(3218), 1, sym__special_character, - ACTIONS(3083), 1, + ACTIONS(3222), 1, sym_test_operator, - STATE(1499), 1, + ACTIONS(3224), 1, + sym__bare_dollar, + STATE(609), 1, + aux_sym_command_repeat2, + STATE(1765), 1, aux_sym__literal_repeat1, - ACTIONS(2898), 2, + STATE(1991), 1, + sym_concatenation, + ACTIONS(1033), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1063), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(605), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3077), 3, + ACTIONS(3216), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3220), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1395), 9, + ACTIONS(1591), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + STATE(1475), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -67842,72 +70466,70 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2015), 19, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(1607), 11, + sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - [14445] = 7, + [15943] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, - anon_sym_DQUOTE, - STATE(1307), 1, - sym_string, - ACTIONS(3023), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, + ACTIONS(3246), 1, + anon_sym_LT_LT_LT, + ACTIONS(3250), 1, sym_variable_name, - sym__brace_start, - ACTIONS(3019), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 33, - anon_sym_LF, - anon_sym_SEMI, + STATE(4363), 1, + sym_subscript, + ACTIONS(3240), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(3242), 2, anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3244), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3248), 2, + sym_file_descriptor, + sym__brace_start, + STATE(2722), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3308), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_AMP, + ACTIONS(3310), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(2720), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3236), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -67920,21 +70542,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [14510] = 7, + [16020] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(2917), 1, anon_sym_DQUOTE, - STATE(1307), 1, + STATE(1431), 1, sym_string, - ACTIONS(3023), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1221), 3, + ACTIONS(1213), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(3019), 9, + ACTIONS(3066), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3064), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -67944,8 +70565,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 33, - anon_sym_LF, + ACTIONS(1205), 34, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -67962,6 +70583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -67978,48 +70600,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [14575] = 20, - ACTIONS(3), 1, + [16085] = 24, + ACTIONS(63), 1, sym_comment, - ACTIONS(2002), 1, - sym_file_descriptor, - ACTIONS(2938), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2940), 1, + ACTIONS(1043), 1, anon_sym_DOLLAR, - ACTIONS(2944), 1, + ACTIONS(1047), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(1051), 1, aux_sym_number_token1, - ACTIONS(2948), 1, + ACTIONS(1053), 1, aux_sym_number_token2, - ACTIONS(2950), 1, + ACTIONS(1055), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2952), 1, + ACTIONS(1057), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2954), 1, + ACTIONS(1059), 1, anon_sym_BQUOTE, - ACTIONS(2956), 1, + ACTIONS(1061), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2962), 1, + ACTIONS(1069), 1, sym__brace_start, - ACTIONS(3088), 1, + ACTIONS(3214), 1, + sym_word, + ACTIONS(3218), 1, sym__special_character, - ACTIONS(3090), 1, + ACTIONS(3222), 1, sym_test_operator, - STATE(1499), 1, + ACTIONS(3224), 1, + sym__bare_dollar, + STATE(612), 1, + aux_sym_command_repeat2, + STATE(1765), 1, aux_sym__literal_repeat1, - ACTIONS(2958), 2, + STATE(1991), 1, + sym_concatenation, + ACTIONS(1033), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1063), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(605), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3086), 3, + ACTIONS(3216), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3220), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1395), 9, + ACTIONS(1717), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + STATE(1475), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -68029,249 +70663,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2000), 19, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(1719), 11, + sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - [14666] = 7, - ACTIONS(63), 1, + [16184] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(2008), 1, - sym__simple_heredoc_body, - ACTIONS(2010), 1, - sym__heredoc_body_beginning, - ACTIONS(2191), 1, - anon_sym_BQUOTE, - STATE(3924), 1, - sym_heredoc_body, - ACTIONS(1921), 20, - sym_file_descriptor, + ACTIONS(3250), 1, sym_variable_name, + STATE(4363), 1, + sym_subscript, + ACTIONS(3244), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3248), 2, + sym_file_descriptor, sym__brace_start, + STATE(2722), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(2720), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3312), 12, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - ACTIONS(1919), 25, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [14731] = 25, + [16253] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 1, - sym_word, - ACTIONS(3098), 1, - anon_sym_LPAREN, - ACTIONS(3100), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(3104), 1, - sym__special_character, - ACTIONS(3106), 1, + ACTIONS(1971), 1, anon_sym_DQUOTE, - ACTIONS(3110), 1, - aux_sym_number_token1, - ACTIONS(3112), 1, - aux_sym_number_token2, - ACTIONS(3114), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3116), 1, - anon_sym_RBRACE3, - ACTIONS(3122), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3124), 1, - anon_sym_BQUOTE, - ACTIONS(3126), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3130), 1, - sym_test_operator, - ACTIONS(3132), 1, - sym__brace_start, - STATE(2187), 1, - aux_sym__literal_repeat1, - ACTIONS(3108), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3120), 2, - anon_sym_COMMA2, - anon_sym_CARET2, - ACTIONS(3128), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3118), 3, - anon_sym_SLASH2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - STATE(797), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat1, - ACTIONS(3094), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3096), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - STATE(2098), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(926), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [14832] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3043), 1, - sym_word, - ACTIONS(3045), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3047), 1, - anon_sym_DOLLAR, - ACTIONS(3049), 1, - sym__special_character, - ACTIONS(3051), 1, - anon_sym_DQUOTE, - ACTIONS(3055), 1, - aux_sym_number_token1, - ACTIONS(3057), 1, - aux_sym_number_token2, - ACTIONS(3059), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3061), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3063), 1, - anon_sym_BQUOTE, - ACTIONS(3065), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3071), 1, - sym_test_operator, - ACTIONS(3073), 1, - sym_variable_name, - ACTIONS(3075), 1, - sym__brace_start, - ACTIONS(3134), 1, + ACTIONS(2369), 2, aux_sym__simple_variable_name_token1, - STATE(2016), 1, - aux_sym__literal_repeat1, - STATE(4158), 1, - sym_subscript, - ACTIONS(3053), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3067), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(604), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1463), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1665), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1491), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [14931] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2944), 1, - anon_sym_DQUOTE, - STATE(1378), 1, - sym_string, - ACTIONS(1221), 2, + aux_sym__multiline_variable_name_token1, + ACTIONS(1213), 3, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(3041), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3039), 9, + ACTIONS(2367), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -68281,27 +70759,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 34, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(1205), 33, + anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, sym_raw_string, @@ -68316,21 +70793,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [14996] = 7, + [16318] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2502), 1, + ACTIONS(1971), 1, anon_sym_DQUOTE, - STATE(1330), 1, + STATE(926), 1, sym_string, - ACTIONS(3138), 2, + ACTIONS(2369), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1217), 3, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3136), 9, + ACTIONS(2367), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -68340,9 +70817,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 33, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(1215), 33, + anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -68350,16 +70827,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, sym_raw_string, @@ -68374,96 +70851,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [15061] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3140), 1, - sym_word, - ACTIONS(3143), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3146), 1, - anon_sym_DOLLAR, - ACTIONS(3149), 1, - sym__special_character, - ACTIONS(3152), 1, - anon_sym_DQUOTE, - ACTIONS(3158), 1, - aux_sym_number_token1, - ACTIONS(3161), 1, - aux_sym_number_token2, - ACTIONS(3164), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3167), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3170), 1, - anon_sym_BQUOTE, - ACTIONS(3173), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3179), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3182), 1, - sym_test_operator, - ACTIONS(3185), 1, - sym_variable_name, - ACTIONS(3188), 1, - sym__brace_start, - STATE(2016), 1, - aux_sym__literal_repeat1, - STATE(4158), 1, - sym_subscript, - ACTIONS(3155), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3176), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(614), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1412), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1665), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1453), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [15160] = 7, + [16383] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2502), 1, + ACTIONS(2917), 1, anon_sym_DQUOTE, - STATE(1330), 1, + STATE(1431), 1, sym_string, - ACTIONS(3138), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1221), 3, + ACTIONS(1217), 2, sym_file_descriptor, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3136), 9, + ACTIONS(3066), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3064), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -68473,8 +70874,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 33, - anon_sym_LF, + ACTIONS(1215), 34, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -68491,6 +70892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -68507,46 +70909,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [15225] = 19, - ACTIONS(3), 1, + [16448] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(2002), 1, - sym_file_descriptor, - ACTIONS(2938), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2940), 1, - anon_sym_DOLLAR, - ACTIONS(2944), 1, - anon_sym_DQUOTE, - ACTIONS(2946), 1, - aux_sym_number_token1, - ACTIONS(2948), 1, - aux_sym_number_token2, - ACTIONS(2950), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2952), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2956), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2962), 1, - sym__brace_start, - ACTIONS(3088), 1, - sym__special_character, - ACTIONS(3090), 1, - sym_test_operator, - STATE(1499), 1, + STATE(1968), 1, aux_sym__literal_repeat1, - ACTIONS(2958), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(605), 2, + STATE(642), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(3086), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1395), 9, + STATE(1620), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -68556,255 +70927,111 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2000), 20, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2045), 11, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [15314] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2006), 1, - sym_file_descriptor, - ACTIONS(2938), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2940), 1, anon_sym_DOLLAR, - ACTIONS(2944), 1, - anon_sym_DQUOTE, - ACTIONS(2946), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(2948), 1, aux_sym_number_token2, - ACTIONS(2950), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2952), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2956), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2962), 1, - sym__brace_start, - ACTIONS(3088), 1, - sym__special_character, - ACTIONS(3090), 1, - sym_test_operator, - STATE(1499), 1, - aux_sym__literal_repeat1, - ACTIONS(2958), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(605), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3086), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1395), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2004), 20, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [15403] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - STATE(1244), 1, - sym_string, - ACTIONS(1221), 2, + ACTIONS(2047), 25, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(3193), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3191), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 34, - anon_sym_LF, - anon_sym_SEMI, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [15468] = 7, - ACTIONS(3), 1, + [16510] = 4, + ACTIONS(63), 1, sym_comment, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - STATE(1244), 1, - sym_string, - ACTIONS(1217), 2, + ACTIONS(3314), 1, + anon_sym_RBRACE, + ACTIONS(931), 21, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(3193), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3191), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [15533] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2006), 1, - sym_file_descriptor, - ACTIONS(2938), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2940), 1, + ACTIONS(663), 26, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(2944), 1, - anon_sym_DQUOTE, - ACTIONS(2946), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(2948), 1, aux_sym_number_token2, - ACTIONS(2950), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2952), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2954), 1, - anon_sym_BQUOTE, - ACTIONS(2956), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2962), 1, - sym__brace_start, - ACTIONS(3088), 1, - sym__special_character, - ACTIONS(3090), 1, - sym_test_operator, - STATE(1499), 1, + sym_word, + [16568] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1443), 1, aux_sym__literal_repeat1, - ACTIONS(2958), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(605), 2, + STATE(639), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(3086), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1395), 9, + ACTIONS(2051), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + STATE(1580), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -68814,9 +71041,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2004), 19, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(2049), 33, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -68824,7 +71050,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -68832,265 +71057,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - [15624] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3092), 1, - sym_word, - ACTIONS(3098), 1, - anon_sym_LPAREN, - ACTIONS(3100), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3102), 1, anon_sym_DOLLAR, - ACTIONS(3104), 1, sym__special_character, - ACTIONS(3106), 1, anon_sym_DQUOTE, - ACTIONS(3110), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3112), 1, aux_sym_number_token2, - ACTIONS(3114), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3122), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3124), 1, anon_sym_BQUOTE, - ACTIONS(3126), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3130), 1, - sym_test_operator, - ACTIONS(3132), 1, - sym__brace_start, - ACTIONS(3199), 1, - anon_sym_RBRACE3, - STATE(2187), 1, - aux_sym__literal_repeat1, - ACTIONS(3108), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3128), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3203), 2, - anon_sym_COMMA2, - anon_sym_CARET2, - ACTIONS(3201), 3, - anon_sym_SLASH2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - STATE(796), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat1, - ACTIONS(3195), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3197), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - STATE(2098), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [15725] = 7, - ACTIONS(3), 1, + sym_word, + sym_test_operator, + [16630] = 4, + ACTIONS(63), 1, sym_comment, - ACTIONS(2978), 1, - anon_sym_DQUOTE, - STATE(1416), 1, - sym_string, - ACTIONS(3029), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + ACTIONS(2855), 1, + ts_builtin_sym_end, + ACTIONS(2853), 21, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3027), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [15790] = 32, - ACTIONS(63), 1, - sym_comment, - ACTIONS(99), 1, - anon_sym_LBRACK, - ACTIONS(101), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(137), 1, - sym_variable_name, - ACTIONS(364), 1, + ACTIONS(2851), 26, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, anon_sym_LPAREN, - ACTIONS(380), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(382), 1, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(386), 1, - anon_sym_DQUOTE, - ACTIONS(390), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(392), 1, aux_sym_number_token2, - ACTIONS(394), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(396), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(398), 1, - anon_sym_BQUOTE, - ACTIONS(400), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(410), 1, - sym__brace_start, - ACTIONS(801), 1, - sym__special_character, - ACTIONS(805), 1, - sym_test_operator, - ACTIONS(1397), 1, - sym_file_descriptor, - ACTIONS(3205), 1, sym_word, - STATE(479), 1, - sym_command_name, - STATE(1172), 1, - aux_sym__literal_repeat1, - STATE(1268), 1, - sym_concatenation, - STATE(1556), 1, - sym_variable_assignment, - STATE(2978), 1, - sym_command, - STATE(4092), 1, - sym_subscript, - ACTIONS(402), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(803), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(886), 2, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(2977), 2, - sym_subshell, - sym_test_command, - ACTIONS(1395), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1393), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(865), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [15905] = 14, + [16688] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 1, - anon_sym_LF, - ACTIONS(3221), 1, + ACTIONS(3323), 1, anon_sym_LT_LT_LT, - ACTIONS(3225), 1, + ACTIONS(3325), 1, sym_variable_name, - STATE(4146), 1, + STATE(4358), 1, sym_subscript, - ACTIONS(3211), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(3213), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3215), 2, + ACTIONS(3242), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(3219), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3223), 2, + ACTIONS(3248), 2, sym_file_descriptor, sym__brace_start, - STATE(2457), 2, + ACTIONS(3319), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3321), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2749), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(3217), 4, - anon_sym_esac, + ACTIONS(3310), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - STATE(2450), 4, + ACTIONS(3317), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2780), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 24, + ACTIONS(3236), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -69115,41 +71192,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [15983] = 9, + [16764] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3325), 1, sym_variable_name, - STATE(4146), 1, + STATE(4358), 1, sym_subscript, - ACTIONS(3219), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3223), 2, + ACTIONS(3248), 2, sym_file_descriptor, sym__brace_start, - STATE(2457), 2, + ACTIONS(3321), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2749), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - STATE(2450), 4, + STATE(2780), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3228), 12, - anon_sym_LF, + ACTIONS(3312), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 24, + ACTIONS(3236), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -69174,59 +71251,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [16051] = 24, - ACTIONS(63), 1, + [16832] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1077), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1079), 1, - anon_sym_DOLLAR, - ACTIONS(1083), 1, - anon_sym_DQUOTE, - ACTIONS(1087), 1, - aux_sym_number_token1, - ACTIONS(1089), 1, - aux_sym_number_token2, - ACTIONS(1091), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1093), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1095), 1, - anon_sym_BQUOTE, - ACTIONS(1097), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1105), 1, - sym__brace_start, - ACTIONS(3230), 1, - sym_word, - ACTIONS(3234), 1, - sym__special_character, - ACTIONS(3238), 1, - sym_test_operator, - ACTIONS(3240), 1, - sym__bare_dollar, - STATE(629), 1, - aux_sym_command_repeat2, - STATE(1685), 1, + STATE(1443), 1, aux_sym__literal_repeat1, - STATE(1871), 1, + STATE(639), 2, sym_concatenation, - ACTIONS(1099), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3232), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3236), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1527), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1570), 9, + aux_sym_for_statement_repeat1, + ACTIONS(2047), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + STATE(1580), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -69236,71 +71273,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1529), 11, - sym_file_descriptor, + ACTIONS(2045), 33, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - [16149] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1077), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1079), 1, anon_sym_DOLLAR, - ACTIONS(1083), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1087), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1089), 1, aux_sym_number_token2, - ACTIONS(1091), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1093), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1095), 1, anon_sym_BQUOTE, - ACTIONS(1097), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1105), 1, - sym__brace_start, - ACTIONS(3230), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(3234), 1, - sym__special_character, - ACTIONS(3238), 1, sym_test_operator, - ACTIONS(3240), 1, - sym__bare_dollar, - STATE(635), 1, - aux_sym_command_repeat2, - STATE(1685), 1, + [16894] = 6, + ACTIONS(63), 1, + sym_comment, + STATE(1968), 1, aux_sym__literal_repeat1, - STATE(1871), 1, + STATE(642), 2, sym_concatenation, - ACTIONS(1099), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3232), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3236), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1505), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1570), 9, + aux_sym_for_statement_repeat1, + STATE(1620), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -69310,135 +71325,142 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1523), 11, + ACTIONS(2049), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2051), 25, sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [16247] = 14, - ACTIONS(3), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [16956] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(3221), 1, - anon_sym_LT_LT_LT, - ACTIONS(3225), 1, - sym_variable_name, - ACTIONS(3242), 1, - anon_sym_LF, - STATE(4146), 1, - sym_subscript, - ACTIONS(3213), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3215), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3219), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3223), 2, + ACTIONS(931), 22, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(3244), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(2457), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(2189), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(2450), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 24, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [16325] = 24, - ACTIONS(63), 1, + ACTIONS(663), 26, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [17012] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(1077), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1079), 1, + ACTIONS(2023), 1, + sym_file_descriptor, + ACTIONS(2502), 1, anon_sym_DOLLAR, - ACTIONS(1083), 1, + ACTIONS(2506), 1, anon_sym_DQUOTE, - ACTIONS(1087), 1, + ACTIONS(2508), 1, aux_sym_number_token1, - ACTIONS(1089), 1, + ACTIONS(2510), 1, aux_sym_number_token2, - ACTIONS(1091), 1, + ACTIONS(2512), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1093), 1, + ACTIONS(2514), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1095), 1, + ACTIONS(2516), 1, anon_sym_BQUOTE, - ACTIONS(1097), 1, + ACTIONS(2518), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1105), 1, + ACTIONS(2526), 1, sym__brace_start, - ACTIONS(3230), 1, - sym_word, - ACTIONS(3234), 1, + ACTIONS(3330), 1, sym__special_character, - ACTIONS(3238), 1, + ACTIONS(3332), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3334), 1, sym_test_operator, - ACTIONS(3240), 1, - sym__bare_dollar, - STATE(635), 1, - aux_sym_command_repeat2, - STATE(1685), 1, + STATE(1390), 1, aux_sym__literal_repeat1, - STATE(1871), 1, - sym_concatenation, - ACTIONS(1099), 2, + ACTIONS(2500), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2520), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3232), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3236), 2, + STATE(634), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3328), 3, sym_raw_string, sym_ansi_c_string, - ACTIONS(1615), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1570), 9, + sym_word, + STATE(1573), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -69448,194 +71470,187 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1617), 11, - sym_file_descriptor, + ACTIONS(2019), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - [16423] = 7, - ACTIONS(3), 1, + [17104] = 4, + ACTIONS(63), 1, sym_comment, - ACTIONS(2944), 1, - anon_sym_DQUOTE, - STATE(1378), 1, - sym_string, - ACTIONS(1221), 2, + ACTIONS(3336), 1, + anon_sym_RBRACE, + ACTIONS(931), 21, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(3041), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3039), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [16487] = 24, - ACTIONS(63), 1, + ACTIONS(663), 26, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [17162] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(1077), 1, + ACTIONS(3248), 1, + sym__brace_start, + ACTIONS(3306), 1, + sym_file_descriptor, + ACTIONS(3325), 1, + sym_variable_name, + STATE(4358), 1, + sym_subscript, + STATE(2749), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(2780), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1079), 1, anon_sym_DOLLAR, - ACTIONS(1083), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1087), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1089), 1, aux_sym_number_token2, - ACTIONS(1091), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1093), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1095), 1, anon_sym_BQUOTE, - ACTIONS(1097), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1105), 1, - sym__brace_start, - ACTIONS(3230), 1, - sym_word, - ACTIONS(3234), 1, - sym__special_character, - ACTIONS(3238), 1, - sym_test_operator, - ACTIONS(3240), 1, - sym__bare_dollar, - STATE(627), 1, - aux_sym_command_repeat2, - STATE(1685), 1, - aux_sym__literal_repeat1, - STATE(1871), 1, - sym_concatenation, - ACTIONS(1099), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3232), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3236), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1621), 5, + sym_word, + sym_test_operator, + ACTIONS(3304), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1570), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1623), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - [16585] = 7, + anon_sym_AMP, + [17230] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2944), 1, - anon_sym_DQUOTE, - STATE(1378), 1, - sym_string, - ACTIONS(1217), 2, + ACTIONS(3323), 1, + anon_sym_LT_LT_LT, + ACTIONS(3325), 1, + sym_variable_name, + STATE(4358), 1, + sym_subscript, + ACTIONS(3242), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3248), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3041), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3039), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 33, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(3319), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3321), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2749), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(2857), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(3339), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2780), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3236), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -69648,173 +71663,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [16649] = 7, - ACTIONS(3), 1, + [17306] = 4, + ACTIONS(63), 1, sym_comment, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - STATE(1244), 1, - sym_string, - ACTIONS(1217), 2, + ACTIONS(3341), 1, + anon_sym_RBRACE, + ACTIONS(931), 21, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(3193), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3191), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [16713] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - STATE(1244), 1, - sym_string, - ACTIONS(1221), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3193), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3191), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(663), 26, + anon_sym_for, + anon_sym_select, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [16777] = 24, - ACTIONS(63), 1, + [17364] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(3246), 1, - sym_word, - ACTIONS(3252), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3255), 1, + ACTIONS(2015), 1, + sym_file_descriptor, + ACTIONS(2502), 1, anon_sym_DOLLAR, - ACTIONS(3258), 1, - sym__special_character, - ACTIONS(3261), 1, + ACTIONS(2506), 1, anon_sym_DQUOTE, - ACTIONS(3267), 1, + ACTIONS(2508), 1, aux_sym_number_token1, - ACTIONS(3270), 1, + ACTIONS(2510), 1, aux_sym_number_token2, - ACTIONS(3273), 1, + ACTIONS(2512), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(2514), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3279), 1, + ACTIONS(2516), 1, anon_sym_BQUOTE, - ACTIONS(3282), 1, + ACTIONS(2518), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3288), 1, - sym_test_operator, - ACTIONS(3291), 1, - sym__bare_dollar, - ACTIONS(3294), 1, + ACTIONS(2526), 1, sym__brace_start, - STATE(635), 1, - aux_sym_command_repeat2, - STATE(1685), 1, + ACTIONS(3330), 1, + sym__special_character, + ACTIONS(3334), 1, + sym_test_operator, + ACTIONS(3344), 1, + aux_sym__simple_variable_name_token1, + STATE(1390), 1, aux_sym__literal_repeat1, - STATE(1871), 1, + ACTIONS(2500), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2520), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(636), 2, sym_concatenation, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3264), 2, + aux_sym_unset_command_repeat1, + ACTIONS(3328), 3, sym_raw_string, sym_ansi_c_string, - ACTIONS(3285), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1566), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1570), 9, + sym_word, + STATE(1573), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -69824,68 +71771,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1607), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [16875] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3223), 1, - sym__brace_start, - ACTIONS(3225), 1, - sym_variable_name, - ACTIONS(3299), 1, - sym_file_descriptor, - STATE(4146), 1, - sym_subscript, - STATE(2457), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2450), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(3297), 22, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(1989), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -69893,19 +71786,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - [16943] = 4, + [17456] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(2798), 1, + ACTIONS(3046), 1, ts_builtin_sym_end, - ACTIONS(2794), 21, + ACTIONS(2853), 21, sym_file_descriptor, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, @@ -69922,11 +71815,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(2792), 25, + ACTIONS(2851), 26, anon_sym_for, anon_sym_select, anon_sym_LT, anon_sym_GT, + anon_sym_LPAREN, anon_sym_while, anon_sym_until, anon_sym_if, @@ -69948,17 +71842,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [17000] = 4, + [17514] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2268), 1, + sym_file_descriptor, + ACTIONS(2564), 1, + anon_sym_DOLLAR, + ACTIONS(2570), 1, + anon_sym_DQUOTE, + ACTIONS(2573), 1, + aux_sym_number_token1, + ACTIONS(2576), 1, + aux_sym_number_token2, + ACTIONS(2579), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2582), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2585), 1, + anon_sym_BQUOTE, + ACTIONS(2588), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2600), 1, + sym__brace_start, + ACTIONS(3349), 1, + sym__special_character, + ACTIONS(3352), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3355), 1, + sym_test_operator, + STATE(1390), 1, + aux_sym__literal_repeat1, + ACTIONS(2561), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2591), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(636), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3346), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1573), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2230), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + [17606] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(2931), 1, - anon_sym_RBRACE, - ACTIONS(965), 21, + ACTIONS(3360), 21, sym_file_descriptor, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, @@ -69975,13 +71938,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(696), 25, + ACTIONS(3358), 27, anon_sym_for, anon_sym_select, anon_sym_LT, anon_sym_GT, + anon_sym_LPAREN, anon_sym_while, anon_sym_until, + anon_sym_do, anon_sym_if, anon_sym_case, anon_sym_function, @@ -70001,19 +71966,148 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [17057] = 7, + [17662] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1221), 1, + ACTIONS(3362), 1, + anon_sym_LPAREN, + ACTIONS(3364), 1, + aux_sym_concatenation_token1, + ACTIONS(3366), 1, sym__concat, - ACTIONS(3303), 1, + STATE(686), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1234), 3, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1225), 41, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [17726] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2731), 1, + anon_sym_DOLLAR, + ACTIONS(2737), 1, + anon_sym_DQUOTE, + ACTIONS(2740), 1, + aux_sym_number_token1, + ACTIONS(2743), 1, + aux_sym_number_token2, + ACTIONS(2746), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2749), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2752), 1, + anon_sym_BQUOTE, + ACTIONS(2755), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2764), 1, + sym__brace_start, + ACTIONS(3371), 1, + sym__special_character, + ACTIONS(3374), 1, + sym_test_operator, + STATE(1443), 1, + aux_sym__literal_repeat1, + ACTIONS(2094), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(2728), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2758), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(639), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3368), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1580), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2059), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + [17816] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3379), 1, anon_sym_DQUOTE, - STATE(1657), 1, + STATE(1681), 1, sym_string, - ACTIONS(3305), 2, + ACTIONS(3381), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3301), 9, + ACTIONS(1213), 3, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ACTIONS(3377), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -70023,132 +72117,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(1205), 32, + anon_sym_LPAREN_LPAREN, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [17120] = 4, - ACTIONS(63), 1, + [17880] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(2854), 1, - anon_sym_RBRACE, - ACTIONS(965), 21, + ACTIONS(3379), 1, + anon_sym_DQUOTE, + STATE(1681), 1, + sym_string, + ACTIONS(3381), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1217), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, + ACTIONS(3377), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 32, + anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - ACTIONS(696), 25, - anon_sym_for, - anon_sym_select, + [17944] = 21, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3383), 1, + sym_word, + ACTIONS(3389), 1, + anon_sym_DOLLAR, + ACTIONS(3392), 1, + sym__special_character, + ACTIONS(3395), 1, + anon_sym_DQUOTE, + ACTIONS(3401), 1, + aux_sym_number_token1, + ACTIONS(3404), 1, + aux_sym_number_token2, + ACTIONS(3407), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3410), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3413), 1, + anon_sym_BQUOTE, + ACTIONS(3416), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3422), 1, + sym_test_operator, + ACTIONS(3425), 1, + sym__brace_start, + STATE(1968), 1, + aux_sym__literal_repeat1, + ACTIONS(3386), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3398), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3419), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(642), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2059), 5, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_PIPE, anon_sym_AMP_GT, + STATE(1620), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2094), 13, + sym_file_descriptor, + sym_variable_name, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [18036] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3056), 1, + anon_sym_DQUOTE, + STATE(1302), 1, + sym_string, + ACTIONS(3058), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1217), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(3054), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - [17177] = 14, + sym_test_operator, + [18099] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3307), 1, - anon_sym_LF, - ACTIONS(3315), 1, + ACTIONS(3310), 1, + anon_sym_RPAREN, + ACTIONS(3434), 1, anon_sym_LT_LT_LT, - ACTIONS(3317), 1, + ACTIONS(3436), 1, sym_variable_name, - STATE(4142), 1, + STATE(4391), 1, sym_subscript, - ACTIONS(3215), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3223), 2, + ACTIONS(3248), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3309), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(3311), 2, + ACTIONS(3428), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3313), 2, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3432), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(2617), 2, + STATE(2892), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(2189), 3, + ACTIONS(3317), 4, + anon_sym_SEMI, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(2603), 4, + anon_sym_LF, + anon_sym_AMP, + STATE(2854), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 24, + ACTIONS(3236), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -70173,17 +72396,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [17254] = 4, + [18174] = 22, ACTIONS(63), 1, sym_comment, - ACTIONS(2966), 1, - ts_builtin_sym_end, - ACTIONS(2794), 21, + ACTIONS(3439), 1, + sym_word, + ACTIONS(3443), 1, + anon_sym_DOLLAR, + ACTIONS(3445), 1, + sym__special_character, + ACTIONS(3447), 1, + anon_sym_DQUOTE, + ACTIONS(3451), 1, + aux_sym_number_token1, + ACTIONS(3453), 1, + aux_sym_number_token2, + ACTIONS(3455), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3457), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3459), 1, + anon_sym_BQUOTE, + ACTIONS(3461), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3465), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3467), 1, + sym_test_operator, + ACTIONS(3469), 1, + sym__brace_start, + STATE(2118), 1, + aux_sym__literal_repeat1, + ACTIONS(3441), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3449), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3463), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(650), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2019), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + STATE(1756), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2023), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [18267] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(2853), 21, sym_file_descriptor, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, @@ -70200,11 +72492,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(2792), 25, + ACTIONS(2851), 26, anon_sym_for, anon_sym_select, anon_sym_LT, anon_sym_GT, + anon_sym_LPAREN, anon_sym_while, anon_sym_until, anon_sym_if, @@ -70226,45 +72519,110 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [17311] = 14, + [18322] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 1, + ACTIONS(2047), 1, + sym_file_descriptor, + ACTIONS(2913), 1, + anon_sym_DOLLAR, + ACTIONS(2917), 1, + anon_sym_DQUOTE, + ACTIONS(2919), 1, + aux_sym_number_token1, + ACTIONS(2921), 1, + aux_sym_number_token2, + ACTIONS(2923), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2925), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2927), 1, + anon_sym_BQUOTE, + ACTIONS(2929), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2935), 1, + sym__brace_start, + ACTIONS(3473), 1, + sym__special_character, + ACTIONS(3475), 1, + sym_test_operator, + STATE(1519), 1, + aux_sym__literal_repeat1, + ACTIONS(2911), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2931), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(672), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3471), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1878), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2045), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - ACTIONS(3317), 1, + [18411] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3477), 1, + ts_builtin_sym_end, + ACTIONS(3481), 1, sym_variable_name, - ACTIONS(3320), 1, - anon_sym_LF, - STATE(4142), 1, + STATE(4295), 1, sym_subscript, - ACTIONS(3215), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3223), 2, + ACTIONS(3248), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3311), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3313), 2, + ACTIONS(3479), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3322), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(2617), 2, + STATE(2819), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(3217), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(2603), 4, + STATE(2800), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 24, + ACTIONS(3312), 9, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -70289,45 +72647,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [17388] = 9, + [18480] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3223), 1, - sym__brace_start, - ACTIONS(3299), 1, + ACTIONS(2051), 1, sym_file_descriptor, - ACTIONS(3317), 1, - sym_variable_name, - STATE(4142), 1, - sym_subscript, - STATE(2617), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2603), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2913), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(2917), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2919), 1, aux_sym_number_token1, + ACTIONS(2921), 1, aux_sym_number_token2, + ACTIONS(2923), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2925), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2927), 1, anon_sym_BQUOTE, + ACTIONS(2929), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2935), 1, + sym__brace_start, + ACTIONS(3473), 1, + sym__special_character, + ACTIONS(3475), 1, + sym_test_operator, + STATE(1519), 1, + aux_sym__literal_repeat1, + ACTIONS(2911), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2931), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(672), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3471), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - sym_test_operator, - ACTIONS(3297), 21, - anon_sym_LF, - anon_sym_SEMI, + STATE(1878), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2049), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -70335,9 +72707,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -70345,124 +72714,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - [17455] = 4, + [18569] = 22, ACTIONS(63), 1, sym_comment, - ACTIONS(2851), 1, - anon_sym_RBRACE, - ACTIONS(965), 21, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3439), 1, + sym_word, + ACTIONS(3443), 1, + anon_sym_DOLLAR, + ACTIONS(3445), 1, + sym__special_character, + ACTIONS(3447), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3451), 1, + aux_sym_number_token1, + ACTIONS(3453), 1, + aux_sym_number_token2, + ACTIONS(3455), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3457), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3459), 1, anon_sym_BQUOTE, + ACTIONS(3461), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3467), 1, + sym_test_operator, + ACTIONS(3469), 1, + sym__brace_start, + ACTIONS(3484), 1, + aux_sym__simple_variable_name_token1, + STATE(2118), 1, + aux_sym__literal_repeat1, + ACTIONS(3441), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3449), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3463), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(696), 25, - anon_sym_for, - anon_sym_select, + STATE(659), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1989), 5, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_PIPE, anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [17512] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(965), 22, + STATE(1756), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2015), 11, sym_file_descriptor, - sym_variable_name, - sym__brace_start, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(696), 25, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [17567] = 6, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [18662] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(214), 1, + ACTIONS(3488), 1, anon_sym_DQUOTE, - STATE(1543), 1, + STATE(1792), 1, sym_string, - ACTIONS(3326), 2, + ACTIONS(3490), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3324), 9, + ACTIONS(1213), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(3486), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -70472,50 +72811,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 34, - anon_sym_RPAREN_RPAREN, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(1205), 31, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [17628] = 3, + [18725] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3330), 21, + ACTIONS(2855), 1, + anon_sym_BQUOTE, + ACTIONS(2853), 20, sym_file_descriptor, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, @@ -70527,19 +72865,18 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(3328), 26, + ACTIONS(2851), 26, anon_sym_for, anon_sym_select, anon_sym_LT, anon_sym_GT, + anon_sym_LPAREN, anon_sym_while, anon_sym_until, - anon_sym_do, anon_sym_if, anon_sym_case, anon_sym_function, @@ -70559,40 +72896,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [17683] = 9, + [18782] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3317), 1, + ACTIONS(2857), 1, + anon_sym_RPAREN, + ACTIONS(3434), 1, + anon_sym_LT_LT_LT, + ACTIONS(3436), 1, sym_variable_name, - STATE(4142), 1, + STATE(4391), 1, sym_subscript, - ACTIONS(3223), 2, + ACTIONS(3248), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3313), 2, + ACTIONS(3428), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3432), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(2617), 2, + STATE(2892), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - STATE(2603), 4, + ACTIONS(3339), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2854), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3228), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3207), 24, + ACTIONS(3236), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -70617,70 +72958,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [17750] = 4, - ACTIONS(63), 1, + [18857] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1925), 1, - ts_builtin_sym_end, - ACTIONS(1921), 21, + ACTIONS(1929), 1, + anon_sym_DQUOTE, + STATE(1144), 1, + sym_string, + ACTIONS(3062), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1217), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, + ACTIONS(3060), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(1919), 25, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - [17807] = 6, + sym_test_operator, + [18920] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(214), 1, + ACTIONS(3488), 1, anon_sym_DQUOTE, - STATE(1543), 1, + STATE(1792), 1, sym_string, - ACTIONS(3326), 2, + ACTIONS(3490), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3324), 9, + ACTIONS(1217), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(3486), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -70690,67 +73038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 34, - anon_sym_RPAREN_RPAREN, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [17868] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3334), 1, - anon_sym_DQUOTE, - STATE(1610), 1, - sym_string, - ACTIONS(3336), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1221), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3332), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 31, - anon_sym_EQ_EQ, + ACTIONS(1215), 31, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -70759,7 +73048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -70781,50 +73070,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [17931] = 7, + [18983] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_DQUOTE, - STATE(1610), 1, - sym_string, - ACTIONS(3336), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym__bare_dollar, + ACTIONS(3248), 1, sym__brace_start, - ACTIONS(3332), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 31, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(3481), 1, + sym_variable_name, + STATE(4295), 1, + sym_subscript, + ACTIONS(3306), 2, + sym_file_descriptor, + ts_builtin_sym_end, + STATE(2819), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(2800), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -70837,74 +73108,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [17994] = 6, - ACTIONS(63), 1, - sym_comment, - STATE(1878), 1, - aux_sym__literal_repeat1, - STATE(656), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1588), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2004), 11, + ACTIONS(3304), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2006), 24, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [19050] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3492), 1, + anon_sym_LPAREN, + ACTIONS(3494), 1, + aux_sym_concatenation_token1, + ACTIONS(3496), 1, + sym__concat, + STATE(688), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1234), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, + ACTIONS(1225), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [18055] = 7, + [19113] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1217), 1, - sym__concat, - ACTIONS(3303), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - STATE(1657), 1, + STATE(1144), 1, sym_string, - ACTIONS(3305), 2, + ACTIONS(3062), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3301), 9, + ACTIONS(1213), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(3060), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -70914,87 +73208,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(1205), 31, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [18118] = 21, + [19176] = 22, ACTIONS(63), 1, sym_comment, - ACTIONS(3338), 1, + ACTIONS(3498), 1, sym_word, - ACTIONS(3341), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3344), 1, + ACTIONS(3504), 1, anon_sym_DOLLAR, - ACTIONS(3347), 1, + ACTIONS(3507), 1, sym__special_character, - ACTIONS(3350), 1, + ACTIONS(3510), 1, anon_sym_DQUOTE, - ACTIONS(3356), 1, + ACTIONS(3516), 1, aux_sym_number_token1, - ACTIONS(3359), 1, + ACTIONS(3519), 1, aux_sym_number_token2, - ACTIONS(3362), 1, + ACTIONS(3522), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3365), 1, + ACTIONS(3525), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3368), 1, + ACTIONS(3528), 1, anon_sym_BQUOTE, - ACTIONS(3371), 1, + ACTIONS(3531), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3377), 1, + ACTIONS(3537), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3540), 1, sym_test_operator, - ACTIONS(3380), 1, + ACTIONS(3543), 1, sym__brace_start, - STATE(1878), 1, + STATE(2118), 1, aux_sym__literal_repeat1, - ACTIONS(3353), 2, + ACTIONS(3501), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3513), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3374), 2, + ACTIONS(3534), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(656), 2, + STATE(659), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2015), 5, + aux_sym_unset_command_repeat1, + ACTIONS(2230), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - STATE(1588), 9, + STATE(1756), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -71004,31 +73299,29 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2053), 13, + ACTIONS(2268), 11, sym_file_descriptor, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [18209] = 4, + [19269] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(2800), 1, - anon_sym_RBRACE, - ACTIONS(965), 21, + ACTIONS(3046), 1, + anon_sym_BQUOTE, + ACTIONS(2853), 20, sym_file_descriptor, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, @@ -71040,16 +73333,16 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(696), 25, + ACTIONS(2851), 26, anon_sym_for, anon_sym_select, anon_sym_LT, anon_sym_GT, + anon_sym_LPAREN, anon_sym_while, anon_sym_until, anon_sym_if, @@ -71071,206 +73364,108 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [18266] = 6, - ACTIONS(63), 1, + [19326] = 7, + ACTIONS(3), 1, sym_comment, - STATE(1878), 1, - aux_sym__literal_repeat1, - STATE(656), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1588), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(3056), 1, + anon_sym_DQUOTE, + STATE(1302), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2000), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2002), 24, + ACTIONS(3058), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1213), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, + ACTIONS(3054), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 31, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [18327] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2191), 1, - ts_builtin_sym_end, - ACTIONS(1921), 21, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(1919), 25, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [18384] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2925), 22, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2923), 25, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - [18439] = 7, + sym_test_operator, + [19389] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 1, - anon_sym_LPAREN, - ACTIONS(3385), 1, - aux_sym_concatenation_token1, - ACTIONS(3387), 1, - sym__concat, - STATE(673), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1250), 3, + ACTIONS(3481), 1, + sym_variable_name, + ACTIONS(3546), 1, + ts_builtin_sym_end, + ACTIONS(3552), 1, + anon_sym_LT_LT_LT, + STATE(4295), 1, + sym_subscript, + ACTIONS(3248), 2, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, - ACTIONS(1241), 40, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_EQ_EQ, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3479), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3550), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + STATE(2819), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3548), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2800), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3236), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -71287,49 +73482,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [18502] = 7, + [19464] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3391), 1, - anon_sym_DQUOTE, - STATE(1694), 1, - sym_string, - ACTIONS(3393), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1221), 3, - sym_file_descriptor, + ACTIONS(3436), 1, sym_variable_name, + STATE(4391), 1, + sym_subscript, + ACTIONS(3248), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(3389), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 30, + ACTIONS(3432), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2892), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(2854), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3312), 10, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -71342,189 +73540,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [18564] = 4, + [19531] = 21, ACTIONS(63), 1, sym_comment, - ACTIONS(2966), 1, + ACTIONS(3554), 1, + sym_word, + ACTIONS(3560), 1, + anon_sym_DOLLAR, + ACTIONS(3563), 1, + sym__special_character, + ACTIONS(3566), 1, + anon_sym_DQUOTE, + ACTIONS(3572), 1, + aux_sym_number_token1, + ACTIONS(3575), 1, + aux_sym_number_token2, + ACTIONS(3578), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3581), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3584), 1, anon_sym_BQUOTE, - ACTIONS(2794), 20, - sym_file_descriptor, - sym_variable_name, + ACTIONS(3587), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3593), 1, + sym_test_operator, + ACTIONS(3596), 1, sym__brace_start, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + STATE(2134), 1, + aux_sym__literal_repeat1, + ACTIONS(3557), 2, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, + ACTIONS(3569), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(3590), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2792), 25, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [18620] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(214), 1, - anon_sym_DQUOTE, - STATE(1543), 1, - sym_string, - ACTIONS(3326), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3324), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 33, - anon_sym_RPAREN_RPAREN, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(664), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2059), 5, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [18680] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3395), 1, - ts_builtin_sym_end, - ACTIONS(3397), 1, - anon_sym_LF, - ACTIONS(3407), 1, - anon_sym_LT_LT_LT, - ACTIONS(3409), 1, - sym_variable_name, - STATE(4171), 1, - sym_subscript, - ACTIONS(3223), 2, + anon_sym_AMP_GT, + STATE(1891), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2094), 12, sym_file_descriptor, - sym__brace_start, - ACTIONS(3401), 2, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3405), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2698), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3399), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2647), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 24, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [18756] = 6, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [19622] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3385), 1, + ACTIONS(3364), 1, aux_sym_concatenation_token1, - ACTIONS(3387), 1, + ACTIONS(3366), 1, sym__concat, - STATE(671), 1, + STATE(686), 1, aux_sym_concatenation_repeat1, - ACTIONS(3414), 3, + ACTIONS(1234), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(3412), 40, - anon_sym_LF, + ACTIONS(1225), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -71546,6 +73646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -71564,21 +73665,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [18816] = 6, + [19683] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3385), 1, + ACTIONS(3364), 1, aux_sym_concatenation_token1, - ACTIONS(3387), 1, + ACTIONS(3366), 1, sym__concat, - STATE(673), 1, + STATE(684), 1, aux_sym_concatenation_repeat1, - ACTIONS(3418), 3, + ACTIONS(178), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(3416), 40, - anon_sym_LF, + ACTIONS(145), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -71600,6 +73701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -71618,17 +73720,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [18876] = 6, + [19744] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(330), 1, + ACTIONS(1217), 1, + sym__concat, + ACTIONS(3601), 1, anon_sym_DQUOTE, - STATE(1332), 1, + STATE(1796), 1, sym_string, - ACTIONS(3422), 2, + ACTIONS(3603), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3420), 9, + ACTIONS(3599), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -71638,7 +73742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 33, + ACTIONS(1215), 33, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -71667,73 +73771,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_AMP, anon_sym_CARET, - anon_sym_COLON, - sym_test_operator, - [18936] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1921), 21, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(1919), 25, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [18990] = 6, + [19807] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(330), 1, + ACTIONS(1213), 1, + sym__concat, + ACTIONS(3601), 1, anon_sym_DQUOTE, - STATE(1332), 1, + STATE(1796), 1, sym_string, - ACTIONS(3422), 2, + ACTIONS(3603), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3420), 9, + ACTIONS(3599), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -71743,7 +73798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 33, + ACTIONS(1205), 33, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -71772,112 +73827,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_AMP, anon_sym_CARET, - anon_sym_COLON, - sym_test_operator, - [19050] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3385), 1, - aux_sym_concatenation_token1, - ACTIONS(3424), 1, - sym__concat, - STATE(679), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1264), 40, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [19110] = 21, + [19870] = 21, ACTIONS(63), 1, sym_comment, - ACTIONS(3426), 1, + ACTIONS(3605), 1, sym_word, - ACTIONS(3428), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3430), 1, + ACTIONS(3611), 1, anon_sym_DOLLAR, - ACTIONS(3432), 1, + ACTIONS(3614), 1, sym__special_character, - ACTIONS(3434), 1, + ACTIONS(3617), 1, anon_sym_DQUOTE, - ACTIONS(3438), 1, + ACTIONS(3623), 1, aux_sym_number_token1, - ACTIONS(3440), 1, + ACTIONS(3626), 1, aux_sym_number_token2, - ACTIONS(3442), 1, + ACTIONS(3629), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3444), 1, + ACTIONS(3632), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3446), 1, + ACTIONS(3635), 1, anon_sym_BQUOTE, - ACTIONS(3448), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3452), 1, + ACTIONS(3644), 1, sym_test_operator, - ACTIONS(3454), 1, + ACTIONS(3647), 1, sym__brace_start, - STATE(2051), 1, + STATE(2094), 1, aux_sym__literal_repeat1, - ACTIONS(3436), 2, + ACTIONS(3608), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3620), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3450), 2, + ACTIONS(3641), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(703), 2, + STATE(669), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2004), 5, + ACTIONS(2059), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - STATE(1787), 9, + STATE(1763), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -71887,7 +73889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2006), 12, + ACTIONS(2094), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -71900,163 +73902,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [19200] = 6, - ACTIONS(3), 1, + [19961] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(3385), 1, - aux_sym_concatenation_token1, - ACTIONS(3456), 1, - sym__concat, - STATE(679), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 3, + STATE(2134), 1, + aux_sym__literal_repeat1, + STATE(664), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1891), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2049), 10, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2051), 25, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(1258), 40, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_EQ_EQ, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [19260] = 6, - ACTIONS(3), 1, + [20022] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(3385), 1, - aux_sym_concatenation_token1, - ACTIONS(3387), 1, - sym__concat, - STATE(673), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3460), 3, + STATE(2134), 1, + aux_sym__literal_repeat1, + STATE(664), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1891), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2045), 10, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2047), 25, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(3458), 40, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_EQ_EQ, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [19320] = 22, - ACTIONS(63), 1, + [20083] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(3462), 1, - sym_word, - ACTIONS(3464), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3466), 1, + ACTIONS(2094), 1, + sym_file_descriptor, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(3468), 1, - sym__special_character, - ACTIONS(3470), 1, + ACTIONS(2974), 1, anon_sym_DQUOTE, - ACTIONS(3474), 1, + ACTIONS(2977), 1, aux_sym_number_token1, - ACTIONS(3476), 1, + ACTIONS(2980), 1, aux_sym_number_token2, - ACTIONS(3478), 1, + ACTIONS(2983), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3480), 1, + ACTIONS(2986), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3482), 1, + ACTIONS(2989), 1, anon_sym_BQUOTE, - ACTIONS(3484), 1, + ACTIONS(2992), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3488), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3490), 1, - sym_test_operator, - ACTIONS(3492), 1, + ACTIONS(3001), 1, sym__brace_start, - STATE(2056), 1, + ACTIONS(3653), 1, + sym__special_character, + ACTIONS(3656), 1, + sym_test_operator, + STATE(1519), 1, aux_sym__literal_repeat1, - ACTIONS(3472), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3486), 2, + ACTIONS(2965), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2995), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(694), 2, + STATE(672), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2103), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1693), 9, + aux_sym_for_statement_repeat1, + ACTIONS(3650), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1878), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -72066,33 +74064,38 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2131), 11, - sym_file_descriptor, + ACTIONS(2059), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - [19412] = 6, + [20172] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3385), 1, + ACTIONS(3364), 1, aux_sym_concatenation_token1, - ACTIONS(3387), 1, + ACTIONS(3366), 1, sym__concat, - STATE(671), 1, + STATE(686), 1, aux_sym_concatenation_repeat1, - ACTIONS(3496), 3, + ACTIONS(3661), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(3494), 40, - anon_sym_LF, + ACTIONS(3659), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -72114,6 +74117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -72132,143 +74136,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [19472] = 22, - ACTIONS(63), 1, + [20233] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(3462), 1, - sym_word, - ACTIONS(3464), 1, + ACTIONS(3248), 1, + sym__brace_start, + ACTIONS(3306), 1, + sym_file_descriptor, + ACTIONS(3436), 1, + sym_variable_name, + STATE(4391), 1, + sym_subscript, + STATE(2892), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(2854), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3466), 1, anon_sym_DOLLAR, - ACTIONS(3468), 1, sym__special_character, - ACTIONS(3470), 1, anon_sym_DQUOTE, - ACTIONS(3474), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3476), 1, aux_sym_number_token2, - ACTIONS(3478), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3480), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3482), 1, anon_sym_BQUOTE, - ACTIONS(3484), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3490), 1, - sym_test_operator, - ACTIONS(3492), 1, - sym__brace_start, - ACTIONS(3498), 1, - aux_sym__simple_variable_name_token1, - STATE(2056), 1, - aux_sym__literal_repeat1, - ACTIONS(3472), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3486), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(675), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2183), 5, + sym_word, + sym_test_operator, + ACTIONS(3304), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1693), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2187), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - [19564] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2191), 1, - anon_sym_BQUOTE, - ACTIONS(1921), 20, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(1919), 25, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [19620] = 6, + anon_sym_AMP, + [20300] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3500), 1, + ACTIONS(3364), 1, aux_sym_concatenation_token1, - ACTIONS(3503), 1, + ACTIONS(3366), 1, sym__concat, - STATE(679), 1, + STATE(684), 1, aux_sym_concatenation_repeat1, - ACTIONS(1279), 3, + ACTIONS(3665), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1274), 40, - anon_sym_LF, + ACTIONS(3663), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -72290,6 +74230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -72308,44 +74249,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [19680] = 14, + [20361] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3217), 1, - anon_sym_RPAREN, - ACTIONS(3506), 1, - anon_sym_LF, - ACTIONS(3514), 1, - anon_sym_LT_LT_LT, - ACTIONS(3516), 1, + ACTIONS(2855), 1, + ts_builtin_sym_end, + ACTIONS(3481), 1, sym_variable_name, - STATE(4164), 1, + ACTIONS(3552), 1, + anon_sym_LT_LT_LT, + STATE(4295), 1, sym_subscript, - ACTIONS(3223), 2, + ACTIONS(3248), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3508), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3510), 2, + ACTIONS(3430), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(3512), 2, + ACTIONS(3479), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(2663), 2, + ACTIONS(3550), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(2819), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(3322), 3, + ACTIONS(3667), 4, anon_sym_SEMI, anon_sym_SEMI_SEMI, + anon_sym_LF, anon_sym_AMP, - STATE(2668), 4, + STATE(2800), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 24, + ACTIONS(3236), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -72370,205 +74311,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [19756] = 21, - ACTIONS(63), 1, + [20436] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(3426), 1, - sym_word, - ACTIONS(3428), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3430), 1, - anon_sym_DOLLAR, - ACTIONS(3432), 1, - sym__special_character, - ACTIONS(3434), 1, + ACTIONS(160), 1, anon_sym_DQUOTE, - ACTIONS(3438), 1, - aux_sym_number_token1, - ACTIONS(3440), 1, - aux_sym_number_token2, - ACTIONS(3442), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3444), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3446), 1, - anon_sym_BQUOTE, - ACTIONS(3448), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3452), 1, - sym_test_operator, - ACTIONS(3454), 1, - sym__brace_start, - STATE(2051), 1, - aux_sym__literal_repeat1, - ACTIONS(3436), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3450), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(703), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2000), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1787), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(1605), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2002), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [19846] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3223), 1, - sym__brace_start, - ACTIONS(3299), 1, - sym_file_descriptor, - ACTIONS(3516), 1, - sym_variable_name, - STATE(4164), 1, - sym_subscript, - STATE(2663), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2668), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3671), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3669), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(3297), 20, - anon_sym_LF, - anon_sym_SEMI, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 34, + anon_sym_RPAREN_RPAREN, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [19912] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3409), 1, - sym_variable_name, - ACTIONS(3519), 1, - ts_builtin_sym_end, - STATE(4171), 1, - sym_subscript, - ACTIONS(3223), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3405), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2698), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2647), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3228), 9, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP, - ACTIONS(3207), 24, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_CARET, sym_test_operator, - [19980] = 6, + [20497] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3385), 1, + ACTIONS(3364), 1, aux_sym_concatenation_token1, - ACTIONS(3387), 1, + ACTIONS(3366), 1, sym__concat, - STATE(671), 1, + STATE(684), 1, aux_sym_concatenation_repeat1, - ACTIONS(1272), 3, + ACTIONS(3675), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1270), 40, - anon_sym_LF, + ACTIONS(3673), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -72590,6 +74402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -72608,47 +74421,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [20040] = 9, + [20558] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3516), 1, - sym_variable_name, - STATE(4164), 1, - sym_subscript, - ACTIONS(3223), 2, + ACTIONS(3364), 1, + aux_sym_concatenation_token1, + ACTIONS(3366), 1, + sym__concat, + STATE(684), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 3, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(3512), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2663), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2668), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3228), 10, - anon_sym_LF, + ACTIONS(1242), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3207), 24, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -72665,78 +74476,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [20106] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3223), 1, - sym__brace_start, - ACTIONS(3409), 1, - sym_variable_name, - STATE(4171), 1, - sym_subscript, - ACTIONS(3299), 2, - sym_file_descriptor, - ts_builtin_sym_end, - STATE(2698), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2647), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(3297), 19, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [20172] = 6, + [20619] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3385), 1, + ACTIONS(3677), 1, aux_sym_concatenation_token1, - ACTIONS(3387), 1, + ACTIONS(3680), 1, sym__concat, - STATE(671), 1, + STATE(680), 1, aux_sym_concatenation_repeat1, - ACTIONS(232), 3, + ACTIONS(1263), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(195), 40, - anon_sym_LF, + ACTIONS(1258), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -72758,6 +74512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -72776,21 +74531,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [20232] = 6, + [20680] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3385), 1, + ACTIONS(3364), 1, aux_sym_concatenation_token1, - ACTIONS(3387), 1, + ACTIONS(3366), 1, sym__concat, - STATE(673), 1, + STATE(686), 1, aux_sym_concatenation_repeat1, - ACTIONS(1250), 3, + ACTIONS(3685), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1241), 40, - anon_sym_LF, + ACTIONS(3683), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -72812,6 +74567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -72830,125 +74586,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [20292] = 6, - ACTIONS(3), 1, + [20741] = 21, + ACTIONS(63), 1, sym_comment, - ACTIONS(330), 1, - anon_sym_DQUOTE, - STATE(1332), 1, - sym_string, - ACTIONS(3422), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3420), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(3687), 1, + sym_word, + ACTIONS(3691), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3693), 1, + sym__special_character, + ACTIONS(3695), 1, + anon_sym_DQUOTE, + ACTIONS(3699), 1, + aux_sym_number_token1, + ACTIONS(3701), 1, + aux_sym_number_token2, + ACTIONS(3703), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3705), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3707), 1, + anon_sym_BQUOTE, + ACTIONS(3709), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3713), 1, + sym_test_operator, + ACTIONS(3715), 1, + sym__brace_start, + STATE(2094), 1, + aux_sym__literal_repeat1, + ACTIONS(3689), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3697), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3711), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(669), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2049), 5, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [20352] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(330), 1, - anon_sym_DQUOTE, - STATE(1332), 1, + anon_sym_AMP_GT, + STATE(1763), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3422), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3420), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2051), 12, + sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [20412] = 6, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [20832] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(330), 1, + ACTIONS(160), 1, anon_sym_DQUOTE, - STATE(1332), 1, + STATE(1605), 1, sym_string, - ACTIONS(3422), 2, + ACTIONS(3671), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3420), 9, + ACTIONS(3669), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -72958,7 +74676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 33, + ACTIONS(1205), 34, + anon_sym_RPAREN_RPAREN, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -72986,58 +74705,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_AMP, anon_sym_CARET, sym_test_operator, - [20472] = 14, + [20893] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2189), 1, - anon_sym_RPAREN, - ACTIONS(3514), 1, - anon_sym_LT_LT_LT, - ACTIONS(3516), 1, - sym_variable_name, - ACTIONS(3521), 1, - anon_sym_LF, - STATE(4164), 1, - sym_subscript, - ACTIONS(3223), 2, + ACTIONS(3364), 1, + aux_sym_concatenation_token1, + ACTIONS(3717), 1, + sym__concat, + STATE(680), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 3, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(3508), 2, + ACTIONS(1246), 41, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3510), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3512), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2663), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3309), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2668), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 24, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -73054,109 +74766,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [20548] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(330), 1, - anon_sym_DQUOTE, - STATE(1332), 1, - sym_string, - ACTIONS(3422), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3420), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [20608] = 22, + [20954] = 21, ACTIONS(63), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3687), 1, sym_word, - ACTIONS(3526), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3529), 1, + ACTIONS(3691), 1, anon_sym_DOLLAR, - ACTIONS(3532), 1, + ACTIONS(3693), 1, sym__special_character, - ACTIONS(3535), 1, + ACTIONS(3695), 1, anon_sym_DQUOTE, - ACTIONS(3541), 1, + ACTIONS(3699), 1, aux_sym_number_token1, - ACTIONS(3544), 1, + ACTIONS(3701), 1, aux_sym_number_token2, - ACTIONS(3547), 1, + ACTIONS(3703), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3550), 1, + ACTIONS(3705), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3553), 1, + ACTIONS(3707), 1, anon_sym_BQUOTE, - ACTIONS(3556), 1, + ACTIONS(3709), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3562), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3565), 1, + ACTIONS(3713), 1, sym_test_operator, - ACTIONS(3568), 1, + ACTIONS(3715), 1, sym__brace_start, - STATE(2056), 1, + STATE(2094), 1, aux_sym__literal_repeat1, - ACTIONS(3538), 2, + ACTIONS(3689), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3697), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3559), 2, + ACTIONS(3711), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(694), 2, + STATE(669), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1954), 5, + aux_sym_for_statement_repeat1, + ACTIONS(2045), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - STATE(1693), 9, + STATE(1763), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -73166,134 +74823,85 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1995), 11, + ACTIONS(2047), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [20700] = 3, - ACTIONS(63), 1, + [21045] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2794), 21, + ACTIONS(3364), 1, + aux_sym_concatenation_token1, + ACTIONS(3719), 1, + sym__concat, + STATE(680), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, + ACTIONS(1252), 41, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2792), 25, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - [20754] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3303), 1, - anon_sym_DQUOTE, - STATE(1657), 1, - sym_string, - ACTIONS(3305), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3301), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, sym_test_operator, - [20814] = 6, + [21106] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3303), 1, + ACTIONS(244), 1, anon_sym_DQUOTE, - STATE(1657), 1, + STATE(1482), 1, sym_string, - ACTIONS(3305), 2, + ACTIONS(3723), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3301), 9, + ACTIONS(3721), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -73303,7 +74911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 33, + ACTIONS(1215), 33, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -73331,81 +74939,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_AMP, anon_sym_CARET, sym_test_operator, - [20874] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2798), 1, - anon_sym_BQUOTE, - ACTIONS(2794), 20, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2792), 25, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [20930] = 7, + [21166] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3571), 1, - anon_sym_LPAREN, - ACTIONS(3573), 1, + ACTIONS(3494), 1, aux_sym_concatenation_token1, - ACTIONS(3575), 1, + ACTIONS(3725), 1, sym__concat, - STATE(772), 1, + STATE(731), 1, aux_sym_concatenation_repeat1, - ACTIONS(1250), 3, + ACTIONS(1254), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1241), 39, - anon_sym_LF, + ACTIONS(1252), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -73426,6 +74980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -73444,319 +74999,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [20992] = 6, - ACTIONS(63), 1, - sym_comment, - STATE(2053), 1, - aux_sym__literal_repeat1, - STATE(704), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1764), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2004), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2006), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [21052] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1925), 1, - anon_sym_BQUOTE, - ACTIONS(1921), 20, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(1919), 25, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [21108] = 6, - ACTIONS(63), 1, - sym_comment, - STATE(2053), 1, - aux_sym__literal_repeat1, - STATE(704), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1764), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2000), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2002), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [21168] = 21, - ACTIONS(63), 1, + [21226] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(3577), 1, - sym_word, - ACTIONS(3580), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3583), 1, - anon_sym_DOLLAR, - ACTIONS(3586), 1, - sym__special_character, - ACTIONS(3589), 1, + ACTIONS(3729), 1, anon_sym_DQUOTE, - ACTIONS(3595), 1, - aux_sym_number_token1, - ACTIONS(3598), 1, - aux_sym_number_token2, - ACTIONS(3601), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3604), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3607), 1, - anon_sym_BQUOTE, - ACTIONS(3610), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3616), 1, - sym_test_operator, - ACTIONS(3619), 1, - sym__brace_start, - STATE(2051), 1, - aux_sym__literal_repeat1, - ACTIONS(3592), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3613), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(703), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2015), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1787), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(2002), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2053), 12, + ACTIONS(1217), 2, sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [21258] = 21, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3622), 1, - sym_word, - ACTIONS(3625), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3628), 1, - anon_sym_DOLLAR, - ACTIONS(3631), 1, - sym__special_character, - ACTIONS(3634), 1, - anon_sym_DQUOTE, - ACTIONS(3640), 1, - aux_sym_number_token1, - ACTIONS(3643), 1, - aux_sym_number_token2, - ACTIONS(3646), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3649), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3652), 1, - anon_sym_BQUOTE, - ACTIONS(3655), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3661), 1, - sym_test_operator, - ACTIONS(3664), 1, sym__brace_start, - STATE(2053), 1, - aux_sym__literal_repeat1, - ACTIONS(3637), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3658), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(704), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2015), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1764), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2053), 12, - sym_file_descriptor, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [21348] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3391), 1, - anon_sym_DQUOTE, - STATE(1694), 1, - sym_string, - ACTIONS(3393), 2, + ACTIONS(3731), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3389), 9, + ACTIONS(3727), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -73766,7 +75022,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 30, + ACTIONS(1215), 31, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -73797,79 +75054,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [21410] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2191), 1, - ts_builtin_sym_end, - ACTIONS(3407), 1, - anon_sym_LT_LT_LT, - ACTIONS(3409), 1, - sym_variable_name, - ACTIONS(3667), 1, - anon_sym_LF, - STATE(4171), 1, - sym_subscript, - ACTIONS(3223), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3401), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3405), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2698), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3669), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2647), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 24, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [21486] = 6, + [21288] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(214), 1, + ACTIONS(244), 1, anon_sym_DQUOTE, - STATE(1543), 1, + STATE(1482), 1, sym_string, - ACTIONS(3326), 2, + ACTIONS(3723), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3324), 9, + ACTIONS(3721), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -73879,8 +75074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 33, - anon_sym_RPAREN_RPAREN, + ACTIONS(1205), 33, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -73909,11 +75103,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_AMP, anon_sym_CARET, sym_test_operator, - [21546] = 3, + [21348] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1286), 4, @@ -73921,8 +75116,8 @@ static const uint16_t ts_small_parse_table[] = { sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1284), 41, - anon_sym_LF, + ACTIONS(1284), 42, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -73944,6 +75139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -73963,103 +75159,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [21599] = 6, + [21402] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3671), 1, + ACTIONS(1232), 1, + anon_sym_LPAREN, + ACTIONS(3733), 1, aux_sym_concatenation_token1, - ACTIONS(3673), 1, + ACTIONS(3735), 1, sym__concat, - STATE(734), 1, + STATE(855), 1, aux_sym_concatenation_repeat1, - ACTIONS(1260), 3, + ACTIONS(1234), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1258), 39, - anon_sym_LF, + ACTIONS(1225), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [21658] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3675), 1, anon_sym_LF, - ACTIONS(3683), 1, anon_sym_LT_LT_LT, - ACTIONS(3685), 1, - sym_variable_name, - STATE(4160), 1, - sym_subscript, - ACTIONS(3223), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3510), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3679), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3681), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2775), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3677), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(2789), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 24, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -74076,16 +75214,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [21731] = 3, + [21464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, + ACTIONS(1340), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1342), 41, - anon_sym_LF, + ACTIONS(1338), 42, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -74107,6 +75245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -74126,16 +75265,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [21784] = 3, + [21518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 4, + ACTIONS(1263), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1346), 41, - anon_sym_LF, + ACTIONS(1258), 42, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -74157,6 +75296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -74176,22 +75316,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [21837] = 6, + [21572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3671), 1, - aux_sym_concatenation_token1, - ACTIONS(3688), 1, - sym__concat, - STATE(742), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1272), 3, + ACTIONS(1278), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1270), 39, - anon_sym_LF, + ACTIONS(1276), 42, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -74204,15 +75340,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -74226,147 +75365,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [21896] = 13, + [21626] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3683), 1, - anon_sym_LT_LT_LT, - ACTIONS(3685), 1, - sym_variable_name, - ACTIONS(3690), 1, - anon_sym_LF, - STATE(4160), 1, - sym_subscript, - ACTIONS(3223), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3510), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3679), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3681), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2775), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3692), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2789), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 24, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(244), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [21969] = 21, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3694), 1, - sym_word, - ACTIONS(3697), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3700), 1, + STATE(1482), 1, + sym_string, + ACTIONS(3723), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3721), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(3703), 1, - sym__special_character, - ACTIONS(3706), 1, - anon_sym_DQUOTE, - ACTIONS(3712), 1, - aux_sym_number_token1, - ACTIONS(3715), 1, - aux_sym_number_token2, - ACTIONS(3718), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3724), 1, - anon_sym_BQUOTE, - ACTIONS(3727), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3733), 1, - sym_test_operator, - ACTIONS(3736), 1, - sym__brace_start, - STATE(2075), 1, - aux_sym__literal_repeat1, - ACTIONS(3709), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3730), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(715), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2015), 5, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1957), 9, - sym_arithmetic_expansion, - sym_brace_expression, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_COLON, + sym_test_operator, + [21686] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(244), 1, + anon_sym_DQUOTE, + STATE(1482), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2053), 11, - sym_file_descriptor, + ACTIONS(3723), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3721), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [22058] = 3, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_COLON, + sym_test_operator, + [21746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1282), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1284), 41, - anon_sym_LF, + ACTIONS(1280), 42, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -74388,6 +75506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -74407,24 +75526,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [22111] = 7, + [21800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3739), 1, - anon_sym_LPAREN, - ACTIONS(3741), 1, - aux_sym_concatenation_token1, - ACTIONS(3743), 1, - sym__concat, - STATE(809), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1250), 4, + ACTIONS(1300), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1241), 37, - anon_sym_LF, + ACTIONS(1298), 42, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -74433,8 +75544,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -74443,9 +75557,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -74461,51 +75577,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [22172] = 13, + [21854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3683), 1, - anon_sym_LT_LT_LT, - ACTIONS(3685), 1, - sym_variable_name, - ACTIONS(3745), 1, - anon_sym_LF, - STATE(4160), 1, - sym_subscript, - ACTIONS(3223), 2, + ACTIONS(1312), 4, sym_file_descriptor, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(3510), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3679), 2, + ACTIONS(1310), 42, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3681), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2775), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3747), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2789), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 24, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -74521,178 +75628,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [22245] = 21, - ACTIONS(63), 1, + [21908] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - sym_word, - ACTIONS(3751), 1, + ACTIONS(3248), 1, + sym__brace_start, + ACTIONS(3306), 1, + sym_file_descriptor, + ACTIONS(3737), 1, + sym_variable_name, + STATE(4376), 1, + sym_subscript, + STATE(2900), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(2902), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3236), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3753), 1, anon_sym_DOLLAR, - ACTIONS(3755), 1, sym__special_character, - ACTIONS(3757), 1, anon_sym_DQUOTE, - ACTIONS(3761), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3763), 1, aux_sym_number_token2, - ACTIONS(3765), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3767), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3769), 1, - anon_sym_BQUOTE, - ACTIONS(3771), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3775), 1, - sym_test_operator, - ACTIONS(3777), 1, - sym__brace_start, - STATE(2075), 1, - aux_sym__literal_repeat1, - ACTIONS(3759), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3773), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(715), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2000), 5, + sym_word, + sym_test_operator, + ACTIONS(3304), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - STATE(1957), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2002), 11, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [21974] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1296), 4, sym_file_descriptor, + sym__concat, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1294), 42, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - [22334] = 21, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3749), 1, - sym_word, - ACTIONS(3751), 1, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3753), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(3755), 1, sym__special_character, - ACTIONS(3757), 1, anon_sym_DQUOTE, - ACTIONS(3761), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3763), 1, aux_sym_number_token2, - ACTIONS(3765), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3767), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3769), 1, anon_sym_BQUOTE, - ACTIONS(3771), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3775), 1, - sym_test_operator, - ACTIONS(3777), 1, - sym__brace_start, - STATE(2075), 1, - aux_sym__literal_repeat1, - ACTIONS(3759), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3773), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(715), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2004), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1957), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2006), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [22423] = 13, + sym_word, + sym_test_operator, + [22028] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3683), 1, - anon_sym_LT_LT_LT, - ACTIONS(3685), 1, + ACTIONS(3737), 1, sym_variable_name, - ACTIONS(3779), 1, - anon_sym_LF, - STATE(4160), 1, + STATE(4376), 1, sym_subscript, - ACTIONS(3223), 2, + ACTIONS(3248), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3510), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3679), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3681), 2, + ACTIONS(3740), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(2775), 2, + STATE(2900), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(3781), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2789), 4, + STATE(2902), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 24, + ACTIONS(3312), 9, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -74717,22 +75793,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [22496] = 6, + [22094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3671), 1, - aux_sym_concatenation_token1, - ACTIONS(3688), 1, - sym__concat, - STATE(709), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3785), 3, + ACTIONS(1304), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(3783), 39, - anon_sym_LF, + ACTIONS(1302), 42, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -74745,15 +75817,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -74767,19 +75842,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [22555] = 3, + [22148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, + ACTIONS(1316), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1338), 41, - anon_sym_LF, + ACTIONS(1314), 42, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -74801,6 +75875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -74820,21 +75895,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [22608] = 6, + [22202] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + sym_word, + ACTIONS(1396), 1, + anon_sym_LPAREN, + ACTIONS(1400), 1, + anon_sym_DOLLAR, + ACTIONS(1402), 1, + sym__special_character, + ACTIONS(1404), 1, + anon_sym_DQUOTE, + ACTIONS(1408), 1, + aux_sym_number_token1, + ACTIONS(1410), 1, + aux_sym_number_token2, + ACTIONS(1412), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1428), 1, + anon_sym_BQUOTE, + ACTIONS(1430), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1434), 1, + sym_test_operator, + ACTIONS(1436), 1, + sym__brace_start, + ACTIONS(3746), 1, + anon_sym_RBRACE3, + ACTIONS(3748), 1, + sym_regex, + STATE(2262), 1, + aux_sym__literal_repeat1, + ACTIONS(1380), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1406), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1432), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(864), 3, + sym_concatenation, + sym_array, + aux_sym__expansion_body_repeat2, + ACTIONS(3742), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_POUND, + ACTIONS(3744), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + STATE(2173), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [22298] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3671), 1, + ACTIONS(3750), 1, aux_sym_concatenation_token1, - ACTIONS(3688), 1, + ACTIONS(3752), 1, sym__concat, - STATE(742), 1, + STATE(710), 1, aux_sym_concatenation_repeat1, - ACTIONS(3789), 3, + ACTIONS(1248), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3787), 39, - anon_sym_LF, + ACTIONS(1246), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -74854,6 +76001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -74873,41 +76021,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [22667] = 6, + [22358] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, + ACTIONS(3750), 1, aux_sym_concatenation_token1, - ACTIONS(3575), 1, + ACTIONS(3754), 1, sym__concat, - STATE(772), 1, + STATE(710), 1, aux_sym_concatenation_repeat1, - ACTIONS(1250), 3, + ACTIONS(1254), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(1241), 39, - anon_sym_LF, + ACTIONS(1252), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -74924,50 +76072,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [22726] = 7, + [22418] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, - anon_sym_DQUOTE, - STATE(1752), 1, - sym_string, - ACTIONS(3795), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1221), 3, - sym_file_descriptor, + ACTIONS(3762), 1, + anon_sym_LT_LT_LT, + ACTIONS(3764), 1, sym_variable_name, + STATE(4383), 1, + sym_subscript, + ACTIONS(3248), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(3791), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 29, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3758), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2977), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3756), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2953), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3236), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -74980,38 +76135,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [22787] = 7, + [22490] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, - anon_sym_DQUOTE, - STATE(1752), 1, - sym_string, - ACTIONS(3795), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + ACTIONS(3767), 1, + aux_sym_concatenation_token1, + ACTIONS(3770), 1, + sym__concat, + STATE(710), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3791), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 29, + ACTIONS(1258), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -75019,9 +76169,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -75032,23 +76186,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [22848] = 6, + [22550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, - aux_sym_concatenation_token1, - ACTIONS(3575), 1, - sym__concat, - STATE(764), 1, - aux_sym_concatenation_repeat1, - ACTIONS(232), 3, + ACTIONS(1270), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(195), 39, - anon_sym_LF, + ACTIONS(1268), 42, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -75057,6 +76207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -75069,9 +76220,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -75087,106 +76240,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [22907] = 9, + [22604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3799), 1, - sym_variable_name, - STATE(4154), 1, - sym_subscript, - ACTIONS(3223), 2, + ACTIONS(1270), 4, sym_file_descriptor, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(3797), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2644), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2709), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3228), 9, - anon_sym_LF, + ACTIONS(1268), 42, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3207), 24, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [22972] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3683), 1, - anon_sym_LT_LT_LT, - ACTIONS(3685), 1, - sym_variable_name, - STATE(4160), 1, - sym_subscript, - ACTIONS(3223), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3510), 2, - anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(3679), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3681), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2775), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3802), 4, anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_LT_LT_LT, anon_sym_AMP, - STATE(2789), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 24, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -75202,16 +76291,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [23043] = 3, + [22658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, + ACTIONS(1320), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1334), 41, - anon_sym_LF, + ACTIONS(1318), 42, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -75233,6 +76322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -75252,21 +76342,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [23096] = 6, + [22712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, - aux_sym_concatenation_token1, - ACTIONS(3575), 1, - sym__concat, - STATE(764), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1272), 3, + ACTIONS(1344), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1270), 39, - anon_sym_LF, + ACTIONS(1342), 42, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -75275,6 +76360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -75287,9 +76373,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -75305,78 +76393,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [23155] = 9, + [22766] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, - sym_variable_name, - STATE(4160), 1, - sym_subscript, - ACTIONS(3223), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3681), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2775), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2789), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3228), 9, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(244), 1, + anon_sym_DQUOTE, + STATE(1482), 1, + sym_string, + ACTIONS(3723), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3721), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3207), 24, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, sym_test_operator, - [23220] = 6, + [22826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3804), 1, - aux_sym_concatenation_token1, - ACTIONS(3807), 1, - sym__concat, - STATE(734), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1279), 3, + ACTIONS(1348), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1274), 39, - anon_sym_LF, + ACTIONS(1346), 42, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -75389,15 +76471,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -75411,112 +76496,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [23279] = 9, + [22880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3223), 1, - sym__brace_start, - ACTIONS(3299), 1, + ACTIONS(1328), 4, sym_file_descriptor, - ACTIONS(3685), 1, - sym_variable_name, - STATE(4160), 1, - sym_subscript, - STATE(2775), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2789), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(3297), 19, - anon_sym_LF, + sym__concat, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1326), 42, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [23344] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2189), 1, - anon_sym_BQUOTE, - ACTIONS(3799), 1, - sym_variable_name, - ACTIONS(3810), 1, anon_sym_LF, - ACTIONS(3816), 1, anon_sym_LT_LT_LT, - STATE(4154), 1, - sym_subscript, - ACTIONS(3223), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3510), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3797), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3814), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(2644), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3812), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(2709), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 23, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -75526,26 +76543,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [23419] = 6, + [22934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, - aux_sym_concatenation_token1, - ACTIONS(3575), 1, - sym__concat, - STATE(764), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3496), 3, + ACTIONS(1274), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(3494), 39, - anon_sym_LF, + ACTIONS(1272), 42, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -75554,6 +76567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -75566,9 +76580,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -75584,72 +76600,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [23478] = 9, + [22988] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3223), 1, - sym__brace_start, - ACTIONS(3299), 1, - sym_file_descriptor, - ACTIONS(3799), 1, - sym_variable_name, - STATE(4154), 1, - sym_subscript, - STATE(2644), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2709), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 15, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(160), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(3297), 20, - anon_sym_LF, - anon_sym_SEMI, + STATE(1605), 1, + sym_string, + ACTIONS(3671), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3669), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 33, + anon_sym_RPAREN_RPAREN, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP, - anon_sym_BQUOTE, - [23543] = 3, + anon_sym_CARET, + sym_test_operator, + [23048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 4, + ACTIONS(1336), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1350), 41, - anon_sym_LF, + ACTIONS(1334), 42, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -75671,6 +76685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -75690,16 +76705,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [23596] = 3, + [23102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 4, + ACTIONS(1332), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1320), 41, - anon_sym_LF, + ACTIONS(1330), 42, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -75721,6 +76736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -75740,81 +76756,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [23649] = 12, + [23156] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3683), 1, - anon_sym_LT_LT_LT, - ACTIONS(3685), 1, - sym_variable_name, - STATE(4160), 1, - sym_subscript, - ACTIONS(3223), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3510), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3679), 2, + ACTIONS(160), 1, + anon_sym_DQUOTE, + STATE(1605), 1, + sym_string, + ACTIONS(3671), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3669), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 33, + anon_sym_RPAREN_RPAREN, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3681), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2775), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3818), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2789), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 24, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, sym_test_operator, - [23720] = 6, + [23216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3671), 1, - aux_sym_concatenation_token1, - ACTIONS(3820), 1, - sym__concat, - STATE(734), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 3, + ACTIONS(1324), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1264), 39, - anon_sym_LF, + ACTIONS(1322), 42, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -75827,15 +76834,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -75849,51 +76859,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [23779] = 7, + [23270] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3824), 1, - anon_sym_DQUOTE, - STATE(1892), 1, - sym_string, - ACTIONS(1217), 2, + ACTIONS(3750), 1, + aux_sym_concatenation_token1, + ACTIONS(3773), 1, + sym__concat, + STATE(707), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(3826), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3822), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 30, + ACTIONS(1242), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -75904,18 +76912,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [23840] = 3, + [23330] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 4, - sym_file_descriptor, + ACTIONS(3494), 1, + aux_sym_concatenation_token1, + ACTIONS(3775), 1, sym__concat, + STATE(731), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 3, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1354), 41, - anon_sym_LF, + ACTIONS(1246), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -75924,7 +76938,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -75937,10 +76950,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -75956,20 +76969,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [23893] = 7, + [23390] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3824), 1, + ACTIONS(3729), 1, anon_sym_DQUOTE, - STATE(1892), 1, + STATE(2002), 1, sym_string, - ACTIONS(1221), 2, + ACTIONS(1213), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3826), 2, + ACTIONS(3731), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3822), 9, + ACTIONS(3727), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -75979,7 +76992,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 30, + ACTIONS(1205), 31, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -76010,41 +77024,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [23954] = 6, + [23452] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, + ACTIONS(3750), 1, aux_sym_concatenation_token1, - ACTIONS(3575), 1, + ACTIONS(3773), 1, sym__concat, - STATE(764), 1, + STATE(707), 1, aux_sym_concatenation_repeat1, - ACTIONS(3414), 3, + ACTIONS(3779), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(3412), 39, - anon_sym_LF, + ACTIONS(3777), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -76061,23 +77075,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [24013] = 6, + [23512] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, + ACTIONS(3494), 1, aux_sym_concatenation_token1, - ACTIONS(3575), 1, + ACTIONS(3496), 1, sym__concat, - STATE(772), 1, + STATE(725), 1, aux_sym_concatenation_repeat1, - ACTIONS(3460), 3, + ACTIONS(3675), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(3458), 39, - anon_sym_LF, + ACTIONS(3673), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -76098,6 +77113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -76116,21 +77132,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [24072] = 6, + [23572] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, + ACTIONS(3494), 1, aux_sym_concatenation_token1, - ACTIONS(3575), 1, + ACTIONS(3496), 1, sym__concat, - STATE(772), 1, + STATE(688), 1, aux_sym_concatenation_repeat1, - ACTIONS(3418), 3, + ACTIONS(3685), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(3416), 39, - anon_sym_LF, + ACTIONS(3683), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -76151,6 +77167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -76169,18 +77186,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [24131] = 3, + [23632] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 4, - sym_file_descriptor, + ACTIONS(3750), 1, + aux_sym_concatenation_token1, + ACTIONS(3773), 1, sym__concat, - sym__bare_dollar, + STATE(708), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3783), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1324), 41, - anon_sym_LF, + ACTIONS(3781), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -76193,17 +77214,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -76217,173 +77237,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [24184] = 13, + [23692] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3683), 1, - anon_sym_LT_LT_LT, - ACTIONS(3685), 1, - sym_variable_name, - ACTIONS(3828), 1, - anon_sym_LF, - STATE(4160), 1, - sym_subscript, - ACTIONS(3223), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3510), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3679), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3681), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2775), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3830), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2789), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 24, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [24257] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3092), 1, - sym_word, - ACTIONS(3098), 1, - anon_sym_LPAREN, - ACTIONS(3100), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(3104), 1, - sym__special_character, - ACTIONS(3106), 1, - anon_sym_DQUOTE, - ACTIONS(3110), 1, - aux_sym_number_token1, - ACTIONS(3112), 1, - aux_sym_number_token2, - ACTIONS(3114), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3122), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3124), 1, - anon_sym_BQUOTE, - ACTIONS(3126), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3130), 1, - sym_test_operator, - ACTIONS(3132), 1, - sym__brace_start, - ACTIONS(3836), 1, - anon_sym_RBRACE3, - ACTIONS(3838), 1, - sym_regex, - STATE(2187), 1, - aux_sym__literal_repeat1, - ACTIONS(3108), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3128), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(792), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat1, - ACTIONS(3832), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3834), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - STATE(2098), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [24352] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3671), 1, + ACTIONS(3785), 1, aux_sym_concatenation_token1, - ACTIONS(3688), 1, + ACTIONS(3788), 1, sym__concat, - STATE(709), 1, + STATE(731), 1, aux_sym_concatenation_repeat1, - ACTIONS(3842), 3, + ACTIONS(1263), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(3840), 39, - anon_sym_LF, + ACTIONS(1258), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -76400,45 +77292,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [24411] = 6, + [23752] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3671), 1, - aux_sym_concatenation_token1, - ACTIONS(3688), 1, - sym__concat, - STATE(742), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3846), 3, - sym_file_descriptor, + ACTIONS(3762), 1, + anon_sym_LT_LT_LT, + ACTIONS(3764), 1, sym_variable_name, + STATE(4383), 1, + sym_subscript, + ACTIONS(3248), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(3844), 39, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3758), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2977), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3791), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2953), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3236), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -76453,26 +77352,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [24470] = 7, + [23824] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 1, - anon_sym_LPAREN, - ACTIONS(3848), 1, + ACTIONS(3494), 1, aux_sym_concatenation_token1, - ACTIONS(3850), 1, + ACTIONS(3496), 1, sym__concat, - STATE(866), 1, + STATE(725), 1, aux_sym_concatenation_repeat1, - ACTIONS(1250), 3, + ACTIONS(1244), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1241), 38, - anon_sym_LF, + ACTIONS(1242), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -76481,9 +77377,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -76492,6 +77389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -76510,21 +77408,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [24531] = 6, + [23884] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3852), 1, + ACTIONS(3494), 1, aux_sym_concatenation_token1, - ACTIONS(3855), 1, + ACTIONS(3496), 1, sym__concat, - STATE(755), 1, + STATE(688), 1, aux_sym_concatenation_repeat1, - ACTIONS(1279), 3, + ACTIONS(1234), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1274), 39, - anon_sym_LF, + ACTIONS(1225), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -76545,6 +77443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -76563,71 +77462,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [24590] = 3, + [23944] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1312), 41, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(244), 1, + anon_sym_DQUOTE, + STATE(1482), 1, + sym_string, + ACTIONS(3723), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3721), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_CARET, + sym_test_operator, + [24004] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3601), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + STATE(1796), 1, + sym_string, + ACTIONS(3603), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3599), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, sym_test_operator, - [24643] = 7, + [24064] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3860), 1, + ACTIONS(3601), 1, anon_sym_DQUOTE, - STATE(2000), 1, + STATE(1796), 1, sym_string, - ACTIONS(3862), 2, + ACTIONS(3603), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3858), 9, + ACTIONS(3599), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -76637,51 +77590,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 29, + ACTIONS(1205), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, sym_test_operator, - [24704] = 7, + [24124] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3860), 1, + ACTIONS(3795), 1, anon_sym_DQUOTE, - STATE(2000), 1, + STATE(1757), 1, sym_string, - ACTIONS(3862), 2, + ACTIONS(3797), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1221), 3, + ACTIONS(1217), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3858), 9, + ACTIONS(3793), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -76691,7 +77648,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 29, + ACTIONS(1215), 30, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -76721,16 +77679,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [24765] = 3, + [24186] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, - sym_file_descriptor, + ACTIONS(3494), 1, + aux_sym_concatenation_token1, + ACTIONS(3496), 1, sym__concat, + STATE(725), 1, + aux_sym_concatenation_repeat1, + ACTIONS(178), 3, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1308), 41, - anon_sym_LF, + ACTIONS(145), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -76739,7 +77702,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -76752,10 +77714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -76771,31 +77733,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [24818] = 3, + [24246] = 21, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3799), 1, + sym_word, + ACTIONS(3803), 1, + anon_sym_DOLLAR, + ACTIONS(3805), 1, + sym__special_character, + ACTIONS(3807), 1, + anon_sym_DQUOTE, + ACTIONS(3811), 1, + aux_sym_number_token1, + ACTIONS(3813), 1, + aux_sym_number_token2, + ACTIONS(3815), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3817), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3819), 1, + anon_sym_BQUOTE, + ACTIONS(3821), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3825), 1, + sym_test_operator, + ACTIONS(3827), 1, + sym__brace_start, + STATE(2178), 1, + aux_sym__literal_repeat1, + ACTIONS(3801), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3809), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3823), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(752), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2045), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + STATE(2020), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2047), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [24336] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 4, + ACTIONS(3795), 1, + anon_sym_DQUOTE, + STATE(1757), 1, + sym_string, + ACTIONS(3797), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1213), 3, sym_file_descriptor, - sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(1274), 41, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_EQ_EQ, + ACTIONS(3793), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 30, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -76803,12 +77843,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -76821,97 +77857,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [24871] = 6, + [24398] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(330), 1, - anon_sym_DQUOTE, - STATE(1332), 1, - sym_string, - ACTIONS(3422), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3420), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 32, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3310), 1, + anon_sym_BQUOTE, + ACTIONS(3737), 1, + sym_variable_name, + ACTIONS(3833), 1, + anon_sym_LT_LT_LT, + STATE(4376), 1, + sym_subscript, + ACTIONS(3248), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3740), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3831), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + STATE(2900), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3829), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2902), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3236), 24, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [24930] = 14, + [24472] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3217), 1, + ACTIONS(2857), 1, anon_sym_BQUOTE, - ACTIONS(3799), 1, + ACTIONS(3737), 1, sym_variable_name, - ACTIONS(3816), 1, + ACTIONS(3833), 1, anon_sym_LT_LT_LT, - ACTIONS(3864), 1, - anon_sym_LF, - STATE(4154), 1, + STATE(4376), 1, sym_subscript, - ACTIONS(3223), 2, + ACTIONS(3248), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3510), 2, + ACTIONS(3430), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(3797), 2, + ACTIONS(3740), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3814), 2, + ACTIONS(3831), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - STATE(2644), 2, + STATE(2900), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(3866), 3, + ACTIONS(3835), 4, anon_sym_SEMI, anon_sym_SEMI_SEMI, + anon_sym_LF, anon_sym_AMP, - STATE(2709), 4, + STATE(2902), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 23, + ACTIONS(3236), 24, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -76935,44 +77979,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [25005] = 3, + [24546] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, + ACTIONS(2506), 1, + anon_sym_DQUOTE, + STATE(1253), 1, + sym_string, + ACTIONS(1213), 2, sym_file_descriptor, - sym__concat, - sym__bare_dollar, sym__brace_start, - ACTIONS(1288), 41, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_EQ_EQ, + ACTIONS(3128), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3126), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 31, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -76985,23 +78034,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [25058] = 6, + [24608] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, - aux_sym_concatenation_token1, - ACTIONS(3868), 1, - sym__concat, - STATE(755), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 3, + ACTIONS(2506), 1, + anon_sym_DQUOTE, + STATE(1253), 1, + sym_string, + ACTIONS(1217), 2, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, - ACTIONS(1264), 39, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_EQ_EQ, + ACTIONS(3128), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3126), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 31, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -77009,23 +78066,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -77038,18 +78089,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [25117] = 3, - ACTIONS(3), 1, + [24670] = 21, + ACTIONS(63), 1, sym_comment, - ACTIONS(1304), 4, + ACTIONS(3799), 1, + sym_word, + ACTIONS(3803), 1, + anon_sym_DOLLAR, + ACTIONS(3805), 1, + sym__special_character, + ACTIONS(3807), 1, + anon_sym_DQUOTE, + ACTIONS(3811), 1, + aux_sym_number_token1, + ACTIONS(3813), 1, + aux_sym_number_token2, + ACTIONS(3815), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3817), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3819), 1, + anon_sym_BQUOTE, + ACTIONS(3821), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3825), 1, + sym_test_operator, + ACTIONS(3827), 1, + sym__brace_start, + STATE(2178), 1, + aux_sym__literal_repeat1, + ACTIONS(3801), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3809), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3823), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(752), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2049), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + STATE(2020), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2051), 11, sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [24760] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3750), 1, + aux_sym_concatenation_token1, + ACTIONS(3773), 1, sym__concat, - sym__bare_dollar, + STATE(708), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3839), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1302), 41, - anon_sym_LF, + ACTIONS(3837), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -77062,17 +78186,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -77086,20 +78209,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [25170] = 3, + [24820] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 4, - sym_file_descriptor, + ACTIONS(3750), 1, + aux_sym_concatenation_token1, + ACTIONS(3773), 1, sym__concat, - sym__bare_dollar, + STATE(707), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3843), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1328), 41, - anon_sym_LF, + ACTIONS(3841), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -77112,17 +78240,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -77136,46 +78263,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [25223] = 3, + [24880] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, + ACTIONS(2917), 1, + anon_sym_DQUOTE, + STATE(1431), 1, + sym_string, + ACTIONS(1213), 2, sym_file_descriptor, - sym__concat, - sym__bare_dollar, sym__brace_start, - ACTIONS(1298), 41, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_EQ_EQ, + ACTIONS(3066), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3064), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 31, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -77188,17 +78321,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [25276] = 6, + [24942] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(330), 1, + ACTIONS(2917), 1, anon_sym_DQUOTE, - STATE(1332), 1, + STATE(1431), 1, sym_string, - ACTIONS(3422), 2, + ACTIONS(1217), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(3066), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3420), 9, + ACTIONS(3064), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -77208,83 +78344,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 32, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(1215), 31, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [25335] = 13, + [25004] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3683), 1, - anon_sym_LT_LT_LT, - ACTIONS(3685), 1, - sym_variable_name, - ACTIONS(3870), 1, - anon_sym_LF, - STATE(4160), 1, - sym_subscript, - ACTIONS(3223), 2, + ACTIONS(3845), 1, + anon_sym_LPAREN, + ACTIONS(3847), 1, + aux_sym_concatenation_token1, + ACTIONS(3849), 1, + sym__concat, + STATE(813), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1234), 4, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(3510), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3679), 2, + ts_builtin_sym_end, + ACTIONS(1225), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3681), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2775), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3872), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2789), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 24, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -77301,68 +78431,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [25408] = 24, - ACTIONS(3), 1, + [25066] = 21, + ACTIONS(63), 1, sym_comment, - ACTIONS(3092), 1, + ACTIONS(3851), 1, sym_word, - ACTIONS(3098), 1, - anon_sym_LPAREN, - ACTIONS(3100), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3102), 1, + ACTIONS(3857), 1, anon_sym_DOLLAR, - ACTIONS(3104), 1, + ACTIONS(3860), 1, sym__special_character, - ACTIONS(3106), 1, + ACTIONS(3863), 1, anon_sym_DQUOTE, - ACTIONS(3110), 1, + ACTIONS(3869), 1, aux_sym_number_token1, - ACTIONS(3112), 1, + ACTIONS(3872), 1, aux_sym_number_token2, - ACTIONS(3114), 1, + ACTIONS(3875), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3122), 1, + ACTIONS(3878), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3124), 1, + ACTIONS(3881), 1, anon_sym_BQUOTE, - ACTIONS(3126), 1, + ACTIONS(3884), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3130), 1, + ACTIONS(3890), 1, sym_test_operator, - ACTIONS(3132), 1, + ACTIONS(3893), 1, sym__brace_start, - ACTIONS(3878), 1, - anon_sym_RBRACE3, - ACTIONS(3880), 1, - sym_regex, - STATE(2187), 1, + STATE(2178), 1, aux_sym__literal_repeat1, - ACTIONS(3108), 2, + ACTIONS(3854), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3866), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3128), 2, + ACTIONS(3887), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(789), 3, + STATE(752), 2, sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat1, - ACTIONS(3874), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3876), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, + aux_sym_for_statement_repeat1, + ACTIONS(2059), 5, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - STATE(2098), 9, + anon_sym_PIPE, + anon_sym_AMP_GT, + STATE(2020), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77372,42 +78488,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [25503] = 13, + ACTIONS(2094), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [25156] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3683), 1, + ACTIONS(3762), 1, anon_sym_LT_LT_LT, - ACTIONS(3685), 1, + ACTIONS(3764), 1, sym_variable_name, - ACTIONS(3882), 1, - anon_sym_LF, - STATE(4160), 1, + STATE(4383), 1, sym_subscript, - ACTIONS(3223), 2, + ACTIONS(3248), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3510), 2, + ACTIONS(3430), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(3679), 2, + ACTIONS(3758), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3681), 2, + ACTIONS(3760), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(2775), 2, + STATE(2977), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(3884), 3, + ACTIONS(3896), 4, anon_sym_SEMI, anon_sym_SEMI_SEMI, + anon_sym_LF, anon_sym_AMP, - STATE(2789), 4, + STATE(2953), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 24, + ACTIONS(3236), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -77432,43 +78560,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [25576] = 6, + [25228] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, - aux_sym_concatenation_token1, - ACTIONS(3886), 1, - sym__concat, - STATE(755), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 3, - sym_file_descriptor, - sym__bare_dollar, + ACTIONS(3248), 1, sym__brace_start, - ACTIONS(1258), 39, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, + ACTIONS(3306), 1, + sym_file_descriptor, + ACTIONS(3764), 1, + sym_variable_name, + STATE(4383), 1, + sym_subscript, + STATE(2977), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(2953), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -77485,41 +78597,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [25635] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1318), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1316), 41, - anon_sym_LF, + ACTIONS(3304), 19, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [25294] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3762), 1, anon_sym_LT_LT_LT, + ACTIONS(3764), 1, + sym_variable_name, + STATE(4383), 1, + sym_subscript, + ACTIONS(3248), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3758), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3760), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2977), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3898), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, anon_sym_AMP, + STATE(2953), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3236), 25, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -77535,42 +78677,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [25688] = 6, + [25366] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3890), 1, - aux_sym_concatenation_token1, - ACTIONS(3894), 1, - sym__concat, - STATE(786), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3892), 3, - sym_file_descriptor, + ACTIONS(3764), 1, sym_variable_name, + STATE(4383), 1, + sym_subscript, + ACTIONS(3248), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(3888), 38, - anon_sym_LF, + ACTIONS(3760), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2977), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(2953), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3312), 9, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -77587,22 +78734,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [25746] = 6, + [25432] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3741), 1, + ACTIONS(3494), 1, aux_sym_concatenation_token1, - ACTIONS(3743), 1, + ACTIONS(3496), 1, sym__concat, - STATE(810), 1, + STATE(725), 1, aux_sym_concatenation_repeat1, - ACTIONS(1272), 4, + ACTIONS(3665), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1270), 37, - anon_sym_LF, + ACTIONS(3663), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -77613,6 +78759,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -77621,6 +78769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -77639,22 +78788,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [25804] = 6, + [25492] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3741), 1, + ACTIONS(3494), 1, aux_sym_concatenation_token1, - ACTIONS(3743), 1, + ACTIONS(3496), 1, sym__concat, - STATE(810), 1, + STATE(688), 1, aux_sym_concatenation_repeat1, - ACTIONS(3496), 4, + ACTIONS(3661), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3494), 37, - anon_sym_LF, + ACTIONS(3659), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -77665,6 +78813,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -77673,6 +78823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -77691,39 +78842,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [25862] = 3, + [25552] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, - sym_file_descriptor, - sym__concat, + ACTIONS(3762), 1, + anon_sym_LT_LT_LT, + ACTIONS(3764), 1, sym_variable_name, + STATE(4383), 1, + sym_subscript, + ACTIONS(3248), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1312), 40, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3758), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2977), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3900), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2953), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3236), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -77737,31 +78900,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [25914] = 3, + [25624] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(3904), 1, + anon_sym_DQUOTE, + STATE(2032), 1, + sym_string, + ACTIONS(3906), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1213), 3, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1308), 40, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(3902), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 30, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -77770,12 +78943,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -77786,37 +78955,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [25966] = 6, + [25686] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, - aux_sym_concatenation_token1, - ACTIONS(3850), 1, - sym__concat, - STATE(866), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3460), 3, - sym_file_descriptor, - sym__bare_dollar, + ACTIONS(3904), 1, + anon_sym_DQUOTE, + STATE(2032), 1, + sym_string, + ACTIONS(3906), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1217), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(3458), 38, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_EQ_EQ, + ACTIONS(3902), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 30, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -77824,11 +78998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -77841,42 +79012,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [26024] = 6, + [25748] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, - aux_sym_concatenation_token1, - ACTIONS(3850), 1, - sym__concat, - STATE(864), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3496), 3, - sym_file_descriptor, - sym__bare_dollar, + ACTIONS(1378), 1, + sym_word, + ACTIONS(1396), 1, + anon_sym_LPAREN, + ACTIONS(1400), 1, + anon_sym_DOLLAR, + ACTIONS(1402), 1, + sym__special_character, + ACTIONS(1404), 1, + anon_sym_DQUOTE, + ACTIONS(1408), 1, + aux_sym_number_token1, + ACTIONS(1410), 1, + aux_sym_number_token2, + ACTIONS(1412), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1428), 1, + anon_sym_BQUOTE, + ACTIONS(1430), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1434), 1, + sym_test_operator, + ACTIONS(1436), 1, sym__brace_start, - ACTIONS(3494), 38, - anon_sym_LF, + ACTIONS(3912), 1, + anon_sym_RBRACE3, + ACTIONS(3914), 1, + sym_regex, + STATE(2262), 1, + aux_sym__literal_repeat1, + ACTIONS(1380), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1406), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1432), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(868), 3, + sym_concatenation, + sym_array, + aux_sym__expansion_body_repeat2, + ACTIONS(3908), 4, anon_sym_SEMI, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_POUND, + ACTIONS(3910), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + STATE(2173), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [25844] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3762), 1, + anon_sym_LT_LT_LT, + ACTIONS(3764), 1, + sym_variable_name, + STATE(4383), 1, + sym_subscript, + ACTIONS(3248), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3758), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2977), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3916), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2953), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3236), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -77893,42 +79144,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [26082] = 6, + [25916] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3741), 1, - aux_sym_concatenation_token1, - ACTIONS(3743), 1, - sym__concat, - STATE(809), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3460), 4, + ACTIONS(3762), 1, + anon_sym_LT_LT_LT, + ACTIONS(3764), 1, + sym_variable_name, + STATE(4383), 1, + sym_subscript, + ACTIONS(3248), 2, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3458), 37, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_EQ_EQ, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3758), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2977), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3918), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2953), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3236), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -77945,42 +79204,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [26140] = 6, + [25988] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3896), 1, - aux_sym_concatenation_token1, - ACTIONS(3899), 1, - sym__concat, - STATE(782), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1279), 3, - sym_file_descriptor, + ACTIONS(3762), 1, + anon_sym_LT_LT_LT, + ACTIONS(3764), 1, sym_variable_name, + STATE(4383), 1, + sym_subscript, + ACTIONS(3248), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1274), 38, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3758), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2977), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3920), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2953), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3236), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -77997,16 +79264,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [26198] = 3, + [26060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 4, + ACTIONS(1328), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1274), 40, - anon_sym_LF, + ACTIONS(1326), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -78026,6 +79293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -78046,16 +79314,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [26250] = 3, + [26113] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, + ACTIONS(3922), 1, + aux_sym_concatenation_token1, + ACTIONS(3924), 1, sym__concat, + STATE(836), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 3, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1302), 40, - anon_sym_LF, + ACTIONS(1246), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -78063,7 +79336,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -78075,10 +79347,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -78095,109 +79367,95 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [26302] = 23, + [26172] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 1, - sym_word, - ACTIONS(3098), 1, + ACTIONS(3733), 1, + aux_sym_concatenation_token1, + ACTIONS(3735), 1, + sym__concat, + ACTIONS(3926), 1, anon_sym_LPAREN, - ACTIONS(3100), 1, + STATE(930), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1234), 3, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1225), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3102), 1, anon_sym_DOLLAR, - ACTIONS(3104), 1, sym__special_character, - ACTIONS(3106), 1, anon_sym_DQUOTE, - ACTIONS(3110), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3112), 1, aux_sym_number_token2, - ACTIONS(3114), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3122), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3124), 1, anon_sym_BQUOTE, - ACTIONS(3126), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3130), 1, - sym_test_operator, - ACTIONS(3132), 1, - sym__brace_start, - ACTIONS(3906), 1, - anon_sym_RBRACE3, - STATE(2187), 1, - aux_sym__literal_repeat1, - ACTIONS(3108), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3128), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(802), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat1, - ACTIONS(3902), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3904), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - STATE(2098), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [26394] = 6, + sym_word, + sym_test_operator, + [26233] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3890), 1, + ACTIONS(3847), 1, aux_sym_concatenation_token1, - ACTIONS(3908), 1, + ACTIONS(3849), 1, sym__concat, - STATE(782), 1, + STATE(813), 1, aux_sym_concatenation_repeat1, - ACTIONS(1260), 3, + ACTIONS(3661), 4, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1258), 38, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(3659), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -78216,21 +79474,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [26452] = 6, + [26292] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3890), 1, + ACTIONS(3922), 1, aux_sym_concatenation_token1, - ACTIONS(3910), 1, + ACTIONS(3928), 1, sym__concat, - STATE(782), 1, + STATE(767), 1, aux_sym_concatenation_repeat1, - ACTIONS(1266), 3, + ACTIONS(3779), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1264), 38, - anon_sym_LF, + ACTIONS(3777), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -78238,7 +79496,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -78250,6 +79507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -78266,18 +79524,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [26510] = 3, + [26351] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, + ACTIONS(3922), 1, + aux_sym_concatenation_token1, + ACTIONS(3930), 1, sym__concat, + STATE(836), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 3, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1298), 40, - anon_sym_LF, + ACTIONS(1252), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -78285,7 +79549,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -78297,10 +79560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -78317,295 +79580,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [26562] = 23, + [26410] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 1, - sym_word, - ACTIONS(3098), 1, - anon_sym_LPAREN, - ACTIONS(3100), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(3104), 1, - sym__special_character, - ACTIONS(3106), 1, - anon_sym_DQUOTE, - ACTIONS(3110), 1, - aux_sym_number_token1, - ACTIONS(3112), 1, - aux_sym_number_token2, - ACTIONS(3114), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3122), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3124), 1, - anon_sym_BQUOTE, - ACTIONS(3126), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3130), 1, - sym_test_operator, - ACTIONS(3132), 1, + ACTIONS(3922), 1, + aux_sym_concatenation_token1, + ACTIONS(3928), 1, + sym__concat, + STATE(771), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3783), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(3906), 1, - anon_sym_RBRACE3, - STATE(2187), 1, - aux_sym__literal_repeat1, - ACTIONS(3108), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3128), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(790), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat1, - ACTIONS(3912), 4, + ACTIONS(3781), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3914), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - STATE(2098), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [26654] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3916), 1, - sym_word, - ACTIONS(3925), 1, - anon_sym_LPAREN, - ACTIONS(3928), 1, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3931), 1, anon_sym_DOLLAR, - ACTIONS(3934), 1, sym__special_character, - ACTIONS(3937), 1, anon_sym_DQUOTE, - ACTIONS(3943), 1, - aux_sym_number_token1, - ACTIONS(3946), 1, - aux_sym_number_token2, - ACTIONS(3949), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3952), 1, - anon_sym_RBRACE3, - ACTIONS(3954), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3957), 1, - anon_sym_BQUOTE, - ACTIONS(3960), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3966), 1, - sym_test_operator, - ACTIONS(3969), 1, - sym__brace_start, - STATE(2187), 1, - aux_sym__literal_repeat1, - ACTIONS(3940), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3963), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(790), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat1, - ACTIONS(3919), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3922), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - STATE(2098), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [26746] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3092), 1, - sym_word, - ACTIONS(3098), 1, - anon_sym_LPAREN, - ACTIONS(3100), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(3104), 1, - sym__special_character, - ACTIONS(3106), 1, - anon_sym_DQUOTE, - ACTIONS(3110), 1, aux_sym_number_token1, - ACTIONS(3112), 1, aux_sym_number_token2, - ACTIONS(3114), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3122), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3124), 1, anon_sym_BQUOTE, - ACTIONS(3126), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3130), 1, - sym_test_operator, - ACTIONS(3132), 1, - sym__brace_start, - ACTIONS(3976), 1, - anon_sym_RBRACE3, - STATE(2187), 1, - aux_sym__literal_repeat1, - ACTIONS(3108), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3128), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(806), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat1, - ACTIONS(3972), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3974), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - STATE(2098), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [26838] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3092), 1, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(3098), 1, - anon_sym_LPAREN, - ACTIONS(3100), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(3104), 1, - sym__special_character, - ACTIONS(3106), 1, - anon_sym_DQUOTE, - ACTIONS(3110), 1, - aux_sym_number_token1, - ACTIONS(3112), 1, - aux_sym_number_token2, - ACTIONS(3114), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3122), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3124), 1, - anon_sym_BQUOTE, - ACTIONS(3126), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3130), 1, sym_test_operator, - ACTIONS(3132), 1, - sym__brace_start, - ACTIONS(3976), 1, - anon_sym_RBRACE3, - STATE(2187), 1, - aux_sym__literal_repeat1, - ACTIONS(3108), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3128), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(790), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat1, - ACTIONS(3912), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3914), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - STATE(2098), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [26930] = 5, + [26469] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, - sym__special_character, - STATE(793), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 3, + ACTIONS(3733), 1, + aux_sym_concatenation_token1, + ACTIONS(3735), 1, + sym__concat, + STATE(856), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3665), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1358), 39, - anon_sym_LF, + ACTIONS(3663), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -78614,11 +79656,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -78627,10 +79667,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -78644,39 +79686,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [26986] = 6, + [26528] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3981), 1, + ACTIONS(3733), 1, aux_sym_concatenation_token1, - ACTIONS(3983), 1, + ACTIONS(3735), 1, sym__concat, - STATE(840), 1, + STATE(855), 1, aux_sym_concatenation_repeat1, - ACTIONS(3842), 3, + ACTIONS(3661), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(3840), 38, - anon_sym_LF, + ACTIONS(3659), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -78693,24 +79737,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [27044] = 6, + [26587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3981), 1, - aux_sym_concatenation_token1, - ACTIONS(3983), 1, - sym__concat, - STATE(841), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3846), 3, + ACTIONS(1348), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(3844), 38, - anon_sym_LF, + ACTIONS(1346), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -78718,6 +79756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -78729,9 +79768,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -78748,160 +79789,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [27102] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3092), 1, - sym_word, - ACTIONS(3098), 1, - anon_sym_LPAREN, - ACTIONS(3100), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(3104), 1, - sym__special_character, - ACTIONS(3106), 1, - anon_sym_DQUOTE, - ACTIONS(3110), 1, - aux_sym_number_token1, - ACTIONS(3112), 1, - aux_sym_number_token2, - ACTIONS(3114), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3122), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3124), 1, - anon_sym_BQUOTE, - ACTIONS(3126), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3130), 1, - sym_test_operator, - ACTIONS(3132), 1, - sym__brace_start, - ACTIONS(3836), 1, - anon_sym_RBRACE3, - STATE(2187), 1, - aux_sym__literal_repeat1, - ACTIONS(3108), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3128), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(790), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat1, - ACTIONS(3912), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3914), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - STATE(2098), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [27194] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3092), 1, - sym_word, - ACTIONS(3098), 1, - anon_sym_LPAREN, - ACTIONS(3100), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(3104), 1, - sym__special_character, - ACTIONS(3106), 1, - anon_sym_DQUOTE, - ACTIONS(3110), 1, - aux_sym_number_token1, - ACTIONS(3112), 1, - aux_sym_number_token2, - ACTIONS(3114), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3122), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3124), 1, - anon_sym_BQUOTE, - ACTIONS(3126), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3130), 1, - sym_test_operator, - ACTIONS(3132), 1, - sym__brace_start, - ACTIONS(3878), 1, - anon_sym_RBRACE3, - STATE(2187), 1, - aux_sym__literal_repeat1, - ACTIONS(3108), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3128), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(790), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat1, - ACTIONS(3912), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3914), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - STATE(2098), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [27286] = 6, + [26640] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3985), 1, + ACTIONS(3847), 1, aux_sym_concatenation_token1, - ACTIONS(3988), 1, + ACTIONS(3849), 1, sym__concat, - STATE(798), 1, + STATE(814), 1, aux_sym_concatenation_repeat1, - ACTIONS(1279), 4, + ACTIONS(3665), 4, sym_file_descriptor, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1274), 37, - anon_sym_LF, + ACTIONS(3663), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -78920,6 +79823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -78938,22 +79842,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [27344] = 6, + [26699] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3741), 1, + ACTIONS(3733), 1, aux_sym_concatenation_token1, - ACTIONS(3743), 1, + ACTIONS(3735), 1, sym__concat, - STATE(810), 1, + STATE(856), 1, aux_sym_concatenation_repeat1, - ACTIONS(3414), 4, + ACTIONS(178), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3412), 37, - anon_sym_LF, + ACTIONS(145), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -78962,6 +79865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -78972,6 +79876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -78990,22 +79895,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [27402] = 6, + [26758] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3741), 1, + ACTIONS(3733), 1, aux_sym_concatenation_token1, - ACTIONS(3743), 1, + ACTIONS(3735), 1, sym__concat, - STATE(809), 1, + STATE(855), 1, aux_sym_concatenation_repeat1, - ACTIONS(3418), 4, + ACTIONS(1234), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3416), 37, - anon_sym_LF, + ACTIONS(1225), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -79014,6 +79918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -79024,6 +79929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -79042,21 +79948,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [27460] = 6, + [26817] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3890), 1, + ACTIONS(3932), 1, aux_sym_concatenation_token1, - ACTIONS(3894), 1, + ACTIONS(3934), 1, sym__concat, - STATE(787), 1, + STATE(798), 1, aux_sym_concatenation_repeat1, - ACTIONS(1272), 3, + ACTIONS(3839), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1270), 38, - anon_sym_LF, + ACTIONS(3837), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -79076,6 +79982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -79094,89 +80001,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [27518] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3092), 1, - sym_word, - ACTIONS(3098), 1, - anon_sym_LPAREN, - ACTIONS(3100), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(3104), 1, - sym__special_character, - ACTIONS(3106), 1, - anon_sym_DQUOTE, - ACTIONS(3110), 1, - aux_sym_number_token1, - ACTIONS(3112), 1, - aux_sym_number_token2, - ACTIONS(3114), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3122), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3124), 1, - anon_sym_BQUOTE, - ACTIONS(3126), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3130), 1, - sym_test_operator, - ACTIONS(3132), 1, - sym__brace_start, - ACTIONS(3991), 1, - anon_sym_RBRACE3, - STATE(2187), 1, - aux_sym__literal_repeat1, - ACTIONS(3108), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3128), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(790), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat1, - ACTIONS(3912), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3914), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - STATE(2098), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [27610] = 6, + [26876] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3993), 1, + ACTIONS(3932), 1, aux_sym_concatenation_token1, - ACTIONS(3995), 1, + ACTIONS(3934), 1, sym__concat, - STATE(813), 1, + STATE(797), 1, aux_sym_concatenation_repeat1, - ACTIONS(1266), 2, + ACTIONS(3843), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1264), 39, - anon_sym_LF, + ACTIONS(3841), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -79196,6 +80035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -79212,33 +80052,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [27668] = 7, + [26935] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3999), 1, - anon_sym_DQUOTE, - STATE(1874), 1, - sym_string, - ACTIONS(1217), 2, + ACTIONS(3936), 1, + aux_sym_concatenation_token1, + ACTIONS(3939), 1, + sym__concat, + STATE(781), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(4001), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3997), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 29, + ts_builtin_sym_end, + ACTIONS(1258), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -79246,16 +80079,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -79268,119 +80107,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [27728] = 7, + [26994] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3999), 1, - anon_sym_DQUOTE, - STATE(1874), 1, - sym_string, - ACTIONS(1221), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(4001), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3997), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(3942), 1, + sym_word, + ACTIONS(3950), 1, + anon_sym_LPAREN, + ACTIONS(3952), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 29, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3954), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3956), 1, + anon_sym_DQUOTE, + ACTIONS(3960), 1, aux_sym_number_token1, + ACTIONS(3962), 1, aux_sym_number_token2, + ACTIONS(3964), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3966), 1, + anon_sym_RBRACE3, + ACTIONS(3969), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3971), 1, anon_sym_BQUOTE, + ACTIONS(3973), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3977), 1, + sym_test_operator, + ACTIONS(3979), 1, + sym__brace_start, + STATE(3217), 1, + aux_sym__literal_repeat1, + ACTIONS(3944), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3975), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [27788] = 23, + STATE(2277), 3, + sym_concatenation, + sym_array, + aux_sym__expansion_body_repeat1, + ACTIONS(3946), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_POUND, + ACTIONS(3948), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + STATE(3005), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [27087] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 1, + ACTIONS(1378), 1, sym_word, - ACTIONS(3098), 1, + ACTIONS(1396), 1, anon_sym_LPAREN, - ACTIONS(3100), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3102), 1, + ACTIONS(1400), 1, anon_sym_DOLLAR, - ACTIONS(3104), 1, + ACTIONS(1402), 1, sym__special_character, - ACTIONS(3106), 1, + ACTIONS(1404), 1, anon_sym_DQUOTE, - ACTIONS(3110), 1, + ACTIONS(1408), 1, aux_sym_number_token1, - ACTIONS(3112), 1, + ACTIONS(1410), 1, aux_sym_number_token2, - ACTIONS(3114), 1, + ACTIONS(1412), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3122), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3124), 1, + ACTIONS(1428), 1, anon_sym_BQUOTE, - ACTIONS(3126), 1, + ACTIONS(1430), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3130), 1, + ACTIONS(1434), 1, sym_test_operator, - ACTIONS(3132), 1, + ACTIONS(1436), 1, sym__brace_start, - ACTIONS(4003), 1, + ACTIONS(3912), 1, anon_sym_RBRACE3, - STATE(2187), 1, + STATE(2262), 1, aux_sym__literal_repeat1, - ACTIONS(3108), 2, + ACTIONS(1380), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1406), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3128), 2, + ACTIONS(1432), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(790), 3, + STATE(866), 3, sym_concatenation, sym_array, - aux_sym__expansion_body_repeat1, - ACTIONS(3912), 4, + aux_sym__expansion_body_repeat2, + ACTIONS(3981), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_POUND, - ACTIONS(3914), 8, + ACTIONS(3983), 8, anon_sym_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_COLON, - anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - STATE(2098), 9, + anon_sym_COLON_QMARK, + STATE(2173), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79390,21 +80247,22 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [27880] = 5, + [27180] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4005), 1, - sym__special_character, - STATE(793), 1, - aux_sym__literal_repeat1, - ACTIONS(3496), 3, + ACTIONS(3932), 1, + aux_sym_concatenation_token1, + ACTIONS(3934), 1, + sym__concat, + STATE(798), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3987), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(3494), 39, - anon_sym_LF, + ACTIONS(3985), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -79417,17 +80275,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -79441,20 +80300,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [27936] = 6, + [27239] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3993), 1, + ACTIONS(3932), 1, aux_sym_concatenation_token1, - ACTIONS(4007), 1, + ACTIONS(3934), 1, sym__concat, - STATE(813), 1, + STATE(797), 1, aux_sym_concatenation_repeat1, - ACTIONS(1260), 2, + ACTIONS(3991), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1258), 39, - anon_sym_LF, + ACTIONS(3989), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -79474,6 +80334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -79490,27 +80351,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [27994] = 6, + [27298] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3741), 1, + ACTIONS(3922), 1, aux_sym_concatenation_token1, - ACTIONS(4009), 1, + ACTIONS(3928), 1, sym__concat, - STATE(798), 1, + STATE(771), 1, aux_sym_concatenation_repeat1, - ACTIONS(1260), 4, + ACTIONS(3839), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1258), 37, - anon_sym_LF, + ACTIONS(3837), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -79519,14 +80377,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -79543,26 +80403,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [28052] = 6, + [27357] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3741), 1, + ACTIONS(3922), 1, aux_sym_concatenation_token1, - ACTIONS(4011), 1, + ACTIONS(3928), 1, sym__concat, - STATE(798), 1, + STATE(767), 1, aux_sym_concatenation_repeat1, - ACTIONS(1266), 4, + ACTIONS(3843), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1264), 37, - anon_sym_LF, + ACTIONS(3841), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -79571,14 +80430,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -79595,25 +80456,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [28110] = 7, + [27416] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, + ACTIONS(3847), 1, aux_sym_concatenation_token1, - ACTIONS(3850), 1, + ACTIONS(3849), 1, sym__concat, - ACTIONS(4013), 1, - anon_sym_LPAREN, - STATE(923), 1, + STATE(814), 1, aux_sym_concatenation_repeat1, - ACTIONS(1250), 3, + ACTIONS(1244), 4, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1241), 37, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1242), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -79632,6 +80493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -79650,21 +80512,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [28170] = 5, + [27475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4005), 1, - sym__special_character, - STATE(793), 1, - aux_sym__literal_repeat1, - ACTIONS(3414), 3, + ACTIONS(1320), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(3412), 39, - anon_sym_LF, + ACTIONS(1318), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -79677,17 +80535,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -79699,41 +80559,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [28226] = 6, + [27528] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4015), 1, + ACTIONS(3847), 1, aux_sym_concatenation_token1, - ACTIONS(4018), 1, + ACTIONS(3849), 1, sym__concat, STATE(813), 1, aux_sym_concatenation_repeat1, - ACTIONS(1279), 2, + ACTIONS(3685), 4, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(1274), 39, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(3683), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -79750,21 +80613,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [28284] = 3, + [27587] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 4, + ACTIONS(3995), 1, + anon_sym_DQUOTE, + STATE(2005), 1, + sym_string, + ACTIONS(1213), 2, sym_file_descriptor, - sym__concat, - sym__bare_dollar, sym__brace_start, - ACTIONS(1320), 40, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_EQ_EQ, + ACTIONS(3997), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3993), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 30, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -79772,11 +80647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -79784,12 +80655,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -79802,16 +80669,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [28336] = 3, + [27648] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, + ACTIONS(3999), 1, + sym__special_character, + STATE(796), 1, + aux_sym__literal_repeat1, + ACTIONS(3675), 3, sym_file_descriptor, - sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1334), 40, - anon_sym_LF, + ACTIONS(3673), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -79820,6 +80690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -79832,12 +80703,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -79851,18 +80721,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [28388] = 3, + [27705] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, + ACTIONS(3995), 1, + anon_sym_DQUOTE, + STATE(2005), 1, + sym_string, + ACTIONS(1217), 2, sym_file_descriptor, - sym__concat, - sym__bare_dollar, sym__brace_start, - ACTIONS(1338), 40, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_EQ_EQ, + ACTIONS(3997), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3993), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 30, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -79870,11 +80753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -79882,12 +80761,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -79900,16 +80775,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [28440] = 3, + [27766] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, - sym_file_descriptor, + ACTIONS(3847), 1, + aux_sym_concatenation_token1, + ACTIONS(3849), 1, sym__concat, + STATE(813), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1234), 4, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1342), 40, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1225), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -79920,8 +80801,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -79930,10 +80809,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -79949,16 +80828,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [28492] = 3, + [27825] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 4, - sym_file_descriptor, + ACTIONS(3847), 1, + aux_sym_concatenation_token1, + ACTIONS(3849), 1, sym__concat, + STATE(814), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3675), 4, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1346), 40, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(3673), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -79969,8 +80854,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -79979,10 +80862,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -79998,17 +80881,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [28544] = 3, + [27884] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 4, + ACTIONS(4001), 1, + sym__special_character, + STATE(796), 1, + aux_sym__literal_repeat1, + ACTIONS(1357), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1316), 40, - anon_sym_LF, + ACTIONS(1352), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -80021,18 +80908,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -80044,23 +80931,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [28596] = 6, + [27941] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3993), 1, + ACTIONS(3932), 1, aux_sym_concatenation_token1, - ACTIONS(4025), 1, + ACTIONS(4004), 1, sym__concat, - STATE(803), 1, + STATE(799), 1, aux_sym_concatenation_repeat1, - ACTIONS(4023), 2, + ACTIONS(1248), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(4021), 39, - anon_sym_LF, + ACTIONS(1246), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -80080,6 +80967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -80096,23 +80984,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [28654] = 6, + [28000] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3993), 1, + ACTIONS(3932), 1, aux_sym_concatenation_token1, - ACTIONS(4025), 1, + ACTIONS(4006), 1, sym__concat, - STATE(808), 1, + STATE(799), 1, aux_sym_concatenation_repeat1, - ACTIONS(4029), 2, + ACTIONS(1254), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(4027), 39, - anon_sym_LF, + ACTIONS(1252), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -80132,6 +81020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -80148,43 +81037,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [28712] = 3, + [28059] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, + ACTIONS(4008), 1, + aux_sym_concatenation_token1, + ACTIONS(4011), 1, sym__concat, - sym__bare_dollar, + STATE(799), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1284), 40, - anon_sym_LF, + ACTIONS(1258), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -80200,19 +81092,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [28764] = 5, + [28118] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4005), 1, - sym__special_character, - STATE(793), 1, - aux_sym__literal_repeat1, - ACTIONS(232), 3, + ACTIONS(3733), 1, + aux_sym_concatenation_token1, + ACTIONS(3735), 1, + sym__concat, + STATE(855), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3685), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(195), 39, - anon_sym_LF, + ACTIONS(3683), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -80221,11 +81115,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -80234,10 +81126,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -80251,23 +81145,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [28820] = 7, + [28177] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, + ACTIONS(3733), 1, aux_sym_concatenation_token1, - ACTIONS(3850), 1, + ACTIONS(3735), 1, sym__concat, - ACTIONS(4031), 1, - anon_sym_LPAREN, - STATE(923), 1, + STATE(856), 1, aux_sym_concatenation_repeat1, - ACTIONS(1250), 3, + ACTIONS(3675), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1241), 37, - anon_sym_LF, + ACTIONS(3673), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -80276,6 +81168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -80286,6 +81179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -80304,21 +81198,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [28880] = 6, + [28236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3981), 1, - aux_sym_concatenation_token1, - ACTIONS(3983), 1, - sym__concat, - STATE(841), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1272), 3, + ACTIONS(1286), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1270), 38, - anon_sym_LF, + ACTIONS(1284), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -80326,6 +81215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -80337,9 +81227,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -80356,69 +81248,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [28938] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_DQUOTE, - STATE(2043), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(4037), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4033), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 29, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [28998] = 3, + [28289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 4, + ACTIONS(1340), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1328), 40, - anon_sym_LF, + ACTIONS(1338), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -80438,6 +81277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -80458,16 +81298,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [29050] = 3, + [28342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, + ACTIONS(1263), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1288), 40, - anon_sym_LF, + ACTIONS(1258), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -80487,6 +81327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -80507,96 +81348,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [29102] = 7, + [28395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4035), 1, - anon_sym_DQUOTE, - STATE(2043), 1, - sym_string, - ACTIONS(1221), 2, + ACTIONS(1278), 4, sym_file_descriptor, - sym__brace_start, - ACTIONS(4037), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4033), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 29, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [29162] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3848), 1, - aux_sym_concatenation_token1, - ACTIONS(3850), 1, sym__concat, - STATE(864), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3414), 3, - sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(3412), 38, - anon_sym_LF, + ACTIONS(1276), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -80610,45 +81395,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [29220] = 6, + [28448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, - aux_sym_concatenation_token1, - ACTIONS(3850), 1, - sym__concat, - STATE(866), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3418), 3, + ACTIONS(1282), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(3416), 38, - anon_sym_LF, + ACTIONS(1280), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -80662,22 +81445,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [29278] = 6, + [28501] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3993), 1, + ACTIONS(4014), 1, aux_sym_concatenation_token1, - ACTIONS(4025), 1, + ACTIONS(4016), 1, sym__concat, - STATE(803), 1, + STATE(810), 1, aux_sym_concatenation_repeat1, - ACTIONS(1272), 2, + ACTIONS(1248), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(1270), 39, - anon_sym_LF, + ACTIONS(1246), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -80697,6 +81481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -80716,89 +81501,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [29336] = 3, + [28560] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1350), 40, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [29388] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3848), 1, + ACTIONS(4014), 1, aux_sym_concatenation_token1, - ACTIONS(3850), 1, + ACTIONS(4018), 1, sym__concat, - STATE(864), 1, + STATE(810), 1, aux_sym_concatenation_repeat1, - ACTIONS(1272), 3, + ACTIONS(1254), 2, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, - ACTIONS(1270), 38, - anon_sym_LF, + ACTIONS(1252), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -80815,18 +81551,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [29446] = 3, + [28619] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, + ACTIONS(3999), 1, + sym__special_character, + STATE(796), 1, + aux_sym__literal_repeat1, + ACTIONS(3665), 3, sym_file_descriptor, - sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1298), 40, - anon_sym_LF, + ACTIONS(3663), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -80835,6 +81575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -80847,12 +81588,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -80866,40 +81606,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [29498] = 3, + [28676] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 4, - sym_file_descriptor, + ACTIONS(4020), 1, + aux_sym_concatenation_token1, + ACTIONS(4023), 1, sym__concat, - sym__bare_dollar, + STATE(810), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1354), 40, - anon_sym_LF, + ACTIONS(1258), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -80913,42 +81656,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [29550] = 6, + [28735] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3741), 1, + ACTIONS(3932), 1, aux_sym_concatenation_token1, - ACTIONS(3743), 1, + ACTIONS(3934), 1, sym__concat, - STATE(810), 1, + STATE(797), 1, aux_sym_concatenation_repeat1, - ACTIONS(232), 4, + ACTIONS(1244), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(195), 37, - anon_sym_LF, + ACTIONS(1242), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -80967,21 +81712,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [29608] = 6, + [28794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4039), 1, - aux_sym_concatenation_token1, - ACTIONS(4042), 1, - sym__concat, - STATE(838), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1279), 3, + ACTIONS(1300), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1274), 38, - anon_sym_LF, + ACTIONS(1298), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -80989,6 +81729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -81000,9 +81741,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -81019,16 +81762,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [29666] = 3, + [28847] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, + ACTIONS(3847), 1, + aux_sym_concatenation_token1, + ACTIONS(4026), 1, sym__concat, + STATE(781), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 4, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1284), 40, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1252), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -81039,8 +81788,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -81049,10 +81796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -81068,22 +81815,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [29718] = 6, + [28906] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3981), 1, + ACTIONS(3847), 1, aux_sym_concatenation_token1, - ACTIONS(4045), 1, + ACTIONS(4028), 1, sym__concat, - STATE(838), 1, + STATE(781), 1, aux_sym_concatenation_repeat1, - ACTIONS(1260), 3, + ACTIONS(1248), 4, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1258), 38, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1246), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -81092,15 +81841,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -81117,24 +81866,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [29776] = 6, + [28965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3981), 1, - aux_sym_concatenation_token1, - ACTIONS(4047), 1, - sym__concat, - STATE(838), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 3, + ACTIONS(1312), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1264), 38, - anon_sym_LF, + ACTIONS(1310), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -81142,6 +81885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -81153,9 +81897,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -81172,40 +81918,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [29834] = 3, + [29018] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, + ACTIONS(4014), 1, + aux_sym_concatenation_token1, + ACTIONS(4030), 1, sym__concat, - sym__bare_dollar, + STATE(807), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1302), 40, - anon_sym_LF, + ACTIONS(1242), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -81219,42 +81968,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [29886] = 3, + [29077] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 4, - sym_file_descriptor, + ACTIONS(4014), 1, + aux_sym_concatenation_token1, + ACTIONS(4030), 1, sym__concat, - sym__bare_dollar, + STATE(807), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4034), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1274), 40, - anon_sym_LF, + ACTIONS(4032), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -81268,23 +82021,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [29938] = 6, + [29136] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3890), 1, + ACTIONS(4014), 1, aux_sym_concatenation_token1, - ACTIONS(3894), 1, + ACTIONS(4030), 1, sym__concat, - STATE(786), 1, + STATE(808), 1, aux_sym_concatenation_repeat1, - ACTIONS(3785), 3, + ACTIONS(4038), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(3783), 38, - anon_sym_LF, + ACTIONS(4036), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -81304,6 +82057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -81320,18 +82074,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [29996] = 3, + [29195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1286), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1308), 40, - anon_sym_LF, + ACTIONS(1284), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -81352,6 +82107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -81371,21 +82127,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [30048] = 6, + [29248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3890), 1, - aux_sym_concatenation_token1, - ACTIONS(3894), 1, - sym__concat, - STATE(787), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3789), 3, + ACTIONS(1296), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(3787), 38, - anon_sym_LF, + ACTIONS(1294), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -81405,9 +82156,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -81421,37 +82174,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [30106] = 3, + [29301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 4, + ACTIONS(1340), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1320), 40, - anon_sym_LF, + ACTIONS(1338), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -81469,19 +82225,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [30158] = 3, + [29354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, + ACTIONS(1263), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1288), 40, - anon_sym_LF, + ACTIONS(1258), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -81502,6 +82257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -81521,16 +82277,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [30210] = 3, + [29407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, + ACTIONS(1304), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1334), 40, - anon_sym_LF, + ACTIONS(1302), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -81550,6 +82306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -81570,16 +82327,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [30262] = 3, + [29460] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 4, + ACTIONS(1378), 1, + sym_word, + ACTIONS(1396), 1, + anon_sym_LPAREN, + ACTIONS(1400), 1, + anon_sym_DOLLAR, + ACTIONS(1402), 1, + sym__special_character, + ACTIONS(1404), 1, + anon_sym_DQUOTE, + ACTIONS(1408), 1, + aux_sym_number_token1, + ACTIONS(1410), 1, + aux_sym_number_token2, + ACTIONS(1412), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1428), 1, + anon_sym_BQUOTE, + ACTIONS(1430), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1434), 1, + sym_test_operator, + ACTIONS(1436), 1, + sym__brace_start, + ACTIONS(3746), 1, + anon_sym_RBRACE3, + STATE(2262), 1, + aux_sym__literal_repeat1, + ACTIONS(1380), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1406), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1432), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(866), 3, + sym_concatenation, + sym_array, + aux_sym__expansion_body_repeat2, + ACTIONS(3981), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_POUND, + ACTIONS(3983), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + STATE(2173), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [29553] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1278), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1328), 40, - anon_sym_LF, + ACTIONS(1276), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -81600,6 +82427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -81619,21 +82447,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [30314] = 6, + [29606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3890), 1, - aux_sym_concatenation_token1, - ACTIONS(3894), 1, - sym__concat, - STATE(787), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4051), 3, + ACTIONS(1316), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(4049), 38, - anon_sym_LF, + ACTIONS(1314), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -81653,9 +82476,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -81669,24 +82494,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [30372] = 6, + [29659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3741), 1, - aux_sym_concatenation_token1, - ACTIONS(3743), 1, - sym__concat, - STATE(809), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1250), 4, + ACTIONS(1282), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1241), 37, - anon_sym_LF, + ACTIONS(1280), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -81697,6 +82517,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -81705,9 +82527,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -81723,39 +82547,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [30430] = 3, + [29712] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, - sym_file_descriptor, + ACTIONS(3847), 1, + aux_sym_concatenation_token1, + ACTIONS(3849), 1, sym__concat, - sym_variable_name, + STATE(814), 1, + aux_sym_concatenation_repeat1, + ACTIONS(178), 4, + sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(1338), 40, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(145), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -81769,19 +82598,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [30482] = 3, + [29771] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, - sym_file_descriptor, + ACTIONS(3733), 1, + aux_sym_concatenation_token1, + ACTIONS(3735), 1, sym__concat, + ACTIONS(4040), 1, + anon_sym_LPAREN, + STATE(930), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1234), 3, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1312), 40, - anon_sym_LF, + ACTIONS(1225), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -81792,8 +82627,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -81802,10 +82635,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -81821,16 +82654,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [30534] = 3, + [29832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 4, + ACTIONS(1300), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1316), 40, - anon_sym_LF, + ACTIONS(1298), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -81851,6 +82684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -81870,44 +82704,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [30586] = 6, + [29885] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3981), 1, - aux_sym_concatenation_token1, - ACTIONS(3983), 1, - sym__concat, - STATE(841), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3789), 3, + ACTIONS(3999), 1, + sym__special_character, + STATE(796), 1, + aux_sym__literal_repeat1, + ACTIONS(178), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(3787), 38, - anon_sym_LF, + ACTIONS(145), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -81919,19 +82754,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [30644] = 3, + [29942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, + ACTIONS(1270), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1342), 40, - anon_sym_LF, + ACTIONS(1268), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -81951,6 +82785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -81971,16 +82806,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [30696] = 3, + [29995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 4, + ACTIONS(1270), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1346), 40, - anon_sym_LF, + ACTIONS(1268), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -82000,6 +82835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -82020,21 +82856,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [30748] = 6, + [30048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4053), 1, - aux_sym_concatenation_token1, - ACTIONS(4056), 1, - sym__concat, - STATE(859), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1279), 3, + ACTIONS(1312), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1274), 38, - anon_sym_LF, + ACTIONS(1310), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -82043,9 +82874,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -82054,9 +82886,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -82072,21 +82906,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [30806] = 6, + [30101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3981), 1, - aux_sym_concatenation_token1, - ACTIONS(3983), 1, - sym__concat, - STATE(840), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3785), 3, + ACTIONS(1344), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(3783), 38, - anon_sym_LF, + ACTIONS(1342), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -82094,6 +82923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -82105,9 +82935,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -82124,16 +82956,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [30864] = 3, + [30154] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 4, - sym_file_descriptor, + ACTIONS(4042), 1, + aux_sym_concatenation_token1, + ACTIONS(4045), 1, sym__concat, + STATE(836), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 3, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1354), 40, - anon_sym_LF, + ACTIONS(1258), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -82141,7 +82978,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -82153,10 +82989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -82173,35 +83009,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [30916] = 3, + [30213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1296), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1284), 40, - anon_sym_LF, + ACTIONS(1294), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -82219,19 +83057,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [30968] = 3, + [30266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1274), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1284), 40, - anon_sym_LF, + ACTIONS(1272), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -82251,6 +83088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -82271,21 +83109,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [31020] = 6, + [30319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, - aux_sym_concatenation_token1, - ACTIONS(4059), 1, - sym__concat, - STATE(859), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 3, + ACTIONS(1304), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1264), 38, - anon_sym_LF, + ACTIONS(1302), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -82294,9 +83127,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -82305,9 +83139,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -82323,43 +83159,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [31078] = 6, + [30372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, - aux_sym_concatenation_token1, - ACTIONS(3850), 1, - sym__concat, - STATE(866), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1250), 3, + ACTIONS(1336), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1241), 38, - anon_sym_LF, + ACTIONS(1334), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -82373,45 +83206,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [31136] = 6, + [30425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, - aux_sym_concatenation_token1, - ACTIONS(4061), 1, - sym__concat, - STATE(859), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 3, + ACTIONS(1332), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1258), 38, - anon_sym_LF, + ACTIONS(1330), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -82425,23 +83256,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [31194] = 6, + [30478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, - aux_sym_concatenation_token1, - ACTIONS(3850), 1, - sym__concat, - STATE(864), 1, - aux_sym_concatenation_repeat1, - ACTIONS(232), 3, + ACTIONS(1316), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(195), 38, - anon_sym_LF, + ACTIONS(1314), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -82450,9 +83277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -82461,9 +83289,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -82479,16 +83309,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [31252] = 3, + [30531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 4, + ACTIONS(1324), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1350), 40, - anon_sym_LF, + ACTIONS(1322), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -82508,6 +83338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -82528,16 +83359,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [31304] = 3, + [30584] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 4, - sym_file_descriptor, + ACTIONS(3922), 1, + aux_sym_concatenation_token1, + ACTIONS(3928), 1, sym__concat, + STATE(767), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 3, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1324), 40, - anon_sym_LF, + ACTIONS(1242), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -82545,7 +83381,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -82557,10 +83392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -82577,16 +83412,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [31356] = 3, + [30643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 4, + ACTIONS(1320), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1324), 40, - anon_sym_LF, + ACTIONS(1318), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -82607,6 +83442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -82626,16 +83462,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [31408] = 3, + [30696] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, + ACTIONS(4048), 1, + aux_sym_concatenation_token1, + ACTIONS(4051), 1, sym__concat, + STATE(846), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 3, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1298), 39, - anon_sym_LF, + ACTIONS(1258), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -82655,10 +83496,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -82674,17 +83515,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [31459] = 3, + [30755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 4, + ACTIONS(1328), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1328), 39, - anon_sym_LF, + ACTIONS(1326), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -82696,12 +83538,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -82719,20 +83563,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [31510] = 3, + [30808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(1270), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1288), 38, - anon_sym_LF, + ACTIONS(1268), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -82743,6 +83585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -82751,6 +83595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -82770,35 +83615,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [31561] = 3, + [30861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 4, + ACTIONS(1270), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1324), 39, - anon_sym_LF, + ACTIONS(1268), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -82818,35 +83665,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [31612] = 3, + [30914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(1344), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1312), 39, - anon_sym_LF, + ACTIONS(1342), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -82866,35 +83715,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [31663] = 3, + [30967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1348), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1308), 39, - anon_sym_LF, + ACTIONS(1346), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -82914,35 +83765,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [31714] = 3, + [31020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 4, + ACTIONS(1274), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1274), 39, - anon_sym_LF, + ACTIONS(1272), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -82962,35 +83815,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [31765] = 3, + [31073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 4, + ACTIONS(1336), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1302), 39, - anon_sym_LF, + ACTIONS(1334), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -83010,15 +83865,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [31816] = 3, + [31126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 3, + ACTIONS(1332), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1270), 40, - anon_sym_LF, + ACTIONS(1330), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -83027,7 +83883,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -83040,9 +83895,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -83058,16 +83915,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [31867] = 3, + [31179] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 4, - sym_file_descriptor, + ACTIONS(3733), 1, + aux_sym_concatenation_token1, + ACTIONS(4054), 1, sym__concat, + STATE(846), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 3, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1346), 39, - anon_sym_LF, + ACTIONS(1252), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -83087,10 +83949,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -83106,16 +83968,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [31918] = 3, + [31238] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, - sym_file_descriptor, + ACTIONS(3733), 1, + aux_sym_concatenation_token1, + ACTIONS(4056), 1, sym__concat, + STATE(846), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 3, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1342), 39, - anon_sym_LF, + ACTIONS(1246), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -83135,10 +84002,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -83154,17 +84021,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [31969] = 3, + [31297] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 5, + ACTIONS(244), 1, + anon_sym_DQUOTE, + STATE(1482), 1, + sym_string, + ACTIONS(3723), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3721), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 32, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, + sym_test_operator, + [31356] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(244), 1, + anon_sym_DQUOTE, + STATE(1482), 1, + sym_string, + ACTIONS(3723), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3721), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 32, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, + sym_test_operator, + [31415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1324), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1320), 38, - anon_sym_LF, + ACTIONS(1322), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -83175,6 +84147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -83183,6 +84157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -83202,29 +84177,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [32020] = 3, + [31468] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, + ACTIONS(1378), 1, + sym_word, + ACTIONS(1396), 1, + anon_sym_LPAREN, + ACTIONS(1400), 1, + anon_sym_DOLLAR, + ACTIONS(1402), 1, + sym__special_character, + ACTIONS(1404), 1, + anon_sym_DQUOTE, + ACTIONS(1408), 1, + aux_sym_number_token1, + ACTIONS(1410), 1, + aux_sym_number_token2, + ACTIONS(1412), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1428), 1, + anon_sym_BQUOTE, + ACTIONS(1430), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1434), 1, + sym_test_operator, + ACTIONS(1436), 1, sym__brace_start, - ACTIONS(1316), 39, - anon_sym_LF, + ACTIONS(4058), 1, + anon_sym_RBRACE3, + STATE(2262), 1, + aux_sym__literal_repeat1, + ACTIONS(1380), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1406), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1432), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(866), 3, + sym_concatenation, + sym_array, + aux_sym__expansion_body_repeat2, + ACTIONS(3981), 4, anon_sym_SEMI, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_POUND, + ACTIONS(3983), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + STATE(2173), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [31561] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + sym_word, + ACTIONS(1396), 1, + anon_sym_LPAREN, + ACTIONS(1400), 1, + anon_sym_DOLLAR, + ACTIONS(1402), 1, + sym__special_character, + ACTIONS(1404), 1, + anon_sym_DQUOTE, + ACTIONS(1408), 1, + aux_sym_number_token1, + ACTIONS(1410), 1, + aux_sym_number_token2, + ACTIONS(1412), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1428), 1, + anon_sym_BQUOTE, + ACTIONS(1430), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1434), 1, + sym_test_operator, + ACTIONS(1436), 1, + sym__brace_start, + ACTIONS(4060), 1, + anon_sym_RBRACE3, + STATE(2262), 1, + aux_sym__literal_repeat1, + ACTIONS(1380), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1406), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1432), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(866), 3, + sym_concatenation, + sym_array, + aux_sym__expansion_body_repeat2, + ACTIONS(3981), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_POUND, + ACTIONS(3983), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + STATE(2173), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [31654] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4064), 1, + anon_sym_DQUOTE, + STATE(2126), 1, + sym_string, + ACTIONS(1213), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(4066), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4062), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 30, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83232,12 +84357,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -83250,29 +84371,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [32071] = 3, + [31715] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 4, + ACTIONS(4064), 1, + anon_sym_DQUOTE, + STATE(2126), 1, + sym_string, + ACTIONS(1217), 2, sym_file_descriptor, - sym__concat, - sym__bare_dollar, sym__brace_start, - ACTIONS(1350), 39, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_EQ_EQ, + ACTIONS(4066), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4062), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 30, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83280,34 +84411,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [31776] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + sym_word, + ACTIONS(1396), 1, + anon_sym_LPAREN, + ACTIONS(1400), 1, anon_sym_DOLLAR, + ACTIONS(1402), 1, sym__special_character, + ACTIONS(1404), 1, anon_sym_DQUOTE, + ACTIONS(1408), 1, + aux_sym_number_token1, + ACTIONS(1410), 1, + aux_sym_number_token2, + ACTIONS(1412), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1428), 1, + anon_sym_BQUOTE, + ACTIONS(1430), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1434), 1, + sym_test_operator, + ACTIONS(1436), 1, + sym__brace_start, + ACTIONS(4068), 1, + anon_sym_RBRACE3, + STATE(2262), 1, + aux_sym__literal_repeat1, + ACTIONS(1380), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1406), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(1432), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(866), 3, + sym_concatenation, + sym_array, + aux_sym__expansion_body_repeat2, + ACTIONS(3981), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_POUND, + ACTIONS(3983), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + STATE(2173), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [31869] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + sym_word, + ACTIONS(1396), 1, + anon_sym_LPAREN, + ACTIONS(1400), 1, + anon_sym_DOLLAR, + ACTIONS(1402), 1, + sym__special_character, + ACTIONS(1404), 1, + anon_sym_DQUOTE, + ACTIONS(1408), 1, aux_sym_number_token1, + ACTIONS(1410), 1, aux_sym_number_token2, + ACTIONS(1412), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1428), 1, anon_sym_BQUOTE, + ACTIONS(1430), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1434), 1, + sym_test_operator, + ACTIONS(1436), 1, + sym__brace_start, + ACTIONS(4068), 1, + anon_sym_RBRACE3, + STATE(2262), 1, + aux_sym__literal_repeat1, + ACTIONS(1380), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1406), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1432), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(860), 3, + sym_concatenation, + sym_array, + aux_sym__expansion_body_repeat2, + ACTIONS(4070), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_POUND, + ACTIONS(4072), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + STATE(2173), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [31962] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4074), 1, sym_word, + ACTIONS(4086), 1, + anon_sym_LPAREN, + ACTIONS(4089), 1, + anon_sym_DOLLAR, + ACTIONS(4092), 1, + sym__special_character, + ACTIONS(4095), 1, + anon_sym_DQUOTE, + ACTIONS(4101), 1, + aux_sym_number_token1, + ACTIONS(4104), 1, + aux_sym_number_token2, + ACTIONS(4107), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4110), 1, + anon_sym_RBRACE3, + ACTIONS(4112), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4115), 1, + anon_sym_BQUOTE, + ACTIONS(4118), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4124), 1, sym_test_operator, - [32122] = 3, + ACTIONS(4127), 1, + sym__brace_start, + STATE(2262), 1, + aux_sym__literal_repeat1, + ACTIONS(4077), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4098), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4121), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(866), 3, + sym_concatenation, + sym_array, + aux_sym__expansion_body_repeat2, + ACTIONS(4080), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_POUND, + ACTIONS(4083), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + STATE(2173), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [32055] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, - sym_file_descriptor, + ACTIONS(3733), 1, + aux_sym_concatenation_token1, + ACTIONS(3735), 1, sym__concat, + STATE(856), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 3, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1338), 39, - anon_sym_LF, + ACTIONS(1242), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -83327,10 +84669,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -83346,68 +84688,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [32173] = 26, - ACTIONS(63), 1, + [32114] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(380), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(382), 1, + ACTIONS(1378), 1, + sym_word, + ACTIONS(1396), 1, + anon_sym_LPAREN, + ACTIONS(1400), 1, anon_sym_DOLLAR, - ACTIONS(386), 1, + ACTIONS(1402), 1, + sym__special_character, + ACTIONS(1404), 1, anon_sym_DQUOTE, - ACTIONS(390), 1, + ACTIONS(1408), 1, aux_sym_number_token1, - ACTIONS(392), 1, + ACTIONS(1410), 1, aux_sym_number_token2, - ACTIONS(394), 1, + ACTIONS(1412), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(396), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(398), 1, + ACTIONS(1428), 1, anon_sym_BQUOTE, - ACTIONS(400), 1, + ACTIONS(1430), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(410), 1, - sym__brace_start, - ACTIONS(805), 1, + ACTIONS(1434), 1, sym_test_operator, - ACTIONS(1397), 1, - sym_file_descriptor, - ACTIONS(3205), 1, - sym_word, - ACTIONS(4063), 1, - sym__special_character, - ACTIONS(4065), 1, - sym_variable_name, - STATE(485), 1, - sym_command_name, - STATE(1172), 1, + ACTIONS(1436), 1, + sym__brace_start, + ACTIONS(4130), 1, + anon_sym_RBRACE3, + STATE(2262), 1, aux_sym__literal_repeat1, - STATE(1268), 1, - sym_concatenation, - STATE(4169), 1, - sym_subscript, - ACTIONS(402), 2, + ACTIONS(1380), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1406), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1432), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(803), 2, + STATE(866), 3, + sym_concatenation, + sym_array, + aux_sym__expansion_body_repeat2, + ACTIONS(3981), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_POUND, + ACTIONS(3983), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + STATE(2173), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [32207] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + sym_word, + ACTIONS(1396), 1, + anon_sym_LPAREN, + ACTIONS(1400), 1, + anon_sym_DOLLAR, + ACTIONS(1402), 1, + sym__special_character, + ACTIONS(1404), 1, + anon_sym_DQUOTE, + ACTIONS(1408), 1, + aux_sym_number_token1, + ACTIONS(1410), 1, + aux_sym_number_token2, + ACTIONS(1412), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1428), 1, + anon_sym_BQUOTE, + ACTIONS(1430), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1434), 1, + sym_test_operator, + ACTIONS(1436), 1, + sym__brace_start, + ACTIONS(4130), 1, + anon_sym_RBRACE3, + STATE(2262), 1, + aux_sym__literal_repeat1, + ACTIONS(1380), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1406), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1395), 3, + ACTIONS(1432), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(861), 3, + sym_concatenation, + sym_array, + aux_sym__expansion_body_repeat2, + ACTIONS(4132), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_POUND, + ACTIONS(4134), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - STATE(2217), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(1393), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(865), 9, + anon_sym_COLON, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + STATE(2173), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83417,16 +84828,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [32270] = 3, + [32300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1320), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1284), 39, - anon_sym_LF, + ACTIONS(1318), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -83446,6 +84857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -83465,16 +84877,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [32321] = 3, + [32352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1316), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1284), 39, - anon_sym_LF, + ACTIONS(1314), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -83482,7 +84894,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -83494,6 +84905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -83511,19 +84923,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [32372] = 3, + [32404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1244), 3, sym_file_descriptor, - sym__concat, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1308), 38, - anon_sym_LF, + ACTIONS(1242), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -83532,8 +84943,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -83542,10 +84956,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -83561,15 +84975,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [32423] = 3, + [32456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 3, + ACTIONS(1286), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1354), 40, - anon_sym_LF, + ACTIONS(1284), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -83589,6 +85004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -83606,24 +85022,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [32474] = 6, + [32508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - aux_sym_concatenation_token1, - ACTIONS(4069), 1, - sym__concat, - STATE(938), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3789), 3, + ACTIONS(1340), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(3787), 37, - anon_sym_LF, + ACTIONS(1338), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -83631,6 +85041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -83642,9 +85053,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -83660,16 +85073,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [32531] = 3, + [32560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 4, + ACTIONS(1263), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1346), 39, - anon_sym_LF, + ACTIONS(1258), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -83689,6 +85102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -83708,21 +85122,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [32582] = 6, + [32612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - aux_sym_concatenation_token1, - ACTIONS(4069), 1, - sym__concat, - STATE(944), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3785), 3, + ACTIONS(1278), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(3783), 37, - anon_sym_LF, + ACTIONS(1276), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -83730,6 +85139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -83741,9 +85151,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -83759,87 +85171,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [32639] = 26, - ACTIONS(63), 1, + [32664] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(586), 1, + ACTIONS(1282), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + ACTIONS(1280), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(588), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(592), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(596), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(598), 1, aux_sym_number_token2, - ACTIONS(600), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(604), 1, anon_sym_BQUOTE, - ACTIONS(606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(610), 1, - sym_test_operator, - ACTIONS(616), 1, - sym__brace_start, - ACTIONS(1397), 1, - sym_file_descriptor, - ACTIONS(3031), 1, - sym_word, - ACTIONS(4065), 1, - sym_variable_name, - ACTIONS(4071), 1, - sym__special_character, - STATE(457), 1, - sym_command_name, - STATE(896), 1, - aux_sym__literal_repeat1, - STATE(1170), 1, - sym_concatenation, - STATE(4169), 1, - sym_subscript, - ACTIONS(594), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(608), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1395), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(2217), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(1393), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(725), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32736] = 3, + sym_word, + sym_test_operator, + [32716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, + ACTIONS(1286), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1342), 39, - anon_sym_LF, + ACTIONS(1284), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -83859,6 +85248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -83876,45 +85266,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [32787] = 5, + [32768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4073), 1, - sym__special_character, - STATE(949), 1, - aux_sym__literal_repeat1, - ACTIONS(232), 3, + ACTIONS(1300), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(195), 38, - anon_sym_LF, + ACTIONS(1298), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -83928,35 +85318,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [32842] = 3, + [32820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1340), 3, sym_file_descriptor, sym__concat, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1284), 38, - anon_sym_LF, + ACTIONS(1338), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -83974,17 +85364,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [32893] = 3, + [32872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 3, + ACTIONS(1263), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1350), 40, - anon_sym_LF, + ACTIONS(1258), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84004,6 +85395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -84024,19 +85416,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [32944] = 3, + [32924] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, - sym_file_descriptor, + ACTIONS(4136), 1, + aux_sym_concatenation_token1, + ACTIONS(4139), 1, sym__concat, - sym__bare_dollar, + STATE(882), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, + sym_file_descriptor, + sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1284), 38, - anon_sym_LF, + ACTIONS(1258), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -84046,17 +85442,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -84070,18 +85465,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [32995] = 3, + [32982] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, - sym_file_descriptor, + ACTIONS(4142), 1, + aux_sym_concatenation_token1, + ACTIONS(4144), 1, sym__concat, + STATE(882), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 4, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1338), 39, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1252), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84089,11 +85491,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -84101,10 +85500,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -84118,18 +85517,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [33046] = 3, + [33040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, + ACTIONS(1278), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1298), 39, - anon_sym_LF, + ACTIONS(1276), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84149,6 +85548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -84166,23 +85566,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [33097] = 6, + [33092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - aux_sym_concatenation_token1, - ACTIONS(4069), 1, - sym__concat, - STATE(938), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4051), 3, + ACTIONS(1312), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(4049), 37, - anon_sym_LF, + ACTIONS(1310), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84190,6 +85586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -84201,9 +85598,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -84219,22 +85618,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [33154] = 6, + [33144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - aux_sym_concatenation_token1, - ACTIONS(4069), 1, - sym__concat, - STATE(944), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3892), 3, + ACTIONS(1320), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(3888), 37, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1318), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -84243,18 +85639,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -84270,20 +85667,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [33211] = 6, + [33196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4075), 1, - aux_sym_concatenation_token1, - ACTIONS(4077), 1, - sym__concat, - STATE(1018), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 2, + ACTIONS(1282), 3, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(1264), 38, - anon_sym_LF, + ACTIONS(1280), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84303,9 +85695,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -84319,21 +85713,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [33268] = 3, + [33248] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 5, - sym_file_descriptor, + ACTIONS(4142), 1, + aux_sym_concatenation_token1, + ACTIONS(4146), 1, sym__concat, - sym__bare_dollar, + STATE(882), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 4, + sym_file_descriptor, + sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1334), 38, - anon_sym_LF, + ACTIONS(1246), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -84343,17 +85742,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -84367,17 +85765,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [33319] = 3, + [33306] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 3, - sym_file_descriptor, + ACTIONS(4148), 1, + aux_sym_concatenation_token1, + ACTIONS(4150), 1, sym__concat, + STATE(897), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1302), 40, - anon_sym_LF, + ACTIONS(1246), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84397,10 +85801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -84414,23 +85818,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [33370] = 6, + [33364] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4079), 1, + ACTIONS(4152), 1, aux_sym_concatenation_token1, - ACTIONS(4081), 1, + ACTIONS(4154), 1, sym__concat, - STATE(1007), 1, + STATE(903), 1, aux_sym_concatenation_repeat1, - ACTIONS(4029), 2, + ACTIONS(3843), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(4027), 38, - anon_sym_LF, + ACTIONS(3841), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84438,10 +85842,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -84449,6 +85852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -84468,16 +85872,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [33427] = 3, + [33422] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, - sym_file_descriptor, + ACTIONS(4148), 1, + aux_sym_concatenation_token1, + ACTIONS(4156), 1, sym__concat, - sym_variable_name, + STATE(897), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1334), 39, - anon_sym_LF, + ACTIONS(1252), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84497,10 +85905,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -84516,20 +85924,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [33478] = 6, + [33480] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4079), 1, + ACTIONS(4152), 1, aux_sym_concatenation_token1, - ACTIONS(4081), 1, + ACTIONS(4154), 1, sym__concat, - STATE(1004), 1, + STATE(911), 1, aux_sym_concatenation_repeat1, - ACTIONS(4023), 2, + ACTIONS(3839), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(4021), 38, - anon_sym_LF, + ACTIONS(3837), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84537,10 +85946,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -84548,6 +85956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -84567,15 +85976,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [33535] = 3, + [33538] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 3, - sym_file_descriptor, + ACTIONS(4142), 1, + aux_sym_concatenation_token1, + ACTIONS(4158), 1, sym__concat, + STATE(888), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 4, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1274), 40, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1242), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84583,11 +85999,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -84595,10 +86008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -84615,64 +86028,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [33586] = 22, - ACTIONS(3), 1, + [33596] = 26, + ACTIONS(63), 1, sym_comment, - ACTIONS(4083), 1, - sym_word, - ACTIONS(4089), 1, - anon_sym_RPAREN, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, + ACTIONS(360), 1, anon_sym_DOLLAR, - ACTIONS(4095), 1, - sym__special_character, - ACTIONS(4097), 1, + ACTIONS(364), 1, anon_sym_DQUOTE, - ACTIONS(4101), 1, + ACTIONS(368), 1, aux_sym_number_token1, - ACTIONS(4103), 1, + ACTIONS(370), 1, aux_sym_number_token2, - ACTIONS(4105), 1, + ACTIONS(372), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, + ACTIONS(374), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, + ACTIONS(376), 1, anon_sym_BQUOTE, - ACTIONS(4111), 1, + ACTIONS(378), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, - sym_test_operator, - ACTIONS(4117), 1, + ACTIONS(388), 1, sym__brace_start, - STATE(3322), 1, + ACTIONS(777), 1, + sym_test_operator, + ACTIONS(1449), 1, + sym_file_descriptor, + ACTIONS(3082), 1, + sym_word, + ACTIONS(4160), 1, + sym__special_character, + ACTIONS(4162), 1, + sym_variable_name, + STATE(464), 1, + sym_command_name, + STATE(1096), 1, aux_sym__literal_repeat1, - ACTIONS(4099), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4113), 2, + STATE(1341), 1, + sym_concatenation, + STATE(4396), 1, + sym_subscript, + ACTIONS(340), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(380), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2270), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4085), 5, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_RBRACE3, - ACTIONS(4087), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, + ACTIONS(775), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1447), 3, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - STATE(3103), 9, + anon_sym_AMP_GT, + STATE(2295), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + ACTIONS(1445), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(778), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84682,39 +86100,42 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [33675] = 3, + [33694] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 5, - sym_file_descriptor, + ACTIONS(4152), 1, + aux_sym_concatenation_token1, + ACTIONS(4154), 1, sym__concat, - sym__bare_dollar, + STATE(911), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3783), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1328), 38, - anon_sym_LF, + ACTIONS(3781), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -84728,41 +86149,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [33726] = 6, + [33752] = 26, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1043), 1, + anon_sym_DOLLAR, + ACTIONS(1047), 1, + anon_sym_DQUOTE, + ACTIONS(1051), 1, + aux_sym_number_token1, + ACTIONS(1053), 1, + aux_sym_number_token2, + ACTIONS(1055), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1057), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1059), 1, + anon_sym_BQUOTE, + ACTIONS(1061), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1065), 1, + sym_test_operator, + ACTIONS(1069), 1, + sym__brace_start, + ACTIONS(1449), 1, + sym_file_descriptor, + ACTIONS(3086), 1, + sym_word, + ACTIONS(3218), 1, + sym__special_character, + ACTIONS(4162), 1, + sym_variable_name, + STATE(615), 1, + sym_command_name, + STATE(1731), 1, + aux_sym__literal_repeat1, + STATE(1970), 1, + sym_concatenation, + STATE(4396), 1, + sym_subscript, + ACTIONS(1033), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1049), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1063), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1447), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(2295), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + ACTIONS(1445), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(1544), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [33850] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, + ACTIONS(4164), 1, aux_sym_concatenation_token1, - ACTIONS(3850), 1, + ACTIONS(4167), 1, sym__concat, - STATE(925), 1, + STATE(897), 1, aux_sym_concatenation_repeat1, - ACTIONS(1272), 3, + ACTIONS(1263), 2, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, - ACTIONS(1270), 37, - anon_sym_LF, + ACTIONS(1258), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -84781,15 +86276,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [33783] = 3, + [33908] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, - sym_file_descriptor, + ACTIONS(4152), 1, + aux_sym_concatenation_token1, + ACTIONS(4154), 1, sym__concat, + STATE(903), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3779), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1308), 40, - anon_sym_LF, + ACTIONS(3777), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84797,11 +86298,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -84809,10 +86308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -84829,89 +86328,115 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [33834] = 3, - ACTIONS(3), 1, + [33966] = 26, + ACTIONS(63), 1, sym_comment, - ACTIONS(1314), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1312), 38, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(360), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(364), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(368), 1, aux_sym_number_token1, + ACTIONS(370), 1, aux_sym_number_token2, + ACTIONS(372), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(374), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(376), 1, anon_sym_BQUOTE, + ACTIONS(378), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(388), 1, + sym__brace_start, + ACTIONS(1089), 1, + sym_test_operator, + ACTIONS(1449), 1, + sym_file_descriptor, + ACTIONS(3134), 1, + sym_word, + ACTIONS(4162), 1, + sym_variable_name, + ACTIONS(4170), 1, + sym__special_character, + STATE(602), 1, + sym_command_name, + STATE(1096), 1, + aux_sym__literal_repeat1, + STATE(1341), 1, + sym_concatenation, + STATE(4396), 1, + sym_subscript, + ACTIONS(340), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(380), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [33885] = 3, + ACTIONS(1087), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1447), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(2295), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + ACTIONS(1445), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(1407), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [34064] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 5, + ACTIONS(4172), 1, + sym__special_character, + STATE(904), 1, + aux_sym__literal_repeat1, + ACTIONS(3843), 3, sym_file_descriptor, - sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1274), 38, - anon_sym_LF, + ACTIONS(3841), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -84923,18 +86448,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [33936] = 3, + [34120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 4, + ACTIONS(1296), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1320), 39, - anon_sym_LF, + ACTIONS(1294), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84954,6 +86480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -84973,39 +86500,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [33987] = 3, + [34172] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 5, - sym_file_descriptor, + ACTIONS(4152), 1, + aux_sym_concatenation_token1, + ACTIONS(4154), 1, sym__concat, - sym__bare_dollar, + STATE(903), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1302), 38, - anon_sym_LF, + ACTIONS(1242), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -85019,20 +86549,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [34038] = 3, + [34230] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 4, - sym_file_descriptor, + ACTIONS(4152), 1, + aux_sym_concatenation_token1, + ACTIONS(4174), 1, sym__concat, - sym__bare_dollar, + STATE(912), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1324), 39, - anon_sym_LF, + ACTIONS(1246), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -85043,17 +86578,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -85067,43 +86601,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [34089] = 3, + [34288] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 4, + ACTIONS(4176), 1, + sym__special_character, + STATE(904), 1, + aux_sym__literal_repeat1, + ACTIONS(1357), 3, sym_file_descriptor, - sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(1302), 39, - anon_sym_LF, + ACTIONS(1352), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -85115,37 +86652,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [34140] = 3, + [34344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 4, + ACTIONS(1300), 3, sym_file_descriptor, sym__concat, - sym__bare_dollar, sym__brace_start, - ACTIONS(1274), 39, - anon_sym_LF, + ACTIONS(1298), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -85163,37 +86701,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [34191] = 3, + [34396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, + ACTIONS(1304), 4, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1324), 38, - anon_sym_LF, + ACTIONS(1302), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -85213,21 +86753,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [34242] = 6, + [34448] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, - aux_sym_concatenation_token1, - ACTIONS(4119), 1, - sym__concat, - STATE(859), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 3, + ACTIONS(4179), 1, + sym__special_character, + STATE(965), 1, + aux_sym__literal_repeat1, + ACTIONS(3675), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1258), 37, - anon_sym_LF, + ACTIONS(3673), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -85238,6 +86776,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -85246,11 +86786,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -85264,90 +86804,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [34299] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1330), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1328), 39, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + [34504] = 26, + ACTIONS(41), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(45), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(49), 1, aux_sym_number_token1, + ACTIONS(51), 1, aux_sym_number_token2, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(55), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(57), 1, anon_sym_BQUOTE, + ACTIONS(59), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(63), 1, + sym_comment, + ACTIONS(65), 1, + sym_test_operator, + ACTIONS(71), 1, + sym__brace_start, + ACTIONS(1449), 1, + sym_file_descriptor, + ACTIONS(3122), 1, + sym_word, + ACTIONS(4162), 1, + sym_variable_name, + ACTIONS(4181), 1, + sym__special_character, + STATE(470), 1, + sym_command_name, + STATE(1104), 1, + aux_sym__literal_repeat1, + STATE(1275), 1, + sym_concatenation, + STATE(4396), 1, + sym_subscript, + ACTIONS(13), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(47), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(61), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [34350] = 6, + ACTIONS(1447), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(2295), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + ACTIONS(1445), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(794), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [34602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, - aux_sym_concatenation_token1, - ACTIONS(4121), 1, - sym__concat, - STATE(859), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 3, + ACTIONS(1312), 3, sym_file_descriptor, - sym__bare_dollar, + sym__concat, sym__brace_start, - ACTIONS(1264), 37, - anon_sym_LF, + ACTIONS(1310), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -85361,37 +86922,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [34407] = 3, + [34654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, + ACTIONS(1316), 4, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(1334), 39, - anon_sym_LF, + ACTIONS(1314), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -85411,18 +86974,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [34458] = 3, + [34706] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, + ACTIONS(4152), 1, + aux_sym_concatenation_token1, + ACTIONS(4183), 1, sym__concat, - sym__bare_dollar, + STATE(912), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1284), 39, - anon_sym_LF, + ACTIONS(1252), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -85433,17 +87000,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -85457,20 +87023,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [34509] = 3, + [34764] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, + ACTIONS(4185), 1, + aux_sym_concatenation_token1, + ACTIONS(4188), 1, sym__concat, - sym__bare_dollar, + STATE(912), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1284), 39, - anon_sym_LF, + ACTIONS(1258), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -85481,17 +87052,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -85505,41 +87075,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [34560] = 3, + [34822] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, - sym_file_descriptor, + ACTIONS(4148), 1, + aux_sym_concatenation_token1, + ACTIONS(4191), 1, sym__concat, - sym__bare_dollar, + STATE(891), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3987), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1308), 39, - anon_sym_LF, + ACTIONS(3985), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -85555,16 +87130,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [34611] = 3, + [34880] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 4, - sym_file_descriptor, + ACTIONS(4148), 1, + aux_sym_concatenation_token1, + ACTIONS(4191), 1, sym__concat, - sym_variable_name, + STATE(889), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3991), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1324), 39, - anon_sym_LF, + ACTIONS(3989), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85572,6 +87151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -85583,10 +87163,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -85600,23 +87180,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [34662] = 6, + [34938] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4193), 1, aux_sym_concatenation_token1, - ACTIONS(4123), 1, + ACTIONS(4195), 1, sym__concat, - STATE(904), 1, + STATE(939), 1, aux_sym_concatenation_repeat1, - ACTIONS(4051), 2, + ACTIONS(3839), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(4049), 38, - anon_sym_LF, + ACTIONS(3837), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85624,7 +87204,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -85636,6 +87215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -85654,20 +87234,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [34719] = 6, + [34996] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4148), 1, aux_sym_concatenation_token1, - ACTIONS(4123), 1, + ACTIONS(4191), 1, sym__concat, - STATE(1005), 1, + STATE(889), 1, aux_sym_concatenation_repeat1, - ACTIONS(3892), 2, + ACTIONS(1244), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3888), 38, - anon_sym_LF, + ACTIONS(1242), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85687,6 +87267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -85705,20 +87286,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [34776] = 6, + [35054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4075), 1, - aux_sym_concatenation_token1, - ACTIONS(4123), 1, - sym__concat, - STATE(904), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1272), 2, + ACTIONS(1296), 3, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(1270), 38, - anon_sym_LF, + ACTIONS(1294), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85738,61 +87314,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [34833] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4073), 1, - sym__special_character, - STATE(949), 1, - aux_sym__literal_repeat1, - ACTIONS(3414), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3412), 38, anon_sym_LF, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -85804,17 +87332,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [34888] = 3, + [35106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, + ACTIONS(1328), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1312), 40, - anon_sym_LF, + ACTIONS(1326), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85834,6 +87364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -85851,24 +87382,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [34939] = 6, + [35158] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 1, + ACTIONS(4193), 1, aux_sym_concatenation_token1, - ACTIONS(4127), 1, + ACTIONS(4195), 1, sym__concat, - STATE(955), 1, + STATE(937), 1, aux_sym_concatenation_repeat1, - ACTIONS(3842), 3, + ACTIONS(3843), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3840), 37, - anon_sym_LF, + ACTIONS(3841), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85876,9 +87406,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85886,6 +87417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -85902,19 +87434,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [34996] = 3, + [35216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, + ACTIONS(1304), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1298), 39, - anon_sym_LF, + ACTIONS(1302), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85922,6 +87452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -85933,6 +87464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -85953,21 +87485,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [35047] = 6, + [35268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - aux_sym_concatenation_token1, - ACTIONS(4129), 1, - sym__concat, - STATE(956), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 3, + ACTIONS(1270), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1264), 37, - anon_sym_LF, + ACTIONS(1268), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85975,6 +87502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -85986,9 +87514,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -86004,16 +87534,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [35104] = 3, + [35320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 4, + ACTIONS(1270), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1316), 39, - anon_sym_LF, + ACTIONS(1268), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -86033,6 +87563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -86052,21 +87583,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [35155] = 6, + [35372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 1, - aux_sym_concatenation_token1, - ACTIONS(4127), 1, - sym__concat, - STATE(957), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3846), 3, + ACTIONS(1316), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(3844), 37, - anon_sym_LF, + ACTIONS(1314), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -86074,9 +87599,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -86084,9 +87611,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -86103,43 +87632,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [35212] = 6, + [35424] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 1, - aux_sym_concatenation_token1, - ACTIONS(4134), 1, - sym__concat, - STATE(941), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1279), 3, + ACTIONS(4179), 1, + sym__special_character, + STATE(965), 1, + aux_sym__literal_repeat1, + ACTIONS(3665), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1274), 37, - anon_sym_LF, + ACTIONS(3663), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -86151,20 +87681,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [35269] = 3, + [35480] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 5, - sym_file_descriptor, + ACTIONS(3733), 1, + aux_sym_concatenation_token1, + ACTIONS(4197), 1, sym__concat, + STATE(846), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 3, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1338), 38, - anon_sym_LF, + ACTIONS(1246), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -86183,10 +87716,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -86202,17 +87735,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [35320] = 3, + [35538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 5, + ACTIONS(1286), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1350), 38, - anon_sym_LF, + ACTIONS(1284), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -86221,6 +87753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -86231,6 +87764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -86250,21 +87784,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [35371] = 6, + [35590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - aux_sym_concatenation_token1, - ACTIONS(4137), 1, - sym__concat, - STATE(956), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 3, + ACTIONS(1344), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1258), 37, - anon_sym_LF, + ACTIONS(1342), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -86272,6 +87801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -86283,9 +87813,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -86301,15 +87833,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [35428] = 3, + [35642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 3, + ACTIONS(1296), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(3458), 40, - anon_sym_LF, + ACTIONS(1294), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -86318,11 +87851,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -86331,52 +87862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [35479] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1326), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1324), 40, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -86394,22 +87880,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [35530] = 5, + [35694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4139), 1, - sym__special_character, - STATE(1006), 1, - aux_sym__literal_repeat1, - ACTIONS(3789), 3, + ACTIONS(1348), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(3787), 38, - anon_sym_LF, + ACTIONS(1346), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -86429,53 +87911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [35585] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1318), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1316), 38, anon_sym_LF, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -86495,19 +87931,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [35636] = 5, + [35746] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4141), 1, - sym__special_character, - STATE(949), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 3, + ACTIONS(3733), 1, + aux_sym_concatenation_token1, + ACTIONS(4199), 1, + sym__concat, + STATE(846), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1358), 38, - anon_sym_LF, + ACTIONS(1252), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -86518,8 +87956,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -86528,10 +87964,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -86545,17 +87983,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [35691] = 3, + [35804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 5, + ACTIONS(1316), 5, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1298), 38, - anon_sym_LF, + ACTIONS(1314), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -86574,53 +88012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [35742] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1302), 39, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -86638,20 +88030,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [35793] = 3, + [35856] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 5, - sym_file_descriptor, + ACTIONS(3733), 1, + aux_sym_concatenation_token1, + ACTIONS(3735), 1, sym__concat, + STATE(925), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 3, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1342), 38, - anon_sym_LF, + ACTIONS(1242), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -86670,10 +88065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -86689,19 +88084,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [35844] = 3, + [35914] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 5, - sym_file_descriptor, + ACTIONS(4201), 1, + aux_sym_concatenation_token1, + ACTIONS(4203), 1, sym__concat, - sym__bare_dollar, + STATE(992), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4034), 2, + sym_file_descriptor, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1346), 38, - anon_sym_LF, + ACTIONS(4032), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -86710,18 +88107,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -86735,19 +88133,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [35895] = 3, + [35972] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 4, - sym_file_descriptor, + ACTIONS(3733), 1, + aux_sym_concatenation_token1, + ACTIONS(3735), 1, sym__concat, - sym_variable_name, + STATE(925), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3675), 3, + sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(1274), 39, - anon_sym_LF, + ACTIONS(3673), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -86756,19 +88161,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -86782,41 +88186,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [35946] = 6, + [36030] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 1, + ACTIONS(3733), 1, aux_sym_concatenation_token1, - ACTIONS(4144), 1, + ACTIONS(3735), 1, sym__concat, - STATE(941), 1, + STATE(930), 1, aux_sym_concatenation_repeat1, - ACTIONS(1260), 3, + ACTIONS(3685), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1258), 37, - anon_sym_LF, + ACTIONS(3683), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -86833,24 +88238,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [36003] = 6, + [36088] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4146), 1, + ACTIONS(4201), 1, aux_sym_concatenation_token1, - ACTIONS(4149), 1, + ACTIONS(4203), 1, sym__concat, - STATE(956), 1, + STATE(993), 1, aux_sym_concatenation_repeat1, - ACTIONS(1279), 3, + ACTIONS(4038), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(1274), 37, - anon_sym_LF, + ACTIONS(4036), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -86869,6 +88272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -86885,23 +88289,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [36060] = 6, + [36146] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 1, + ACTIONS(4193), 1, aux_sym_concatenation_token1, - ACTIONS(4152), 1, + ACTIONS(4205), 1, sym__concat, - STATE(941), 1, + STATE(948), 1, aux_sym_concatenation_repeat1, - ACTIONS(1266), 3, + ACTIONS(1248), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1264), 37, - anon_sym_LF, + ACTIONS(1246), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -86909,9 +88314,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -86919,6 +88325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -86935,26 +88342,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [36117] = 6, + [36204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 1, - aux_sym_concatenation_token1, - ACTIONS(4156), 1, - sym__concat, - STATE(1022), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3846), 4, + ACTIONS(1324), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3844), 36, - anon_sym_LF, + ACTIONS(1322), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -86964,15 +88366,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -86986,25 +88391,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [36174] = 6, + [36256] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 1, + ACTIONS(4193), 1, aux_sym_concatenation_token1, - ACTIONS(4156), 1, + ACTIONS(4207), 1, sym__concat, - STATE(1013), 1, + STATE(948), 1, aux_sym_concatenation_repeat1, - ACTIONS(3842), 4, + ACTIONS(1254), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3840), 36, - anon_sym_LF, + ACTIONS(1252), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -87014,6 +88417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87021,6 +88426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -87037,20 +88443,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [36231] = 3, + [36314] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 5, + ACTIONS(4179), 1, + sym__special_character, + STATE(965), 1, + aux_sym__literal_repeat1, + ACTIONS(178), 3, sym_file_descriptor, - sym__concat, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1354), 38, - anon_sym_LF, + ACTIONS(145), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -87061,6 +88468,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -87069,12 +88478,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -87088,68 +88496,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [36282] = 26, + [36370] = 26, ACTIONS(63), 1, sym_comment, - ACTIONS(380), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(382), 1, + ACTIONS(562), 1, anon_sym_DOLLAR, - ACTIONS(386), 1, + ACTIONS(566), 1, anon_sym_DQUOTE, - ACTIONS(390), 1, + ACTIONS(570), 1, aux_sym_number_token1, - ACTIONS(392), 1, + ACTIONS(572), 1, aux_sym_number_token2, - ACTIONS(394), 1, + ACTIONS(574), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(396), 1, + ACTIONS(576), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(398), 1, + ACTIONS(578), 1, anon_sym_BQUOTE, - ACTIONS(400), 1, + ACTIONS(580), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(404), 1, + ACTIONS(584), 1, sym_test_operator, - ACTIONS(410), 1, + ACTIONS(590), 1, sym__brace_start, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_file_descriptor, - ACTIONS(3037), 1, + ACTIONS(3078), 1, sym_word, - ACTIONS(4065), 1, + ACTIONS(4162), 1, sym_variable_name, - ACTIONS(4158), 1, + ACTIONS(4209), 1, sym__special_character, - STATE(517), 1, + STATE(452), 1, sym_command_name, - STATE(1172), 1, + STATE(940), 1, aux_sym__literal_repeat1, - STATE(1268), 1, + STATE(1200), 1, sym_concatenation, - STATE(4169), 1, + STATE(4396), 1, sym_subscript, - ACTIONS(388), 2, + ACTIONS(546), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(568), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(402), 2, + ACTIONS(582), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1395), 3, + ACTIONS(1447), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(2217), 3, + STATE(2295), 3, sym_variable_assignment, sym_file_redirect, aux_sym_command_repeat1, - ACTIONS(1393), 5, + ACTIONS(1445), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(1012), 9, + STATE(734), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87159,23 +88568,22 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [36379] = 6, + [36468] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, + ACTIONS(4193), 1, aux_sym_concatenation_token1, - ACTIONS(3850), 1, + ACTIONS(4195), 1, sym__concat, - STATE(925), 1, + STATE(939), 1, aux_sym_concatenation_repeat1, - ACTIONS(232), 3, + ACTIONS(3987), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(195), 37, - anon_sym_LF, + ACTIONS(3985), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -87184,14 +88592,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -87210,21 +88620,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [36436] = 6, + [36526] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 1, + ACTIONS(4193), 1, aux_sym_concatenation_token1, - ACTIONS(4127), 1, + ACTIONS(4195), 1, sym__concat, - STATE(957), 1, + STATE(937), 1, aux_sym_concatenation_repeat1, - ACTIONS(1272), 3, + ACTIONS(3991), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1270), 37, - anon_sym_LF, + ACTIONS(3989), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -87232,9 +88642,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87242,6 +88653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -87258,112 +88670,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [36493] = 26, - ACTIONS(63), 1, - sym_comment, - ACTIONS(380), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(382), 1, - anon_sym_DOLLAR, - ACTIONS(386), 1, - anon_sym_DQUOTE, - ACTIONS(390), 1, - aux_sym_number_token1, - ACTIONS(392), 1, - aux_sym_number_token2, - ACTIONS(394), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(396), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(398), 1, - anon_sym_BQUOTE, - ACTIONS(400), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(404), 1, - sym_test_operator, - ACTIONS(410), 1, - sym__brace_start, - ACTIONS(1397), 1, - sym_file_descriptor, - ACTIONS(3037), 1, - sym_word, - ACTIONS(4065), 1, - sym_variable_name, - ACTIONS(4158), 1, - sym__special_character, - STATE(505), 1, - sym_command_name, - STATE(1172), 1, - aux_sym__literal_repeat1, - STATE(1268), 1, - sym_concatenation, - STATE(4169), 1, - sym_subscript, - ACTIONS(388), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(402), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1395), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(2217), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(1393), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(1012), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36590] = 3, + [36584] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, - sym_file_descriptor, + ACTIONS(3733), 1, + aux_sym_concatenation_token1, + ACTIONS(3735), 1, sym__concat, + STATE(925), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3665), 3, + sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(1284), 40, - anon_sym_LF, + ACTIONS(3663), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87377,41 +88722,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [36641] = 3, + [36642] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, - sym_file_descriptor, + ACTIONS(3733), 1, + aux_sym_concatenation_token1, + ACTIONS(3735), 1, sym__concat, + STATE(930), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3661), 3, + sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(1284), 40, - anon_sym_LF, + ACTIONS(3659), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87425,20 +88774,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [36692] = 3, + [36700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1282), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1308), 39, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1280), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -87447,15 +88797,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -87473,24 +88823,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [36743] = 6, + [36752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, - aux_sym_concatenation_token1, - ACTIONS(3850), 1, - sym__concat, - STATE(923), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3418), 3, + ACTIONS(1324), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(3416), 37, - anon_sym_LF, + ACTIONS(1322), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -87499,6 +88843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -87509,9 +88854,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87527,21 +88874,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [36800] = 5, + [36804] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4073), 1, - sym__special_character, - STATE(949), 1, - aux_sym__literal_repeat1, - ACTIONS(3496), 3, + ACTIONS(4211), 1, + aux_sym_concatenation_token1, + ACTIONS(4214), 1, + sym__concat, + STATE(948), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(3494), 38, - anon_sym_LF, + ACTIONS(1258), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -87553,17 +88901,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -87577,38 +88926,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [36855] = 3, - ACTIONS(3), 1, + [36862] = 26, + ACTIONS(63), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(360), 1, + anon_sym_DOLLAR, + ACTIONS(364), 1, + anon_sym_DQUOTE, + ACTIONS(368), 1, + aux_sym_number_token1, + ACTIONS(370), 1, + aux_sym_number_token2, + ACTIONS(372), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(374), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(376), 1, + anon_sym_BQUOTE, + ACTIONS(378), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(382), 1, + sym_test_operator, + ACTIONS(388), 1, + sym__brace_start, + ACTIONS(1449), 1, sym_file_descriptor, - sym__concat, + ACTIONS(3084), 1, + sym_word, + ACTIONS(4162), 1, sym_variable_name, + ACTIONS(4217), 1, + sym__special_character, + STATE(509), 1, + sym_command_name, + STATE(1096), 1, + aux_sym__literal_repeat1, + STATE(1341), 1, + sym_concatenation, + STATE(4396), 1, + sym_subscript, + ACTIONS(340), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(366), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(380), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1447), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(2295), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + ACTIONS(1445), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(959), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [36960] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3685), 3, + sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(1312), 39, - anon_sym_LF, + ACTIONS(3683), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87622,19 +89045,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [36906] = 3, + [37012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, + ACTIONS(1332), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1288), 39, - anon_sym_LF, + ACTIONS(1330), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -87654,6 +89076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -87673,34 +89096,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [36957] = 3, + [37064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 3, + ACTIONS(1336), 4, sym_file_descriptor, sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1346), 40, - anon_sym_LF, + ACTIONS(1334), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -87718,38 +89143,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [37008] = 3, + [37116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 4, + ACTIONS(1324), 4, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(1320), 39, - anon_sym_LF, + ACTIONS(1322), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -87767,17 +89191,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [37059] = 3, + [37168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 3, + ACTIONS(1332), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1342), 40, - anon_sym_LF, + ACTIONS(1330), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -87785,7 +89211,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -87797,6 +89222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -87817,92 +89243,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [37110] = 26, - ACTIONS(39), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(41), 1, - anon_sym_DOLLAR, - ACTIONS(45), 1, - anon_sym_DQUOTE, - ACTIONS(49), 1, - aux_sym_number_token1, - ACTIONS(51), 1, - aux_sym_number_token2, - ACTIONS(53), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(57), 1, - anon_sym_BQUOTE, - ACTIONS(59), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(63), 1, - sym_comment, - ACTIONS(65), 1, - sym_test_operator, - ACTIONS(71), 1, - sym__brace_start, - ACTIONS(1397), 1, - sym_file_descriptor, - ACTIONS(3033), 1, - sym_word, - ACTIONS(4065), 1, - sym_variable_name, - ACTIONS(4160), 1, - sym__special_character, - STATE(486), 1, - sym_command_name, - STATE(1106), 1, - aux_sym__literal_repeat1, - STATE(1197), 1, - sym_concatenation, - STATE(4169), 1, - sym_subscript, - ACTIONS(47), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(61), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1395), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(2217), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(1393), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(852), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [37207] = 6, + [37220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, - aux_sym_concatenation_token1, - ACTIONS(3850), 1, - sym__concat, - STATE(925), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3414), 3, + ACTIONS(1300), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(3412), 37, - anon_sym_LF, + ACTIONS(1298), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -87911,6 +89261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -87921,9 +89272,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87939,15 +89292,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [37264] = 3, + [37272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 3, + ACTIONS(1320), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1288), 40, - anon_sym_LF, + ACTIONS(1318), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -87967,6 +89320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -87987,68 +89341,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [37315] = 26, + [37324] = 26, ACTIONS(63), 1, sym_comment, - ACTIONS(1077), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1079), 1, + ACTIONS(360), 1, anon_sym_DOLLAR, - ACTIONS(1083), 1, + ACTIONS(364), 1, anon_sym_DQUOTE, - ACTIONS(1087), 1, + ACTIONS(368), 1, aux_sym_number_token1, - ACTIONS(1089), 1, + ACTIONS(370), 1, aux_sym_number_token2, - ACTIONS(1091), 1, + ACTIONS(372), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1093), 1, + ACTIONS(374), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1095), 1, + ACTIONS(376), 1, anon_sym_BQUOTE, - ACTIONS(1097), 1, + ACTIONS(378), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1101), 1, + ACTIONS(382), 1, sym_test_operator, - ACTIONS(1105), 1, + ACTIONS(388), 1, sym__brace_start, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_file_descriptor, - ACTIONS(3035), 1, + ACTIONS(3084), 1, sym_word, - ACTIONS(3234), 1, - sym__special_character, - ACTIONS(4065), 1, + ACTIONS(4162), 1, sym_variable_name, - STATE(631), 1, + ACTIONS(4217), 1, + sym__special_character, + STATE(494), 1, sym_command_name, - STATE(1722), 1, + STATE(1096), 1, aux_sym__literal_repeat1, - STATE(1977), 1, + STATE(1341), 1, sym_concatenation, - STATE(4169), 1, + STATE(4396), 1, sym_subscript, - ACTIONS(1085), 2, + ACTIONS(340), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(366), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1099), 2, + ACTIONS(380), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1395), 3, + ACTIONS(1447), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(2217), 3, + STATE(2295), 3, sym_variable_assignment, sym_file_redirect, aux_sym_command_repeat1, - ACTIONS(1393), 5, + ACTIONS(1445), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(1555), 9, + STATE(959), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88058,38 +89413,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [37412] = 3, + [37422] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 3, - sym_file_descriptor, + ACTIONS(3733), 1, + aux_sym_concatenation_token1, + ACTIONS(3735), 1, sym__concat, + STATE(925), 1, + aux_sym_concatenation_repeat1, + ACTIONS(178), 3, + sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(1328), 40, - anon_sym_LF, + ACTIONS(145), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [37480] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3733), 1, aux_sym_concatenation_token1, + ACTIONS(3735), 1, + sym__concat, + STATE(930), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1234), 3, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1225), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88103,19 +89515,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [37463] = 3, + [37538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 4, + ACTIONS(1286), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1320), 39, - anon_sym_LF, + ACTIONS(1284), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -88134,6 +89545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -88154,15 +89566,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [37514] = 3, + [37590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 3, + ACTIONS(1328), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1338), 40, - anon_sym_LF, + ACTIONS(1326), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -88182,6 +89594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -88202,16 +89615,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [37565] = 3, + [37642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 4, + ACTIONS(1274), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1350), 39, - anon_sym_LF, + ACTIONS(1272), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -88231,6 +89644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -88250,16 +89664,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [37616] = 3, + [37694] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, - sym_file_descriptor, + ACTIONS(4142), 1, + aux_sym_concatenation_token1, + ACTIONS(4158), 1, sym__concat, + STATE(888), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3843), 4, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1334), 39, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(3841), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -88269,8 +89689,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -88278,10 +89696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88298,16 +89716,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [37667] = 3, + [37752] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, - sym_file_descriptor, + ACTIONS(4142), 1, + aux_sym_concatenation_token1, + ACTIONS(4158), 1, sym__concat, + STATE(883), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3839), 4, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1338), 39, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(3837), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -88317,8 +89741,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -88326,10 +89748,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88346,17 +89768,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [37718] = 3, + [37810] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, + ACTIONS(4219), 1, + sym__special_character, + STATE(965), 1, + aux_sym__literal_repeat1, + ACTIONS(1357), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1342), 39, - anon_sym_LF, + ACTIONS(1352), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -88368,18 +89794,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -88391,18 +89817,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [37769] = 3, + [37866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 3, + ACTIONS(1340), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1334), 40, - anon_sym_LF, + ACTIONS(1338), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -88410,7 +89836,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -88422,6 +89847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -88442,22 +89868,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [37820] = 6, + [37918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 1, - aux_sym_concatenation_token1, - ACTIONS(4156), 1, - sym__concat, - STATE(1022), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3789), 4, + ACTIONS(1263), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3787), 36, - anon_sym_LF, + ACTIONS(1258), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -88467,6 +89887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -88474,9 +89896,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88493,16 +89917,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [37877] = 3, + [37970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(1340), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1312), 39, - anon_sym_LF, + ACTIONS(1338), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -88522,6 +89946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -88541,41 +89966,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [37928] = 6, + [38022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 1, - aux_sym_concatenation_token1, - ACTIONS(4156), 1, - sym__concat, - STATE(1013), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3785), 4, + ACTIONS(1263), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3783), 36, - anon_sym_LF, + ACTIONS(1258), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88589,19 +90013,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [37985] = 3, + [38074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 4, + ACTIONS(1336), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1346), 39, - anon_sym_LF, + ACTIONS(1334), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -88620,6 +90043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -88640,16 +90064,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [38036] = 3, + [38126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1274), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1284), 39, - anon_sym_LF, + ACTIONS(1272), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -88668,6 +90092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -88688,21 +90113,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [38087] = 6, + [38178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, - aux_sym_concatenation_token1, - ACTIONS(3850), 1, - sym__concat, - STATE(925), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3496), 3, + ACTIONS(1304), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(3494), 37, - anon_sym_LF, + ACTIONS(1302), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -88711,6 +90131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -88721,52 +90142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [38144] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1322), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1320), 40, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -88784,19 +90160,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [38195] = 3, + [38230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1336), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1284), 39, - anon_sym_LF, + ACTIONS(1334), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -88804,6 +90179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -88815,6 +90191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -88832,20 +90209,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [38246] = 3, + [38282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 4, + ACTIONS(3661), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1328), 39, - anon_sym_LF, + ACTIONS(3659), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -88858,16 +90234,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88883,15 +90260,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [38297] = 3, + [38334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3418), 3, + ACTIONS(1274), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(3416), 40, - anon_sym_LF, + ACTIONS(1272), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -88900,11 +90278,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -88913,9 +90289,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88931,34 +90309,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [38348] = 3, + [38386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 4, + ACTIONS(1270), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1350), 39, - anon_sym_LF, + ACTIONS(1268), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -88976,37 +90356,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [38399] = 3, + [38438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 3, + ACTIONS(1270), 4, sym_file_descriptor, sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1316), 40, - anon_sym_LF, + ACTIONS(1268), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -89024,45 +90405,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [38450] = 6, + [38490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - aux_sym_concatenation_token1, - ACTIONS(4069), 1, - sym__concat, - STATE(938), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1272), 3, + ACTIONS(1278), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1270), 37, - anon_sym_LF, + ACTIONS(1276), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89078,16 +90456,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [38507] = 3, + [38542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 4, + ACTIONS(1332), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1354), 39, - anon_sym_LF, + ACTIONS(1330), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -89095,6 +90473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -89106,6 +90485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -89123,24 +90503,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [38558] = 6, + [38594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, - aux_sym_concatenation_token1, - ACTIONS(3850), 1, - sym__concat, - STATE(923), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3460), 3, + ACTIONS(1328), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(3458), 37, - anon_sym_LF, + ACTIONS(1326), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -89149,6 +90523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -89159,9 +90534,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89177,16 +90554,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [38615] = 3, + [38646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, + ACTIONS(1270), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1288), 39, - anon_sym_LF, + ACTIONS(1268), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -89206,6 +90582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -89223,24 +90600,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [38666] = 6, + [38698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 1, - aux_sym_concatenation_token1, - ACTIONS(4156), 1, - sym__concat, - STATE(1022), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1272), 4, + ACTIONS(1348), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1270), 36, - anon_sym_LF, + ACTIONS(1346), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -89250,6 +90622,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89257,9 +90631,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89276,20 +90652,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [38723] = 6, + [38750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4079), 1, - aux_sym_concatenation_token1, - ACTIONS(4162), 1, - sym__concat, - STATE(1017), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 2, + ACTIONS(1344), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1264), 38, - anon_sym_LF, + ACTIONS(1342), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -89308,9 +90680,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89327,20 +90701,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [38780] = 6, + [38802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4075), 1, - aux_sym_concatenation_token1, - ACTIONS(4164), 1, - sym__concat, - STATE(1018), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 2, + ACTIONS(1270), 3, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(1258), 38, - anon_sym_LF, + ACTIONS(1268), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -89360,9 +90729,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89376,21 +90747,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [38837] = 5, + [38854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - sym__special_character, - STATE(1006), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 3, + ACTIONS(1278), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1358), 38, - anon_sym_LF, + ACTIONS(1276), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -89398,7 +90767,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -89410,59 +90778,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [38892] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4079), 1, - aux_sym_concatenation_token1, - ACTIONS(4169), 1, - sym__concat, - STATE(1017), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1258), 38, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89479,35 +90799,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [38949] = 3, + [38906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 4, + ACTIONS(1324), 4, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(1354), 39, - anon_sym_LF, + ACTIONS(1322), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -89527,19 +90848,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [39000] = 5, + [38958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4139), 1, - sym__special_character, - STATE(1006), 1, - aux_sym__literal_repeat1, - ACTIONS(3846), 3, + ACTIONS(1282), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(3844), 38, - anon_sym_LF, + ACTIONS(1280), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -89547,7 +90865,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -89559,10 +90876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -89577,20 +90897,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39055] = 6, + [39010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4079), 1, - aux_sym_concatenation_token1, - ACTIONS(4081), 1, - sym__concat, - STATE(1004), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1272), 2, + ACTIONS(1348), 4, sym_file_descriptor, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1270), 38, + ACTIONS(1346), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [39062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1344), 3, + sym_file_descriptor, + sym__concat, + sym__brace_start, + ACTIONS(1342), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -89598,6 +90962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -89609,9 +90974,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89628,16 +90995,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39112] = 3, + [39114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, + ACTIONS(1348), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1288), 39, - anon_sym_LF, + ACTIONS(1346), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -89645,6 +91011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -89656,6 +91023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -89676,21 +91044,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39163] = 6, + [39166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, - aux_sym_concatenation_token1, - ACTIONS(3850), 1, - sym__concat, - STATE(923), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1250), 3, + ACTIONS(1344), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1241), 37, - anon_sym_LF, + ACTIONS(1342), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -89699,6 +91062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -89709,9 +91073,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89727,22 +91093,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [39220] = 6, + [39218] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 1, + ACTIONS(4201), 1, aux_sym_concatenation_token1, - ACTIONS(4171), 1, + ACTIONS(4222), 1, sym__concat, - STATE(1015), 1, + STATE(1004), 1, aux_sym_concatenation_repeat1, - ACTIONS(1260), 4, + ACTIONS(1248), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1258), 36, - anon_sym_LF, + ACTIONS(1246), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -89752,6 +91116,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89759,6 +91125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -89778,21 +91145,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39277] = 6, + [39276] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 1, + ACTIONS(4201), 1, aux_sym_concatenation_token1, - ACTIONS(4127), 1, + ACTIONS(4224), 1, sym__concat, - STATE(957), 1, + STATE(1004), 1, aux_sym_concatenation_repeat1, - ACTIONS(3789), 3, + ACTIONS(1254), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(3787), 37, - anon_sym_LF, + ACTIONS(1252), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -89800,9 +91166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89810,6 +91177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -89829,22 +91197,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39334] = 6, + [39334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4173), 1, - aux_sym_concatenation_token1, - ACTIONS(4176), 1, - sym__concat, - STATE(1015), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1279), 4, + ACTIONS(1270), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1274), 36, - anon_sym_LF, + ACTIONS(1268), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -89854,6 +91216,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89861,9 +91225,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89880,34 +91246,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39391] = 3, + [39386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 3, + ACTIONS(1312), 5, sym_file_descriptor, sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1298), 40, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1310), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -89925,23 +91293,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39442] = 6, + [39438] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4179), 1, - aux_sym_concatenation_token1, - ACTIONS(4182), 1, - sym__concat, - STATE(1017), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1279), 2, + ACTIONS(4172), 1, + sym__special_character, + STATE(904), 1, + aux_sym__literal_repeat1, + ACTIONS(3779), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1274), 38, - anon_sym_LF, + ACTIONS(3777), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -89949,6 +91315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -89960,11 +91327,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -89979,20 +91346,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39499] = 6, + [39494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4185), 1, - aux_sym_concatenation_token1, - ACTIONS(4188), 1, - sym__concat, - STATE(1018), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1279), 2, + ACTIONS(1270), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1274), 38, - anon_sym_LF, + ACTIONS(1268), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -90000,7 +91363,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -90012,9 +91374,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -90028,23 +91392,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39556] = 6, + [39546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 1, - aux_sym_concatenation_token1, - ACTIONS(4127), 1, - sym__concat, - STATE(955), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3785), 3, + ACTIONS(1328), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(3783), 37, - anon_sym_LF, + ACTIONS(1326), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -90052,9 +91412,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90062,9 +91423,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -90081,36 +91444,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39613] = 3, + [39598] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 3, + ACTIONS(4142), 1, + aux_sym_concatenation_token1, + ACTIONS(4158), 1, + sym__concat, + STATE(883), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3783), 4, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(1241), 40, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(3781), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -90127,18 +91493,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39664] = 3, + [39656] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 4, - sym_file_descriptor, + ACTIONS(4142), 1, + aux_sym_concatenation_token1, + ACTIONS(4158), 1, sym__concat, + STATE(888), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3779), 4, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1316), 39, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(3777), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -90148,8 +91521,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90157,10 +91528,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -90177,22 +91548,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39715] = 6, + [39714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 1, - aux_sym_concatenation_token1, - ACTIONS(4191), 1, - sym__concat, - STATE(1015), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 4, + ACTIONS(1320), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1264), 36, - anon_sym_LF, + ACTIONS(1318), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -90202,6 +91567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90209,9 +91576,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -90228,68 +91597,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39772] = 26, + [39766] = 26, ACTIONS(63), 1, sym_comment, - ACTIONS(466), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(468), 1, + ACTIONS(442), 1, anon_sym_DOLLAR, - ACTIONS(472), 1, + ACTIONS(446), 1, anon_sym_DQUOTE, - ACTIONS(476), 1, + ACTIONS(450), 1, aux_sym_number_token1, - ACTIONS(478), 1, + ACTIONS(452), 1, aux_sym_number_token2, - ACTIONS(480), 1, + ACTIONS(454), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(482), 1, + ACTIONS(456), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(484), 1, + ACTIONS(458), 1, anon_sym_BQUOTE, - ACTIONS(486), 1, + ACTIONS(460), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(490), 1, + ACTIONS(464), 1, sym_test_operator, - ACTIONS(496), 1, + ACTIONS(470), 1, sym__brace_start, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_file_descriptor, - ACTIONS(3025), 1, + ACTIONS(3080), 1, sym_word, - ACTIONS(4065), 1, + ACTIONS(4162), 1, sym_variable_name, - ACTIONS(4193), 1, + ACTIONS(4226), 1, sym__special_character, - STATE(453), 1, + STATE(448), 1, sym_command_name, - STATE(823), 1, + STATE(831), 1, aux_sym__literal_repeat1, - STATE(1020), 1, + STATE(1003), 1, sym_concatenation, - STATE(4169), 1, + STATE(4396), 1, sym_subscript, - ACTIONS(474), 2, + ACTIONS(406), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(448), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(488), 2, + ACTIONS(462), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1395), 3, + ACTIONS(1447), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(2217), 3, + STATE(2295), 3, sym_variable_assignment, sym_file_redirect, aux_sym_command_repeat1, - ACTIONS(1393), 5, + ACTIONS(1445), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(688), 9, + STATE(665), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90299,17 +91669,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [39869] = 3, + [39864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 4, + ACTIONS(1234), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1354), 39, - anon_sym_LF, + ACTIONS(1225), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -90322,16 +91692,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -90347,16 +91718,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [39920] = 3, + [39916] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, - sym_file_descriptor, + ACTIONS(4228), 1, + aux_sym_concatenation_token1, + ACTIONS(4231), 1, sym__concat, - sym_variable_name, + STATE(1004), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1288), 38, - anon_sym_LF, + ACTIONS(1258), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -90375,10 +91750,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -90392,35 +91767,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39970] = 3, + [39974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 3, + ACTIONS(1312), 4, sym_file_descriptor, sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1338), 39, - anon_sym_LF, + ACTIONS(1310), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -90438,21 +91817,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40020] = 3, + [40026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 5, + ACTIONS(1344), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1320), 37, - anon_sym_LF, + ACTIONS(1342), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -90462,12 +91841,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -90485,19 +91866,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40070] = 3, + [40078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 3, + ACTIONS(1348), 5, sym_file_descriptor, sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1324), 39, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1346), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -90506,15 +91889,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -90532,21 +91915,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40120] = 3, + [40130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(1286), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1288), 37, - anon_sym_LF, + ACTIONS(1284), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -90556,12 +91939,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -90579,21 +91964,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40170] = 3, + [40182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1296), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1308), 37, - anon_sym_LF, + ACTIONS(1294), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -90603,12 +91988,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -90626,21 +92013,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40220] = 3, + [40234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1328), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1284), 37, - anon_sym_LF, + ACTIONS(1326), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -90650,12 +92037,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -90673,21 +92062,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40270] = 3, + [40286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1274), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1284), 37, - anon_sym_LF, + ACTIONS(1272), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -90697,12 +92086,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -90720,37 +92111,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40320] = 3, + [40338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 4, + ACTIONS(1316), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1328), 38, - anon_sym_LF, + ACTIONS(1314), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -90770,15 +92162,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [40370] = 3, + [40390] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 3, - sym_file_descriptor, + ACTIONS(4193), 1, + aux_sym_concatenation_token1, + ACTIONS(4195), 1, sym__concat, + STATE(937), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1334), 39, - anon_sym_LF, + ACTIONS(1242), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -90786,7 +92184,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -90798,10 +92195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -90817,17 +92214,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [40420] = 3, + [40448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 5, + ACTIONS(1274), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1334), 37, - anon_sym_LF, + ACTIONS(1272), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -90835,8 +92230,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90844,6 +92242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -90864,33 +92263,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40470] = 3, + [40500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 5, + ACTIONS(1282), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1328), 37, - anon_sym_LF, + ACTIONS(1280), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -90908,18 +92310,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40520] = 3, + [40552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 3, + ACTIONS(1300), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1316), 39, - anon_sym_LF, + ACTIONS(1298), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -90927,7 +92329,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -90939,6 +92340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -90956,44 +92358,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40570] = 5, + [40604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4195), 1, - sym__special_character, - STATE(1166), 1, - aux_sym__literal_repeat1, - ACTIONS(3414), 3, + ACTIONS(1336), 3, sym_file_descriptor, - sym__bare_dollar, + sym__concat, sym__brace_start, - ACTIONS(3412), 37, - anon_sym_LF, + ACTIONS(1334), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -91005,17 +92407,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40624] = 3, + [40656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 3, + ACTIONS(1332), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1320), 39, - anon_sym_LF, + ACTIONS(1330), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -91035,6 +92438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91052,19 +92456,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40674] = 3, + [40708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 5, + ACTIONS(1312), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1274), 37, - anon_sym_LF, + ACTIONS(1310), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -91074,6 +92478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -91081,6 +92487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91101,15 +92508,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40724] = 3, + [40760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 3, + ACTIONS(1324), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1324), 39, - anon_sym_LF, + ACTIONS(1322), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -91129,6 +92536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91146,20 +92554,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40774] = 3, + [40812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 5, + ACTIONS(1300), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1302), 37, - anon_sym_LF, + ACTIONS(1298), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -91169,12 +92579,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91192,44 +92604,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40824] = 6, + [40864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4197), 1, - aux_sym_concatenation_token1, - ACTIONS(4199), 1, - sym__concat, - STATE(1088), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3785), 3, + ACTIONS(1340), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(3783), 36, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1338), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -91245,18 +92655,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [40880] = 3, + [40916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, + ACTIONS(1263), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1324), 37, + ACTIONS(1258), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [40968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1304), 5, + sym_file_descriptor, + sym__concat, + sym__bare_dollar, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(1302), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -91266,12 +92726,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91289,23 +92751,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40930] = 6, + [41020] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4201), 1, aux_sym_concatenation_token1, ACTIONS(4203), 1, sym__concat, - STATE(1051), 1, + STATE(992), 1, aux_sym_concatenation_repeat1, - ACTIONS(1266), 2, + ACTIONS(1244), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(1264), 37, - anon_sym_LF, + ACTIONS(1242), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -91324,6 +92785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91340,19 +92802,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40986] = 3, + [41078] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 5, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4238), 1, + anon_sym_RPAREN, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4242), 1, + sym__special_character, + ACTIONS(4244), 1, + anon_sym_DQUOTE, + ACTIONS(4248), 1, + aux_sym_number_token1, + ACTIONS(4250), 1, + aux_sym_number_token2, + ACTIONS(4252), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4254), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4256), 1, + anon_sym_BQUOTE, + ACTIONS(4258), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, + sym__brace_start, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2348), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3946), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_POUND, + anon_sym_RBRACE3, + ACTIONS(3948), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + STATE(3102), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [41168] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1296), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1338), 37, + ACTIONS(1294), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [41220] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1304), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + ACTIONS(1302), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -91362,6 +92941,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -91369,6 +92950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91389,18 +92971,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41036] = 3, + [41272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 5, + ACTIONS(1336), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1350), 37, - anon_sym_LF, + ACTIONS(1334), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -91410,12 +92993,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91433,21 +93018,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41086] = 3, + [41324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 5, + ACTIONS(1332), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1316), 37, - anon_sym_LF, + ACTIONS(1330), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -91457,12 +93042,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91480,44 +93067,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41136] = 6, + [41376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4201), 1, - aux_sym_concatenation_token1, - ACTIONS(4205), 1, - sym__concat, - STATE(1051), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 2, + ACTIONS(1320), 4, sym_file_descriptor, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1258), 37, - anon_sym_LF, + ACTIONS(1318), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -91533,20 +93118,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [41192] = 5, + [41428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4207), 1, - sym__special_character, - STATE(1050), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 3, + ACTIONS(1270), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1358), 37, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1268), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -91555,19 +93139,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -91579,24 +93165,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41246] = 6, + [41480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4210), 1, - aux_sym_concatenation_token1, - ACTIONS(4213), 1, - sym__concat, - STATE(1051), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1279), 2, + ACTIONS(1270), 5, sym_file_descriptor, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1274), 37, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1268), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -91605,18 +93188,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -91632,18 +93216,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [41302] = 3, + [41532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 5, + ACTIONS(1278), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1298), 37, - anon_sym_LF, + ACTIONS(1276), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -91653,12 +93238,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91676,18 +93263,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41352] = 3, + [41584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 3, + ACTIONS(1270), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1346), 39, - anon_sym_LF, + ACTIONS(1268), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -91695,7 +93281,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -91707,6 +93292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91724,19 +93310,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41402] = 3, + [41635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 5, + ACTIONS(1244), 3, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1342), 37, - anon_sym_LF, + ACTIONS(1242), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -91744,8 +93329,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -91753,10 +93341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -91773,21 +93361,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41452] = 6, + [41686] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4216), 1, + ACTIONS(4266), 1, aux_sym_concatenation_token1, - ACTIONS(4218), 1, + ACTIONS(4269), 1, sym__concat, - STATE(1058), 1, + STATE(1037), 1, aux_sym_concatenation_repeat1, - ACTIONS(1272), 3, + ACTIONS(1263), 2, sym_file_descriptor, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1270), 36, - anon_sym_LF, + ACTIONS(1258), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -91797,6 +93384,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -91804,6 +93393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91820,18 +93410,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41508] = 3, + [41743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 3, + ACTIONS(1270), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1338), 39, - anon_sym_LF, + ACTIONS(1268), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -91851,6 +93440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91870,16 +93460,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [41558] = 3, + [41794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 4, + ACTIONS(1270), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1354), 38, - anon_sym_LF, + ACTIONS(1268), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -91887,6 +93476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -91898,6 +93488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91917,21 +93508,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [41608] = 6, + [41845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4216), 1, - aux_sym_concatenation_token1, - ACTIONS(4220), 1, - sym__concat, - STATE(1061), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 3, + ACTIONS(1316), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1264), 36, - anon_sym_LF, + ACTIONS(1314), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -91948,9 +93535,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -91967,21 +93556,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41664] = 6, + [41896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4216), 1, - aux_sym_concatenation_token1, - ACTIONS(4222), 1, - sym__concat, - STATE(1061), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 3, + ACTIONS(1278), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1258), 36, - anon_sym_LF, + ACTIONS(1276), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -91998,9 +93583,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -92017,15 +93604,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41720] = 3, + [41947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 3, + ACTIONS(1344), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(1270), 39, - anon_sym_LF, + ACTIONS(1342), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -92045,9 +93632,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -92061,24 +93650,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41770] = 6, + [41998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4224), 1, - aux_sym_concatenation_token1, - ACTIONS(4227), 1, - sym__concat, - STATE(1061), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1279), 3, + ACTIONS(1304), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1274), 36, - anon_sym_LF, + ACTIONS(1302), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -92095,9 +93679,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -92114,86 +93700,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41826] = 5, + [42049] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4230), 1, - sym__special_character, - STATE(1101), 1, - aux_sym__literal_repeat1, - ACTIONS(4023), 2, + ACTIONS(4274), 1, + sym_variable_name, + STATE(4367), 1, + sym_subscript, + ACTIONS(3248), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(4021), 38, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, + ACTIONS(4272), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [41880] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1346), 37, - anon_sym_LF, - anon_sym_SEMI, + STATE(3169), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(3221), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3312), 6, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + ACTIONS(3236), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -92207,18 +93752,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41930] = 3, + [42112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 3, + ACTIONS(1296), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1354), 39, - anon_sym_LF, + ACTIONS(1294), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -92226,7 +93771,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -92238,6 +93782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -92257,17 +93802,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [41980] = 3, + [42163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 5, + ACTIONS(1274), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1354), 37, - anon_sym_LF, + ACTIONS(1272), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -92275,8 +93818,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -92284,6 +93830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -92301,19 +93848,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [42030] = 3, + [42214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 4, + ACTIONS(1286), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1316), 38, - anon_sym_LF, + ACTIONS(1284), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -92321,6 +93866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -92332,6 +93878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -92351,15 +93898,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [42080] = 3, + [42265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 3, + ACTIONS(1296), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1316), 39, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1294), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -92369,8 +93918,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -92378,6 +93925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -92398,16 +93946,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [42130] = 3, + [42316] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 4, + ACTIONS(4277), 1, + sym__special_character, + STATE(1049), 1, + aux_sym__literal_repeat1, + ACTIONS(1357), 3, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1350), 38, + ACTIONS(1352), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [42371] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1300), 3, + sym_file_descriptor, + sym__concat, + sym__brace_start, + ACTIONS(1298), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -92426,6 +94023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -92443,17 +94041,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [42180] = 3, + [42422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, + ACTIONS(1286), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1312), 39, + ts_builtin_sym_end, + ACTIONS(1284), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [42473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1304), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + ACTIONS(1302), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -92461,7 +94109,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -92473,6 +94120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -92492,15 +94140,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [42230] = 3, + [42524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 3, + ACTIONS(1270), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1328), 39, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1268), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -92510,8 +94160,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -92519,6 +94167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -92539,15 +94188,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [42280] = 3, + [42575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 3, + ACTIONS(1336), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1342), 39, - anon_sym_LF, + ACTIONS(1334), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -92567,6 +94216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -92586,15 +94236,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [42330] = 3, + [42626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 3, + ACTIONS(1332), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1288), 39, - anon_sym_LF, + ACTIONS(1330), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -92602,6 +94252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -92613,6 +94264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -92630,18 +94282,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [42380] = 3, + [42677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(1312), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1308), 39, - anon_sym_LF, + ACTIONS(1310), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -92649,7 +94300,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -92661,6 +94311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -92678,22 +94329,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [42430] = 6, + [42728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4201), 1, - aux_sym_concatenation_token1, - ACTIONS(4232), 1, - sym__concat, - STATE(1045), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1272), 2, + ACTIONS(1316), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1270), 37, - anon_sym_LF, + ACTIONS(1314), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -92712,9 +94360,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -92730,16 +94380,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [42486] = 3, + [42779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, + ACTIONS(1324), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1342), 38, - anon_sym_LF, + ACTIONS(1322), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -92747,9 +94396,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -92757,6 +94408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -92774,26 +94426,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [42536] = 6, + [42830] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 1, - aux_sym_concatenation_token1, - ACTIONS(4236), 1, - sym__concat, - STATE(1133), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 4, + ACTIONS(4280), 1, + sym__special_character, + STATE(1061), 1, + aux_sym__literal_repeat1, + ACTIONS(3665), 4, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1258), 35, - anon_sym_LF, + ACTIONS(3663), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -92803,17 +94453,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -92827,21 +94478,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [42592] = 6, + [42885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4197), 1, - aux_sym_concatenation_token1, - ACTIONS(4199), 1, - sym__concat, - STATE(1087), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1272), 3, + ACTIONS(1263), 5, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1270), 36, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1258), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -92849,7 +94496,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -92859,9 +94505,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -92875,18 +94523,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [42648] = 3, + [42936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(4282), 1, + sym__special_character, + STATE(1061), 1, + aux_sym__literal_repeat1, + ACTIONS(1357), 4, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1284), 38, + ts_builtin_sym_end, + ACTIONS(1352), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [42991] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 3, + sym_file_descriptor, + sym__concat, + sym__brace_start, + ACTIONS(1346), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -92894,6 +94592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -92905,6 +94604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -92924,16 +94624,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [42698] = 3, + [43042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1340), 5, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1284), 38, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1338), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -92943,8 +94644,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -92952,6 +94651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -92969,17 +94669,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [42748] = 3, + [43093] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 3, - sym_file_descriptor, + ACTIONS(4285), 1, + aux_sym_concatenation_token1, + ACTIONS(4287), 1, sym__concat, + STATE(1037), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1354), 39, - anon_sym_LF, + ACTIONS(1246), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -92998,10 +94704,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -93015,18 +94721,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [42798] = 3, + [43150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, + ACTIONS(1270), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1312), 39, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1268), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -93036,8 +94743,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -93045,6 +94750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -93065,16 +94771,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [42848] = 3, + [43201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 4, + ACTIONS(1300), 5, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1346), 38, + ts_builtin_sym_end, + ACTIONS(1298), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [43252] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4285), 1, + aux_sym_concatenation_token1, + ACTIONS(4289), 1, + sym__concat, + STATE(1037), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(1252), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -93093,10 +94851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -93112,16 +94870,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [42898] = 3, + [43309] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, + ACTIONS(4291), 1, + sym__special_character, + STATE(1068), 1, + aux_sym__literal_repeat1, + ACTIONS(1357), 3, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1342), 38, - anon_sym_LF, + ACTIONS(1352), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -93129,6 +94890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -93140,12 +94902,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -93159,15 +94920,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [42948] = 3, + [43364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 3, + ACTIONS(1278), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1350), 39, - anon_sym_LF, + ACTIONS(1276), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -93186,6 +94947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -93206,16 +94968,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [42998] = 3, + [43415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, + ACTIONS(1312), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1338), 38, - anon_sym_LF, + ACTIONS(1310), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -93234,6 +94996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -93253,16 +95016,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [43048] = 3, + [43466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, + ACTIONS(1340), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1334), 38, - anon_sym_LF, + ACTIONS(1338), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -93270,6 +95032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -93281,6 +95044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -93300,21 +95064,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [43098] = 6, + [43517] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4197), 1, + ACTIONS(4294), 1, aux_sym_concatenation_token1, - ACTIONS(4238), 1, + ACTIONS(4296), 1, sym__concat, - STATE(1090), 1, + STATE(1147), 1, aux_sym_concatenation_repeat1, - ACTIONS(1266), 3, + ACTIONS(3839), 4, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1264), 36, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(3837), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -93322,7 +95087,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -93332,6 +95096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -93350,21 +95115,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [43154] = 6, + [43574] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4197), 1, + ACTIONS(4294), 1, aux_sym_concatenation_token1, - ACTIONS(4240), 1, + ACTIONS(4296), 1, sym__concat, - STATE(1090), 1, + STATE(1145), 1, aux_sym_concatenation_repeat1, - ACTIONS(1260), 3, + ACTIONS(1244), 4, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1258), 36, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1242), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -93372,7 +95138,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -93382,6 +95147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -93400,16 +95166,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [43210] = 3, + [43631] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 4, - sym_file_descriptor, + ACTIONS(4294), 1, + aux_sym_concatenation_token1, + ACTIONS(4296), 1, sym__concat, + STATE(1145), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3843), 4, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1320), 38, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(3841), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -93419,8 +95191,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -93428,10 +95198,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -93447,21 +95217,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [43260] = 6, + [43688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4242), 1, - aux_sym_concatenation_token1, - ACTIONS(4245), 1, - sym__concat, - STATE(1090), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1279), 3, + ACTIONS(1282), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(1274), 36, - anon_sym_LF, + ACTIONS(1280), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -93469,9 +95233,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -93479,9 +95244,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -93495,17 +95262,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43316] = 3, + [43739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(1282), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1308), 39, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1280), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -93515,8 +95285,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -93524,6 +95292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -93544,15 +95313,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43366] = 3, + [43790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(1328), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1284), 39, - anon_sym_LF, + ACTIONS(1326), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -93572,6 +95341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -93591,15 +95361,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [43416] = 3, + [43841] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, - sym_file_descriptor, + ACTIONS(4298), 1, + aux_sym_concatenation_token1, + ACTIONS(4300), 1, sym__concat, + STATE(1101), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 3, + sym_file_descriptor, sym__brace_start, - ACTIONS(1284), 39, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1242), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -93607,11 +95383,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -93619,10 +95392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -93636,24 +95409,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43466] = 6, + [43898] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 1, + ACTIONS(4280), 1, + sym__special_character, + STATE(1061), 1, + aux_sym__literal_repeat1, + ACTIONS(3675), 4, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(3673), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [43953] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4298), 1, aux_sym_concatenation_token1, - ACTIONS(4248), 1, + ACTIONS(4300), 1, sym__concat, - STATE(1133), 1, + STATE(1101), 1, aux_sym_concatenation_repeat1, - ACTIONS(1266), 4, + ACTIONS(4034), 3, sym_file_descriptor, - sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1264), 35, + ACTIONS(4032), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [44010] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4285), 1, + aux_sym_concatenation_token1, + ACTIONS(4302), 1, + sym__concat, + STATE(1064), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(1242), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -93663,6 +95536,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -93670,6 +95545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -93688,15 +95564,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [43522] = 3, + [44067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 3, + ACTIONS(1320), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1274), 39, - anon_sym_LF, + ACTIONS(1318), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -93715,6 +95592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -93732,18 +95610,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43572] = 3, + [44118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(1296), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1284), 39, - anon_sym_LF, + ACTIONS(1294), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -93762,6 +95639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -93782,15 +95660,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43622] = 3, + [44169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(1320), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1284), 39, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1318), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -93800,8 +95680,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -93809,6 +95687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -93829,15 +95708,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43672] = 3, + [44220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 3, + ACTIONS(1328), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1302), 39, - anon_sym_LF, + ACTIONS(1326), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -93856,6 +95736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -93873,18 +95754,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43722] = 3, + [44271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 3, + ACTIONS(1304), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1346), 39, - anon_sym_LF, + ACTIONS(1302), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -93903,6 +95783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -93923,15 +95804,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43772] = 3, + [44322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 3, + ACTIONS(1270), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1342), 39, - anon_sym_LF, + ACTIONS(1268), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -93950,6 +95832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -93967,21 +95850,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43822] = 5, + [44373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4250), 1, - sym__special_character, - STATE(1101), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 2, + ACTIONS(1270), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1358), 38, - anon_sym_LF, + ACTIONS(1268), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -93989,7 +95869,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -94001,10 +95880,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -94016,20 +95898,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43876] = 3, + [44424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1316), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1312), 37, - anon_sym_LF, + ACTIONS(1314), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -94039,6 +95918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -94046,6 +95927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -94066,37 +95948,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43926] = 3, + [44475] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 3, + ACTIONS(4274), 1, + sym_variable_name, + ACTIONS(4306), 1, + anon_sym_LF, + ACTIONS(4308), 1, + anon_sym_LT_LT_LT, + STATE(4367), 1, + sym_subscript, + ACTIONS(3248), 2, sym_file_descriptor, - sym__concat, sym__brace_start, - ACTIONS(1334), 39, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4272), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4304), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + STATE(3169), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(3221), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3236), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -94110,18 +96003,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43976] = 3, + [44544] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 3, - sym_file_descriptor, + ACTIONS(4298), 1, + aux_sym_concatenation_token1, + ACTIONS(4300), 1, sym__concat, + STATE(1102), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4038), 3, + sym_file_descriptor, sym__brace_start, - ACTIONS(1320), 39, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(4036), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -94131,8 +96029,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -94140,10 +96036,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -94160,19 +96056,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44026] = 5, + [44601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 1, - sym__special_character, - STATE(1132), 1, - aux_sym__literal_repeat1, - ACTIONS(3789), 3, + ACTIONS(1344), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(3787), 37, - anon_sym_LF, + ACTIONS(1342), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -94180,7 +96073,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -94192,10 +96084,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -94209,22 +96104,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [44080] = 5, + [44652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, - sym__special_character, - STATE(1138), 1, - aux_sym__literal_repeat1, - ACTIONS(232), 4, + ACTIONS(1348), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(195), 36, - anon_sym_LF, + ACTIONS(1346), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -94233,18 +96123,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -94258,15 +96152,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [44134] = 3, + [44703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 3, + ACTIONS(1263), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1298), 39, - anon_sym_LF, + ACTIONS(1258), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -94274,6 +96168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -94285,6 +96180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -94302,19 +96198,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44184] = 3, + [44754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 4, + ACTIONS(1344), 5, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1320), 38, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1342), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -94322,7 +96218,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -94332,6 +96227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -94352,21 +96248,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44234] = 6, + [44805] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - aux_sym_concatenation_token1, - ACTIONS(4259), 1, - sym__concat, - STATE(1143), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4023), 2, + ACTIONS(4310), 1, + sym__special_character, + STATE(1186), 1, + aux_sym__literal_repeat1, + ACTIONS(178), 3, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(4021), 37, - anon_sym_LF, + ACTIONS(145), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -94377,17 +96273,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -94399,20 +96296,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44290] = 3, + [44860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 3, + ACTIONS(1263), 3, sym_file_descriptor, - sym__bare_dollar, + sym__concat, sym__brace_start, - ACTIONS(3458), 39, - anon_sym_LF, + ACTIONS(1258), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -94424,16 +96319,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -94447,22 +96343,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44340] = 6, + [44911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - aux_sym_concatenation_token1, - ACTIONS(4259), 1, - sym__concat, - STATE(1153), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4029), 2, + ACTIONS(1348), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(4027), 37, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1346), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -94470,7 +96364,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -94480,9 +96373,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -94499,15 +96394,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44396] = 3, + [44962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 3, + ACTIONS(1340), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1274), 39, - anon_sym_LF, + ACTIONS(1338), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -94515,7 +96410,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -94527,6 +96421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -94544,24 +96439,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44446] = 6, + [45013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 1, - aux_sym_concatenation_token1, - ACTIONS(4261), 1, - sym__concat, - STATE(1076), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3892), 4, + ACTIONS(1300), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3888), 35, - anon_sym_LF, + ACTIONS(1298), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -94571,6 +96461,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -94578,9 +96470,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -94596,22 +96490,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [44502] = 6, + [45064] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 1, + ACTIONS(4298), 1, aux_sym_concatenation_token1, - ACTIONS(4261), 1, + ACTIONS(4312), 1, sym__concat, - STATE(1094), 1, + STATE(1110), 1, aux_sym_concatenation_repeat1, - ACTIONS(4051), 4, + ACTIONS(1248), 3, sym_file_descriptor, - sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(4049), 35, - anon_sym_LF, + ACTIONS(1246), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -94628,6 +96521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -94644,24 +96538,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44558] = 5, + [45121] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, - sym__special_character, - STATE(1138), 1, - aux_sym__literal_repeat1, - ACTIONS(3496), 4, + ACTIONS(4298), 1, + aux_sym_concatenation_token1, + ACTIONS(4314), 1, + sym__concat, + STATE(1110), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 3, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3494), 36, - anon_sym_LF, + ACTIONS(1252), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -94671,17 +96566,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -94693,18 +96589,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44612] = 3, + [45178] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(4316), 1, + sym__special_character, + STATE(1149), 1, + aux_sym__literal_repeat1, + ACTIONS(4034), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1284), 38, - anon_sym_LF, + ACTIONS(4032), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -94712,9 +96611,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -94722,12 +96623,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -94742,22 +96642,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44662] = 6, + [45233] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 1, - aux_sym_concatenation_token1, - ACTIONS(4263), 1, - sym__concat, - STATE(941), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 3, + ACTIONS(4280), 1, + sym__special_character, + STATE(1061), 1, + aux_sym__literal_repeat1, + ACTIONS(178), 4, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1264), 36, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(145), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -94767,17 +96667,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -94789,24 +96690,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44718] = 6, + [45288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 1, - aux_sym_concatenation_token1, - ACTIONS(4265), 1, - sym__concat, - STATE(941), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 3, + ACTIONS(1286), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(1258), 36, - anon_sym_LF, + ACTIONS(1284), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -94816,6 +96710,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -94823,9 +96719,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -94842,16 +96740,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44774] = 3, + [45339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1328), 5, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1284), 38, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1326), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -94859,7 +96758,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -94869,6 +96767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -94889,19 +96788,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44824] = 5, + [45390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 1, - sym__special_character, - STATE(1132), 1, - aux_sym__literal_repeat1, - ACTIONS(4051), 3, + ACTIONS(1320), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4049), 37, - anon_sym_LF, + ACTIONS(1318), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -94909,7 +96804,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -94921,10 +96815,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -94936,23 +96833,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44878] = 6, + [45441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4216), 1, - aux_sym_concatenation_token1, - ACTIONS(4218), 1, - sym__concat, - STATE(1059), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4029), 3, + ACTIONS(1320), 3, sym_file_descriptor, + sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(4027), 36, - anon_sym_LF, + ACTIONS(1318), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -94960,8 +96852,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -94969,9 +96864,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -94985,24 +96882,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44934] = 6, + [45492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4216), 1, - aux_sym_concatenation_token1, - ACTIONS(4218), 1, - sym__concat, - STATE(1058), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4023), 3, + ACTIONS(1274), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(4021), 36, - anon_sym_LF, + ACTIONS(1272), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95019,9 +96911,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -95038,16 +96932,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44990] = 3, + [45543] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, + ACTIONS(4318), 1, + aux_sym_concatenation_token1, + ACTIONS(4321), 1, sym__concat, - sym_variable_name, + STATE(1110), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 3, + sym_file_descriptor, sym__brace_start, - ACTIONS(1298), 38, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1258), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95055,7 +96954,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -95065,10 +96963,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -95085,15 +96983,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45040] = 3, + [45600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 3, + ACTIONS(1336), 5, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(3783), 39, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1334), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95101,11 +97001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -95113,9 +97010,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -95132,16 +97031,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45090] = 3, + [45651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, + ACTIONS(1328), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1334), 38, - anon_sym_LF, + ACTIONS(1326), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95149,9 +97047,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -95159,6 +97058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -95179,15 +97079,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45140] = 3, + [45702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 3, + ACTIONS(1274), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1302), 39, - anon_sym_LF, + ACTIONS(1272), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95195,7 +97096,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -95207,6 +97107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -95226,16 +97127,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [45190] = 3, + [45753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 4, + ACTIONS(1336), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1324), 38, - anon_sym_LF, + ACTIONS(1334), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95254,6 +97155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -95273,17 +97175,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [45240] = 3, + [45804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 3, + ACTIONS(1332), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1270), 39, - anon_sym_LF, + ACTIONS(1330), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -95295,16 +97197,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -95320,19 +97223,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [45290] = 5, + [45855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4267), 1, - sym__special_character, - STATE(1050), 1, - aux_sym__literal_repeat1, - ACTIONS(3789), 3, + ACTIONS(1332), 5, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(3787), 37, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1330), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95342,8 +97243,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -95351,10 +97250,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -95369,15 +97271,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45344] = 3, + [45906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 3, + ACTIONS(1312), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1350), 39, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1310), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95385,11 +97289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -95397,6 +97298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -95414,18 +97316,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45394] = 3, + [45957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 4, + ACTIONS(1270), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1302), 38, - anon_sym_LF, + ACTIONS(1268), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95433,9 +97335,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -95443,6 +97346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -95463,19 +97367,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45444] = 5, + [46008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4269), 1, - sym__special_character, - STATE(1132), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 3, + ACTIONS(1324), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1358), 37, - anon_sym_LF, + ACTIONS(1322), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95483,7 +97384,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -95495,10 +97395,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -95512,22 +97415,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [45498] = 6, + [46059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4272), 1, - aux_sym_concatenation_token1, - ACTIONS(4275), 1, - sym__concat, - STATE(1133), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1279), 4, + ACTIONS(1324), 5, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1274), 35, - anon_sym_LF, + ACTIONS(1322), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95544,9 +97442,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -95560,18 +97460,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45554] = 3, + [46110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 4, + ACTIONS(1344), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1274), 38, - anon_sym_LF, + ACTIONS(1342), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95579,9 +97479,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -95589,6 +97490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -95609,15 +97511,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45604] = 3, + [46161] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 3, - sym_file_descriptor, + ACTIONS(4324), 1, + aux_sym_concatenation_token1, + ACTIONS(4326), 1, sym__concat, + STATE(1127), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3987), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1298), 39, - anon_sym_LF, + ACTIONS(3985), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95625,11 +97533,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -95637,10 +97543,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -95656,16 +97562,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [45654] = 3, + [46218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1348), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1308), 38, - anon_sym_LF, + ACTIONS(1346), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95673,9 +97578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -95683,6 +97589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -95703,42 +97610,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45704] = 5, + [46269] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, - sym__special_character, - STATE(1138), 1, - aux_sym__literal_repeat1, - ACTIONS(3414), 4, + ACTIONS(4324), 1, + aux_sym_concatenation_token1, + ACTIONS(4326), 1, + sym__concat, + STATE(1126), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3991), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3412), 36, - anon_sym_LF, + ACTIONS(3989), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -95752,42 +97661,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [45758] = 5, + [46326] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4278), 1, - sym__special_character, - STATE(1138), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 4, + ACTIONS(4324), 1, + aux_sym_concatenation_token1, + ACTIONS(4326), 1, + sym__concat, + STATE(1126), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1358), 36, - anon_sym_LF, + ACTIONS(1242), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -95801,21 +97712,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [45812] = 6, + [46383] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 1, + ACTIONS(4324), 1, aux_sym_concatenation_token1, - ACTIONS(4127), 1, + ACTIONS(4328), 1, sym__concat, - STATE(1118), 1, + STATE(1131), 1, aux_sym_concatenation_repeat1, - ACTIONS(3842), 3, + ACTIONS(1248), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3840), 36, - anon_sym_LF, + ACTIONS(1246), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95823,6 +97734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -95832,6 +97744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -95848,19 +97761,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45868] = 3, + [46440] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, - sym_file_descriptor, + ACTIONS(4324), 1, + aux_sym_concatenation_token1, + ACTIONS(4330), 1, sym__concat, + STATE(1131), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 3, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1312), 38, - anon_sym_LF, + ACTIONS(1252), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95878,10 +97795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -95895,24 +97812,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45918] = 6, + [46497] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 1, + ACTIONS(4294), 1, aux_sym_concatenation_token1, - ACTIONS(4127), 1, + ACTIONS(4296), 1, sym__concat, - STATE(1117), 1, + STATE(1145), 1, aux_sym_concatenation_repeat1, - ACTIONS(3846), 3, + ACTIONS(3991), 4, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3844), 36, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(3989), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95929,6 +97846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -95945,23 +97863,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45974] = 6, + [46554] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4294), 1, aux_sym_concatenation_token1, - ACTIONS(4259), 1, + ACTIONS(4296), 1, sym__concat, - STATE(1143), 1, + STATE(1147), 1, aux_sym_concatenation_repeat1, - ACTIONS(1272), 2, + ACTIONS(3987), 4, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1270), 37, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(3985), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95969,7 +97888,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -95979,6 +97897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -95995,23 +97914,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46030] = 6, + [46611] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - aux_sym_concatenation_token1, - ACTIONS(4281), 1, - sym__concat, - STATE(1157), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 2, + ACTIONS(4332), 1, + sym__special_character, + STATE(1068), 1, + aux_sym__literal_repeat1, + ACTIONS(3843), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1264), 37, - anon_sym_LF, + ACTIONS(3841), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96019,9 +97936,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -96029,11 +97948,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -96045,38 +97964,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46086] = 3, + [46666] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3418), 3, + ACTIONS(4334), 1, + aux_sym_concatenation_token1, + ACTIONS(4337), 1, + sym__concat, + STATE(1131), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(3416), 39, - anon_sym_LF, + ACTIONS(1258), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -96095,23 +98017,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [46136] = 6, + [46723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 1, - aux_sym_concatenation_token1, - ACTIONS(4261), 1, - sym__concat, - STATE(1076), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3785), 4, + ACTIONS(1244), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3783), 35, - anon_sym_LF, + ACTIONS(1242), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -96120,13 +98036,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -96145,21 +98065,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [46192] = 6, + [46774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 1, - aux_sym_concatenation_token1, - ACTIONS(4127), 1, - sym__concat, - STATE(1118), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3785), 3, + ACTIONS(1278), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(3783), 36, - anon_sym_LF, + ACTIONS(1276), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96167,8 +98081,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -96176,9 +98093,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -96192,24 +98111,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46248] = 6, + [46825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 1, - aux_sym_concatenation_token1, - ACTIONS(4127), 1, - sym__concat, - STATE(1117), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3789), 3, + ACTIONS(1282), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(3787), 36, - anon_sym_LF, + ACTIONS(1280), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96217,8 +98129,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -96226,9 +98141,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -96242,24 +98159,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46304] = 6, + [46876] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 1, + ACTIONS(4340), 1, aux_sym_concatenation_token1, - ACTIONS(4127), 1, + ACTIONS(4342), 1, sym__concat, - STATE(1117), 1, + STATE(1165), 1, aux_sym_concatenation_repeat1, - ACTIONS(1272), 3, + ACTIONS(4038), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(1270), 36, - anon_sym_LF, + ACTIONS(4036), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96267,6 +98182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -96276,6 +98192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -96295,22 +98212,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46360] = 6, + [46933] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 1, + ACTIONS(4340), 1, aux_sym_concatenation_token1, - ACTIONS(4261), 1, + ACTIONS(4342), 1, sym__concat, - STATE(1094), 1, + STATE(1159), 1, aux_sym_concatenation_repeat1, - ACTIONS(3789), 4, + ACTIONS(4034), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3787), 35, - anon_sym_LF, + ACTIONS(4032), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96318,6 +98233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -96327,6 +98243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -96343,23 +98260,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46416] = 6, + [46990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4197), 1, - aux_sym_concatenation_token1, - ACTIONS(4199), 1, - sym__concat, - STATE(1087), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3789), 3, + ACTIONS(3839), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3787), 36, - anon_sym_LF, + ACTIONS(3837), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96367,9 +98279,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -96377,6 +98291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -96393,18 +98308,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46472] = 3, + [47041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 4, + ACTIONS(1274), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1316), 38, - anon_sym_LF, + ACTIONS(1272), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96412,9 +98327,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -96422,6 +98338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -96442,16 +98359,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46522] = 3, + [47092] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(4310), 1, + sym__special_character, + STATE(1186), 1, + aux_sym__literal_repeat1, + ACTIONS(3675), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1312), 38, + ACTIONS(3673), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [47147] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4332), 1, + sym__special_character, + STATE(1068), 1, + aux_sym__literal_repeat1, + ACTIONS(3991), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(3989), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96459,6 +98429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -96470,12 +98441,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -96489,20 +98459,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [46572] = 6, + [47202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - aux_sym_concatenation_token1, - ACTIONS(4283), 1, - sym__concat, - STATE(1157), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 2, + ACTIONS(1336), 3, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(1258), 37, - anon_sym_LF, + ACTIONS(1334), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96510,9 +98475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -96520,9 +98486,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -96539,16 +98507,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46628] = 3, + [47253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1332), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1308), 38, - anon_sym_LF, + ACTIONS(1330), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96567,6 +98534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -96584,18 +98552,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46678] = 3, + [47304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, + ACTIONS(1324), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1338), 38, - anon_sym_LF, + ACTIONS(1322), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96603,9 +98571,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -96613,6 +98582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -96633,16 +98603,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46728] = 3, + [47355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 4, + ACTIONS(1286), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1324), 38, - anon_sym_LF, + ACTIONS(1284), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96660,6 +98630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -96680,20 +98651,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46778] = 6, + [47406] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4285), 1, + ACTIONS(4294), 1, aux_sym_concatenation_token1, - ACTIONS(4288), 1, + ACTIONS(4344), 1, sym__concat, - STATE(1157), 1, + STATE(1202), 1, aux_sym_concatenation_repeat1, - ACTIONS(1279), 2, + ACTIONS(1248), 4, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1274), 37, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1246), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96701,7 +98674,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -96711,6 +98683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -96727,19 +98700,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46834] = 3, + [47463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 4, + ACTIONS(3685), 3, sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ACTIONS(3683), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [47514] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4294), 1, + aux_sym_concatenation_token1, + ACTIONS(4346), 1, sym__concat, + STATE(1202), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 4, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1328), 38, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1252), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96747,7 +98773,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -96757,10 +98782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -96774,18 +98799,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46884] = 3, + [47571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4293), 3, + ACTIONS(1282), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(4291), 39, - anon_sym_LF, + ACTIONS(1280), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96793,7 +98818,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -96805,9 +98829,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -96821,22 +98847,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46934] = 5, + [47622] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4267), 1, + ACTIONS(4348), 1, sym__special_character, - STATE(1050), 1, + STATE(1149), 1, aux_sym__literal_repeat1, - ACTIONS(3846), 3, + ACTIONS(1357), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(3844), 37, - anon_sym_LF, + ACTIONS(1352), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96844,6 +98868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -96855,6 +98880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -96873,16 +98899,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46988] = 3, + [47677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, + ACTIONS(1340), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1288), 38, - anon_sym_LF, + ACTIONS(1338), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96900,6 +98926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -96920,16 +98947,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47038] = 3, + [47728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 4, + ACTIONS(1263), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1274), 38, - anon_sym_LF, + ACTIONS(1258), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96937,10 +98964,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -96948,6 +98974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -96965,17 +98992,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47088] = 3, + [47779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 3, + ACTIONS(1300), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4295), 39, - anon_sym_LF, + ACTIONS(1298), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96995,9 +99023,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97011,19 +99041,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47138] = 3, + [47830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 4, + ACTIONS(1278), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1354), 38, - anon_sym_LF, + ACTIONS(1276), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -97041,6 +99070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -97061,40 +99091,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47188] = 3, + [47881] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 4, + ACTIONS(4310), 1, + sym__special_character, + STATE(1186), 1, + aux_sym__literal_repeat1, + ACTIONS(3665), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1302), 38, - anon_sym_LF, + ACTIONS(3663), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -97108,21 +99141,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [47238] = 5, + [47936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4299), 1, - sym__special_character, - STATE(1166), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 3, + ACTIONS(1282), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1358), 37, - anon_sym_LF, + ACTIONS(1280), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -97133,17 +99162,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -97155,18 +99186,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47292] = 3, + [47987] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, + ACTIONS(4340), 1, + aux_sym_concatenation_token1, + ACTIONS(4342), 1, sym__concat, - sym_variable_name, + STATE(1159), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1298), 38, - anon_sym_LF, + ACTIONS(1242), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -97174,10 +99210,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -97185,10 +99220,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97202,18 +99237,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47342] = 3, + [48044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 4, + ACTIONS(1324), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1350), 38, - anon_sym_LF, + ACTIONS(1322), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -97231,6 +99267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -97251,22 +99288,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47392] = 6, + [48095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 1, - aux_sym_concatenation_token1, - ACTIONS(4261), 1, - sym__concat, - STATE(1094), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1272), 4, + ACTIONS(1312), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1270), 35, - anon_sym_LF, + ACTIONS(1310), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -97274,8 +99304,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -97283,9 +99316,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97301,35 +99336,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [47448] = 3, + [48146] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 3, + ACTIONS(4340), 1, + aux_sym_concatenation_token1, + ACTIONS(4351), 1, + sym__concat, + STATE(1185), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 2, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, - ACTIONS(1241), 39, - anon_sym_LF, + ACTIONS(1246), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -97346,17 +99384,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47498] = 3, + [48203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 3, + ACTIONS(1316), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1288), 39, - anon_sym_LF, + ACTIONS(1314), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -97376,6 +99415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -97395,21 +99435,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [47548] = 5, + [48254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4195), 1, - sym__special_character, - STATE(1166), 1, - aux_sym__literal_repeat1, - ACTIONS(232), 3, + ACTIONS(1296), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(195), 37, - anon_sym_LF, + ACTIONS(1294), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -97420,17 +99456,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -97442,23 +99480,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47602] = 6, + [48305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4197), 1, - aux_sym_concatenation_token1, - ACTIONS(4199), 1, - sym__concat, - STATE(1088), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3892), 3, + ACTIONS(1332), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(3888), 36, - anon_sym_LF, + ACTIONS(1330), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -97476,9 +99510,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97492,23 +99528,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47658] = 6, + [48356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4197), 1, - aux_sym_concatenation_token1, - ACTIONS(4199), 1, - sym__concat, - STATE(1087), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4051), 3, + ACTIONS(1336), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(4049), 36, - anon_sym_LF, + ACTIONS(1334), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -97526,9 +99558,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97542,17 +99576,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47714] = 3, + [48407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 3, + ACTIONS(1274), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1328), 39, - anon_sym_LF, + ACTIONS(1272), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -97560,11 +99596,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -97572,6 +99606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -97589,22 +99624,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47764] = 6, + [48458] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4201), 1, + ACTIONS(4340), 1, aux_sym_concatenation_token1, - ACTIONS(4232), 1, + ACTIONS(4353), 1, sym__concat, - STATE(1049), 1, + STATE(1185), 1, aux_sym_concatenation_repeat1, - ACTIONS(3892), 2, + ACTIONS(1254), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3888), 37, - anon_sym_LF, + ACTIONS(1252), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -97612,10 +99648,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -97623,6 +99658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -97639,22 +99675,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47820] = 6, + [48515] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4201), 1, + ACTIONS(4324), 1, aux_sym_concatenation_token1, - ACTIONS(4232), 1, + ACTIONS(4326), 1, sym__concat, - STATE(1045), 1, + STATE(1127), 1, aux_sym_concatenation_repeat1, - ACTIONS(4051), 2, + ACTIONS(3839), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(4049), 37, - anon_sym_LF, + ACTIONS(3837), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -97662,10 +99700,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -97673,6 +99710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -97691,21 +99729,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [47876] = 5, + [48572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4195), 1, - sym__special_character, - STATE(1166), 1, - aux_sym__literal_repeat1, - ACTIONS(3496), 3, + ACTIONS(1348), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(3494), 37, - anon_sym_LF, + ACTIONS(1346), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -97716,17 +99750,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -97738,18 +99774,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47930] = 3, + [48623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 4, + ACTIONS(1344), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1346), 38, - anon_sym_LF, + ACTIONS(1342), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -97767,6 +99804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -97787,15 +99825,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47980] = 3, + [48674] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 3, + ACTIONS(4324), 1, + aux_sym_concatenation_token1, + ACTIONS(4326), 1, + sym__concat, + STATE(1126), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3843), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1270), 38, - anon_sym_LF, + ACTIONS(3841), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -97803,11 +99847,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -97815,6 +99857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -97833,20 +99876,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [48029] = 5, + [48731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4302), 1, - sym__special_character, - STATE(1181), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 4, + ACTIONS(1270), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1358), 35, - anon_sym_LF, + ACTIONS(1268), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -97854,6 +99893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -97863,10 +99903,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -97881,21 +99924,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48082] = 6, + [48782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4305), 1, - aux_sym_concatenation_token1, - ACTIONS(4307), 1, - sym__concat, - STATE(1184), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 3, + ACTIONS(1270), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1264), 35, - anon_sym_LF, + ACTIONS(1268), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -97903,6 +99941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -97912,9 +99951,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97928,23 +99969,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48137] = 6, + [48833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4305), 1, - aux_sym_concatenation_token1, - ACTIONS(4309), 1, - sym__concat, - STATE(1184), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 3, + ACTIONS(1278), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1258), 35, + ACTIONS(1276), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [48884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1328), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + ACTIONS(1326), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -97952,6 +100037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -97961,9 +100047,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97977,23 +100065,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48192] = 6, + [48935] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4311), 1, + ACTIONS(4152), 1, aux_sym_concatenation_token1, - ACTIONS(4314), 1, + ACTIONS(4154), 1, sym__concat, - STATE(1184), 1, + STATE(1181), 1, aux_sym_concatenation_repeat1, - ACTIONS(1279), 3, + ACTIONS(3783), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1274), 35, - anon_sym_LF, + ACTIONS(3781), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98010,6 +100099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -98026,23 +100116,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48247] = 6, + [48992] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4305), 1, + ACTIONS(4152), 1, aux_sym_concatenation_token1, - ACTIONS(4317), 1, + ACTIONS(4355), 1, sym__concat, - STATE(1182), 1, + STATE(912), 1, aux_sym_concatenation_repeat1, - ACTIONS(1272), 3, + ACTIONS(1248), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1270), 35, - anon_sym_LF, + ACTIONS(1246), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98059,6 +100150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -98075,17 +100167,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48302] = 3, + [49049] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 3, + ACTIONS(4152), 1, + aux_sym_concatenation_token1, + ACTIONS(4154), 1, + sym__concat, + STATE(1175), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3779), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(4295), 38, - anon_sym_LF, + ACTIONS(3777), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98095,8 +100194,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -98104,6 +100201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -98123,15 +100221,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48351] = 3, + [49106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 3, + ACTIONS(1304), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1320), 38, - anon_sym_LF, + ACTIONS(1302), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98139,9 +100237,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -98149,6 +100249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -98166,23 +100267,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48400] = 6, + [49157] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4285), 1, aux_sym_concatenation_token1, - ACTIONS(4259), 1, + ACTIONS(4302), 1, sym__concat, - STATE(1275), 1, + STATE(1064), 1, aux_sym_concatenation_repeat1, - ACTIONS(1272), 2, + ACTIONS(3991), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(1270), 36, - anon_sym_LF, + ACTIONS(3989), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98192,6 +100292,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -98199,6 +100301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -98215,24 +100318,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48455] = 6, + [49214] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4197), 1, + ACTIONS(4285), 1, aux_sym_concatenation_token1, - ACTIONS(4199), 1, + ACTIONS(4302), 1, sym__concat, - STATE(1277), 1, + STATE(1067), 1, aux_sym_concatenation_repeat1, - ACTIONS(1272), 3, + ACTIONS(3987), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(1270), 35, - anon_sym_LF, + ACTIONS(3985), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98242,6 +100343,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -98249,6 +100352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -98267,15 +100371,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [48510] = 3, + [49271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4293), 3, + ACTIONS(1320), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(4291), 38, - anon_sym_LF, + ACTIONS(1318), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98283,10 +100388,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -98294,9 +100398,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -98313,15 +100419,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48559] = 3, + [49322] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, - sym_file_descriptor, + ACTIONS(4152), 1, + aux_sym_concatenation_token1, + ACTIONS(4357), 1, sym__concat, + STATE(912), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1284), 38, - anon_sym_LF, + ACTIONS(1252), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98329,7 +100441,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -98339,10 +100450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -98359,15 +100470,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48608] = 3, + [49379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(1300), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1284), 38, - anon_sym_LF, + ACTIONS(1298), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98385,6 +100497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -98405,36 +100518,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48657] = 3, + [49430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 3, + ACTIONS(3661), 3, sym_file_descriptor, - sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1334), 38, - anon_sym_LF, + ACTIONS(3659), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -98448,24 +100564,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48706] = 6, + [49481] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4197), 1, + ACTIONS(3248), 1, + sym__brace_start, + ACTIONS(3306), 1, + sym_file_descriptor, + ACTIONS(4274), 1, + sym_variable_name, + STATE(4367), 1, + sym_subscript, + STATE(3169), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(3221), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3304), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [49544] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4359), 1, aux_sym_concatenation_token1, - ACTIONS(4199), 1, + ACTIONS(4362), 1, sym__concat, - STATE(1277), 1, + STATE(1185), 1, aux_sym_concatenation_repeat1, - ACTIONS(3789), 3, + ACTIONS(1263), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(3787), 35, - anon_sym_LF, + ACTIONS(1258), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98473,6 +100641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -98482,6 +100651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -98498,44 +100668,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48761] = 6, + [49601] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4197), 1, - aux_sym_concatenation_token1, - ACTIONS(4199), 1, - sym__concat, - STATE(1276), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3785), 3, + ACTIONS(4365), 1, + sym__special_character, + STATE(1186), 1, + aux_sym__literal_repeat1, + ACTIONS(1357), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(3783), 35, - anon_sym_LF, + ACTIONS(1352), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -98549,17 +100721,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [48816] = 3, + [49656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1304), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1312), 36, - anon_sym_LF, + ACTIONS(1302), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98567,6 +100738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -98576,6 +100748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -98593,20 +100766,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48865] = 3, + [49707] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 4, + ACTIONS(4152), 1, + aux_sym_concatenation_token1, + ACTIONS(4154), 1, + sym__concat, + STATE(1181), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3839), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1241), 37, + ACTIONS(3837), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [49764] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4152), 1, + aux_sym_concatenation_token1, + ACTIONS(4154), 1, + sym__concat, + STATE(1175), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3843), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(3841), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -98616,13 +100845,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -98639,17 +100868,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48914] = 3, + [49821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 3, + ACTIONS(1286), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1338), 38, - anon_sym_LF, + ACTIONS(1284), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98657,9 +100888,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -98667,6 +100899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -98684,18 +100917,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48963] = 3, + [49872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 3, + ACTIONS(1296), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1342), 38, - anon_sym_LF, + ACTIONS(1294), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98703,9 +100935,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -98713,6 +100947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -98730,23 +100965,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49012] = 6, + [49923] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - aux_sym_concatenation_token1, - ACTIONS(4259), 1, - sym__concat, - STATE(1275), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4023), 2, + ACTIONS(4368), 1, + sym__special_character, + STATE(1049), 1, + aux_sym__literal_repeat1, + ACTIONS(3843), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(4021), 36, - anon_sym_LF, + ACTIONS(3841), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98756,6 +100989,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -98763,11 +100998,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -98782,20 +101017,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49067] = 6, + [49978] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - aux_sym_concatenation_token1, - ACTIONS(4259), 1, - sym__concat, - STATE(1274), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4029), 2, + ACTIONS(4368), 1, + sym__special_character, + STATE(1049), 1, + aux_sym__literal_repeat1, + ACTIONS(3779), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(4027), 36, - anon_sym_LF, + ACTIONS(3777), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98805,6 +101039,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -98812,11 +101048,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -98831,21 +101067,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49122] = 6, + [50033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4197), 1, - aux_sym_concatenation_token1, - ACTIONS(4199), 1, - sym__concat, - STATE(1277), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4051), 3, + ACTIONS(4372), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(4049), 35, - anon_sym_LF, + ACTIONS(4370), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98853,8 +101083,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -98862,6 +101095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -98878,23 +101112,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49177] = 6, + [50084] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4197), 1, + ACTIONS(4152), 1, aux_sym_concatenation_token1, - ACTIONS(4199), 1, + ACTIONS(4154), 1, sym__concat, - STATE(1276), 1, + STATE(1175), 1, aux_sym_concatenation_repeat1, - ACTIONS(3892), 3, + ACTIONS(1244), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3888), 35, - anon_sym_LF, + ACTIONS(1242), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98911,6 +101146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -98927,17 +101163,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49232] = 3, + [50141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 3, + ACTIONS(1312), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1346), 38, - anon_sym_LF, + ACTIONS(1310), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98955,6 +101193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -98975,20 +101214,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49281] = 6, + [50192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 1, - aux_sym_concatenation_token1, - ACTIONS(4321), 1, - sym__concat, - STATE(1208), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 2, + ACTIONS(1316), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1264), 36, - anon_sym_LF, + ACTIONS(1314), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99006,9 +101241,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99022,22 +101259,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49336] = 6, + [50243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 1, - aux_sym_concatenation_token1, - ACTIONS(4323), 1, - sym__concat, - STATE(1208), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 2, + ACTIONS(1340), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1258), 36, - anon_sym_LF, + ACTIONS(1338), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99045,9 +101279,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -99055,9 +101290,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99073,15 +101310,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [49391] = 3, + [50294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 3, + ACTIONS(4376), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3783), 38, - anon_sym_LF, + ACTIONS(4374), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99089,6 +101326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -99100,6 +101338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -99119,37 +101358,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49440] = 6, + [50345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4325), 1, - aux_sym_concatenation_token1, - ACTIONS(4328), 1, - sym__concat, - STATE(1208), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1279), 2, + ACTIONS(1234), 3, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(1274), 36, - anon_sym_LF, + ACTIONS(1225), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -99168,77 +101406,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [49495] = 13, - ACTIONS(63), 1, + [50396] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4333), 1, - anon_sym_LT_LT, - ACTIONS(4335), 1, - anon_sym_PIPE, - ACTIONS(4337), 1, - anon_sym_PIPE_AMP, - ACTIONS(4339), 1, - anon_sym_LT_LT_DASH, - ACTIONS(4341), 1, - anon_sym_LT_LT_LT, - ACTIONS(4343), 1, + ACTIONS(1263), 4, + sym_file_descriptor, + sym__concat, sym_variable_name, - STATE(4090), 1, - sym_subscript, - ACTIONS(4331), 2, + sym__brace_start, + ACTIONS(1258), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - STATE(3158), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(3124), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 8, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(3223), 18, + sym_test_operator, + [50447] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4378), 1, + aux_sym_concatenation_token1, + ACTIONS(4381), 1, + sym__concat, + STATE(1202), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, sym_file_descriptor, + sym_variable_name, sym__brace_start, + ts_builtin_sym_end, + ACTIONS(1258), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [49564] = 6, + [50504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4305), 1, - aux_sym_concatenation_token1, - ACTIONS(4317), 1, - sym__concat, - STATE(1183), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3892), 3, + ACTIONS(1300), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3888), 35, - anon_sym_LF, + ACTIONS(1298), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99246,6 +101522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -99255,9 +101532,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99273,21 +101552,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [49619] = 6, + [50554] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4305), 1, - aux_sym_concatenation_token1, - ACTIONS(4317), 1, - sym__concat, - STATE(1182), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4051), 3, + ACTIONS(4384), 1, + sym__special_character, + STATE(1345), 1, + aux_sym__literal_repeat1, + ACTIONS(3991), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(4049), 35, - anon_sym_LF, + ACTIONS(3989), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99297,6 +101574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -99304,11 +101583,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -99322,15 +101601,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [49674] = 3, + [50608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 3, + ACTIONS(1263), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1350), 38, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1258), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99338,7 +101619,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -99348,6 +101628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -99365,18 +101646,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49723] = 3, + [50658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 3, + ACTIONS(1340), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1354), 38, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1338), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99384,7 +101666,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -99394,6 +101675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -99411,19 +101693,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49772] = 5, + [50708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4348), 1, + ACTIONS(1344), 4, sym_file_descriptor, - ACTIONS(3223), 2, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(3207), 16, + ACTIONS(1342), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99439,8 +101742,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - ACTIONS(4346), 22, - anon_sym_LF, + [50758] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + ACTIONS(1346), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99448,11 +101759,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -99460,17 +101769,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [49825] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [50808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 3, + ACTIONS(1282), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1288), 38, - anon_sym_LF, + ACTIONS(1280), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99488,6 +101815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -99508,20 +101836,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49874] = 6, + [50858] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 1, + ACTIONS(4324), 1, aux_sym_concatenation_token1, - ACTIONS(4350), 1, + ACTIONS(4326), 1, sym__concat, - STATE(1205), 1, + STATE(1218), 1, aux_sym_concatenation_repeat1, - ACTIONS(1272), 2, + ACTIONS(3839), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1270), 36, - anon_sym_LF, + ACTIONS(3837), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99529,7 +101858,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -99539,6 +101867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -99557,15 +101886,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [49929] = 3, + [50914] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 3, - sym_file_descriptor, + ACTIONS(4324), 1, + aux_sym_concatenation_token1, + ACTIONS(4326), 1, sym__concat, + STATE(1217), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3843), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1328), 38, - anon_sym_LF, + ACTIONS(3841), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99573,7 +101908,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -99583,10 +101917,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99600,18 +101934,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49978] = 3, + [50970] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 3, - sym_file_descriptor, + ACTIONS(4386), 1, + aux_sym_concatenation_token1, + ACTIONS(4388), 1, sym__concat, + STATE(1310), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3987), 3, + sym_file_descriptor, sym__brace_start, - ACTIONS(1324), 38, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(3985), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99619,7 +101958,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -99629,10 +101967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99646,22 +101984,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50027] = 5, + [51026] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4352), 1, - sym__special_character, - STATE(1273), 1, - aux_sym__literal_repeat1, - ACTIONS(3789), 3, + ACTIONS(4386), 1, + aux_sym_concatenation_token1, + ACTIONS(4388), 1, + sym__concat, + STATE(1303), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3991), 3, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(3787), 36, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(3989), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99671,8 +102010,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -99680,10 +102017,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -99697,15 +102036,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [50080] = 3, + [51082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 3, + ACTIONS(1296), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1316), 38, - anon_sym_LF, + ACTIONS(1294), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99723,6 +102062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -99743,20 +102083,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50129] = 5, + [51132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4354), 1, - sym__special_character, - STATE(1181), 1, - aux_sym__literal_repeat1, - ACTIONS(3846), 4, + ACTIONS(1274), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3844), 35, - anon_sym_LF, + ACTIONS(1272), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99764,6 +102100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -99773,59 +102110,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [50182] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4352), 1, - sym__special_character, - STATE(1273), 1, - aux_sym__literal_repeat1, - ACTIONS(4051), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(4049), 36, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -99839,36 +102130,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [50235] = 3, + [51182] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, + ACTIONS(4392), 1, sym_file_descriptor, - sym__concat, + ACTIONS(3248), 2, + sym_variable_name, sym__brace_start, - ACTIONS(1312), 38, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99882,21 +102154,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50284] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4356), 1, - sym__special_character, - STATE(1289), 1, - aux_sym__literal_repeat1, - ACTIONS(4023), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(4021), 37, - anon_sym_LF, + ACTIONS(4390), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99904,6 +102164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -99915,34 +102176,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [50337] = 3, + [51236] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 4, - sym_file_descriptor, + ACTIONS(4324), 1, + aux_sym_concatenation_token1, + ACTIONS(4394), 1, sym__concat, + STATE(1131), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 3, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1320), 37, - anon_sym_LF, + ACTIONS(1246), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99950,7 +102201,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -99960,10 +102210,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99979,17 +102229,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [50386] = 3, + [51292] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 5, - sym_file_descriptor, + ACTIONS(4324), 1, + aux_sym_concatenation_token1, + ACTIONS(4396), 1, sym__concat, + STATE(1131), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 3, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1320), 36, - anon_sym_LF, + ACTIONS(1252), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100006,10 +102260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100025,18 +102279,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [50435] = 3, + [51348] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3418), 4, + ACTIONS(4340), 1, + aux_sym_concatenation_token1, + ACTIONS(4342), 1, + sym__concat, + STATE(1239), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 2, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3416), 37, - anon_sym_LF, + ACTIONS(1242), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -100046,13 +102303,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -100069,39 +102326,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50484] = 3, + [51404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 4, + ACTIONS(1278), 3, sym_file_descriptor, - sym__bare_dollar, + sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1270), 37, - anon_sym_LF, + ACTIONS(1276), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100115,19 +102373,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50533] = 3, + [51454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(1270), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1288), 36, - anon_sym_LF, + ACTIONS(1268), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100135,6 +102393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -100144,6 +102403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -100163,15 +102423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [50582] = 3, + [51504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(3839), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1308), 38, - anon_sym_LF, + ACTIONS(3837), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100179,9 +102439,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -100189,10 +102450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100209,16 +102470,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50631] = 3, + [51554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1300), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1284), 37, - anon_sym_LF, + ACTIONS(1298), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100236,6 +102496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -100253,18 +102514,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50680] = 3, + [51604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1304), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1284), 37, - anon_sym_LF, + ACTIONS(1302), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100282,6 +102543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -100299,9 +102561,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50729] = 3, + [51654] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1336), 4, @@ -100309,8 +102572,8 @@ static const uint16_t ts_small_parse_table[] = { sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1334), 37, - anon_sym_LF, + ACTIONS(1334), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100328,6 +102591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -100347,17 +102611,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [50778] = 3, + [51704] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 5, + ACTIONS(4398), 1, + sym__special_character, + STATE(1350), 1, + aux_sym__literal_repeat1, + ACTIONS(4034), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1342), 36, - anon_sym_LF, + ACTIONS(4032), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100367,6 +102632,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -100374,12 +102641,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -100391,17 +102657,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50827] = 3, + [51758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 3, + ACTIONS(1332), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1274), 38, - anon_sym_LF, + ACTIONS(1330), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100419,6 +102687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -100436,18 +102705,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50876] = 3, + [51808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 3, + ACTIONS(1270), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1302), 38, - anon_sym_LF, + ACTIONS(1268), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100465,6 +102734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -100482,20 +102752,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50925] = 3, + [51858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 3, + ACTIONS(1312), 3, sym_file_descriptor, - sym__bare_dollar, + sym__concat, sym__brace_start, - ACTIONS(3458), 38, - anon_sym_LF, + ACTIONS(1310), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -100506,16 +102774,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100529,19 +102798,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50974] = 3, + [51908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1316), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1308), 36, - anon_sym_LF, + ACTIONS(1314), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100549,6 +102817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -100558,6 +102827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -100575,18 +102845,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [51023] = 3, + [51958] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, - sym_file_descriptor, + ACTIONS(4340), 1, + aux_sym_concatenation_token1, + ACTIONS(4400), 1, sym__concat, - sym_variable_name, + STATE(1185), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1338), 37, - anon_sym_LF, + ACTIONS(1252), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100594,7 +102869,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -100604,10 +102878,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100621,19 +102895,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [51072] = 3, + [52014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1263), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1284), 36, - anon_sym_LF, + ACTIONS(1258), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100641,6 +102914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -100650,6 +102924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -100667,20 +102942,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [51121] = 3, + [52064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 4, + ACTIONS(1274), 5, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3458), 37, - anon_sym_LF, + ACTIONS(1272), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -100690,16 +102966,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100715,17 +102992,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [51170] = 3, + [52114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1328), 5, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1284), 36, - anon_sym_LF, + ACTIONS(1326), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100742,6 +103019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -100761,17 +103039,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [51219] = 3, + [52164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 5, + ACTIONS(1340), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1334), 36, - anon_sym_LF, + ACTIONS(1338), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100779,6 +103055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -100788,6 +103065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -100805,17 +103083,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [51268] = 3, + [52214] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 3, - sym_file_descriptor, + ACTIONS(4340), 1, + aux_sym_concatenation_token1, + ACTIONS(4342), 1, sym__concat, + STATE(1239), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4034), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1298), 38, - anon_sym_LF, + ACTIONS(4032), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100823,7 +103107,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -100833,10 +103116,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100853,16 +103136,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [51317] = 3, + [52270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, + ACTIONS(1324), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1342), 37, - anon_sym_LF, + ACTIONS(1322), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100880,6 +103163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -100899,16 +103183,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [51366] = 3, + [52320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 4, + ACTIONS(1300), 5, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1346), 37, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1298), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100916,7 +103201,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -100926,6 +103210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -100945,18 +103230,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [51415] = 5, + [52370] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4358), 1, - sym__special_character, - STATE(1267), 1, - aux_sym__literal_repeat1, - ACTIONS(4051), 2, + ACTIONS(4340), 1, + aux_sym_concatenation_token1, + ACTIONS(4402), 1, + sym__concat, + STATE(1185), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(4049), 37, - anon_sym_LF, + ACTIONS(1246), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100964,11 +103251,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -100976,10 +103260,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -100991,19 +103277,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [51468] = 3, + [52426] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 5, + ACTIONS(4384), 1, + sym__special_character, + STATE(1345), 1, + aux_sym__literal_repeat1, + ACTIONS(3843), 3, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1328), 36, - anon_sym_LF, + ACTIONS(3841), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101013,6 +103302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -101020,12 +103311,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -101039,17 +103329,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [51517] = 3, + [52480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 5, + ACTIONS(1348), 5, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1274), 36, - anon_sym_LF, + ACTIONS(1346), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101066,6 +103356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -101085,71 +103376,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [51566] = 11, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3228), 1, - anon_sym_LT_LT, - ACTIONS(4335), 1, - anon_sym_PIPE, - ACTIONS(4337), 1, - anon_sym_PIPE_AMP, - ACTIONS(4343), 1, - sym_variable_name, - STATE(4090), 1, - sym_subscript, - STATE(3158), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3519), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - STATE(3275), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3223), 18, - sym_file_descriptor, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [51631] = 3, + [52530] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 5, - sym_file_descriptor, + ACTIONS(4340), 1, + aux_sym_concatenation_token1, + ACTIONS(4342), 1, sym__concat, - sym_variable_name, + STATE(1231), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4038), 2, + sym_file_descriptor, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1302), 36, - anon_sym_LF, + ACTIONS(4036), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101166,10 +103406,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101183,19 +103423,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [51680] = 3, + [52586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, + ACTIONS(1270), 5, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1324), 36, - anon_sym_LF, + ACTIONS(1268), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101212,108 +103453,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [51729] = 9, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4343), 1, - sym_variable_name, - STATE(4090), 1, - sym_subscript, - STATE(3158), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(3275), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3207), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3297), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(3299), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(3223), 12, - sym__brace_start, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [51790] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(4295), 38, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101329,15 +103473,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [51839] = 3, + [52636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4293), 3, + ACTIONS(1270), 5, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(4291), 38, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1268), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101345,11 +103491,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -101357,55 +103500,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [51888] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3418), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3416), 38, anon_sym_LF, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101421,17 +103520,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [51937] = 3, + [52686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 5, + ACTIONS(1344), 5, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1338), 36, - anon_sym_LF, + ACTIONS(1342), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101448,6 +103547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -101467,17 +103567,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [51986] = 3, + [52736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 5, + ACTIONS(1320), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1350), 36, - anon_sym_LF, + ACTIONS(1318), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101485,6 +103583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -101494,6 +103593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -101511,19 +103611,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [52035] = 3, + [52786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 5, + ACTIONS(1278), 5, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1316), 36, - anon_sym_LF, + ACTIONS(1276), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101540,6 +103641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -101559,14 +103661,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [52084] = 3, + [52836] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 2, + ACTIONS(4404), 1, + sym__special_character, + STATE(1248), 1, + aux_sym__literal_repeat1, + ACTIONS(1357), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(1270), 39, - anon_sym_LF, + ACTIONS(1352), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101586,11 +103692,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -101602,20 +103708,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [52133] = 3, + [52890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 5, + ACTIONS(1328), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1298), 36, - anon_sym_LF, + ACTIONS(1326), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101623,6 +103727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -101632,6 +103737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -101651,17 +103757,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [52182] = 3, + [52940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 5, + ACTIONS(1328), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1346), 36, - anon_sym_LF, + ACTIONS(1326), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101669,6 +103773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -101678,6 +103783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -101695,66 +103801,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [52231] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4360), 1, - sym__special_character, - STATE(1263), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1358), 36, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [52284] = 3, + [52990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 4, + ACTIONS(1270), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1350), 37, - anon_sym_LF, + ACTIONS(1268), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101772,6 +103830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -101789,21 +103848,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [52333] = 5, + [53040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4363), 1, - sym__special_character, - STATE(1263), 1, - aux_sym__literal_repeat1, - ACTIONS(3846), 3, + ACTIONS(1270), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(3844), 36, - anon_sym_LF, + ACTIONS(1268), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101821,10 +103877,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -101839,17 +103898,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [52386] = 3, + [53090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 3, + ACTIONS(1286), 3, sym_file_descriptor, - sym__bare_dollar, + sym__concat, sym__brace_start, - ACTIONS(1270), 38, - anon_sym_LF, + ACTIONS(1284), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -101860,16 +103918,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101883,20 +103942,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [52435] = 5, + [53140] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4365), 1, + ACTIONS(4407), 1, sym__special_character, - STATE(1267), 1, + STATE(1248), 1, aux_sym__literal_repeat1, - ACTIONS(1363), 2, + ACTIONS(3991), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(1358), 37, - anon_sym_LF, + ACTIONS(3989), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101916,56 +103976,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [52488] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1241), 38, anon_sym_LF, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -101979,16 +103994,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [52537] = 3, + [53194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 4, + ACTIONS(4372), 3, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1354), 37, - anon_sym_LF, + ACTIONS(4370), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101996,9 +104010,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -102006,10 +104021,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102023,19 +104038,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [52586] = 3, + [53244] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 5, - sym_file_descriptor, + ACTIONS(4324), 1, + aux_sym_concatenation_token1, + ACTIONS(4326), 1, sym__concat, + STATE(1217), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 3, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1354), 36, - anon_sym_LF, + ACTIONS(1242), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102052,10 +104072,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102071,63 +104091,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [52635] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1391), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1111), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1270), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1272), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym__special_character, - sym_test_operator, - [52688] = 3, + [53300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 3, + ACTIONS(1320), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1298), 38, - anon_sym_LF, + ACTIONS(1318), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102135,10 +104108,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -102146,6 +104118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -102165,19 +104138,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [52737] = 5, + [53350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 1, - sym__special_character, - STATE(1273), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 3, + ACTIONS(4376), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1358), 36, - anon_sym_LF, + ACTIONS(4374), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102196,10 +104165,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -102211,22 +104182,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [52790] = 6, + [53400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - aux_sym_concatenation_token1, - ACTIONS(4371), 1, - sym__concat, - STATE(1157), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 2, + ACTIONS(1344), 3, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(1258), 36, - anon_sym_LF, + ACTIONS(1342), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102234,6 +104201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -102243,9 +104211,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102262,20 +104232,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [52845] = 6, + [53450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - aux_sym_concatenation_token1, - ACTIONS(4373), 1, - sym__concat, - STATE(1157), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 2, + ACTIONS(1348), 3, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(1264), 36, - anon_sym_LF, + ACTIONS(1346), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102283,6 +104248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -102292,9 +104258,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102311,21 +104279,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [52900] = 6, + [53500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4197), 1, - aux_sym_concatenation_token1, - ACTIONS(4375), 1, - sym__concat, - STATE(1090), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 3, + ACTIONS(4376), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1258), 35, - anon_sym_LF, + ACTIONS(4374), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102333,8 +104295,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -102342,6 +104307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -102360,21 +104326,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [52955] = 6, + [53550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4197), 1, - aux_sym_concatenation_token1, - ACTIONS(4377), 1, - sym__concat, - STATE(1090), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 3, + ACTIONS(4372), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1264), 35, - anon_sym_LF, + ACTIONS(4370), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102382,8 +104342,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -102391,6 +104354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -102409,16 +104373,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [53010] = 3, + [53600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, + ACTIONS(1274), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1288), 37, - anon_sym_LF, + ACTIONS(1272), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102436,6 +104399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -102453,17 +104417,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [53059] = 3, + [53650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 3, + ACTIONS(1336), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1302), 38, - anon_sym_LF, + ACTIONS(1334), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102471,10 +104436,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -102482,6 +104446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -102499,39 +104464,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [53108] = 3, + [53700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 3, + ACTIONS(3661), 3, sym_file_descriptor, - sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1274), 38, - anon_sym_LF, + ACTIONS(3659), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102547,16 +104514,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [53157] = 3, + [53750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 4, + ACTIONS(1332), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1328), 37, - anon_sym_LF, + ACTIONS(1330), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102574,6 +104540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -102591,17 +104558,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [53206] = 3, + [53800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(1324), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1308), 38, - anon_sym_LF, + ACTIONS(1322), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102609,10 +104577,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -102620,6 +104587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -102637,17 +104605,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [53255] = 3, + [53850] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, + ACTIONS(4409), 1, + sym__special_character, + STATE(1268), 1, + aux_sym__literal_repeat1, + ACTIONS(1357), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1312), 38, - anon_sym_LF, + ACTIONS(1352), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102655,10 +104628,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -102666,12 +104638,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -102683,18 +104654,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [53304] = 3, + [53904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 4, + ACTIONS(1324), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1324), 37, - anon_sym_LF, + ACTIONS(1322), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102702,9 +104673,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -102712,6 +104684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -102731,15 +104704,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [53353] = 3, + [53954] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 3, + ACTIONS(4324), 1, + aux_sym_concatenation_token1, + ACTIONS(4326), 1, + sym__concat, + STATE(1217), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3991), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1270), 38, - anon_sym_LF, + ACTIONS(3989), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102749,8 +104728,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -102758,6 +104735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -102774,18 +104752,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [53402] = 3, + [54010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 3, + ACTIONS(1332), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1324), 38, - anon_sym_LF, + ACTIONS(1330), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102804,6 +104781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -102823,15 +104801,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [53451] = 3, + [54060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 3, + ACTIONS(1296), 5, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(3783), 38, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1294), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102839,11 +104819,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -102851,9 +104828,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102869,16 +104848,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [53500] = 3, + [54110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 4, + ACTIONS(1336), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1316), 37, - anon_sym_LF, + ACTIONS(1334), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102886,9 +104864,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -102896,6 +104875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -102915,18 +104895,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [53549] = 5, + [54160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4379), 1, - sym__special_character, - STATE(1289), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 2, + ACTIONS(1244), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(1358), 37, - anon_sym_LF, + ACTIONS(1242), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102934,6 +104910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -102945,10 +104922,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -102963,16 +104942,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [53602] = 3, + [54210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 3, + ACTIONS(1234), 4, sym_file_descriptor, - sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1316), 38, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1225), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -102981,19 +104962,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -103009,15 +104989,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [53651] = 3, + [54260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 3, + ACTIONS(1286), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1328), 38, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1284), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103027,8 +105009,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -103036,6 +105016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -103055,15 +105036,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [53700] = 3, + [54310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 3, + ACTIONS(1274), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1288), 38, - anon_sym_LF, + ACTIONS(1272), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103082,6 +105063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -103101,17 +105083,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [53749] = 3, + [54360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(3685), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1312), 37, - anon_sym_LF, + ACTIONS(3683), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -103122,16 +105104,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -103147,15 +105130,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [53798] = 3, + [54410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 3, + ACTIONS(1263), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1354), 38, - anon_sym_LF, + ACTIONS(1258), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103174,6 +105157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -103193,15 +105177,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [53847] = 3, + [54460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 3, + ACTIONS(1316), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1350), 38, - anon_sym_LF, + ACTIONS(1314), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103209,10 +105194,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -103220,6 +105204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -103239,17 +105224,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [53896] = 3, + [54510] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, - sym_file_descriptor, + ACTIONS(4412), 1, + aux_sym_concatenation_token1, + ACTIONS(4414), 1, sym__concat, - sym_variable_name, + STATE(1353), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1308), 37, + ACTIONS(1242), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [54566] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1244), 3, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1242), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -103260,16 +105295,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [54616] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3733), 1, aux_sym_concatenation_token1, + ACTIONS(3735), 1, + sym__concat, + ACTIONS(4416), 1, + anon_sym_LPAREN, + STATE(1393), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1234), 3, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1225), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -103285,15 +105372,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [53945] = 3, + [54674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(1304), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1284), 38, - anon_sym_LF, + ACTIONS(1302), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103301,10 +105389,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -103312,6 +105399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -103331,15 +105419,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [53994] = 3, + [54724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(1348), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1284), 38, - anon_sym_LF, + ACTIONS(1346), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103358,6 +105446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -103377,15 +105466,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [54043] = 3, + [54774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 3, + ACTIONS(1344), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1346), 38, - anon_sym_LF, + ACTIONS(1342), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103404,6 +105493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -103423,15 +105513,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [54092] = 3, + [54824] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 3, - sym_file_descriptor, + ACTIONS(4324), 1, + aux_sym_concatenation_token1, + ACTIONS(4326), 1, sym__concat, + STATE(1218), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3987), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1342), 38, - anon_sym_LF, + ACTIONS(3985), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103441,8 +105537,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -103450,10 +105544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -103469,15 +105563,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [54141] = 3, + [54880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 3, + ACTIONS(1296), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1338), 38, - anon_sym_LF, + ACTIONS(1294), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103485,10 +105580,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -103496,6 +105590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -103515,42 +105610,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [54190] = 6, + [54930] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4418), 1, + sym__special_character, + STATE(1268), 1, + aux_sym__literal_repeat1, + ACTIONS(3779), 3, sym_file_descriptor, - ACTIONS(3223), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(3777), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 14, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -103562,17 +105656,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [54245] = 3, + [54984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 3, + ACTIONS(1270), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1334), 38, - anon_sym_LF, + ACTIONS(1268), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103591,6 +105686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -103610,83 +105706,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [54294] = 3, + [55034] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 4, + ACTIONS(4425), 1, sym_file_descriptor, - sym__concat, + ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(1274), 37, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4422), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [54343] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1302), 37, - anon_sym_LF, + ACTIONS(4420), 14, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -103702,15 +105756,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [54392] = 3, + [55090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 3, + ACTIONS(1282), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1320), 38, - anon_sym_LF, + ACTIONS(1280), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103718,10 +105773,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -103729,6 +105783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -103748,16 +105803,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [54441] = 3, + [55140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, + ACTIONS(1278), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1298), 37, - anon_sym_LF, + ACTIONS(1276), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103775,6 +105830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -103794,16 +105850,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [54490] = 3, + [55190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(1270), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1312), 37, - anon_sym_LF, + ACTIONS(1268), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103813,6 +105868,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -103820,6 +105877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -103837,23 +105895,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [54539] = 5, + [55240] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4354), 1, + ACTIONS(4428), 1, sym__special_character, - STATE(1181), 1, + STATE(1361), 1, aux_sym__literal_repeat1, - ACTIONS(3789), 4, + ACTIONS(3843), 4, sym_file_descriptor, sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3787), 35, - anon_sym_LF, + ACTIONS(3841), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103870,6 +105927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -103888,16 +105946,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [54592] = 3, + [55294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 4, + ACTIONS(1263), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1320), 37, - anon_sym_LF, + ACTIONS(1258), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103905,6 +105963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -103914,6 +105973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -103931,19 +105991,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [54641] = 3, + [55344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, + ACTIONS(1340), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1288), 37, - anon_sym_LF, + ACTIONS(1338), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103951,6 +106010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -103960,6 +106020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -103977,19 +106038,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [54690] = 3, + [55394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1312), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1308), 37, - anon_sym_LF, + ACTIONS(1310), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103997,6 +106057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -104006,6 +106067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -104023,19 +106085,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [54739] = 3, + [55444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(3839), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1284), 37, - anon_sym_LF, + ACTIONS(3837), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104043,8 +106103,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -104052,10 +106115,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -104069,19 +106132,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [54788] = 3, + [55494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1336), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1284), 37, - anon_sym_LF, + ACTIONS(1334), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104098,6 +106161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -104115,19 +106179,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [54837] = 3, + [55544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, + ACTIONS(1328), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1334), 37, - anon_sym_LF, + ACTIONS(1326), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104137,6 +106199,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -104144,6 +106208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -104161,19 +106226,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [54886] = 3, + [55594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 4, + ACTIONS(1286), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1328), 37, - anon_sym_LF, + ACTIONS(1284), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104181,6 +106245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -104190,6 +106255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -104207,19 +106273,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [54935] = 3, + [55644] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 4, - sym_file_descriptor, + ACTIONS(4386), 1, + aux_sym_concatenation_token1, + ACTIONS(4430), 1, sym__concat, + STATE(1311), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 3, + sym_file_descriptor, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1274), 37, - anon_sym_LF, + ACTIONS(1246), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104236,10 +106306,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -104253,19 +106323,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [54984] = 3, + [55700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 4, + ACTIONS(1324), 4, sym_file_descriptor, sym__concat, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1302), 37, - anon_sym_LF, + ACTIONS(1322), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104282,6 +106351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -104302,16 +106372,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [55033] = 3, + [55750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 4, + ACTIONS(1332), 4, sym_file_descriptor, sym__concat, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1324), 37, - anon_sym_LF, + ACTIONS(1330), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104328,6 +106398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -104348,16 +106419,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [55082] = 3, + [55800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, + ACTIONS(1336), 4, sym_file_descriptor, sym__concat, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1338), 37, - anon_sym_LF, + ACTIONS(1334), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104374,6 +106445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -104394,16 +106466,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [55131] = 3, + [55850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 4, + ACTIONS(1274), 4, sym_file_descriptor, sym__concat, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1350), 37, - anon_sym_LF, + ACTIONS(1272), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104420,6 +106492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -104440,16 +106513,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [55180] = 3, + [55900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 4, + ACTIONS(1328), 4, sym_file_descriptor, sym__concat, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1316), 37, - anon_sym_LF, + ACTIONS(1326), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104466,6 +106539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -104486,7 +106560,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [55229] = 3, + [55950] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1348), 4, @@ -104494,8 +106568,8 @@ static const uint16_t ts_small_parse_table[] = { sym__concat, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1346), 37, - anon_sym_LF, + ACTIONS(1346), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104512,6 +106586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -104532,16 +106607,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [55278] = 3, + [56000] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 4, - sym_file_descriptor, + ACTIONS(4386), 1, + aux_sym_concatenation_token1, + ACTIONS(4432), 1, sym__concat, + STATE(1311), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 3, + sym_file_descriptor, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1354), 37, - anon_sym_LF, + ACTIONS(1252), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104558,10 +106638,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -104575,23 +106655,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [55327] = 6, + [56056] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 1, + ACTIONS(4434), 1, aux_sym_concatenation_token1, - ACTIONS(4350), 1, + ACTIONS(4437), 1, sym__concat, - STATE(1206), 1, + STATE(1311), 1, aux_sym_concatenation_repeat1, - ACTIONS(3892), 2, + ACTIONS(1263), 3, sym_file_descriptor, sym__brace_start, - ACTIONS(3888), 36, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1258), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104599,7 +106679,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -104609,6 +106688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -104627,20 +106707,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [55382] = 6, + [56112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 1, - aux_sym_concatenation_token1, - ACTIONS(4350), 1, - sym__concat, - STATE(1205), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4051), 2, + ACTIONS(1344), 4, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(4049), 36, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1342), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104648,7 +106724,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -104658,9 +106733,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -104674,69 +106751,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [55437] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1327), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4390), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1274), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1279), 25, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [55490] = 5, + [56162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4363), 1, - sym__special_character, - STATE(1263), 1, - aux_sym__literal_repeat1, - ACTIONS(3789), 3, + ACTIONS(1320), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(3787), 36, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1318), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104744,7 +106771,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -104754,10 +106780,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -104772,16 +106801,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [55543] = 3, + [56212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, + ACTIONS(1282), 4, sym_file_descriptor, sym__concat, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1342), 37, - anon_sym_LF, + ACTIONS(1280), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104798,6 +106827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -104818,16 +106848,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [55592] = 3, + [56262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, + ACTIONS(1320), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1298), 37, - anon_sym_LF, + ACTIONS(1318), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104837,6 +106866,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -104844,6 +106875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -104861,108 +106893,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [55641] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1308), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1310), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [55689] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1298), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1300), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [55737] = 3, + [56312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 3, + ACTIONS(1316), 4, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1324), 37, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1314), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104970,7 +106912,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -104980,6 +106921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -104997,17 +106939,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [55785] = 3, + [56362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 3, + ACTIONS(1312), 4, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1350), 37, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1310), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105015,7 +106959,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -105025,6 +106968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -105042,17 +106986,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [55833] = 3, + [56412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(1278), 4, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1284), 37, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1276), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105060,7 +107006,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -105070,6 +107015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -105087,17 +107033,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [55881] = 3, + [56462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(1270), 4, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1284), 37, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1268), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105105,7 +107053,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -105115,6 +107062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -105132,17 +107080,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [55929] = 3, + [56512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 3, + ACTIONS(1270), 4, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1346), 37, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1268), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105150,7 +107100,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -105160,6 +107109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -105177,17 +107127,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [55977] = 3, + [56562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 3, + ACTIONS(1332), 5, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(3783), 37, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1330), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105197,8 +107150,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -105206,9 +107157,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105224,63 +107177,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [56025] = 3, - ACTIONS(3), 1, + [56612] = 11, + ACTIONS(63), 1, sym_comment, - ACTIONS(1344), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1342), 37, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(3312), 1, + anon_sym_LT_LT, + ACTIONS(4440), 1, + anon_sym_PIPE, + ACTIONS(4442), 1, + anon_sym_PIPE_AMP, + ACTIONS(4444), 1, + sym_variable_name, + STATE(4379), 1, + sym_subscript, + STATE(3289), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3477), 4, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + STATE(3345), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3236), 8, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3248), 19, + sym_file_descriptor, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [56073] = 5, + [56678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4393), 1, - sym__special_character, - STATE(1401), 1, - aux_sym__literal_repeat1, - ACTIONS(4051), 2, + ACTIONS(1304), 4, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(4049), 36, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1302), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105290,8 +107251,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -105299,10 +107258,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -105314,152 +107276,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [56125] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1324), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1326), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [56173] = 3, + [56728] = 9, ACTIONS(63), 1, sym_comment, - ACTIONS(1302), 13, - anon_sym_EQ, + ACTIONS(4444), 1, + sym_variable_name, + STATE(4379), 1, + sym_subscript, + STATE(3289), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(3345), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3236), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3304), 5, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1304), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + ACTIONS(3306), 11, + sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [56221] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1274), 13, - anon_sym_EQ, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1279), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(3248), 13, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [56269] = 3, + [56790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 3, + ACTIONS(1263), 4, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1338), 37, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1258), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105467,7 +107349,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -105477,6 +107358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -105494,248 +107376,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [56317] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1328), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1330), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [56365] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1565), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1111), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1270), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1272), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym__special_character, - sym_test_operator, - [56417] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1336), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [56465] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1286), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [56513] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1286), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [56561] = 5, + [56840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4395), 1, - sym__special_character, - STATE(1414), 1, - aux_sym__literal_repeat1, - ACTIONS(4023), 3, + ACTIONS(1340), 4, sym_file_descriptor, + sym__concat, sym__brace_start, ts_builtin_sym_end, - ACTIONS(4021), 35, - anon_sym_LF, + ACTIONS(1338), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105752,10 +107405,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -105770,15 +107426,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [56613] = 3, + [56890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 3, + ACTIONS(1300), 4, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1334), 37, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1298), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105786,7 +107443,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -105796,6 +107452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -105813,17 +107470,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [56940] = 13, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4440), 1, + anon_sym_PIPE, + ACTIONS(4442), 1, + anon_sym_PIPE_AMP, + ACTIONS(4444), 1, + sym_variable_name, + ACTIONS(4449), 1, + anon_sym_LT_LT, + ACTIONS(4451), 1, + anon_sym_LT_LT_DASH, + ACTIONS(4453), 1, + anon_sym_LT_LT_LT, + STATE(4379), 1, + sym_subscript, + ACTIONS(4447), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(3289), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(3215), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3236), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, sym_word, + ACTIONS(3248), 19, + sym_file_descriptor, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [56661] = 3, + [57010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 3, + ACTIONS(1316), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1328), 37, - anon_sym_LF, + ACTIONS(1314), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105831,9 +107546,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -105841,6 +107557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -105860,15 +107577,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [56709] = 3, + [57060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 3, + ACTIONS(1282), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1320), 37, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1280), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105876,7 +107595,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -105886,6 +107604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -105905,15 +107624,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [56757] = 3, + [57110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 3, + ACTIONS(1296), 4, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1288), 37, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1294), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105921,7 +107641,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -105931,6 +107650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -105948,22 +107668,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [56805] = 5, + [57160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4397), 1, - sym__special_character, - STATE(1373), 1, - aux_sym__literal_repeat1, - ACTIONS(3789), 4, + ACTIONS(1312), 5, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3787), 34, - anon_sym_LF, + ACTIONS(1310), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105980,10 +107698,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -105997,15 +107718,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [56857] = 3, + [57210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 3, + ACTIONS(1286), 4, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1354), 37, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1284), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106013,7 +107735,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -106023,6 +107744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -106040,62 +107762,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [56905] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1288), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1290), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [56953] = 3, + [57260] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 3, - sym_file_descriptor, + ACTIONS(4386), 1, + aux_sym_concatenation_token1, + ACTIONS(4388), 1, sym__concat, + STATE(1303), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 3, + sym_file_descriptor, sym__brace_start, - ACTIONS(1316), 37, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1242), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106103,7 +107787,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -106113,10 +107796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -106132,60 +107815,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [57001] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1320), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1322), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [57049] = 3, + [57316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, + ACTIONS(1304), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1312), 37, - anon_sym_LF, + ACTIONS(1302), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106193,9 +107831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -106203,6 +107842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -106222,63 +107862,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [57097] = 3, - ACTIONS(63), 1, + [57366] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 13, - anon_sym_EQ, + ACTIONS(4428), 1, + sym__special_character, + STATE(1361), 1, + aux_sym__literal_repeat1, + ACTIONS(3779), 4, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(3777), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1314), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, sym_test_operator, - [57145] = 5, + [57420] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4399), 1, - sym__special_character, - STATE(1362), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 2, + ACTIONS(4412), 1, + aux_sym_concatenation_token1, + ACTIONS(4414), 1, + sym__concat, + STATE(1353), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3991), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(1358), 36, - anon_sym_LF, + ACTIONS(3989), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106296,10 +107942,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -106311,19 +107959,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [57197] = 3, + [57476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 4, + ACTIONS(1296), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1320), 36, - anon_sym_LF, + ACTIONS(1294), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106333,6 +107979,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -106340,6 +107988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -106359,48 +108008,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [57245] = 7, + [57526] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1217), 1, + ACTIONS(4412), 1, + aux_sym_concatenation_token1, + ACTIONS(4414), 1, + sym__concat, + STATE(1354), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3987), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(4404), 1, - anon_sym_DQUOTE, - STATE(2115), 1, - sym_string, - ACTIONS(4406), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4402), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 26, + ACTIONS(3985), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ, - anon_sym_PERCENT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_COLON, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, @@ -106408,39 +108058,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [57301] = 6, + [57582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(1316), 5, sym_file_descriptor, - ACTIONS(3223), 2, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ts_builtin_sym_end, + ACTIONS(1314), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 13, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -106456,65 +108105,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [57355] = 7, + [57632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1221), 1, + ACTIONS(1234), 3, + sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(4404), 1, - anon_sym_DQUOTE, - STATE(2115), 1, - sym_string, - ACTIONS(4406), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4402), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 26, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [57411] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1308), 37, - anon_sym_LF, + ACTIONS(1225), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -106525,16 +108126,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -106550,17 +108152,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [57459] = 3, + [57682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, + ACTIONS(3685), 4, sym_file_descriptor, - sym__concat, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1334), 36, - anon_sym_LF, + ACTIONS(3683), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -106570,16 +108173,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -106595,15 +108199,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [57507] = 3, + [57732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4293), 3, + ACTIONS(1340), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4291), 37, - anon_sym_LF, + ACTIONS(1338), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106622,9 +108226,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -106640,62 +108246,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [57555] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1370), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4408), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1274), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1279), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [57607] = 3, + [57782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 3, + ACTIONS(1304), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1274), 37, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1302), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106703,7 +108264,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -106713,6 +108273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -106732,19 +108293,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [57655] = 5, + [57832] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4411), 1, + ACTIONS(4455), 1, sym__special_character, - STATE(1406), 1, + STATE(1345), 1, aux_sym__literal_repeat1, - ACTIONS(3789), 3, + ACTIONS(1357), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3787), 35, - anon_sym_LF, + ACTIONS(1352), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106752,9 +108313,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -106762,6 +108324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -106779,20 +108342,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [57707] = 5, + [57886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4413), 1, - sym__special_character, - STATE(1373), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 4, + ACTIONS(1312), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1358), 34, - anon_sym_LF, + ACTIONS(1310), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106802,6 +108360,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -106809,10 +108369,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -106826,15 +108389,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [57759] = 3, + [57936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 3, + ACTIONS(1244), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1302), 37, - anon_sym_LF, + ACTIONS(1242), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106842,9 +108405,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -106852,10 +108417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -106871,15 +108436,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [57807] = 3, + [57986] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 3, + ACTIONS(4418), 1, + sym__special_character, + STATE(1268), 1, + aux_sym__literal_repeat1, + ACTIONS(3843), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(4295), 37, - anon_sym_LF, + ACTIONS(3841), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106887,10 +108456,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -106898,11 +108466,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -106914,18 +108482,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [57855] = 3, + [58040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, + ACTIONS(1300), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1338), 36, - anon_sym_LF, + ACTIONS(1298), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106935,6 +108503,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -106942,6 +108512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -106961,20 +108532,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [57903] = 5, + [58090] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4397), 1, + ACTIONS(4458), 1, sym__special_character, - STATE(1373), 1, + STATE(1350), 1, aux_sym__literal_repeat1, - ACTIONS(4051), 4, + ACTIONS(1357), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(4049), 34, - anon_sym_LF, + ACTIONS(1352), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106984,6 +108553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -106991,6 +108562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -107006,17 +108578,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [57955] = 3, + [58144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 3, + ACTIONS(1286), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1298), 37, - anon_sym_LF, + ACTIONS(1284), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107024,9 +108597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -107034,6 +108608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -107053,17 +108628,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [58003] = 3, + [58194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 4, + ACTIONS(1244), 4, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1270), 36, - anon_sym_LF, + ACTIONS(1242), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -107073,12 +108649,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -107095,22 +108673,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [58051] = 5, + [58244] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4411), 1, - sym__special_character, - STATE(1406), 1, - aux_sym__literal_repeat1, - ACTIONS(4051), 3, + ACTIONS(4412), 1, + aux_sym_concatenation_token1, + ACTIONS(4461), 1, + sym__concat, + STATE(1356), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(4049), 35, - anon_sym_LF, + ACTIONS(1246), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107128,49 +108706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [58103] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3785), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3783), 37, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -107187,19 +108723,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [58151] = 3, + [58300] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, - sym_file_descriptor, + ACTIONS(4412), 1, + aux_sym_concatenation_token1, + ACTIONS(4463), 1, sym__concat, + STATE(1356), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 2, + sym_file_descriptor, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1342), 36, - anon_sym_LF, + ACTIONS(1252), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107207,6 +108746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -107216,10 +108756,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -107235,16 +108775,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [58199] = 3, + [58356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 4, + ACTIONS(1320), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1346), 36, - anon_sym_LF, + ACTIONS(1318), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107261,6 +108802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -107280,15 +108822,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [58247] = 3, + [58406] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 3, + ACTIONS(4465), 1, + aux_sym_concatenation_token1, + ACTIONS(4468), 1, + sym__concat, + STATE(1356), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(1270), 37, - anon_sym_LF, + ACTIONS(1258), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107306,6 +108853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -107322,21 +108870,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [58295] = 5, + [58462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4416), 1, - sym__special_character, - STATE(1362), 1, - aux_sym__literal_repeat1, - ACTIONS(4023), 2, + ACTIONS(1244), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(4021), 36, - anon_sym_LF, + ACTIONS(1242), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107344,9 +108888,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -107354,10 +108899,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -107372,65 +108919,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [58347] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1377), 1, - anon_sym_LPAREN, - STATE(1546), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4418), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1241), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1250), 23, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [58401] = 3, + [58512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(3661), 4, sym_file_descriptor, - sym__concat, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1284), 36, - anon_sym_LF, + ACTIONS(3659), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -107440,16 +108940,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -107465,14 +108966,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [58449] = 3, + [58562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 2, + ACTIONS(1282), 3, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(1270), 38, - anon_sym_LF, + ACTIONS(1280), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107480,7 +108982,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -107492,9 +108993,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -107510,16 +109013,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [58497] = 3, + [58612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1324), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1284), 36, - anon_sym_LF, + ACTIONS(1322), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107536,6 +109040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -107555,111 +109060,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [58545] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1111), 1, - aux_sym_concatenation_token1, - ACTIONS(4420), 1, - sym__concat, - STATE(1370), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1260), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [58599] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1111), 1, - aux_sym_concatenation_token1, - ACTIONS(4422), 1, - sym__concat, - STATE(1370), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1264), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1266), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [58653] = 3, + [58662] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 3, + ACTIONS(4471), 1, + sym__special_character, + STATE(1361), 1, + aux_sym__literal_repeat1, + ACTIONS(1357), 4, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1270), 37, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1352), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107669,8 +109083,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -107678,11 +109090,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -107694,22 +109106,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [58701] = 6, + [58716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 1, - aux_sym_concatenation_token1, - ACTIONS(4350), 1, - sym__concat, - STATE(1429), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4051), 2, + ACTIONS(1278), 3, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(4049), 35, - anon_sym_LF, + ACTIONS(1276), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107719,6 +109127,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -107726,9 +109136,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -107744,67 +109156,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [58755] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1390), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1111), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1243), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1372), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [58807] = 6, + [58766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 1, - aux_sym_concatenation_token1, - ACTIONS(4350), 1, - sym__concat, - STATE(1419), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3892), 2, + ACTIONS(1278), 4, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(3888), 35, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1276), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107821,9 +109182,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -107839,16 +109202,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [58861] = 3, + [58815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 4, + ACTIONS(1274), 4, sym_file_descriptor, sym__concat, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1350), 36, - anon_sym_LF, + ACTIONS(1272), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107865,6 +109228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -107884,34 +109248,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [58909] = 3, + [58864] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4293), 4, + ACTIONS(4425), 1, sym_file_descriptor, + ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(4291), 36, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4422), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4420), 13, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -107926,20 +109295,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [58957] = 3, + [58919] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 4, - sym_file_descriptor, + ACTIONS(3733), 1, + aux_sym_concatenation_token1, + ACTIONS(3735), 1, sym__concat, + STATE(1392), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 3, + sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1354), 36, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(1242), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -107947,18 +109320,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -107974,61 +109346,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [59005] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1571), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1159), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1270), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1272), 24, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym__special_character, - sym_test_operator, - [59057] = 3, + [58974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 2, + ACTIONS(1244), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1270), 38, - anon_sym_LF, + ACTIONS(1242), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108036,10 +109362,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -108047,6 +109372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -108066,18 +109392,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [59105] = 5, + [59023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4424), 1, - sym__special_character, - STATE(1401), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 2, + ACTIONS(3839), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1358), 36, - anon_sym_LF, + ACTIONS(3837), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108096,10 +109419,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -108113,17 +109438,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [59157] = 3, + [59072] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 4, + ACTIONS(3733), 1, + aux_sym_concatenation_token1, + ACTIONS(3735), 1, + sym__concat, + STATE(1392), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3675), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(4295), 36, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(3673), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -108131,134 +109461,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [59205] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1442), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1159), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1270), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - sym__special_character, - ACTIONS(1272), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [59257] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1354), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1356), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [59305] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4348), 1, - sym_file_descriptor, - ACTIONS(3223), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -108275,41 +109487,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - ACTIONS(4346), 21, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [59357] = 5, + [59127] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4427), 1, + ACTIONS(4474), 1, sym__special_character, - STATE(1406), 1, + STATE(1419), 1, aux_sym__literal_repeat1, - ACTIONS(1363), 3, + ACTIONS(3843), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1358), 35, - anon_sym_LF, + ACTIONS(3841), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108327,6 +109517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -108344,63 +109535,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [59409] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1551), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1137), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1270), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - sym__special_character, - ACTIONS(1272), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [59461] = 3, + [59180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, + ACTIONS(4372), 4, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1288), 36, - anon_sym_LF, + ACTIONS(4370), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108417,10 +109561,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -108434,18 +109578,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [59509] = 3, + [59229] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 4, + ACTIONS(4476), 1, + sym__special_character, + STATE(1372), 1, + aux_sym__literal_repeat1, + ACTIONS(1357), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3783), 36, - anon_sym_LF, + ACTIONS(1352), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108453,6 +109600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -108462,11 +109610,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -108481,16 +109629,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [59557] = 3, + [59282] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 4, + ACTIONS(4479), 1, + sym__special_character, + STATE(1373), 1, + aux_sym__literal_repeat1, + ACTIONS(1357), 4, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1328), 36, - anon_sym_LF, + ACTIONS(1352), 35, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108507,12 +109659,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -108526,16 +109677,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [59605] = 3, + [59335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 4, + ACTIONS(1244), 4, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1324), 36, - anon_sym_LF, + ACTIONS(1242), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108552,10 +109703,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -108569,18 +109720,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [59653] = 3, + [59384] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 4, - sym_file_descriptor, + ACTIONS(4412), 1, + aux_sym_concatenation_token1, + ACTIONS(4414), 1, sym__concat, + STATE(1383), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3987), 2, + sym_file_descriptor, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1316), 36, - anon_sym_LF, + ACTIONS(3985), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108597,10 +109753,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -108616,16 +109772,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [59701] = 3, + [59439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(3839), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1312), 36, - anon_sym_LF, + ACTIONS(3837), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108633,6 +109788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -108642,10 +109798,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -108659,22 +109815,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [59749] = 5, + [59488] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4430), 1, - sym__special_character, - STATE(1414), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 3, + ACTIONS(3733), 1, + aux_sym_concatenation_token1, + ACTIONS(3735), 1, + sym__concat, + STATE(1393), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3685), 3, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1358), 35, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(3683), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -108682,18 +109841,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -108705,37 +109865,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [59801] = 3, + [59543] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4293), 3, + ACTIONS(3733), 1, + aux_sym_concatenation_token1, + ACTIONS(3735), 1, + sym__concat, + STATE(1392), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3665), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(4291), 37, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(3663), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -108750,19 +109914,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [59849] = 3, + [59598] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, + ACTIONS(4412), 1, + aux_sym_concatenation_token1, + ACTIONS(4414), 1, sym__concat, + STATE(1384), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3991), 2, + sym_file_descriptor, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1298), 36, - anon_sym_LF, + ACTIONS(3989), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108779,10 +109946,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -108798,15 +109965,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [59897] = 5, + [59653] = 5, ACTIONS(63), 1, sym_comment, - STATE(1542), 1, + STATE(1546), 1, aux_sym_concatenation_repeat1, - ACTIONS(1159), 2, + ACTIONS(1097), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1270), 13, + ACTIONS(1242), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -108817,53 +109984,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1272), 24, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym__special_character, - sym_test_operator, - [59949] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1344), 27, - sym__concat, + ACTIONS(1244), 24, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -108883,27 +110009,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, + sym__special_character, sym_test_operator, - [59997] = 6, + [59706] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 1, + ACTIONS(4412), 1, aux_sym_concatenation_token1, - ACTIONS(4433), 1, + ACTIONS(4414), 1, sym__concat, - STATE(1208), 1, + STATE(1384), 1, aux_sym_concatenation_repeat1, - ACTIONS(1260), 2, + ACTIONS(1244), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(1258), 35, - anon_sym_LF, + ACTIONS(1242), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108920,6 +110043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -108938,79 +110062,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [60051] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1348), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [60099] = 3, + [59761] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 3, + ACTIONS(3733), 1, + aux_sym_concatenation_token1, + ACTIONS(3735), 1, + sym__concat, + STATE(1393), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3661), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(4295), 37, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(3659), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -109025,109 +110109,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [60147] = 3, - ACTIONS(63), 1, + [59816] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1340), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, + ACTIONS(4412), 1, aux_sym_concatenation_token1, - sym_test_operator, - [60195] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1350), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1352), 27, + ACTIONS(4482), 1, sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [60243] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 4, + STATE(1356), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 2, sym_file_descriptor, - sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1302), 36, - anon_sym_LF, + ACTIONS(1252), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109144,10 +110141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109163,63 +110160,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [60291] = 5, - ACTIONS(63), 1, + [59871] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1137), 1, + ACTIONS(4412), 1, aux_sym_concatenation_token1, - STATE(1450), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1270), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - sym__special_character, - ACTIONS(1272), 24, + ACTIONS(4484), 1, sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [60343] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1279), 4, + STATE(1356), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 2, sym_file_descriptor, - sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1274), 36, - anon_sym_LF, + ACTIONS(1246), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109236,10 +110190,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109255,16 +110209,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [60391] = 3, + [59926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(4376), 4, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1308), 36, - anon_sym_LF, + ACTIONS(4374), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109281,100 +110235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [60439] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1316), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1318), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [60487] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4319), 1, - aux_sym_concatenation_token1, - ACTIONS(4435), 1, - sym__concat, - STATE(1208), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1264), 35, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -109391,22 +110252,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [60541] = 6, + [59975] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 1, - aux_sym_concatenation_token1, - ACTIONS(4350), 1, - sym__concat, - STATE(1429), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1272), 2, + ACTIONS(4486), 1, + sym__special_character, + STATE(1415), 1, + aux_sym__literal_repeat1, + ACTIONS(3991), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(1270), 35, - anon_sym_LF, + ACTIONS(3989), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109416,6 +110276,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -109423,11 +110285,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -109441,15 +110303,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [60595] = 5, + [60028] = 6, ACTIONS(63), 1, sym_comment, - STATE(1546), 1, + ACTIONS(1369), 1, + anon_sym_LPAREN, + STATE(1524), 1, aux_sym_concatenation_repeat1, - ACTIONS(4418), 2, + ACTIONS(4488), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(3458), 13, + ACTIONS(1225), 13, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, @@ -109463,10 +110327,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(3460), 23, + ACTIONS(1234), 24, sym_file_descriptor, sym__bare_dollar, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -109487,38 +110352,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [60646] = 7, + [60083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4372), 3, sym_file_descriptor, - ACTIONS(4437), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(4370), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -109535,38 +110398,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [60701] = 7, + [60132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4376), 3, sym_file_descriptor, - ACTIONS(4440), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, + ACTIONS(4374), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -109583,41 +110444,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [60756] = 7, + [60181] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4490), 1, + sym__special_character, + STATE(1372), 1, + aux_sym__literal_repeat1, + ACTIONS(4034), 2, sym_file_descriptor, - ACTIONS(4443), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(4032), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -109629,41 +110489,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [60811] = 7, + [60234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(1324), 3, sym_file_descriptor, - ACTIONS(4446), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(1322), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109679,86 +110538,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [60866] = 7, - ACTIONS(63), 1, + [60283] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1133), 1, - anon_sym_RBRACK, - ACTIONS(4449), 1, - sym__special_character, - ACTIONS(4451), 1, + ACTIONS(3733), 1, + aux_sym_concatenation_token1, + ACTIONS(4492), 1, sym__concat, - STATE(1456), 1, - aux_sym__literal_repeat1, - ACTIONS(197), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(624), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + STATE(846), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 3, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1246), 35, + anon_sym_LPAREN_LPAREN, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [60921] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4387), 1, - sym_file_descriptor, - ACTIONS(4453), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4384), 8, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -109775,179 +110587,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [60976] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1440), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1159), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1243), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1372), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [61027] = 7, - ACTIONS(63), 1, + [60338] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1137), 1, + ACTIONS(3733), 1, aux_sym_concatenation_token1, - ACTIONS(4456), 1, - anon_sym_RBRACK, - ACTIONS(4458), 1, + ACTIONS(4494), 1, sym__concat, - STATE(1452), 1, + STATE(846), 1, aux_sym_concatenation_repeat1, - ACTIONS(1243), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1372), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(1254), 3, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1252), 35, + anon_sym_LPAREN_LPAREN, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [61082] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1159), 1, - aux_sym_concatenation_token1, - ACTIONS(4460), 1, - sym__concat, - STATE(1327), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1260), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, + anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [61135] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4387), 1, - sym_file_descriptor, - ACTIONS(4462), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4384), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -109964,85 +110636,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [61190] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1159), 1, - aux_sym_concatenation_token1, - ACTIONS(4465), 1, - sym__concat, - STATE(1327), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1264), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1266), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [61243] = 7, + [60393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(3839), 4, sym_file_descriptor, - ACTIONS(4467), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ts_builtin_sym_end, + ACTIONS(3837), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -110057,133 +110679,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [61298] = 5, - ACTIONS(63), 1, + [60442] = 3, + ACTIONS(3), 1, sym_comment, - STATE(1509), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4418), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3412), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3414), 23, + ACTIONS(1286), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, sym__brace_start, + ts_builtin_sym_end, + ACTIONS(1284), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [61349] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1598), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1159), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1270), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1272), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym__special_character, - sym_test_operator, - [61400] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4387), 1, - sym_file_descriptor, - ACTIONS(4470), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4384), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110199,39 +110728,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [61455] = 7, + [60491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(1340), 4, sym_file_descriptor, - ACTIONS(4473), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4384), 8, + ts_builtin_sym_end, + ACTIONS(1338), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110247,84 +110774,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [61510] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4476), 1, - sym__special_character, - STATE(1448), 1, - aux_sym__literal_repeat1, - ACTIONS(1358), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1363), 24, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [61561] = 7, + [60540] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(3733), 1, + aux_sym_concatenation_token1, + ACTIONS(3735), 1, + sym__concat, + STATE(1392), 1, + aux_sym_concatenation_repeat1, + ACTIONS(178), 3, sym_file_descriptor, - ACTIONS(4479), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(145), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -110341,86 +110823,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [61616] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1137), 1, - aux_sym_concatenation_token1, - ACTIONS(4482), 1, - sym__concat, - STATE(1466), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1264), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1266), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [61669] = 7, + [60595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(1332), 3, sym_file_descriptor, - ACTIONS(4484), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(1330), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110436,132 +110869,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [61724] = 6, - ACTIONS(63), 1, + [60644] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1137), 1, - aux_sym_concatenation_token1, - ACTIONS(4487), 1, + ACTIONS(1263), 4, + sym_file_descriptor, sym__concat, - STATE(1466), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1260), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(1258), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [61777] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1572), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1159), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1243), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1372), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [61828] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4387), 1, - sym_file_descriptor, - ACTIONS(4489), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4384), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110577,131 +110915,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [61883] = 5, - ACTIONS(63), 1, + [60693] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1137), 1, - aux_sym_concatenation_token1, - STATE(1452), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1243), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1372), 24, + ACTIONS(1282), 4, + sym_file_descriptor, sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(1280), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [61934] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4492), 1, - sym__special_character, - STATE(1456), 1, - aux_sym__literal_repeat1, - ACTIONS(1358), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1363), 24, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [61985] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4387), 1, - sym_file_descriptor, - ACTIONS(4495), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4384), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110717,39 +110961,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [62040] = 7, + [60742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(1296), 4, sym_file_descriptor, - ACTIONS(4498), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4384), 8, + ts_builtin_sym_end, + ACTIONS(1294), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110765,39 +111007,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [62095] = 7, + [60791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(1300), 4, sym_file_descriptor, - ACTIONS(4501), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4384), 8, + ts_builtin_sym_end, + ACTIONS(1298), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110813,178 +111053,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [62150] = 6, - ACTIONS(63), 1, + [60840] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2367), 1, - aux_sym__literal_repeat1, - STATE(1470), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2000), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - STATE(2274), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2002), 19, + ACTIONS(1304), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [62203] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4504), 1, - sym__special_character, - STATE(1448), 1, - aux_sym__literal_repeat1, - ACTIONS(197), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(624), 24, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ts_builtin_sym_end, + ACTIONS(1302), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [62254] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4506), 1, - sym__special_character, - STATE(1462), 1, - aux_sym__literal_repeat1, - ACTIONS(1358), 14, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1363), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [62305] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4387), 1, - sym_file_descriptor, - ACTIONS(4509), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4384), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111000,41 +111099,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [62360] = 7, + [60889] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4496), 1, + sym__special_character, + STATE(1404), 1, + aux_sym__literal_repeat1, + ACTIONS(1357), 3, sym_file_descriptor, - ACTIONS(4512), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ts_builtin_sym_end, + ACTIONS(1352), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -111046,21 +111144,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [62415] = 5, + [60942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4515), 1, - sym__special_character, - STATE(1540), 1, - aux_sym__literal_repeat1, - ACTIONS(4051), 3, + ACTIONS(1312), 4, sym_file_descriptor, + sym__concat, sym__brace_start, ts_builtin_sym_end, - ACTIONS(4049), 34, - anon_sym_LF, + ACTIONS(1310), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111077,10 +111173,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -111094,85 +111193,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [62466] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1466), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4517), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1274), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1279), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [62517] = 7, + [60991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(1336), 3, sym_file_descriptor, - ACTIONS(4520), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(1334), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111188,84 +111239,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [62572] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4523), 1, - sym__special_character, - STATE(1462), 1, - aux_sym__literal_repeat1, - ACTIONS(197), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(624), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [62623] = 7, + [61040] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(3733), 1, + aux_sym_concatenation_token1, + ACTIONS(3735), 1, + sym__concat, + STATE(1393), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1234), 3, sym_file_descriptor, - ACTIONS(4525), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(1225), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -111282,77 +111288,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [62678] = 21, - ACTIONS(63), 1, + [61095] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4528), 1, - sym_word, - ACTIONS(4531), 1, + ACTIONS(4392), 1, + sym_file_descriptor, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4534), 1, anon_sym_DOLLAR, - ACTIONS(4537), 1, sym__special_character, - ACTIONS(4540), 1, anon_sym_DQUOTE, - ACTIONS(4546), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4549), 1, aux_sym_number_token2, - ACTIONS(4552), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4555), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4558), 1, anon_sym_BQUOTE, - ACTIONS(4561), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4567), 1, - sym_test_operator, - ACTIONS(4570), 1, - sym__brace_start, - STATE(2367), 1, - aux_sym__literal_repeat1, - ACTIONS(4543), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4564), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1470), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2015), 3, + sym_word, + sym_test_operator, + ACTIONS(4390), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - ACTIONS(2053), 7, - sym_file_descriptor, - sym_variable_name, - anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(2274), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [62761] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [61148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 3, + ACTIONS(1316), 4, sym_file_descriptor, + sym__concat, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1270), 36, - anon_sym_LF, + ACTIONS(1314), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111369,9 +111362,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111385,19 +111380,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [62808] = 3, + [61197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 4, + ACTIONS(1274), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3783), 35, - anon_sym_LF, + ACTIONS(1272), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111405,6 +111398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -111414,9 +111408,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111432,39 +111428,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [62855] = 7, + [61246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(1348), 3, sym_file_descriptor, - ACTIONS(4573), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(1346), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111480,294 +111474,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [62910] = 7, - ACTIONS(63), 1, + [61295] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1137), 1, - aux_sym_concatenation_token1, - ACTIONS(4576), 1, - anon_sym_RBRACK, - ACTIONS(4578), 1, + ACTIONS(1344), 3, + sym_file_descriptor, sym__concat, - STATE(1452), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1243), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1372), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + sym__brace_start, + ACTIONS(1342), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [62965] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1147), 1, - anon_sym_RBRACK, - ACTIONS(4449), 1, - sym__special_character, - ACTIONS(4580), 1, - sym__concat, - STATE(1456), 1, - aux_sym__literal_repeat1, - ACTIONS(197), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(624), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [63020] = 7, - ACTIONS(63), 1, + [61344] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1183), 1, - anon_sym_RBRACK, - ACTIONS(4449), 1, - sym__special_character, - ACTIONS(4582), 1, - sym__concat, - STATE(1456), 1, - aux_sym__literal_repeat1, - ACTIONS(197), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, + ACTIONS(1213), 1, + sym__brace_start, + ACTIONS(4501), 1, + anon_sym_DQUOTE, + STATE(2238), 1, + sym_string, + ACTIONS(4503), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4499), 9, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(624), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, + anon_sym_BANG, anon_sym_QMARK, - sym_test_operator, - [63075] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4586), 14, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 27, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4584), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, anon_sym_COLON, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [63122] = 3, - ACTIONS(63), 1, + [61401] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, + ACTIONS(1217), 1, + sym__brace_start, + ACTIONS(4501), 1, + anon_sym_DQUOTE, + STATE(2238), 1, + sym_string, + ACTIONS(4503), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4499), 9, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 27, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4584), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, anon_sym_COLON, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [63169] = 3, - ACTIONS(63), 1, + [61458] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4590), 14, - anon_sym_EQ, + ACTIONS(4505), 1, + sym__special_character, + STATE(1415), 1, + aux_sym__literal_repeat1, + ACTIONS(1357), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(1352), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4588), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [63216] = 7, + [61511] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1137), 1, - aux_sym_concatenation_token1, - ACTIONS(4592), 1, - anon_sym_RBRACK, - ACTIONS(4594), 1, - sym__concat, - STATE(1452), 1, + STATE(1416), 1, aux_sym_concatenation_repeat1, - ACTIONS(1243), 13, + ACTIONS(4508), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1258), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -111781,7 +111690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1372), 22, + ACTIONS(1263), 25, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -111801,21 +111710,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [63271] = 5, + [61564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4596), 1, - sym__special_character, - STATE(1481), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 2, + ACTIONS(1270), 3, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(1358), 35, - anon_sym_LF, + ACTIONS(1268), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111833,10 +111742,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -111850,39 +111762,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [63322] = 7, + [61613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(1270), 3, sym_file_descriptor, - ACTIONS(4599), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(1268), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111898,41 +111808,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [63377] = 7, + [61662] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4511), 1, + sym__special_character, + STATE(1419), 1, + aux_sym__literal_repeat1, + ACTIONS(1357), 3, sym_file_descriptor, - ACTIONS(4602), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(1352), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -111946,39 +111856,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [63432] = 7, + [61715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(1320), 4, sym_file_descriptor, - ACTIONS(4605), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4384), 8, + ts_builtin_sym_end, + ACTIONS(1318), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111994,41 +111902,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [63487] = 7, + [61764] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4514), 1, + sym__special_character, + STATE(1404), 1, + aux_sym__literal_repeat1, + ACTIONS(4034), 3, sym_file_descriptor, - ACTIONS(4608), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ts_builtin_sym_end, + ACTIONS(4032), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -112040,41 +111947,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [63542] = 7, + [61817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(1328), 4, sym_file_descriptor, - ACTIONS(4611), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4384), 8, + ts_builtin_sym_end, + ACTIONS(1326), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112090,16 +111996,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [63597] = 5, + [61866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3223), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4348), 2, + ACTIONS(1244), 2, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(3207), 16, + sym__brace_start, + ACTIONS(1242), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -112114,10 +112039,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - ACTIONS(4346), 19, - anon_sym_LF, + [61915] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1244), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(1242), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112125,8 +112057,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -112134,41 +112069,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [63648] = 7, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [61964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(1328), 3, sym_file_descriptor, - ACTIONS(4614), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(1326), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112184,85 +112134,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [63703] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1545), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1159), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1243), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1372), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [63754] = 7, + [62013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(1270), 4, sym_file_descriptor, - ACTIONS(4617), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4384), 8, + ts_builtin_sym_end, + ACTIONS(1268), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112278,58 +112180,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [63809] = 3, - ACTIONS(63), 1, + [62062] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 14, - anon_sym_EQ, + ACTIONS(1270), 4, + sym_file_descriptor, + sym__concat, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(1268), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1322), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [63856] = 3, + [62111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 2, + ACTIONS(1320), 3, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(1270), 37, - anon_sym_LF, + ACTIONS(1318), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112347,9 +112252,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112363,62 +112270,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [63903] = 3, - ACTIONS(63), 1, + [62160] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 14, - anon_sym_EQ, + ACTIONS(1344), 4, + sym_file_descriptor, + sym__concat, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(1342), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1336), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [63950] = 3, + [62209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 3, + ACTIONS(1348), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(1270), 36, - anon_sym_LF, + ts_builtin_sym_end, + ACTIONS(1346), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112426,7 +112335,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -112436,9 +112344,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112454,39 +112364,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [63997] = 7, + [62258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(1286), 3, sym_file_descriptor, - ACTIONS(4620), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(1284), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112502,150 +112410,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [64052] = 3, - ACTIONS(63), 1, + [62307] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1340), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [64099] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1344), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [64146] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1348), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [64193] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4623), 1, - sym__special_character, - STATE(1481), 1, - aux_sym__literal_repeat1, - ACTIONS(4051), 2, + ACTIONS(4376), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(4049), 35, - anon_sym_LF, + ACTIONS(4374), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112663,10 +112436,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -112678,106 +112453,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [64244] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1286), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [64291] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1286), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [64338] = 3, + [62356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 4, + ACTIONS(1340), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1270), 35, - anon_sym_LF, + ACTIONS(1338), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112785,6 +112472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -112794,9 +112482,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112812,38 +112502,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [64385] = 7, + [62405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4372), 3, sym_file_descriptor, - ACTIONS(4625), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(4370), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -112858,41 +112545,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [64440] = 7, + [62454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(1263), 3, sym_file_descriptor, - ACTIONS(4628), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(1258), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112908,39 +112594,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [64495] = 7, + [62503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(1336), 4, sym_file_descriptor, - ACTIONS(4631), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4384), 8, + ts_builtin_sym_end, + ACTIONS(1334), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112956,39 +112640,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [64550] = 7, + [62552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(1316), 3, sym_file_descriptor, - ACTIONS(4634), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(1314), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113004,41 +112686,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [64605] = 7, + [62601] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4516), 1, + sym__special_character, + STATE(1373), 1, + aux_sym__literal_repeat1, + ACTIONS(3991), 4, sym_file_descriptor, - ACTIONS(4637), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ts_builtin_sym_end, + ACTIONS(3989), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -113052,16 +112734,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [64660] = 3, + [62654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4293), 4, + ACTIONS(1332), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, ts_builtin_sym_end, - ACTIONS(4291), 35, - anon_sym_LF, + ACTIONS(1330), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113078,9 +112760,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113096,86 +112780,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [64707] = 6, - ACTIONS(63), 1, + [62703] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 1, - aux_sym_concatenation_token1, - ACTIONS(4640), 1, - sym__concat, - STATE(1560), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1264), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1266), 23, + ACTIONS(1304), 3, sym_file_descriptor, - sym__bare_dollar, + sym__concat, sym__brace_start, + ACTIONS(1302), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [64760] = 7, + [62752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(1278), 3, sym_file_descriptor, - ACTIONS(4642), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(1276), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113191,83 +112872,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [64815] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1350), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1352), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [64862] = 7, + [62801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(1324), 4, sym_file_descriptor, - ACTIONS(4645), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4384), 8, + ts_builtin_sym_end, + ACTIONS(1322), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113283,85 +112918,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [64917] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1354), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1356), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [64964] = 7, + [62850] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4474), 1, + sym__special_character, + STATE(1419), 1, + aux_sym__literal_repeat1, + ACTIONS(3991), 3, sym_file_descriptor, - ACTIONS(4648), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(3989), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -113375,39 +112966,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [65019] = 7, + [62903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(1296), 3, sym_file_descriptor, - ACTIONS(4651), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(1294), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113423,173 +113012,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [65074] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1288), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1290), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [65121] = 3, - ACTIONS(63), 1, + [62952] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1330), 25, + ACTIONS(1282), 3, + sym_file_descriptor, sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + sym__brace_start, + ACTIONS(1280), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [65168] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1316), 14, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1318), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [65215] = 7, + [63001] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4516), 1, + sym__special_character, + STATE(1373), 1, + aux_sym__literal_repeat1, + ACTIONS(3843), 4, sym_file_descriptor, - ACTIONS(4654), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ts_builtin_sym_end, + ACTIONS(3841), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -113603,38 +113106,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [65270] = 7, + [63054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(1244), 3, sym_file_descriptor, - ACTIONS(4657), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(1242), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -113651,39 +113152,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [65325] = 7, + [63103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(1300), 3, sym_file_descriptor, - ACTIONS(4660), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(1298), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113699,62 +113198,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [65380] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1137), 1, - aux_sym_concatenation_token1, - ACTIONS(4663), 1, - anon_sym_RBRACK, - ACTIONS(4665), 1, - sym__concat, - STATE(1452), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1243), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1372), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [65435] = 3, + [63152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 2, + ACTIONS(1312), 3, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(1270), 37, - anon_sym_LF, + ACTIONS(1310), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113762,10 +113214,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -113773,9 +113224,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113791,17 +113244,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [65482] = 7, + [63201] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4425), 1, sym_file_descriptor, - ACTIONS(4667), 1, + ACTIONS(4518), 1, anon_sym_RPAREN, - ACTIONS(3223), 2, + ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(4422), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -113810,8 +113263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, + ACTIONS(4420), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113820,9 +113272,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -113839,61 +113293,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [65537] = 3, - ACTIONS(63), 1, + [63257] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 14, - anon_sym_EQ, + ACTIONS(4376), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(4374), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1326), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [65584] = 7, + [63305] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4425), 1, sym_file_descriptor, - ACTIONS(4670), 1, + ACTIONS(4521), 1, anon_sym_RPAREN, - ACTIONS(3223), 2, + ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(4422), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -113902,8 +113357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, + ACTIONS(4420), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113912,9 +113366,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -113931,17 +113387,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [65639] = 7, + [63361] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4425), 1, sym_file_descriptor, - ACTIONS(4673), 1, + ACTIONS(4524), 1, anon_sym_RPAREN, - ACTIONS(3223), 2, + ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(4422), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -113950,8 +113406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, + ACTIONS(4420), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113960,9 +113415,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -113979,38 +113436,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [65694] = 7, + [63417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(3839), 4, sym_file_descriptor, - ACTIONS(4676), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ts_builtin_sym_end, + ACTIONS(3837), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -114027,17 +113481,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [65749] = 7, + [63465] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4425), 1, sym_file_descriptor, - ACTIONS(4679), 1, + ACTIONS(4527), 1, anon_sym_RPAREN, - ACTIONS(3223), 2, + ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(4422), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -114046,8 +113500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, + ACTIONS(4420), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114056,9 +113509,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -114075,17 +113530,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [65804] = 7, + [63521] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4425), 1, sym_file_descriptor, - ACTIONS(4682), 1, + ACTIONS(4530), 1, anon_sym_RPAREN, - ACTIONS(3223), 2, + ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(4422), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -114094,8 +113549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, + ACTIONS(4420), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114104,9 +113558,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -114123,16 +113579,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [65859] = 3, + [63577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 4, + ACTIONS(4372), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(4295), 35, - anon_sym_LF, + ACTIONS(4370), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114140,6 +113595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -114149,6 +113605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -114167,10 +113624,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [65906] = 3, + [63625] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4687), 14, + STATE(1606), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1097), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1242), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -114181,11 +113643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4685), 25, + ACTIONS(1244), 24, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -114206,358 +113667,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, + sym__special_character, sym_test_operator, - [65953] = 5, + [63677] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4449), 1, - sym__special_character, - STATE(1456), 1, - aux_sym__literal_repeat1, - ACTIONS(197), 13, - anon_sym_EQ, + STATE(1525), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4488), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3673), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(624), 24, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [66004] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 3, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3675), 24, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(4295), 36, - anon_sym_LF, - anon_sym_SEMI, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [66051] = 3, + [63729] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1312), 14, - anon_sym_EQ, + STATE(1524), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4488), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3683), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1314), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [66098] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1308), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1310), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3685), 24, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [66145] = 7, - ACTIONS(63), 1, + [63781] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1187), 1, - anon_sym_RBRACK, - ACTIONS(4449), 1, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4392), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(4689), 1, - sym__concat, - STATE(1456), 1, - aux_sym__literal_repeat1, - ACTIONS(197), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(624), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [66200] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1274), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1279), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4390), 19, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [66247] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1302), 14, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1304), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [66294] = 5, + [63833] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4691), 1, - sym__special_character, - STATE(1540), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 3, + ACTIONS(4425), 1, sym_file_descriptor, + ACTIONS(4533), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1358), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4422), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -114571,154 +113861,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [66345] = 5, + [63889] = 21, ACTIONS(63), 1, sym_comment, - STATE(1509), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4418), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1270), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, + ACTIONS(4536), 1, + sym_word, + ACTIONS(4542), 1, anon_sym_DOLLAR, + ACTIONS(4545), 1, + sym__special_character, + ACTIONS(4548), 1, + anon_sym_DQUOTE, + ACTIONS(4554), 1, aux_sym_number_token1, + ACTIONS(4557), 1, aux_sym_number_token2, + ACTIONS(4560), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4563), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4566), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1272), 23, - sym_file_descriptor, - sym__bare_dollar, + ACTIONS(4569), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4575), 1, + sym_test_operator, + ACTIONS(4578), 1, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + STATE(2495), 1, + aux_sym__literal_repeat1, + ACTIONS(4539), 2, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(4551), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(4572), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [66396] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1159), 1, - aux_sym_concatenation_token1, - ACTIONS(4694), 1, - sym__concat, - STATE(1327), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1264), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + STATE(1463), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2059), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1266), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [66449] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1298), 14, - anon_sym_EQ, - anon_sym_LT_LT, + anon_sym_AMP_GT, + ACTIONS(2094), 7, + sym_file_descriptor, + sym_variable_name, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1300), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [66496] = 7, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(2368), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [63973] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4425), 1, sym_file_descriptor, - ACTIONS(4696), 1, + ACTIONS(4581), 1, anon_sym_RPAREN, - ACTIONS(3223), 2, + ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(4422), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -114727,8 +113943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, + ACTIONS(4420), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114737,9 +113952,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -114756,109 +113973,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [66551] = 6, - ACTIONS(63), 1, + [64029] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1159), 1, - aux_sym_concatenation_token1, - ACTIONS(4699), 1, - sym__concat, - STATE(1327), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1260), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4584), 1, + sym__special_character, + STATE(1465), 1, + aux_sym__literal_repeat1, + ACTIONS(1357), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(1352), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [66604] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4418), 1, - aux_sym_concatenation_token1, - ACTIONS(4701), 1, - sym__concat, - STATE(1560), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 13, - anon_sym_EQ_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_EQ_TILDE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1260), 23, + sym_test_operator, + [64081] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4425), 1, sym_file_descriptor, - sym__bare_dollar, + ACTIONS(4587), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4422), 8, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [66657] = 6, + [64137] = 6, ACTIONS(63), 1, sym_comment, - STATE(2367), 1, + STATE(2495), 1, aux_sym__literal_repeat1, - STATE(1470), 2, + STATE(1463), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2004), 8, + ACTIONS(2049), 8, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -114867,7 +114086,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - STATE(2274), 9, + STATE(2368), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -114877,10 +114096,11 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2006), 19, + ACTIONS(2051), 20, sym_file_descriptor, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114897,15 +114117,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [66710] = 3, + [64191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 3, + ACTIONS(1244), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(3783), 36, - anon_sym_LF, + ACTIONS(1242), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114923,8 +114142,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [64239] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4590), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4422), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -114941,15 +114211,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [66757] = 5, + [64295] = 5, ACTIONS(63), 1, sym_comment, - STATE(1568), 1, + STATE(1470), 1, aux_sym_concatenation_repeat1, - ACTIONS(1111), 2, + ACTIONS(4593), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1243), 13, + ACTIONS(1258), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -114960,10 +114230,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1372), 23, + ACTIONS(1263), 23, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -114987,64 +114258,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [66808] = 7, - ACTIONS(3), 1, + [64347] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(4387), 1, - sym_file_descriptor, - ACTIONS(4703), 1, - ts_builtin_sym_end, - ACTIONS(3223), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4384), 8, - anon_sym_GT_GT, + STATE(1525), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4488), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3663), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3665), 24, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [66863] = 6, + [64399] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1137), 1, + ACTIONS(1123), 1, aux_sym_concatenation_token1, - ACTIONS(4705), 1, - sym__concat, - STATE(1466), 1, + STATE(1594), 1, aux_sym_concatenation_repeat1, - ACTIONS(1264), 13, + ACTIONS(1242), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -115058,7 +114326,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1266), 23, + sym__special_character, + ACTIONS(1244), 24, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -115082,16 +114352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [66916] = 6, + [64451] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1137), 1, - aux_sym_concatenation_token1, - ACTIONS(4707), 1, - sym__concat, - STATE(1466), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 13, + ACTIONS(1294), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -115105,7 +114369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1260), 23, + ACTIONS(1296), 27, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -115125,21 +114390,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [66969] = 7, + [64499] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4425), 1, sym_file_descriptor, - ACTIONS(4709), 1, + ACTIONS(4596), 1, anon_sym_RPAREN, - ACTIONS(3223), 2, + ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(4422), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -115148,8 +114416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, + ACTIONS(4420), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115158,9 +114425,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -115177,15 +114446,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [67024] = 6, + [64555] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(1524), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4488), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3659), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3661), 24, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [64607] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4425), 1, sym_file_descriptor, - ACTIONS(3223), 2, + ACTIONS(4599), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(4422), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -115194,20 +114512,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 12, - anon_sym_LF, + ACTIONS(4420), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -115224,61 +114542,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [67077] = 5, - ACTIONS(63), 1, + [64663] = 7, + ACTIONS(3), 1, sym_comment, - STATE(1546), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4418), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1241), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1250), 23, + ACTIONS(4425), 1, sym_file_descriptor, - sym__bare_dollar, + ACTIONS(4602), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4422), 8, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [67128] = 5, + [64719] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4348), 1, + ACTIONS(4425), 1, sym_file_descriptor, - ACTIONS(3223), 2, + ACTIONS(4605), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(3207), 16, + ACTIONS(4422), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -115295,31 +114640,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - ACTIONS(4346), 20, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + [64775] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4608), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4422), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [67179] = 3, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [64831] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1243), 14, + ACTIONS(1298), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -115330,12 +114703,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1372), 25, - anon_sym_RPAREN_RPAREN, + ACTIONS(1300), 27, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -115355,22 +114727,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [67226] = 7, + [64879] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4425), 1, sym_file_descriptor, - ACTIONS(4712), 1, + ACTIONS(4611), 1, anon_sym_RPAREN, - ACTIONS(3223), 2, + ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(4422), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -115379,8 +114753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, + ACTIONS(4420), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115389,9 +114762,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -115408,15 +114783,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [67281] = 5, + [64935] = 3, ACTIONS(63), 1, sym_comment, - STATE(1552), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1137), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1243), 13, + ACTIONS(1284), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -115430,7 +114800,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1372), 23, + ACTIONS(1286), 27, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -115450,113 +114821,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [67332] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1560), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4715), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1274), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1279), 23, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [67383] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1509), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4418), 2, - sym__concat, + anon_sym_COLON, aux_sym_concatenation_token1, - ACTIONS(195), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(232), 23, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_test_operator, - [67434] = 7, + [64983] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4425), 1, sym_file_descriptor, - ACTIONS(4718), 1, + ACTIONS(4614), 1, anon_sym_RPAREN, - ACTIONS(3223), 2, + ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(4422), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -115565,8 +114847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, + ACTIONS(4420), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115575,9 +114856,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -115594,38 +114877,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [67489] = 7, + [65039] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4392), 1, sym_file_descriptor, - ACTIONS(4721), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, + ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3207), 16, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -115642,64 +114903,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [67544] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4387), 1, - sym_file_descriptor, - ACTIONS(4724), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(4390), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [67599] = 6, + [65091] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1111), 1, - aux_sym_concatenation_token1, - ACTIONS(4727), 1, - sym__concat, - STATE(1370), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1264), 13, + ACTIONS(1338), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -115713,8 +114941,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1266), 23, - anon_sym_RPAREN_RPAREN, + ACTIONS(1340), 27, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -115734,18 +114962,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [67652] = 3, + [65139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4293), 3, + ACTIONS(1244), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(4291), 36, - anon_sym_LF, + ACTIONS(1242), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115753,9 +114984,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -115763,6 +114995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -115781,38 +115014,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [67699] = 7, + [65187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(1244), 3, sym_file_descriptor, - ACTIONS(4729), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(1242), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -115829,15 +115059,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [67754] = 6, + [65235] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1111), 1, - aux_sym_concatenation_token1, - ACTIONS(4732), 1, - sym__concat, - STATE(1370), 1, - aux_sym_concatenation_repeat1, ACTIONS(1258), 13, anon_sym_EQ, anon_sym_LT_LT, @@ -115852,8 +115076,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1260), 23, - anon_sym_RPAREN_RPAREN, + ACTIONS(1263), 27, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -115873,111 +115097,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [67807] = 5, - ACTIONS(63), 1, + [65283] = 7, + ACTIONS(3), 1, sym_comment, - STATE(1509), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4418), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3494), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3496), 23, + ACTIONS(4425), 1, sym_file_descriptor, - sym__bare_dollar, + ACTIONS(4617), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4422), 8, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [67858] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1546), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4418), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3416), 13, - anon_sym_EQ_EQ, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(3418), 23, + sym_test_operator, + [65339] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4425), 1, sym_file_descriptor, - sym__bare_dollar, + ACTIONS(4620), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4422), 8, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [67909] = 6, + [65395] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1159), 1, - aux_sym_concatenation_token1, - ACTIONS(4734), 1, - sym__concat, - STATE(1327), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1264), 13, + ACTIONS(1302), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -115991,7 +115219,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1266), 23, + ACTIONS(1304), 27, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -116011,20 +115240,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, + aux_sym_concatenation_token1, + sym_test_operator, + [65443] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4623), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4422), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [65499] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4626), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4422), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [65555] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4629), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4422), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [65611] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4372), 4, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(4370), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [65659] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4632), 1, + sym__special_character, + STATE(1496), 1, + aux_sym__literal_repeat1, + ACTIONS(1357), 3, + sym_file_descriptor, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(1352), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [67962] = 6, + [65711] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1159), 1, - aux_sym_concatenation_token1, - ACTIONS(4736), 1, - sym__concat, - STATE(1327), 1, + STATE(1706), 1, aux_sym_concatenation_repeat1, - ACTIONS(1258), 13, + ACTIONS(1155), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1242), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -116038,7 +115508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1260), 23, + ACTIONS(1244), 24, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -116061,18 +115531,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, + sym__special_character, sym_test_operator, - [68015] = 7, + [65763] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4425), 1, sym_file_descriptor, - ACTIONS(4738), 1, + ACTIONS(4635), 1, anon_sym_RPAREN, - ACTIONS(3223), 2, + ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(4422), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -116081,8 +115552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, + ACTIONS(4420), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116091,9 +115561,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -116110,17 +115582,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [68070] = 7, + [65819] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4425), 1, sym_file_descriptor, - ACTIONS(4741), 1, - anon_sym_RPAREN, - ACTIONS(3223), 2, + ACTIONS(4638), 1, + ts_builtin_sym_end, + ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 8, + ACTIONS(4422), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -116129,8 +115601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4382), 11, - anon_sym_LF, + ACTIONS(4420), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116139,9 +115610,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 16, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -116158,74 +115631,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [68125] = 24, + [65875] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_LPAREN, - ACTIONS(4750), 1, - anon_sym_esac, - ACTIONS(4752), 1, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4640), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4422), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4754), 1, anon_sym_DOLLAR, - ACTIONS(4756), 1, sym__special_character, - ACTIONS(4758), 1, anon_sym_DQUOTE, - ACTIONS(4760), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4766), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4768), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4774), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, + [65931] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4643), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, sym__brace_start, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4675), 1, - sym_last_case_item, - ACTIONS(4772), 2, + ACTIONS(4422), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2148), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4744), 3, + sym_word, + sym_test_operator, + [65987] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1244), 3, + sym_file_descriptor, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(1242), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(4746), 4, - anon_sym_LF, + sym_test_operator, + [66035] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4646), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4422), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, anon_sym_AMP, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [68213] = 3, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [66091] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 13, + ACTIONS(1268), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -116239,7 +115840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1286), 25, + ACTIONS(1270), 27, sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -116260,15 +115861,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, aux_sym_concatenation_token1, sym_test_operator, - [68259] = 3, + [66139] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 13, + ACTIONS(1268), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -116282,7 +115885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1286), 25, + ACTIONS(1270), 27, sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -116303,84 +115906,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, aux_sym_concatenation_token1, sym_test_operator, - [68305] = 24, + [66187] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(107), 1, - aux_sym_unary_expression_token1, - ACTIONS(193), 1, - sym_word, - ACTIONS(204), 1, - anon_sym_BANG, - ACTIONS(210), 1, - anon_sym_DOLLAR, - ACTIONS(216), 1, - aux_sym_number_token1, - ACTIONS(218), 1, - aux_sym_number_token2, - ACTIONS(222), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(236), 1, + ACTIONS(1276), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1278), 27, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + sym_test_operator, + [66235] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4152), 1, + aux_sym_concatenation_token1, + ACTIONS(4154), 1, + sym__concat, + STATE(1572), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1242), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1113), 1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(1119), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1125), 1, - sym_test_operator, - ACTIONS(4780), 1, - anon_sym_BQUOTE, - ACTIONS(4782), 1, - sym_regex, - STATE(1468), 1, - aux_sym__literal_repeat1, - STATE(1478), 1, - sym__expression, - ACTIONS(1117), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1123), 2, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1394), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [68393] = 6, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [66289] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4425), 1, sym_file_descriptor, - ACTIONS(3223), 2, + ACTIONS(4649), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(4384), 9, + ACTIONS(4422), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -116389,9 +116025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_BQUOTE, - ACTIONS(4382), 11, - anon_sym_LF, + ACTIONS(4420), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116400,9 +116034,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3207), 15, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -116413,126 +116049,114 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [68445] = 24, + [66345] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_LPAREN, - ACTIONS(4752), 1, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4652), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4422), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4754), 1, anon_sym_DOLLAR, - ACTIONS(4756), 1, sym__special_character, - ACTIONS(4758), 1, anon_sym_DQUOTE, - ACTIONS(4760), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4766), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4768), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4774), 1, - sym_test_operator, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(4786), 1, - anon_sym_esac, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4694), 1, - sym_last_case_item, - ACTIONS(4772), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2131), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4744), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(4784), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [68533] = 3, - ACTIONS(63), 1, + sym_test_operator, + [66401] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 13, - anon_sym_EQ, - anon_sym_LT_LT, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4655), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4422), 8, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1322), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [68579] = 5, + [66457] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4788), 1, - sym__special_character, - STATE(1582), 1, - aux_sym__literal_repeat1, - ACTIONS(1358), 13, + ACTIONS(1310), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -116546,7 +116170,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1363), 23, + ACTIONS(1312), 27, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -116566,61 +116191,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [68629] = 3, - ACTIONS(63), 1, + [66505] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1326), 25, + ACTIONS(4425), 1, sym_file_descriptor, - sym__concat, - sym__bare_dollar, + ACTIONS(4658), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4422), 8, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [68675] = 5, + [66561] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4791), 1, - sym__special_character, - STATE(1582), 1, - aux_sym__literal_repeat1, - ACTIONS(197), 13, + STATE(1626), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1155), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1242), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -116634,7 +116269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(624), 23, + ACTIONS(1244), 24, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -116654,105 +116289,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, + sym__special_character, sym_test_operator, - [68725] = 3, - ACTIONS(63), 1, + [66613] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1304), 25, + ACTIONS(4425), 1, sym_file_descriptor, - sym__concat, - sym__bare_dollar, + ACTIONS(4661), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4422), 8, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [68771] = 3, - ACTIONS(63), 1, + [66669] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1279), 25, - sym_file_descriptor, + ACTIONS(4152), 1, + aux_sym_concatenation_token1, + ACTIONS(4154), 1, sym__concat, - sym__bare_dollar, + STATE(1572), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3843), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, + ACTIONS(3841), 34, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, sym_test_operator, - [68817] = 5, + [66723] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4348), 1, + ACTIONS(4425), 1, sym_file_descriptor, - ACTIONS(3223), 2, + ACTIONS(4664), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(3207), 15, + ACTIONS(4422), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -116763,14 +116434,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, sym_test_operator, - ACTIONS(4346), 20, - anon_sym_LF, - anon_sym_SEMI, + [66779] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4152), 1, + aux_sym_concatenation_token1, + ACTIONS(4154), 1, + sym__concat, + STATE(1565), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3839), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(3837), 34, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -116778,7 +116462,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -116786,39 +116469,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [68867] = 5, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [66833] = 5, ACTIONS(63), 1, sym_comment, - STATE(1635), 1, + STATE(1525), 1, aux_sym_concatenation_repeat1, - ACTIONS(4793), 2, + ACTIONS(4488), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(3888), 12, + ACTIONS(1242), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(3892), 23, + ACTIONS(1244), 24, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -116826,6 +116526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -116834,55 +116535,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [68917] = 5, - ACTIONS(63), 1, + [66885] = 5, + ACTIONS(3), 1, sym_comment, - STATE(1668), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4793), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4049), 12, + ACTIONS(4667), 1, + sym__special_character, + STATE(1465), 1, + aux_sym__literal_repeat1, + ACTIONS(3991), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(3989), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [66937] = 6, + ACTIONS(63), 1, + sym_comment, + STATE(2495), 1, + aux_sym__literal_repeat1, + STATE(1463), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2045), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4051), 23, + STATE(2368), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2047), 20, sym_file_descriptor, sym_variable_name, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [68967] = 3, + [66991] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1316), 13, + STATE(1521), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4669), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1258), 13, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, @@ -116896,11 +116652,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1318), 25, + ACTIONS(1263), 24, sym_file_descriptor, - sym__concat, sym__bare_dollar, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -116912,7 +116668,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -116922,74 +116677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [69013] = 24, + [67043] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(147), 1, - aux_sym_unary_expression_token1, - ACTIONS(210), 1, - anon_sym_DOLLAR, - ACTIONS(216), 1, - aux_sym_number_token1, - ACTIONS(218), 1, - aux_sym_number_token2, - ACTIONS(222), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(236), 1, - sym__brace_start, - ACTIONS(240), 1, - sym_word, - ACTIONS(242), 1, - anon_sym_BANG, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1115), 1, - anon_sym_DQUOTE, - ACTIONS(1119), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1203), 1, - sym__special_character, - ACTIONS(1207), 1, - sym_test_operator, - ACTIONS(4780), 1, - anon_sym_BQUOTE, - ACTIONS(4782), 1, - sym_regex, - STATE(1468), 1, - aux_sym__literal_repeat1, - STATE(1478), 1, - sym__expression, - ACTIONS(1123), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1205), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1549), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [69101] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 13, + ACTIONS(1314), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -117003,7 +116694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1336), 25, + ACTIONS(1316), 27, sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -117024,207 +116715,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, aux_sym_concatenation_token1, sym_test_operator, - [69147] = 24, + [67091] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_LPAREN, - ACTIONS(4752), 1, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4672), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4422), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4754), 1, anon_sym_DOLLAR, - ACTIONS(4756), 1, sym__special_character, - ACTIONS(4758), 1, anon_sym_DQUOTE, - ACTIONS(4760), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4766), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4768), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4774), 1, - sym_test_operator, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(4797), 1, - anon_sym_esac, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4695), 1, - sym_last_case_item, - ACTIONS(4772), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2132), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4744), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(4795), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [69235] = 24, + sym_test_operator, + [67147] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(326), 1, + ACTIONS(4488), 1, + aux_sym_concatenation_token1, + ACTIONS(4675), 1, + sym__concat, + STATE(1521), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1252), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(332), 1, aux_sym_number_token1, - ACTIONS(334), 1, aux_sym_number_token2, - ACTIONS(338), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1254), 24, + sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1157), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1167), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1191), 1, - sym_word, - ACTIONS(1193), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - aux_sym_unary_expression_token1, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(4782), 1, - sym_regex, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - STATE(1461), 1, - aux_sym__literal_repeat1, - STATE(1478), 1, - sym__expression, - ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1199), 2, + sym_test_operator, + [67201] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4488), 1, + aux_sym_concatenation_token1, + ACTIONS(4677), 1, + sym__concat, + STATE(1521), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1246), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1248), 24, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1453), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [69323] = 24, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [67255] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_LPAREN, - ACTIONS(4752), 1, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4679), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4422), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4754), 1, anon_sym_DOLLAR, - ACTIONS(4756), 1, sym__special_character, - ACTIONS(4758), 1, anon_sym_DQUOTE, - ACTIONS(4760), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4766), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4768), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4774), 1, - sym_test_operator, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(4803), 1, - anon_sym_esac, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4700), 1, - sym_last_case_item, - ACTIONS(4772), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2133), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4744), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(4801), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [69411] = 3, + sym_test_operator, + [67311] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1338), 13, + STATE(1648), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1123), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1242), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -117238,8 +116938,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1340), 25, - sym__concat, + sym__special_character, + ACTIONS(1244), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -117262,82 +116962,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [69457] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(326), 1, - anon_sym_DOLLAR, - ACTIONS(332), 1, - aux_sym_number_token1, - ACTIONS(334), 1, - aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1151), 1, - sym_word, - ACTIONS(1153), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1173), 1, sym_test_operator, - ACTIONS(4782), 1, - sym_regex, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - ACTIONS(4805), 1, - sym__special_character, - STATE(1478), 1, - sym__expression, - STATE(1660), 1, - aux_sym__literal_repeat1, - ACTIONS(1165), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1171), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1438), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [69545] = 6, + [67363] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1159), 1, - aux_sym_concatenation_token1, - ACTIONS(4807), 1, - sym__concat, - STATE(1327), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1264), 13, + ACTIONS(1318), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -117351,7 +116980,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1266), 22, + ACTIONS(1320), 27, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -117371,83 +117001,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [69597] = 24, - ACTIONS(63), 1, + [67411] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(326), 1, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4682), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4422), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - ACTIONS(332), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(334), 1, aux_sym_number_token2, - ACTIONS(338), 1, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [67467] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4152), 1, + aux_sym_concatenation_token1, + ACTIONS(4154), 1, + sym__concat, + STATE(1572), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3779), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1157), 1, + ACTIONS(3777), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1167), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1223), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1225), 1, - anon_sym_BANG, - ACTIONS(1227), 1, - aux_sym_unary_expression_token1, - ACTIONS(1229), 1, - sym__special_character, - ACTIONS(1233), 1, sym_test_operator, - ACTIONS(4782), 1, - sym_regex, - ACTIONS(4799), 1, + [67521] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4685), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4422), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - STATE(1461), 1, - aux_sym__literal_repeat1, - STATE(1478), 1, - sym__expression, - ACTIONS(1171), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1231), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1662), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [69685] = 6, + sym_word, + sym_test_operator, + [67577] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1159), 1, - aux_sym_concatenation_token1, - ACTIONS(4809), 1, - sym__concat, - STATE(1327), 1, + STATE(1619), 1, aux_sym_concatenation_repeat1, - ACTIONS(1258), 13, + ACTIONS(1155), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1242), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -117461,7 +117176,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1260), 22, + sym__special_character, + ACTIONS(1244), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -117481,79 +117197,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [69737] = 3, - ACTIONS(63), 1, + [67629] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 13, - anon_sym_EQ_EQ, + ACTIONS(4152), 1, + aux_sym_concatenation_token1, + ACTIONS(4154), 1, + sym__concat, + STATE(1565), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3783), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(3781), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1330), 25, + sym_test_operator, + [67683] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4425), 1, sym_file_descriptor, - sym__concat, - sym__bare_dollar, + ACTIONS(4688), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4422), 8, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [69783] = 3, + [67739] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 3, + ACTIONS(4425), 1, sym_file_descriptor, + ACTIONS(4691), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1270), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4422), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -117570,55 +117347,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [69829] = 5, - ACTIONS(63), 1, + [67795] = 7, + ACTIONS(3), 1, sym_comment, - STATE(1607), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4811), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1270), 12, - anon_sym_LT_LT, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4694), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4422), 8, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1272), 23, + sym_test_operator, + [67851] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1280), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1282), 27, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + sym_test_operator, + [67899] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4425), 1, sym_file_descriptor, + ACTIONS(4697), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4422), 8, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [69879] = 3, + [67955] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1320), 13, + STATE(1525), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4488), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(145), 13, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, @@ -117632,11 +117512,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1322), 25, + ACTIONS(178), 24, sym_file_descriptor, - sym__concat, sym__bare_dollar, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -117648,7 +117528,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -117658,160 +117537,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [69925] = 24, + [68007] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_LPAREN, - ACTIONS(4752), 1, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4700), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4422), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4754), 1, anon_sym_DOLLAR, - ACTIONS(4756), 1, sym__special_character, - ACTIONS(4758), 1, anon_sym_DQUOTE, - ACTIONS(4760), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4766), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4768), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4774), 1, - sym_test_operator, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(4815), 1, - anon_sym_esac, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4662), 1, - sym_last_case_item, - ACTIONS(4772), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2123), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4744), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(4813), 4, - anon_sym_LF, + sym_test_operator, + [68063] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4703), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4422), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, anon_sym_AMP, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [70013] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4748), 1, - anon_sym_LPAREN, - ACTIONS(4752), 1, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4754), 1, anon_sym_DOLLAR, - ACTIONS(4756), 1, sym__special_character, - ACTIONS(4758), 1, anon_sym_DQUOTE, - ACTIONS(4760), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4766), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4768), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4774), 1, - sym_test_operator, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(4819), 1, - anon_sym_esac, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4613), 1, - sym_last_case_item, - ACTIONS(4772), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2156), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4744), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(4817), 4, - anon_sym_LF, + sym_test_operator, + [68119] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1322), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1324), 27, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + sym_test_operator, + [68167] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4706), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4422), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, anon_sym_AMP, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [70101] = 6, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [68223] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4811), 1, - aux_sym_concatenation_token1, - ACTIONS(4821), 1, - sym__concat, - STATE(1628), 1, + STATE(1524), 1, aux_sym_concatenation_repeat1, - ACTIONS(1264), 12, + ACTIONS(4488), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1225), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1266), 23, + ACTIONS(1234), 24, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -117832,10 +117776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [70153] = 3, + [68275] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1342), 13, + ACTIONS(1330), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -117849,7 +117793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1344), 25, + ACTIONS(1332), 27, sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -117870,15 +117814,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, aux_sym_concatenation_token1, sym_test_operator, - [70199] = 3, + [68323] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 13, + ACTIONS(1097), 1, + aux_sym_concatenation_token1, + ACTIONS(4709), 1, + sym__concat, + STATE(1470), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1246), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -117889,11 +117841,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1348), 25, - sym__concat, + ACTIONS(1248), 23, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -117913,293 +117866,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, sym_test_operator, - [70245] = 3, + [68377] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1298), 13, - anon_sym_EQ_EQ, + ACTIONS(1097), 1, + aux_sym_concatenation_token1, + ACTIONS(4711), 1, + sym__concat, + STATE(1470), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1252), 14, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1254), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1300), 25, + anon_sym_QMARK, + sym_test_operator, + [68431] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4376), 4, sym_file_descriptor, - sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, + ts_builtin_sym_end, + ACTIONS(4374), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [70291] = 24, + [68479] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_LPAREN, - ACTIONS(4752), 1, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4713), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4422), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4754), 1, anon_sym_DOLLAR, - ACTIONS(4756), 1, sym__special_character, - ACTIONS(4758), 1, anon_sym_DQUOTE, - ACTIONS(4760), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4766), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4768), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4774), 1, - sym_test_operator, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(4825), 1, - anon_sym_esac, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4377), 1, - sym_last_case_item, - ACTIONS(4772), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2119), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4744), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(4823), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [70379] = 24, - ACTIONS(63), 1, + sym_test_operator, + [68535] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(163), 1, - aux_sym_unary_expression_token1, - ACTIONS(316), 1, - sym_word, - ACTIONS(320), 1, - anon_sym_BANG, - ACTIONS(326), 1, - anon_sym_DOLLAR, - ACTIONS(332), 1, - aux_sym_number_token1, - ACTIONS(334), 1, - aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4716), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, sym__brace_start, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1175), 1, - anon_sym_LPAREN, - ACTIONS(1177), 1, - sym__special_character, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - ACTIONS(4827), 1, - sym_regex, - STATE(1461), 1, - aux_sym__literal_repeat1, - STATE(1994), 1, - sym__expression, - ACTIONS(1171), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1911), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1489), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [70467] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1324), 13, - anon_sym_EQ, - anon_sym_LT_LT, + ACTIONS(4422), 8, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1326), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [70513] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4748), 1, - anon_sym_LPAREN, - ACTIONS(4752), 1, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4754), 1, anon_sym_DOLLAR, - ACTIONS(4756), 1, sym__special_character, - ACTIONS(4758), 1, anon_sym_DQUOTE, - ACTIONS(4760), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4766), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4768), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4774), 1, - sym_test_operator, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(4831), 1, - anon_sym_esac, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4677), 1, - sym_last_case_item, - ACTIONS(4772), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2146), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4744), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(4829), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [70601] = 3, + sym_test_operator, + [68591] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1350), 13, + ACTIONS(1334), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -118213,7 +118077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1352), 25, + ACTIONS(1336), 27, sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -118234,148 +118098,265 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, aux_sym_concatenation_token1, sym_test_operator, - [70647] = 5, - ACTIONS(63), 1, + [68639] = 7, + ACTIONS(3), 1, sym_comment, - STATE(1616), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4833), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1274), 12, - anon_sym_LT_LT, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4719), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4422), 8, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1279), 23, + sym_test_operator, + [68695] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4425), 1, sym_file_descriptor, + ACTIONS(4722), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4422), 8, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [70697] = 3, - ACTIONS(63), 1, + [68751] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1310), 25, + ACTIONS(4425), 1, sym_file_descriptor, - sym__concat, - sym__bare_dollar, + ACTIONS(4725), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4422), 8, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [70743] = 3, - ACTIONS(63), 1, + [68807] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 13, - anon_sym_EQ_EQ, + ACTIONS(4728), 1, + sym__special_character, + STATE(1496), 1, + aux_sym__literal_repeat1, + ACTIONS(3991), 3, + sym_file_descriptor, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(3989), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1290), 25, + sym_test_operator, + [68859] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4425), 1, sym_file_descriptor, - sym__concat, - sym__bare_dollar, + ACTIONS(4730), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4422), 8, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [70789] = 4, + [68915] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4840), 1, + STATE(1547), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1097), 2, sym__concat, - ACTIONS(4838), 13, + aux_sym_concatenation_token1, + ACTIONS(1227), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -118386,10 +118367,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4836), 24, + ACTIONS(1364), 23, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -118412,14 +118394,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, sym_test_operator, - [70837] = 4, + [68967] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4846), 1, - sym__concat, - ACTIONS(4844), 13, + ACTIONS(1272), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -118433,8 +118412,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4842), 24, - anon_sym_RPAREN_RPAREN, + ACTIONS(1274), 27, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -118454,296 +118433,347 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [70885] = 6, - ACTIONS(63), 1, + [69015] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(4811), 1, - aux_sym_concatenation_token1, - ACTIONS(4848), 1, - sym__concat, - STATE(1628), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 12, - anon_sym_LT_LT, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4733), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4422), 8, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1260), 23, + sym_test_operator, + [69071] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3839), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, + ACTIONS(3837), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [70937] = 3, + [69119] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 13, - anon_sym_EQ_EQ, + ACTIONS(1326), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 25, - sym_file_descriptor, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1328), 27, sym__concat, - sym__bare_dollar, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + sym_test_operator, + [69167] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4736), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4422), 8, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [70983] = 3, - ACTIONS(63), 1, + [69223] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4739), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4422), 8, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1286), 25, + sym_test_operator, + [69279] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1244), 4, sym_file_descriptor, - sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, + ts_builtin_sym_end, + ACTIONS(1242), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [71029] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(282), 1, - aux_sym_unary_expression_token1, - ACTIONS(622), 1, - sym_word, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(631), 1, - anon_sym_BANG, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(637), 1, - anon_sym_DOLLAR, - ACTIONS(641), 1, - anon_sym_DQUOTE, - ACTIONS(645), 1, aux_sym_number_token1, - ACTIONS(647), 1, aux_sym_number_token2, - ACTIONS(649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(659), 1, - sym_test_operator, - ACTIONS(661), 1, - sym__brace_start, - ACTIONS(4850), 1, - sym__special_character, - ACTIONS(4852), 1, anon_sym_BQUOTE, - ACTIONS(4854), 1, - sym_regex, - STATE(1584), 1, - aux_sym__literal_repeat1, - STATE(2024), 1, - sym__expression, - ACTIONS(643), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(657), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1898), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1559), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [71117] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1336), 25, - sym_file_descriptor, + sym_test_operator, + [69327] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4152), 1, + aux_sym_concatenation_token1, + ACTIONS(4742), 1, sym__concat, - sym__bare_dollar, + STATE(912), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, + ACTIONS(1252), 34, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, sym_test_operator, - [71163] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1354), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1356), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [71209] = 3, + [69381] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1312), 13, + ACTIONS(1346), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -118757,7 +118787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1314), 25, + ACTIONS(1348), 27, sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -118778,190 +118808,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, aux_sym_concatenation_token1, sym_test_operator, - [71255] = 5, - ACTIONS(63), 1, + [69429] = 7, + ACTIONS(3), 1, sym_comment, - STATE(1628), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4856), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1274), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1279), 23, + ACTIONS(4425), 1, sym_file_descriptor, + ACTIONS(4744), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4422), 8, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [71305] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4748), 1, - anon_sym_LPAREN, - ACTIONS(4752), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4756), 1, - sym__special_character, - ACTIONS(4758), 1, - anon_sym_DQUOTE, - ACTIONS(4760), 1, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4766), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4768), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4774), 1, - sym_test_operator, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(4861), 1, - anon_sym_esac, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4361), 1, - sym_last_case_item, - ACTIONS(4772), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2125), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4744), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(4859), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [71393] = 3, - ACTIONS(63), 1, + sym_test_operator, + [69485] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1340), 25, + ACTIONS(4425), 1, sym_file_descriptor, - sym__concat, - sym__bare_dollar, + ACTIONS(4747), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4422), 8, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [71439] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1270), 36, - anon_sym_LF, + ACTIONS(4420), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -118978,10 +118913,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [71485] = 3, + [69541] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1288), 13, + ACTIONS(1342), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -118995,7 +118930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1290), 25, + ACTIONS(1344), 27, sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -119016,283 +118951,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, aux_sym_concatenation_token1, sym_test_operator, - [71531] = 24, + [69589] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_LPAREN, - ACTIONS(4752), 1, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4422), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 12, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4754), 1, anon_sym_DOLLAR, - ACTIONS(4756), 1, sym__special_character, - ACTIONS(4758), 1, anon_sym_DQUOTE, - ACTIONS(4760), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4766), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4768), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4774), 1, - sym_test_operator, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(4865), 1, - anon_sym_esac, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4547), 1, - sym_last_case_item, - ACTIONS(4772), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2164), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4744), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(4863), 4, - anon_sym_LF, + sym_test_operator, + [69643] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(4750), 1, + anon_sym_RPAREN, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4422), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4420), 11, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, anon_sym_AMP, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [71619] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4748), 1, - anon_sym_LPAREN, - ACTIONS(4752), 1, + ACTIONS(3236), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4754), 1, anon_sym_DOLLAR, - ACTIONS(4756), 1, sym__special_character, - ACTIONS(4758), 1, anon_sym_DQUOTE, - ACTIONS(4760), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4766), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4768), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4774), 1, - sym_test_operator, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(4869), 1, - anon_sym_esac, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4548), 1, - sym_last_case_item, - ACTIONS(4772), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2162), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4744), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(4867), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [71707] = 6, - ACTIONS(63), 1, + sym_test_operator, + [69699] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(4793), 1, + ACTIONS(4152), 1, aux_sym_concatenation_token1, - ACTIONS(4871), 1, + ACTIONS(4753), 1, sym__concat, - STATE(1616), 1, + STATE(912), 1, aux_sym_concatenation_repeat1, - ACTIONS(1258), 12, + ACTIONS(1248), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(1246), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1260), 23, + sym_test_operator, + [69753] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4340), 1, + aux_sym_concatenation_token1, + ACTIONS(4342), 1, + sym__concat, + STATE(1596), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4038), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, + ACTIONS(4036), 34, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, sym_test_operator, - [71759] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1308), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1310), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [71805] = 24, + [69806] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(637), 1, + ACTIONS(611), 1, anon_sym_DOLLAR, - ACTIONS(641), 1, + ACTIONS(615), 1, anon_sym_DQUOTE, - ACTIONS(645), 1, + ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(647), 1, + ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(649), 1, + ACTIONS(623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, + ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, + ACTIONS(629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(661), 1, + ACTIONS(635), 1, sym__brace_start, - ACTIONS(1127), 1, + ACTIONS(1113), 1, sym_word, - ACTIONS(1129), 1, + ACTIONS(1115), 1, anon_sym_LPAREN, - ACTIONS(1131), 1, + ACTIONS(1117), 1, anon_sym_BANG, - ACTIONS(1135), 1, + ACTIONS(1121), 1, aux_sym_unary_expression_token1, - ACTIONS(1143), 1, + ACTIONS(1129), 1, sym_test_operator, - ACTIONS(4852), 1, - anon_sym_BQUOTE, - ACTIONS(4873), 1, + ACTIONS(4755), 1, sym__special_character, - ACTIONS(4875), 1, - sym_regex, - STATE(1533), 1, + ACTIONS(4757), 1, + anon_sym_BQUOTE, + ACTIONS(4759), 1, + sym__regex_no_space, + STATE(1641), 1, aux_sym__literal_repeat1, - STATE(1740), 1, + STATE(1929), 1, sym__expression, - ACTIONS(657), 2, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1141), 2, + ACTIONS(1127), 2, sym_raw_string, sym_ansi_c_string, - STATE(1698), 6, + STATE(1978), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1455), 9, + STATE(1584), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -119302,12 +119215,15 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [71893] = 4, + [69895] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4881), 1, + STATE(1926), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1155), 2, sym__concat, - ACTIONS(4879), 13, + aux_sym_concatenation_token1, + ACTIONS(1242), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -119321,8 +119237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4877), 24, - anon_sym_RPAREN_RPAREN, + ACTIONS(1244), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -119344,539 +119259,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, + sym__special_character, sym_test_operator, - [71941] = 3, - ACTIONS(63), 1, + [69946] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1344), 25, - sym_file_descriptor, + ACTIONS(4324), 1, + aux_sym_concatenation_token1, + ACTIONS(4326), 1, sym__concat, - sym__bare_dollar, + STATE(1662), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, + ACTIONS(1242), 33, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [71987] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1348), 25, - sym_file_descriptor, + sym_test_operator, + [69999] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4324), 1, + aux_sym_concatenation_token1, + ACTIONS(4326), 1, sym__concat, - sym__bare_dollar, + STATE(1662), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3843), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, + ACTIONS(3841), 33, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [72033] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1328), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1330), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [72079] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4748), 1, - anon_sym_LPAREN, - ACTIONS(4752), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4756), 1, - sym__special_character, - ACTIONS(4758), 1, - anon_sym_DQUOTE, - ACTIONS(4760), 1, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4766), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4768), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4774), 1, - sym_test_operator, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(4885), 1, - anon_sym_esac, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4563), 1, - sym_last_case_item, - ACTIONS(4772), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2160), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4744), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(4883), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [72167] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1274), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1279), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, sym_test_operator, - [72213] = 3, - ACTIONS(63), 1, + [70052] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1304), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + ACTIONS(4324), 1, aux_sym_concatenation_token1, - sym_test_operator, - [72259] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1668), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4793), 2, + ACTIONS(4326), 1, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1270), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1272), 23, + STATE(1660), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3839), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, + ACTIONS(3837), 33, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [72309] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4748), 1, - anon_sym_LPAREN, - ACTIONS(4752), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4754), 1, anon_sym_DOLLAR, - ACTIONS(4756), 1, sym__special_character, - ACTIONS(4758), 1, anon_sym_DQUOTE, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4764), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4768), 1, - anon_sym_BQUOTE, - ACTIONS(4770), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4774), 1, - sym_test_operator, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(4889), 1, - anon_sym_esac, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4568), 1, - sym_last_case_item, - ACTIONS(4772), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2159), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4744), 3, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(4887), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [72397] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4748), 1, - anon_sym_LPAREN, - ACTIONS(4752), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4756), 1, - sym__special_character, - ACTIONS(4758), 1, - anon_sym_DQUOTE, - ACTIONS(4760), 1, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4766), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4768), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4774), 1, - sym_test_operator, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(4893), 1, - anon_sym_esac, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4702), 1, - sym_last_case_item, - ACTIONS(4772), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2134), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4744), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(4891), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [72485] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4899), 1, - sym__concat, - ACTIONS(4897), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4895), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, sym_test_operator, - [72533] = 7, + [70105] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4903), 1, - anon_sym_DQUOTE, - STATE(2348), 1, - sym_string, - ACTIONS(4905), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1221), 3, + ACTIONS(4324), 1, + aux_sym_concatenation_token1, + ACTIONS(4326), 1, + sym__concat, + STATE(1662), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3991), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(4901), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 22, + ACTIONS(3989), 33, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -119889,73 +119449,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [72587] = 5, - ACTIONS(63), 1, + [70158] = 6, + ACTIONS(3), 1, sym_comment, - STATE(1607), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4811), 2, - sym__concat, + ACTIONS(4324), 1, aux_sym_concatenation_token1, - ACTIONS(3787), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(3789), 23, + ACTIONS(4326), 1, + sym__concat, + STATE(1660), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3987), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, + ACTIONS(3985), 33, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [72637] = 3, + [70211] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1312), 13, - anon_sym_EQ_EQ, + STATE(1695), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4761), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3837), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1314), 25, + ACTIONS(3839), 24, sym_file_descriptor, - sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -119967,7 +119533,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -119977,15 +119542,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [72683] = 5, + [70262] = 5, ACTIONS(63), 1, sym_comment, - STATE(1621), 1, + STATE(1696), 1, aux_sym_concatenation_repeat1, - ACTIONS(4811), 2, + ACTIONS(4761), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(3783), 12, + ACTIONS(3841), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -119998,10 +119563,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(3785), 23, + ACTIONS(3843), 24, sym_file_descriptor, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -120022,10 +119588,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [72733] = 3, + [70313] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 14, + STATE(1668), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1155), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1227), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120039,9 +119610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - sym__special_character, - ACTIONS(1272), 24, - sym__concat, + ACTIONS(1364), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -120061,14 +119630,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [72779] = 3, + [70364] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 14, + ACTIONS(1123), 1, + aux_sym_concatenation_token1, + STATE(1595), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1227), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120079,12 +119652,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1272), 24, - anon_sym_RPAREN_RPAREN, + ACTIONS(1364), 24, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -120104,61 +119676,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym__special_character, - sym_test_operator, - [72825] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4903), 1, - anon_sym_DQUOTE, - STATE(2348), 1, - sym_string, - ACTIONS(4905), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(4901), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 22, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [72879] = 3, + [70415] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1316), 13, + ACTIONS(1133), 1, + anon_sym_RBRACK, + ACTIONS(4763), 1, + sym__special_character, + ACTIONS(4765), 1, + sym__concat, + STATE(1600), 1, + aux_sym__literal_repeat1, + ACTIONS(143), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120172,8 +119705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1318), 25, - sym__concat, + ACTIONS(600), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -120193,15 +119725,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, sym_test_operator, - [72925] = 3, + [70470] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1298), 13, + ACTIONS(4767), 1, + sym__special_character, + STATE(1664), 1, + aux_sym__literal_repeat1, + ACTIONS(143), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120215,8 +119749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1300), 25, - sym__concat, + ACTIONS(600), 24, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -120236,15 +119769,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, + anon_sym_COLON, sym_test_operator, - [72971] = 3, + [70521] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 13, + ACTIONS(1123), 1, + aux_sym_concatenation_token1, + ACTIONS(4769), 1, + anon_sym_RBRACK, + ACTIONS(4771), 1, + sym__concat, + STATE(1595), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1227), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120258,7 +119799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1272), 25, + ACTIONS(1364), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -120278,21 +119819,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - sym__special_character, sym_test_operator, - [73017] = 5, + [70576] = 5, ACTIONS(63), 1, sym_comment, - STATE(1607), 1, + STATE(1695), 1, aux_sym_concatenation_repeat1, - ACTIONS(4811), 2, + ACTIONS(4761), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(3844), 12, + ACTIONS(3781), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -120305,10 +119843,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(3846), 23, + ACTIONS(3783), 24, sym_file_descriptor, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -120329,73 +119868,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [73067] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4907), 1, - sym__special_character, - STATE(1667), 1, - aux_sym__literal_repeat1, - ACTIONS(197), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(624), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [73117] = 3, + [70627] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1350), 13, - anon_sym_EQ_EQ, + STATE(1696), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4761), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3777), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1352), 25, + ACTIONS(3779), 24, sym_file_descriptor, - sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -120407,7 +119905,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -120417,15 +119914,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [73163] = 5, + [70678] = 4, ACTIONS(63), 1, sym_comment, - STATE(1600), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1159), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1243), 13, + ACTIONS(4777), 1, + anon_sym_LBRACK, + ACTIONS(4775), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120439,7 +119933,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1372), 22, + ACTIONS(4773), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -120461,105 +119957,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [73213] = 3, - ACTIONS(63), 1, + [70727] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1356), 25, + ACTIONS(1244), 2, sym_file_descriptor, - sym__concat, - sym__bare_dollar, sym__brace_start, + ACTIONS(1242), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [73259] = 24, - ACTIONS(3), 1, + [70774] = 24, + ACTIONS(63), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(192), 1, + aux_sym_unary_expression_token1, + ACTIONS(230), 1, + sym_word, + ACTIONS(234), 1, anon_sym_LPAREN, - ACTIONS(4752), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4754), 1, + ACTIONS(236), 1, + anon_sym_BANG, + ACTIONS(240), 1, anon_sym_DOLLAR, - ACTIONS(4756), 1, - sym__special_character, - ACTIONS(4758), 1, - anon_sym_DQUOTE, - ACTIONS(4760), 1, + ACTIONS(246), 1, aux_sym_number_token1, - ACTIONS(4762), 1, + ACTIONS(248), 1, aux_sym_number_token2, - ACTIONS(4764), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4766), 1, + ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4768), 1, - anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4774), 1, + ACTIONS(1187), 1, + sym__special_character, + ACTIONS(1191), 1, sym_test_operator, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(4911), 1, - anon_sym_esac, - STATE(3918), 1, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + ACTIONS(4781), 1, + sym__regex_no_space, + STATE(1586), 1, aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4684), 1, - sym_last_case_item, - ACTIONS(4772), 2, + STATE(2080), 1, + sym__expression, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2153), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4744), 3, + ACTIONS(1189), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(4909), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(3902), 9, + STATE(2117), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1593), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -120569,123 +120068,109 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [73347] = 5, + [70863] = 5, ACTIONS(63), 1, sym_comment, - STATE(1621), 1, + STATE(1630), 1, aux_sym_concatenation_repeat1, - ACTIONS(4811), 2, + ACTIONS(1155), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(3840), 12, + ACTIONS(1227), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(3842), 23, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1364), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [73397] = 24, - ACTIONS(3), 1, + [70914] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_LPAREN, - ACTIONS(4752), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4756), 1, - sym__special_character, - ACTIONS(4758), 1, - anon_sym_DQUOTE, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4764), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4768), 1, - anon_sym_BQUOTE, - ACTIONS(4770), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4774), 1, - sym_test_operator, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(4915), 1, - anon_sym_esac, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4663), 1, - sym_last_case_item, - ACTIONS(4772), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2152), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4744), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(4913), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1123), 1, + aux_sym_concatenation_token1, + ACTIONS(4783), 1, + sym__concat, + STATE(1602), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1246), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [73485] = 5, + anon_sym_CARET, + ACTIONS(1248), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [70967] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(4917), 1, - sym__special_character, - STATE(1667), 1, - aux_sym__literal_repeat1, - ACTIONS(1358), 13, + ACTIONS(1123), 1, + aux_sym_concatenation_token1, + ACTIONS(4785), 1, + sym__concat, + STATE(1602), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1252), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120699,7 +120184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1363), 23, + ACTIONS(1254), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -120719,132 +120204,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [73535] = 6, - ACTIONS(63), 1, + [71020] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(4793), 1, + ACTIONS(4340), 1, aux_sym_concatenation_token1, - ACTIONS(4920), 1, + ACTIONS(4787), 1, sym__concat, - STATE(1616), 1, + STATE(1185), 1, aux_sym_concatenation_repeat1, - ACTIONS(1264), 12, + ACTIONS(1254), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(1252), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1266), 23, + sym_test_operator, + [71073] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4340), 1, + aux_sym_concatenation_token1, + ACTIONS(4789), 1, + sym__concat, + STATE(1185), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, + ACTIONS(1246), 34, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, sym_test_operator, - [73587] = 23, + [71126] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(163), 1, - aux_sym_unary_expression_token1, - ACTIONS(316), 1, - sym_word, - ACTIONS(320), 1, - anon_sym_BANG, - ACTIONS(326), 1, - anon_sym_DOLLAR, - ACTIONS(332), 1, - aux_sym_number_token1, - ACTIONS(334), 1, - aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, - sym__brace_start, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1175), 1, - anon_sym_LPAREN, - ACTIONS(1177), 1, + ACTIONS(4791), 1, sym__special_character, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - STATE(1461), 1, + STATE(1598), 1, aux_sym__literal_repeat1, - STATE(1978), 1, - sym__expression, - ACTIONS(1171), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1911), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1489), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [73672] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4928), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4924), 5, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(4922), 13, + ACTIONS(1352), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120855,10 +120320,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4926), 16, + ACTIONS(1357), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120869,144 +120338,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [73721] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(326), 1, - anon_sym_DOLLAR, - ACTIONS(332), 1, - aux_sym_number_token1, - ACTIONS(334), 1, - aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1191), 1, - sym_word, - ACTIONS(1193), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - aux_sym_unary_expression_token1, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - STATE(1461), 1, - aux_sym__literal_repeat1, - STATE(2018), 1, - sym__expression, - ACTIONS(1171), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1453), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [73806] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(282), 1, - aux_sym_unary_expression_token1, - ACTIONS(622), 1, - sym_word, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(631), 1, - anon_sym_BANG, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(637), 1, - anon_sym_DOLLAR, - ACTIONS(641), 1, - anon_sym_DQUOTE, - ACTIONS(645), 1, - aux_sym_number_token1, - ACTIONS(647), 1, - aux_sym_number_token2, - ACTIONS(649), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(659), 1, - sym_test_operator, - ACTIONS(661), 1, - sym__brace_start, - ACTIONS(4850), 1, - sym__special_character, - ACTIONS(4852), 1, - anon_sym_BQUOTE, - STATE(1584), 1, - aux_sym__literal_repeat1, - STATE(2024), 1, - sym__expression, - ACTIONS(643), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(657), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1898), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1559), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [73891] = 5, + [71177] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4576), 1, - anon_sym_RBRACK, - ACTIONS(4930), 1, + STATE(1612), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1155), 2, sym__concat, - ACTIONS(1243), 13, + aux_sym_concatenation_token1, + ACTIONS(1227), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121020,7 +120370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1372), 22, + ACTIONS(1364), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -121040,13 +120390,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [73940] = 3, + [71228] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4897), 13, + ACTIONS(4794), 1, + sym__special_character, + STATE(1600), 1, + aux_sym__literal_repeat1, + ACTIONS(1352), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121060,8 +120415,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4895), 24, - anon_sym_RPAREN_RPAREN, + ACTIONS(1357), 24, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -121081,14 +120436,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, sym_test_operator, - [73985] = 3, + [71279] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4934), 13, + ACTIONS(4801), 1, + sym__concat, + ACTIONS(4799), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121102,8 +120459,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4932), 24, + ACTIONS(4797), 25, anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -121127,186 +120485,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, sym_test_operator, - [74030] = 5, + [71328] = 5, ACTIONS(63), 1, sym_comment, - STATE(1684), 1, + STATE(1602), 1, aux_sym_concatenation_repeat1, - ACTIONS(4936), 2, + ACTIONS(4803), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1270), 12, + ACTIONS(1258), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1272), 22, - sym_file_descriptor, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [74079] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1689), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4938), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1270), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1272), 23, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1263), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [74128] = 5, + [71379] = 7, ACTIONS(63), 1, sym_comment, - STATE(1689), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4938), 2, - sym__concat, + ACTIONS(1123), 1, aux_sym_concatenation_token1, - ACTIONS(3787), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3789), 23, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [74177] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1688), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4938), 2, + ACTIONS(4806), 1, + anon_sym_RBRACK, + ACTIONS(4808), 1, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3783), 11, + STATE(1595), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1227), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3785), 23, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1364), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [74226] = 3, + [71434] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(4942), 13, + ACTIONS(1183), 1, + anon_sym_RBRACK, + ACTIONS(4763), 1, + sym__special_character, + ACTIONS(4810), 1, + sym__concat, + STATE(1600), 1, + aux_sym__literal_repeat1, + ACTIONS(143), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121320,8 +120604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4940), 24, - anon_sym_RPAREN_RPAREN, + ACTIONS(600), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -121343,12 +120626,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, sym_test_operator, - [74271] = 3, + [71489] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4879), 13, + ACTIONS(1284), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121359,10 +120641,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4877), 24, + ACTIONS(1286), 25, + sym__concat, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -121385,283 +120669,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [74316] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1682), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4944), 2, - sym__concat, aux_sym_concatenation_token1, - ACTIONS(1274), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1279), 22, - sym_file_descriptor, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_test_operator, - [74365] = 6, + [71536] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(1097), 1, aux_sym_concatenation_token1, - ACTIONS(4947), 1, + ACTIONS(4812), 1, sym__concat, - STATE(1682), 1, + STATE(1470), 1, aux_sym_concatenation_repeat1, - ACTIONS(1258), 12, + ACTIONS(1246), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1260), 22, - sym_file_descriptor, - sym__brace_start, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1248), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [74416] = 6, + [71589] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(1097), 1, aux_sym_concatenation_token1, - ACTIONS(4949), 1, + ACTIONS(4814), 1, sym__concat, - STATE(1682), 1, + STATE(1470), 1, aux_sym_concatenation_repeat1, - ACTIONS(1264), 12, + ACTIONS(1252), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1266), 22, - sym_file_descriptor, - sym__brace_start, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1254), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [74467] = 5, - ACTIONS(63), 1, + [71642] = 24, + ACTIONS(3), 1, sym_comment, - ACTIONS(4951), 1, - sym__special_character, - STATE(1816), 1, - aux_sym__literal_repeat1, - ACTIONS(3412), 12, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4824), 1, + anon_sym_esac, + ACTIONS(4826), 1, anon_sym_DOLLAR, + ACTIONS(4828), 1, + sym__special_character, + ACTIONS(4830), 1, + anon_sym_DQUOTE, + ACTIONS(4832), 1, aux_sym_number_token1, + ACTIONS(4834), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3414), 23, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4836), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4838), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4840), 1, anon_sym_BQUOTE, + ACTIONS(4842), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(4846), 1, sym_test_operator, - [74516] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1686), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4953), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1274), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1279), 23, - sym_file_descriptor, - sym_variable_name, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + STATE(4057), 1, + aux_sym__literal_repeat1, + STATE(4183), 1, + sym_concatenation, + STATE(4583), 1, + sym_last_case_item, + ACTIONS(4818), 2, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(4844), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [74565] = 23, - ACTIONS(63), 1, + STATE(2237), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4816), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(4820), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(4027), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [71731] = 24, + ACTIONS(3), 1, sym_comment, - ACTIONS(326), 1, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(332), 1, + ACTIONS(4828), 1, + sym__special_character, + ACTIONS(4830), 1, + anon_sym_DQUOTE, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(334), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, + ACTIONS(4836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, + ACTIONS(4838), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4840), 1, + anon_sym_BQUOTE, + ACTIONS(4842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1191), 1, - sym_word, - ACTIONS(1193), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - aux_sym_unary_expression_token1, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, + ACTIONS(4846), 1, sym_test_operator, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - STATE(1461), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(4854), 1, + anon_sym_esac, + STATE(4057), 1, aux_sym__literal_repeat1, - STATE(2013), 1, - sym__expression, - ACTIONS(1171), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4866), 1, + sym_last_case_item, + ACTIONS(4818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4844), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1199), 2, + STATE(2191), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4816), 3, sym_raw_string, sym_ansi_c_string, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1453), 9, + sym_word, + ACTIONS(4852), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -121671,102 +120895,104 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [74650] = 6, + [71820] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4938), 1, - aux_sym_concatenation_token1, - ACTIONS(4956), 1, - sym__concat, - STATE(1686), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 11, + ACTIONS(1338), 14, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1260), 23, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1340), 25, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [74701] = 6, + [71867] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4938), 1, - aux_sym_concatenation_token1, - ACTIONS(4958), 1, - sym__concat, - STATE(1686), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1264), 11, + ACTIONS(1258), 14, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1266), 23, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1263), 25, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [74752] = 4, + [71914] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(4960), 1, + ACTIONS(1155), 1, + aux_sym_concatenation_token1, + ACTIONS(4856), 1, sym__concat, - ACTIONS(4897), 13, + STATE(1416), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1252), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121780,7 +121006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4895), 23, + ACTIONS(1254), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -121800,107 +121026,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [74799] = 5, + [71967] = 24, ACTIONS(63), 1, sym_comment, - STATE(1781), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4962), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4021), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, anon_sym_DOLLAR, + ACTIONS(246), 1, aux_sym_number_token1, + ACTIONS(248), 1, aux_sym_number_token2, + ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(4023), 22, - sym_file_descriptor, + ACTIONS(264), 1, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + ACTIONS(1159), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1163), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [74848] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(163), 1, - aux_sym_unary_expression_token1, - ACTIONS(316), 1, + ACTIONS(1193), 1, sym_word, - ACTIONS(320), 1, + ACTIONS(1195), 1, anon_sym_BANG, - ACTIONS(326), 1, - anon_sym_DOLLAR, - ACTIONS(332), 1, - aux_sym_number_token1, - ACTIONS(334), 1, - aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, - sym__brace_start, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1175), 1, - anon_sym_LPAREN, - ACTIONS(1177), 1, + ACTIONS(1197), 1, + aux_sym_unary_expression_token1, + ACTIONS(1199), 1, sym__special_character, - ACTIONS(1181), 1, + ACTIONS(1203), 1, sym_test_operator, - ACTIONS(4799), 1, + ACTIONS(4779), 1, anon_sym_BQUOTE, - STATE(1461), 1, + ACTIONS(4858), 1, + sym__regex_no_space, + STATE(1586), 1, aux_sym__literal_repeat1, - STATE(1914), 1, + STATE(1629), 1, sym__expression, - ACTIONS(1171), 2, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1179), 2, + ACTIONS(1201), 2, sym_raw_string, sym_ansi_c_string, - STATE(1911), 6, + STATE(1623), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1489), 9, + STATE(1711), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -121910,98 +121095,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [74933] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1783), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4962), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4027), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(4029), 22, - sym_file_descriptor, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [74982] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1298), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1300), 25, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [75027] = 4, + [72056] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4964), 1, - sym__concat, - ACTIONS(4879), 13, + ACTIONS(1276), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122012,10 +121109,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4877), 23, + ACTIONS(1278), 25, + sym__concat, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -122035,63 +121135,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [75074] = 23, + [72103] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(282), 1, + ACTIONS(302), 1, aux_sym_unary_expression_token1, - ACTIONS(622), 1, + ACTIONS(596), 1, sym_word, - ACTIONS(629), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(631), 1, + ACTIONS(607), 1, anon_sym_BANG, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(637), 1, + ACTIONS(611), 1, anon_sym_DOLLAR, - ACTIONS(641), 1, + ACTIONS(615), 1, anon_sym_DQUOTE, - ACTIONS(645), 1, + ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(647), 1, + ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(649), 1, + ACTIONS(623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, + ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, + ACTIONS(629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(659), 1, + ACTIONS(633), 1, sym_test_operator, - ACTIONS(661), 1, + ACTIONS(635), 1, sym__brace_start, - ACTIONS(4850), 1, - sym__special_character, - ACTIONS(4852), 1, + ACTIONS(4757), 1, anon_sym_BQUOTE, - STATE(1584), 1, + ACTIONS(4860), 1, + sym__special_character, + ACTIONS(4862), 1, + sym__regex_no_space, + STATE(1923), 1, aux_sym__literal_repeat1, - STATE(2012), 1, + STATE(2093), 1, sym__expression, - ACTIONS(643), 2, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(617), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(657), 2, + ACTIONS(631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1898), 6, + STATE(2073), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1559), 9, + STATE(1635), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -122101,10 +121204,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [75159] = 3, + [72192] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4968), 13, + ACTIONS(1280), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122115,10 +121218,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4966), 24, + ACTIONS(1282), 25, + sym__concat, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -122141,12 +121246,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [75204] = 3, + [72239] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1243), 13, + ACTIONS(4868), 1, + sym__concat, + ACTIONS(4866), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122160,8 +121267,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1372), 24, - sym__concat, + ACTIONS(4864), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -122181,86 +121289,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [75249] = 23, - ACTIONS(63), 1, + [72288] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(163), 1, - aux_sym_unary_expression_token1, - ACTIONS(316), 1, - sym_word, - ACTIONS(320), 1, - anon_sym_BANG, - ACTIONS(326), 1, - anon_sym_DOLLAR, - ACTIONS(332), 1, - aux_sym_number_token1, - ACTIONS(334), 1, - aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, + ACTIONS(4425), 1, + sym_file_descriptor, + ACTIONS(3248), 2, + sym_variable_name, sym__brace_start, - ACTIONS(1157), 1, + ACTIONS(4422), 9, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_BQUOTE, + ACTIONS(4420), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3236), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1167), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1175), 1, - anon_sym_LPAREN, - ACTIONS(1177), 1, - sym__special_character, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - STATE(1461), 1, - aux_sym__literal_repeat1, - STATE(1836), 1, - sym__expression, - ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1911), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1489), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [75334] = 5, + sym_word, + sym_test_operator, + [72341] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(4928), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4924), 5, + ACTIONS(1155), 1, + aux_sym_concatenation_token1, + ACTIONS(4870), 1, sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(4922), 13, + STATE(1416), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1246), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122274,7 +121363,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4926), 16, + ACTIONS(1248), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122285,16 +121376,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [75383] = 3, + [72394] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1302), 12, + STATE(1694), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4872), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3985), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -122307,11 +121408,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1304), 25, + ACTIONS(3987), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -122324,7 +121425,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -122333,10 +121433,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [75428] = 3, + [72445] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, + anon_sym_DOLLAR, + ACTIONS(4828), 1, + sym__special_character, + ACTIONS(4830), 1, + anon_sym_DQUOTE, + ACTIONS(4832), 1, + aux_sym_number_token1, + ACTIONS(4834), 1, + aux_sym_number_token2, + ACTIONS(4836), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4838), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4840), 1, + anon_sym_BQUOTE, + ACTIONS(4842), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4846), 1, + sym_test_operator, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(4876), 1, + anon_sym_esac, + STATE(4057), 1, + aux_sym__literal_repeat1, + STATE(4183), 1, + sym_concatenation, + STATE(4419), 1, + sym_last_case_item, + ACTIONS(4818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4844), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2214), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4816), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(4874), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(4027), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [72534] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1274), 12, + STATE(1692), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4872), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3989), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -122349,11 +121519,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1279), 25, + ACTIONS(3991), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -122366,7 +121536,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -122375,16 +121544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [75473] = 4, + [72585] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4970), 5, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - ACTIONS(4972), 13, + ACTIONS(1227), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122395,10 +121558,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(1364), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122416,18 +121583,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [75520] = 4, + [72632] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4970), 5, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - ACTIONS(4972), 13, + ACTIONS(1322), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1324), 26, + sym_file_descriptor, + sym__concat, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [72679] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1298), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122438,10 +121646,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(1300), 25, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122460,60 +121673,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [75567] = 23, + [72726] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(163), 1, - aux_sym_unary_expression_token1, - ACTIONS(316), 1, - sym_word, - ACTIONS(320), 1, - anon_sym_BANG, - ACTIONS(326), 1, + ACTIONS(1155), 1, + aux_sym_concatenation_token1, + ACTIONS(4878), 1, + sym__concat, + STATE(1416), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1246), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1248), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [72779] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(332), 1, + ACTIONS(4828), 1, + sym__special_character, + ACTIONS(4830), 1, + anon_sym_DQUOTE, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(334), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, - sym__brace_start, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, + ACTIONS(4836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, + ACTIONS(4838), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4840), 1, + anon_sym_BQUOTE, + ACTIONS(4842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1175), 1, - anon_sym_LPAREN, - ACTIONS(1177), 1, - sym__special_character, - ACTIONS(1181), 1, + ACTIONS(4846), 1, sym_test_operator, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - STATE(1461), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(4882), 1, + anon_sym_esac, + STATE(4057), 1, aux_sym__literal_repeat1, - STATE(1994), 1, - sym__expression, - ACTIONS(1171), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4422), 1, + sym_last_case_item, + ACTIONS(4818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4844), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1179), 2, + STATE(2210), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4816), 3, sym_raw_string, sym_ansi_c_string, - STATE(1911), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1489), 9, + sym_word, + ACTIONS(4880), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -122523,10 +121788,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [75652] = 3, + [72868] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4978), 13, + ACTIONS(4886), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122537,10 +121802,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4976), 24, + ACTIONS(4884), 25, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -122561,16 +121827,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, sym_test_operator, - [75697] = 4, + [72915] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4980), 1, - sym__concat, - ACTIONS(4844), 13, + ACTIONS(4886), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122581,10 +121846,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4842), 23, + ACTIONS(4884), 25, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -122604,16 +121871,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [75744] = 4, + [72962] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(4982), 1, + ACTIONS(1155), 1, + aux_sym_concatenation_token1, + ACTIONS(4888), 1, sym__concat, - ACTIONS(4838), 13, + STATE(1416), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1252), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122627,7 +121899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4836), 23, + ACTIONS(1254), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -122651,79 +121923,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [75791] = 8, + [73015] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4984), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4994), 1, - anon_sym_RPAREN, - ACTIONS(4996), 1, - anon_sym_QMARK, - ACTIONS(4988), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4992), 3, + ACTIONS(1330), 13, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4986), 13, - anon_sym_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4990), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1332), 26, + sym_file_descriptor, + sym__concat, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [75846] = 3, + [73062] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1308), 12, + ACTIONS(1334), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 25, + ACTIONS(1336), 26, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -122732,6 +122002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -122740,10 +122011,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [75891] = 3, + [73109] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5000), 13, + ACTIONS(4892), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122754,10 +122025,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4998), 24, + ACTIONS(4890), 25, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -122778,14 +122050,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, sym_test_operator, - [75936] = 3, + [73156] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5004), 13, + ACTIONS(1310), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122796,10 +122069,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5002), 24, + ACTIONS(1312), 25, + sym__concat, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -122822,282 +122097,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [75981] = 23, + [73203] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(326), 1, - anon_sym_DOLLAR, - ACTIONS(332), 1, - aux_sym_number_token1, - ACTIONS(334), 1, - aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1191), 1, - sym_word, - ACTIONS(1193), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - aux_sym_unary_expression_token1, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, + STATE(1651), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1123), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1227), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1364), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - STATE(1461), 1, - aux_sym__literal_repeat1, - STATE(1864), 1, - sym__expression, - ACTIONS(1171), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1453), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [76066] = 23, + [73254] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(326), 1, - anon_sym_DOLLAR, - ACTIONS(332), 1, - aux_sym_number_token1, - ACTIONS(334), 1, - aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1151), 1, - sym_word, - ACTIONS(1153), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1173), 1, - sym_test_operator, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - ACTIONS(4805), 1, + ACTIONS(4894), 1, sym__special_character, - STATE(1478), 1, - sym__expression, - STATE(1660), 1, + STATE(1598), 1, aux_sym__literal_repeat1, - ACTIONS(1165), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1171), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1438), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [76151] = 23, + ACTIONS(143), 14, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(600), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [73305] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(326), 1, - anon_sym_DOLLAR, - ACTIONS(332), 1, - aux_sym_number_token1, - ACTIONS(334), 1, - aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, + STATE(1607), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1097), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1227), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1364), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [73356] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1244), 3, + sym_file_descriptor, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1157), 1, + ts_builtin_sym_end, + ACTIONS(1242), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1191), 1, - sym_word, - ACTIONS(1193), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - aux_sym_unary_expression_token1, - ACTIONS(1197), 1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - STATE(1461), 1, - aux_sym__literal_repeat1, - STATE(1831), 1, - sym__expression, - ACTIONS(1171), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1199), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1453), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [76236] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(326), 1, - anon_sym_DOLLAR, - ACTIONS(332), 1, aux_sym_number_token1, - ACTIONS(334), 1, aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1223), 1, - sym_word, - ACTIONS(1225), 1, - anon_sym_BANG, - ACTIONS(1227), 1, - aux_sym_unary_expression_token1, - ACTIONS(1229), 1, - sym__special_character, - ACTIONS(1233), 1, - sym_test_operator, - ACTIONS(4799), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - STATE(1461), 1, - aux_sym__literal_repeat1, - STATE(2049), 1, - sym__expression, - ACTIONS(1171), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1231), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1662), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [76321] = 3, + sym_word, + sym_test_operator, + [73403] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1312), 12, + ACTIONS(1272), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1314), 25, + ACTIONS(1274), 26, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -123106,6 +122316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -123114,122 +122325,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [76366] = 24, + [73450] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(637), 1, - anon_sym_DOLLAR, - ACTIONS(641), 1, - anon_sym_DQUOTE, - ACTIONS(645), 1, - aux_sym_number_token1, - ACTIONS(647), 1, - aux_sym_number_token2, - ACTIONS(649), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(661), 1, - sym__brace_start, - ACTIONS(1129), 1, - anon_sym_LPAREN, - ACTIONS(1131), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - aux_sym_unary_expression_token1, - ACTIONS(4852), 1, - anon_sym_BQUOTE, - ACTIONS(4873), 1, - sym__special_character, - ACTIONS(5006), 1, - sym_word, - ACTIONS(5010), 1, + ACTIONS(4898), 14, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4896), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - STATE(1537), 1, + [73497] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4763), 1, + sym__special_character, + STATE(1600), 1, aux_sym__literal_repeat1, - STATE(2059), 1, - sym__expression, - ACTIONS(657), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5008), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1557), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(1811), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1522), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [76453] = 23, + ACTIONS(143), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(600), 24, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [73548] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(326), 1, + ACTIONS(131), 1, + aux_sym_unary_expression_token1, + ACTIONS(139), 1, + sym_word, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(152), 1, + anon_sym_BANG, + ACTIONS(156), 1, anon_sym_DOLLAR, - ACTIONS(332), 1, + ACTIONS(162), 1, aux_sym_number_token1, - ACTIONS(334), 1, + ACTIONS(164), 1, aux_sym_number_token2, - ACTIONS(338), 1, + ACTIONS(168), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, + ACTIONS(182), 1, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1151), 1, - sym_word, - ACTIONS(1153), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1101), 1, anon_sym_DQUOTE, - ACTIONS(1167), 1, + ACTIONS(1105), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1173), 1, + ACTIONS(1141), 1, + sym__special_character, + ACTIONS(1145), 1, sym_test_operator, - ACTIONS(4799), 1, + ACTIONS(4858), 1, + sym__regex_no_space, + ACTIONS(4900), 1, anon_sym_BQUOTE, - ACTIONS(4805), 1, - sym__special_character, - STATE(1660), 1, - aux_sym__literal_repeat1, - STATE(1847), 1, + STATE(1629), 1, sym__expression, - ACTIONS(1165), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1171), 2, + STATE(1636), 1, + aux_sym__literal_repeat1, + ACTIONS(1095), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1557), 6, + ACTIONS(1143), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1623), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1438), 9, + STATE(1637), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -123239,59 +122480,62 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [76538] = 23, + [73637] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(326), 1, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, anon_sym_DOLLAR, - ACTIONS(332), 1, + ACTIONS(246), 1, aux_sym_number_token1, - ACTIONS(334), 1, + ACTIONS(248), 1, aux_sym_number_token2, - ACTIONS(338), 1, + ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, + ACTIONS(264), 1, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1159), 1, anon_sym_DQUOTE, - ACTIONS(1167), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, + ACTIONS(1165), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1191), 1, + ACTIONS(1171), 1, sym_word, - ACTIONS(1193), 1, + ACTIONS(1173), 1, anon_sym_BANG, - ACTIONS(1195), 1, + ACTIONS(1175), 1, aux_sym_unary_expression_token1, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, + ACTIONS(1181), 1, sym_test_operator, - ACTIONS(4799), 1, + ACTIONS(4779), 1, anon_sym_BQUOTE, - STATE(1461), 1, - aux_sym__literal_repeat1, - STATE(1982), 1, + ACTIONS(4858), 1, + sym__regex_no_space, + ACTIONS(4902), 1, + sym__special_character, + STATE(1629), 1, sym__expression, - ACTIONS(1171), 2, + STATE(1831), 1, + aux_sym__literal_repeat1, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1199), 2, + ACTIONS(1179), 2, sym_raw_string, sym_ansi_c_string, - STATE(1557), 6, + STATE(1623), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1453), 9, + STATE(1599), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -123301,14 +122545,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [76623] = 5, + [73726] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4951), 1, - sym__special_character, - STATE(1816), 1, - aux_sym__literal_repeat1, - ACTIONS(3494), 12, + ACTIONS(1346), 13, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, @@ -123320,11 +122560,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(3496), 23, + ACTIONS(1348), 26, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -123336,23 +122579,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [76672] = 5, + [73773] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4951), 1, - sym__special_character, - STATE(1816), 1, - aux_sym__literal_repeat1, - ACTIONS(195), 12, + ACTIONS(1342), 13, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, @@ -123364,11 +122604,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(232), 23, + ACTIONS(1344), 26, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -123380,103 +122623,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [76721] = 23, + [73820] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(326), 1, + ACTIONS(1268), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(332), 1, aux_sym_number_token1, - ACTIONS(334), 1, aux_sym_number_token2, - ACTIONS(338), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1270), 26, + sym_file_descriptor, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1157), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1167), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1191), 1, - sym_word, - ACTIONS(1193), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - aux_sym_unary_expression_token1, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - STATE(1461), 1, - aux_sym__literal_repeat1, - STATE(1859), 1, - sym__expression, - ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1453), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [76806] = 3, + sym_test_operator, + [73867] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1316), 12, + ACTIONS(1268), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1318), 25, + ACTIONS(1270), 26, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -123485,6 +122712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -123493,146 +122721,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [76851] = 4, - ACTIONS(3), 1, + [73914] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(5012), 1, + ACTIONS(1123), 1, + aux_sym_concatenation_token1, + ACTIONS(4904), 1, sym__concat, - ACTIONS(4838), 16, + STATE(1602), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1246), 13, anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4836), 20, - sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_SLASH2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1248), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [76898] = 4, - ACTIONS(3), 1, + [73967] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(5014), 1, - sym__concat, - ACTIONS(4844), 16, + ACTIONS(1294), 14, anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4842), 20, - sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_SLASH2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1296), 25, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [76945] = 24, - ACTIONS(63), 1, + [74014] = 24, + ACTIONS(3), 1, sym_comment, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(637), 1, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(641), 1, + ACTIONS(4828), 1, + sym__special_character, + ACTIONS(4830), 1, anon_sym_DQUOTE, - ACTIONS(645), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(647), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(649), 1, + ACTIONS(4836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(661), 1, - sym__brace_start, - ACTIONS(1129), 1, - anon_sym_LPAREN, - ACTIONS(1131), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - aux_sym_unary_expression_token1, - ACTIONS(4852), 1, + ACTIONS(4840), 1, anon_sym_BQUOTE, - ACTIONS(4873), 1, - sym__special_character, - ACTIONS(5016), 1, - sym_word, - ACTIONS(5020), 1, + ACTIONS(4842), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4846), 1, sym_test_operator, - STATE(1475), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(4908), 1, + anon_sym_esac, + STATE(4057), 1, aux_sym__literal_repeat1, - STATE(2059), 1, - sym__expression, - ACTIONS(657), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4434), 1, + sym_last_case_item, + ACTIONS(4818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4844), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5018), 2, + STATE(2202), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4816), 3, sym_raw_string, sym_ansi_c_string, - STATE(1557), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(1673), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1474), 9, + sym_word, + ACTIONS(4906), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -123642,121 +122877,109 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [77032] = 23, + [74103] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(163), 1, - aux_sym_unary_expression_token1, - ACTIONS(316), 1, - sym_word, - ACTIONS(320), 1, - anon_sym_BANG, - ACTIONS(326), 1, + ACTIONS(1123), 1, + aux_sym_concatenation_token1, + ACTIONS(4910), 1, + sym__concat, + STATE(1602), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1252), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1254), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [74156] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(332), 1, + ACTIONS(4828), 1, + sym__special_character, + ACTIONS(4830), 1, + anon_sym_DQUOTE, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(334), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, - sym__brace_start, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, + ACTIONS(4836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, + ACTIONS(4838), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4840), 1, + anon_sym_BQUOTE, + ACTIONS(4842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1175), 1, - anon_sym_LPAREN, - ACTIONS(1177), 1, - sym__special_character, - ACTIONS(1181), 1, + ACTIONS(4846), 1, sym_test_operator, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - STATE(1461), 1, - aux_sym__literal_repeat1, - STATE(2007), 1, - sym__expression, - ACTIONS(1171), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1911), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1489), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [77117] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(326), 1, - anon_sym_DOLLAR, - ACTIONS(332), 1, - aux_sym_number_token1, - ACTIONS(334), 1, - aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1191), 1, - sym_word, - ACTIONS(1193), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - aux_sym_unary_expression_token1, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - STATE(1461), 1, + ACTIONS(4914), 1, + anon_sym_esac, + STATE(4057), 1, aux_sym__literal_repeat1, - STATE(1845), 1, - sym__expression, - ACTIONS(1171), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4435), 1, + sym_last_case_item, + ACTIONS(4818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4844), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1199), 2, + STATE(2195), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4816), 3, sym_raw_string, sym_ansi_c_string, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1453), 9, + sym_word, + ACTIONS(4912), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -123766,32 +122989,77 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [77202] = 3, + [74245] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1302), 14, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1304), 25, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + sym_test_operator, + [74292] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1324), 12, + ACTIONS(1326), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1326), 25, + ACTIONS(1328), 26, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -123800,6 +123068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -123808,425 +123077,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [77247] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(637), 1, - anon_sym_DOLLAR, - ACTIONS(641), 1, - anon_sym_DQUOTE, - ACTIONS(645), 1, - aux_sym_number_token1, - ACTIONS(647), 1, - aux_sym_number_token2, - ACTIONS(649), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(661), 1, - sym__brace_start, - ACTIONS(1129), 1, - anon_sym_LPAREN, - ACTIONS(1131), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - aux_sym_unary_expression_token1, - ACTIONS(4852), 1, - anon_sym_BQUOTE, - ACTIONS(4873), 1, - sym__special_character, - ACTIONS(5022), 1, - sym_word, - ACTIONS(5026), 1, - sym_test_operator, - STATE(1436), 1, - aux_sym__literal_repeat1, - STATE(2059), 1, - sym__expression, - ACTIONS(657), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5024), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1557), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(1798), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1439), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [77334] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(326), 1, - anon_sym_DOLLAR, - ACTIONS(332), 1, - aux_sym_number_token1, - ACTIONS(334), 1, - aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1151), 1, - sym_word, - ACTIONS(1153), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1173), 1, - sym_test_operator, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - ACTIONS(4805), 1, - sym__special_character, - STATE(1660), 1, - aux_sym__literal_repeat1, - STATE(1883), 1, - sym__expression, - ACTIONS(1165), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1171), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1438), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [77419] = 23, + [74339] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(107), 1, - aux_sym_unary_expression_token1, - ACTIONS(193), 1, - sym_word, - ACTIONS(204), 1, - anon_sym_BANG, - ACTIONS(210), 1, - anon_sym_DOLLAR, - ACTIONS(216), 1, - aux_sym_number_token1, - ACTIONS(218), 1, - aux_sym_number_token2, - ACTIONS(222), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(236), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1113), 1, - sym__special_character, - ACTIONS(1115), 1, - anon_sym_DQUOTE, ACTIONS(1119), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1125), 1, - sym_test_operator, - ACTIONS(4780), 1, - anon_sym_BQUOTE, - STATE(1468), 1, - aux_sym__literal_repeat1, - STATE(1739), 1, - sym__expression, - ACTIONS(1117), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1123), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1394), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [77504] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(107), 1, - aux_sym_unary_expression_token1, - ACTIONS(193), 1, - sym_word, - ACTIONS(204), 1, - anon_sym_BANG, - ACTIONS(210), 1, - anon_sym_DOLLAR, - ACTIONS(216), 1, - aux_sym_number_token1, - ACTIONS(218), 1, - aux_sym_number_token2, - ACTIONS(222), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(236), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1113), 1, + anon_sym_RBRACK, + ACTIONS(4763), 1, sym__special_character, - ACTIONS(1115), 1, - anon_sym_DQUOTE, - ACTIONS(1119), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1125), 1, - sym_test_operator, - ACTIONS(4780), 1, - anon_sym_BQUOTE, - STATE(1468), 1, + ACTIONS(4916), 1, + sym__concat, + STATE(1600), 1, aux_sym__literal_repeat1, - STATE(1741), 1, - sym__expression, - ACTIONS(1117), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1123), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1394), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [77589] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1328), 12, + ACTIONS(143), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1330), 25, - sym_file_descriptor, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(600), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [74394] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4340), 1, + aux_sym_concatenation_token1, + ACTIONS(4342), 1, sym__concat, - sym_variable_name, + STATE(1597), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 2, + sym_file_descriptor, sym__brace_start, + ACTIONS(1242), 34, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [77634] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(107), 1, - aux_sym_unary_expression_token1, - ACTIONS(193), 1, - sym_word, - ACTIONS(204), 1, - anon_sym_BANG, - ACTIONS(210), 1, anon_sym_DOLLAR, - ACTIONS(216), 1, - aux_sym_number_token1, - ACTIONS(218), 1, - aux_sym_number_token2, - ACTIONS(222), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(236), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1113), 1, sym__special_character, - ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(1119), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1125), 1, - sym_test_operator, - ACTIONS(4780), 1, - anon_sym_BQUOTE, - STATE(1468), 1, - aux_sym__literal_repeat1, - STATE(1478), 1, - sym__expression, - ACTIONS(1117), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1123), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1394), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [77719] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(107), 1, - aux_sym_unary_expression_token1, - ACTIONS(193), 1, - sym_word, - ACTIONS(204), 1, - anon_sym_BANG, - ACTIONS(210), 1, - anon_sym_DOLLAR, - ACTIONS(216), 1, aux_sym_number_token1, - ACTIONS(218), 1, aux_sym_number_token2, - ACTIONS(222), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(236), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1113), 1, - sym__special_character, - ACTIONS(1115), 1, - anon_sym_DQUOTE, - ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1125), 1, - sym_test_operator, - ACTIONS(4780), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - STATE(1468), 1, - aux_sym__literal_repeat1, - STATE(1745), 1, - sym__expression, - ACTIONS(1117), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1123), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1394), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [77804] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [74447] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(4590), 13, + ACTIONS(1123), 1, + aux_sym_concatenation_token1, + ACTIONS(4918), 1, + anon_sym_RBRACK, + ACTIONS(4920), 1, + sym__concat, + STATE(1595), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1227), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124240,8 +123197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4588), 24, - sym__concat, + ACTIONS(1364), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -124261,25 +123217,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [77849] = 6, + [74502] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5028), 1, - anon_sym_RPAREN, - ACTIONS(4992), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4924), 4, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(4986), 13, + ACTIONS(1314), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124290,10 +123234,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4990), 16, + ACTIONS(1316), 25, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124304,16 +123253,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + sym_test_operator, + [74549] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1318), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1320), 26, + sym_file_descriptor, + sym__concat, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [74596] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4324), 1, + aux_sym_concatenation_token1, + ACTIONS(4922), 1, + sym__concat, + STATE(1131), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(1252), 33, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [77900] = 3, + [74649] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4586), 13, + ACTIONS(4928), 1, + sym__concat, + ACTIONS(4926), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124327,8 +123374,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4584), 24, - sym__concat, + ACTIONS(4924), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -124348,25 +123396,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, + sym_test_operator, + [74698] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4324), 1, + aux_sym_concatenation_token1, + ACTIONS(4930), 1, + sym__concat, + STATE(1131), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(1246), 33, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [77945] = 6, + [74751] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(5028), 1, - anon_sym_RPAREN, - ACTIONS(4992), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4924), 4, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(4986), 13, + ACTIONS(4936), 1, + sym__concat, + ACTIONS(4934), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124380,7 +123466,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4990), 16, + ACTIONS(4932), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124391,16 +123481,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [77996] = 3, + [74800] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4586), 13, + ACTIONS(4938), 1, + sym__special_character, + STATE(1664), 1, + aux_sym__literal_repeat1, + ACTIONS(1352), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124414,8 +123513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4584), 24, - sym__concat, + ACTIONS(1357), 24, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -124435,36 +123533,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, + sym_test_operator, + [74851] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4392), 1, + sym_file_descriptor, + ACTIONS(3248), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(3236), 16, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [78041] = 3, + ACTIONS(4390), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [74902] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1288), 12, + ACTIONS(1314), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1290), 25, + ACTIONS(1316), 26, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -124473,6 +123619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -124481,83 +123628,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [78086] = 23, + [74949] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(326), 1, + ACTIONS(1310), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(332), 1, aux_sym_number_token1, - ACTIONS(334), 1, aux_sym_number_token2, - ACTIONS(338), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1312), 26, + sym_file_descriptor, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1157), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1167), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1191), 1, - sym_word, - ACTIONS(1193), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - aux_sym_unary_expression_token1, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - STATE(1461), 1, - aux_sym__literal_repeat1, - STATE(1478), 1, - sym__expression, - ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1453), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [78171] = 6, + sym_test_operator, + [74996] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(5032), 1, - anon_sym_RPAREN, - ACTIONS(4992), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5030), 4, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(4986), 13, + ACTIONS(1155), 1, + aux_sym_concatenation_token1, + ACTIONS(4941), 1, + sym__concat, + STATE(1416), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1252), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124571,7 +123695,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4990), 16, + ACTIONS(1254), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124582,205 +123708,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [78222] = 23, + [75049] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(326), 1, + ACTIONS(1302), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(332), 1, aux_sym_number_token1, - ACTIONS(334), 1, aux_sym_number_token2, - ACTIONS(338), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1304), 26, + sym_file_descriptor, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1157), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1167), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1191), 1, - sym_word, - ACTIONS(1193), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - aux_sym_unary_expression_token1, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - STATE(1461), 1, - aux_sym__literal_repeat1, - STATE(1903), 1, - sym__expression, - ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1453), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [78307] = 23, + sym_test_operator, + [75096] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(326), 1, + ACTIONS(1298), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(332), 1, aux_sym_number_token1, - ACTIONS(334), 1, aux_sym_number_token2, - ACTIONS(338), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1151), 1, + anon_sym_BQUOTE, sym_word, - ACTIONS(1153), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, + ACTIONS(1300), 26, + sym_file_descriptor, + sym__concat, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1173), 1, - sym_test_operator, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - ACTIONS(4805), 1, + aux_sym_concatenation_token1, sym__special_character, - STATE(1660), 1, - aux_sym__literal_repeat1, - STATE(2003), 1, - sym__expression, - ACTIONS(1165), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(1171), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1438), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [78392] = 4, - ACTIONS(3), 1, + sym_test_operator, + [75143] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(5034), 1, - sym__concat, - ACTIONS(4897), 16, + ACTIONS(1318), 14, anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4895), 20, - sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_SLASH2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1320), 25, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [78439] = 3, + [75190] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1354), 12, + ACTIONS(1294), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1356), 25, + ACTIONS(1296), 26, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -124789,6 +123886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -124797,122 +123895,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [78484] = 23, + [75237] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(326), 1, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, anon_sym_DOLLAR, - ACTIONS(332), 1, + ACTIONS(246), 1, aux_sym_number_token1, - ACTIONS(334), 1, + ACTIONS(248), 1, aux_sym_number_token2, - ACTIONS(338), 1, + ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, + ACTIONS(264), 1, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1151), 1, + ACTIONS(1147), 1, sym_word, - ACTIONS(1153), 1, + ACTIONS(1151), 1, anon_sym_BANG, - ACTIONS(1155), 1, + ACTIONS(1153), 1, aux_sym_unary_expression_token1, ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, + sym__special_character, + ACTIONS(1159), 1, anon_sym_DQUOTE, - ACTIONS(1167), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, + ACTIONS(1165), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1173), 1, + ACTIONS(1169), 1, sym_test_operator, - ACTIONS(4799), 1, + ACTIONS(4779), 1, anon_sym_BQUOTE, - ACTIONS(4805), 1, - sym__special_character, - STATE(1660), 1, + ACTIONS(4858), 1, + sym__regex_no_space, + STATE(1586), 1, aux_sym__literal_repeat1, - STATE(1899), 1, + STATE(1629), 1, sym__expression, - ACTIONS(1165), 2, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1161), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1171), 2, + ACTIONS(1167), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1557), 6, + STATE(1623), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1438), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [78569] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(637), 1, - anon_sym_DOLLAR, - ACTIONS(641), 1, - anon_sym_DQUOTE, - ACTIONS(645), 1, - aux_sym_number_token1, - ACTIONS(647), 1, - aux_sym_number_token2, - ACTIONS(649), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(661), 1, - sym__brace_start, - ACTIONS(1129), 1, - anon_sym_LPAREN, - ACTIONS(1131), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - aux_sym_unary_expression_token1, - ACTIONS(4852), 1, - anon_sym_BQUOTE, - ACTIONS(4873), 1, - sym__special_character, - ACTIONS(5036), 1, - sym_word, - ACTIONS(5040), 1, - sym_test_operator, - STATE(1476), 1, - aux_sym__literal_repeat1, - STATE(2059), 1, - sym__expression, - ACTIONS(657), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5038), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1557), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(1765), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1480), 9, + STATE(1583), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -124922,27 +123960,29 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [78656] = 3, + [75326] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1298), 12, + ACTIONS(1280), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1300), 25, + ACTIONS(1282), 26, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -124964,183 +124004,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [78701] = 23, + [75373] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(326), 1, - anon_sym_DOLLAR, - ACTIONS(332), 1, - aux_sym_number_token1, - ACTIONS(334), 1, - aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1151), 1, - sym_word, - ACTIONS(1153), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1173), 1, - sym_test_operator, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - ACTIONS(4805), 1, - sym__special_character, - STATE(1660), 1, - aux_sym__literal_repeat1, - STATE(1924), 1, - sym__expression, - ACTIONS(1165), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1171), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1438), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [78786] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5042), 1, - sym__concat, - ACTIONS(4879), 16, + ACTIONS(1326), 14, anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4877), 20, - sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_SLASH2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [78833] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5046), 1, - anon_sym_DQUOTE, - STATE(2627), 1, - sym_string, - ACTIONS(1221), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5048), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5044), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 22, - anon_sym_LF, - anon_sym_SEMI, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1328), 25, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [78886] = 3, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + sym_test_operator, + [75420] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1350), 12, + ACTIONS(1276), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1352), 25, + ACTIONS(1278), 26, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -125149,6 +124083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -125157,62 +124092,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [78931] = 7, - ACTIONS(3), 1, + [75467] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(5046), 1, - anon_sym_DQUOTE, - STATE(2627), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5048), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5044), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1268), 14, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_AMP, - [78984] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5050), 5, + anon_sym_CARET, + ACTIONS(1270), 25, + sym__concat, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - ACTIONS(4972), 13, + aux_sym_concatenation_token1, + sym_test_operator, + [75514] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1268), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125223,10 +124150,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(1270), 25, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -125245,152 +124177,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [79031] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(326), 1, - anon_sym_DOLLAR, - ACTIONS(332), 1, - aux_sym_number_token1, - ACTIONS(334), 1, - aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1151), 1, - sym_word, - ACTIONS(1153), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1173), 1, - sym_test_operator, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - ACTIONS(4805), 1, - sym__special_character, - STATE(1660), 1, - aux_sym__literal_repeat1, - STATE(2004), 1, - sym__expression, - ACTIONS(1165), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1171), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1438), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79116] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(637), 1, - anon_sym_DOLLAR, - ACTIONS(641), 1, - anon_sym_DQUOTE, - ACTIONS(645), 1, - aux_sym_number_token1, - ACTIONS(647), 1, - aux_sym_number_token2, - ACTIONS(649), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(661), 1, - sym__brace_start, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_LPAREN, - ACTIONS(1131), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - aux_sym_unary_expression_token1, - ACTIONS(1143), 1, - sym_test_operator, - ACTIONS(4852), 1, - anon_sym_BQUOTE, - ACTIONS(4873), 1, - sym__special_character, - STATE(1533), 1, - aux_sym__literal_repeat1, - STATE(1670), 1, - sym__expression, - ACTIONS(657), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1141), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1698), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1455), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79201] = 3, + [75561] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1302), 12, + ACTIONS(1258), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1304), 25, + ACTIONS(1263), 26, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -125412,27 +124224,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [79246] = 3, + [75608] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1274), 12, + ACTIONS(1338), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1279), 25, + ACTIONS(1340), 26, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -125454,19 +124268,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [79291] = 5, + [75655] = 3, ACTIONS(63), 1, sym_comment, - STATE(1689), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4938), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4049), 11, + ACTIONS(1284), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, @@ -125474,10 +124285,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4051), 23, + ACTIONS(1286), 26, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -125489,6 +124302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -125498,34 +124312,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [79340] = 5, + [75702] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1342), 14, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1344), 25, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + sym_test_operator, + [75749] = 5, ACTIONS(63), 1, sym_comment, - STATE(1688), 1, + STATE(1692), 1, aux_sym_concatenation_repeat1, - ACTIONS(4938), 2, + ACTIONS(4872), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(3888), 11, + ACTIONS(1242), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(3892), 23, + ACTIONS(1244), 24, sym_file_descriptor, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -125533,7 +124394,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -125542,54 +124402,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [79389] = 5, + [75800] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(4592), 1, - anon_sym_RBRACK, - ACTIONS(5052), 1, - sym__concat, - ACTIONS(1243), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1372), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + ACTIONS(93), 1, + aux_sym_unary_expression_token1, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(156), 1, + anon_sym_DOLLAR, + ACTIONS(162), 1, + aux_sym_number_token1, + ACTIONS(164), 1, + aux_sym_number_token2, + ACTIONS(168), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(182), 1, + sym__brace_start, + ACTIONS(220), 1, + sym_word, + ACTIONS(222), 1, + anon_sym_BANG, + ACTIONS(1099), 1, + sym__special_character, + ACTIONS(1101), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1107), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1111), 1, sym_test_operator, - [79438] = 3, + ACTIONS(4858), 1, + sym__regex_no_space, + ACTIONS(4900), 1, + anon_sym_BQUOTE, + STATE(1629), 1, + sym__expression, + STATE(1636), 1, + aux_sym__literal_repeat1, + ACTIONS(1095), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1109), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1557), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [75889] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1320), 13, + ACTIONS(1346), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125600,10 +124481,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1322), 24, + ACTIONS(1348), 25, + sym__concat, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -125626,61 +124509,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [79483] = 23, - ACTIONS(63), 1, + [75936] = 24, + ACTIONS(3), 1, sym_comment, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(637), 1, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(641), 1, + ACTIONS(4828), 1, + sym__special_character, + ACTIONS(4830), 1, anon_sym_DQUOTE, - ACTIONS(645), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(647), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(649), 1, + ACTIONS(4836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, + ACTIONS(4840), 1, + anon_sym_BQUOTE, + ACTIONS(4842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(661), 1, - sym__brace_start, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_LPAREN, - ACTIONS(1131), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - aux_sym_unary_expression_token1, - ACTIONS(1143), 1, + ACTIONS(4846), 1, sym_test_operator, - ACTIONS(4852), 1, - anon_sym_BQUOTE, - ACTIONS(4873), 1, - sym__special_character, - STATE(1533), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(4945), 1, + anon_sym_esac, + STATE(4057), 1, aux_sym__literal_repeat1, - STATE(1740), 1, - sym__expression, - ACTIONS(657), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4669), 1, + sym_last_case_item, + ACTIONS(4818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4844), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1141), 2, + STATE(2204), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4816), 3, sym_raw_string, sym_ansi_c_string, - STATE(1698), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1455), 9, + sym_word, + ACTIONS(4943), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -125690,10 +124576,57 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [79568] = 3, + [76025] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4340), 1, + aux_sym_concatenation_token1, + ACTIONS(4342), 1, + sym__concat, + STATE(1597), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4034), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(4032), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [76078] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 13, + ACTIONS(1272), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125704,10 +124637,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1336), 24, + ACTIONS(1274), 25, + sym__concat, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -125730,25 +124665,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [79613] = 8, + [76125] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4996), 1, - anon_sym_QMARK, - ACTIONS(5054), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5056), 1, - anon_sym_RPAREN, - ACTIONS(4988), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4992), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4986), 13, + ACTIONS(1334), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125759,10 +124681,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4990), 16, + ACTIONS(1336), 25, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -125773,58 +124700,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [79668] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1308), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1310), 25, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_test_operator, - [79713] = 3, + [76172] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 14, + ACTIONS(1330), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125835,11 +124725,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - sym__special_character, - ACTIONS(1272), 23, + ACTIONS(1332), 25, + sym__concat, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -125859,138 +124751,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [79758] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(147), 1, - aux_sym_unary_expression_token1, - ACTIONS(210), 1, - anon_sym_DOLLAR, - ACTIONS(216), 1, - aux_sym_number_token1, - ACTIONS(218), 1, - aux_sym_number_token2, - ACTIONS(222), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(236), 1, - sym__brace_start, - ACTIONS(240), 1, - sym_word, - ACTIONS(242), 1, - anon_sym_BANG, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1115), 1, - anon_sym_DQUOTE, - ACTIONS(1119), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1203), 1, - sym__special_character, - ACTIONS(1207), 1, - sym_test_operator, - ACTIONS(4780), 1, - anon_sym_BQUOTE, - STATE(1468), 1, - aux_sym__literal_repeat1, - STATE(2023), 1, - sym__expression, - ACTIONS(1123), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1205), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1549), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79843] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(326), 1, - anon_sym_DOLLAR, - ACTIONS(332), 1, - aux_sym_number_token1, - ACTIONS(334), 1, - aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1223), 1, - sym_word, - ACTIONS(1225), 1, - anon_sym_BANG, - ACTIONS(1227), 1, - aux_sym_unary_expression_token1, - ACTIONS(1229), 1, - sym__special_character, - ACTIONS(1233), 1, - sym_test_operator, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - STATE(1461), 1, - aux_sym__literal_repeat1, - STATE(1478), 1, - sym__expression, - ACTIONS(1171), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1231), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1662), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79928] = 3, + [76219] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1338), 13, + ACTIONS(1322), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -126001,10 +124769,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1340), 24, + ACTIONS(1324), 25, + sym__concat, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -126027,33 +124797,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [79973] = 3, + [76266] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1312), 12, + ACTIONS(4872), 1, + aux_sym_concatenation_token1, + ACTIONS(4947), 1, + sym__concat, + STATE(1703), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1246), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1314), 25, + ACTIONS(1248), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -126061,8 +124838,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -126071,15 +124846,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [80018] = 5, + [76319] = 5, ACTIONS(63), 1, sym_comment, - STATE(1781), 1, + STATE(1693), 1, aux_sym_concatenation_repeat1, - ACTIONS(4962), 2, + ACTIONS(4949), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1270), 12, + ACTIONS(1258), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -126092,9 +124867,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1272), 22, + ACTIONS(1263), 24, sym_file_descriptor, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -126115,52 +124892,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [80067] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1350), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1352), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [80112] = 3, + [76370] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 12, + ACTIONS(4872), 1, + aux_sym_concatenation_token1, + ACTIONS(4952), 1, + sym__concat, + STATE(1703), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1252), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -126173,11 +124914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1348), 25, + ACTIONS(1254), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -126190,7 +124931,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -126199,32 +124939,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [80157] = 3, + [76423] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1342), 12, + ACTIONS(4761), 1, + aux_sym_concatenation_token1, + ACTIONS(4954), 1, + sym__concat, + STATE(1693), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1252), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1344), 25, + ACTIONS(1254), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -126232,7 +124977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -126241,58 +124986,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [80202] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1344), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [80247] = 6, + [76476] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(4962), 1, + ACTIONS(4761), 1, aux_sym_concatenation_token1, - ACTIONS(5058), 1, + ACTIONS(4956), 1, sym__concat, - STATE(1792), 1, + STATE(1693), 1, aux_sym_concatenation_repeat1, - ACTIONS(1264), 12, + ACTIONS(1246), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -126305,9 +125008,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1266), 22, + ACTIONS(1248), 24, sym_file_descriptor, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -126328,10 +125033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [80298] = 3, + [76529] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1316), 12, + STATE(1696), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4761), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1242), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -126344,11 +125054,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1318), 25, + ACTIONS(1244), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -126360,7 +125070,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -126370,55 +125079,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [80343] = 6, + [76580] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(4962), 1, + ACTIONS(1123), 1, aux_sym_concatenation_token1, - ACTIONS(5060), 1, + ACTIONS(4958), 1, + anon_sym_RBRACK, + ACTIONS(4960), 1, sym__concat, - STATE(1792), 1, + STATE(1595), 1, aux_sym_concatenation_repeat1, - ACTIONS(1258), 12, + ACTIONS(1227), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1260), 22, - sym_file_descriptor, - sym__brace_start, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1364), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [80394] = 3, + [76635] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 13, + ACTIONS(1137), 1, + anon_sym_RBRACK, + ACTIONS(4763), 1, + sym__special_character, + ACTIONS(4962), 1, + sym__concat, + STATE(1600), 1, + aux_sym__literal_repeat1, + ACTIONS(143), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -126432,8 +125152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1348), 24, - anon_sym_RPAREN_RPAREN, + ACTIONS(600), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -126455,59 +125174,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, sym_test_operator, - [80439] = 3, - ACTIONS(63), 1, + [76690] = 24, + ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, + ACTIONS(4828), 1, sym__special_character, + ACTIONS(4830), 1, + anon_sym_DQUOTE, + ACTIONS(4832), 1, aux_sym_number_token1, + ACTIONS(4834), 1, aux_sym_number_token2, + ACTIONS(4836), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4840), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1340), 25, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(4842), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(4846), 1, sym_test_operator, - [80484] = 5, - ACTIONS(63), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(4966), 1, + anon_sym_esac, + STATE(4057), 1, + aux_sym__literal_repeat1, + STATE(4183), 1, + sym_concatenation, + STATE(4618), 1, + sym_last_case_item, + ACTIONS(4818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4844), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2232), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4816), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(4964), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(4027), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [76779] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, + anon_sym_DOLLAR, + ACTIONS(4828), 1, + sym__special_character, + ACTIONS(4830), 1, + anon_sym_DQUOTE, + ACTIONS(4832), 1, + aux_sym_number_token1, + ACTIONS(4834), 1, + aux_sym_number_token2, + ACTIONS(4836), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4838), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4840), 1, + anon_sym_BQUOTE, + ACTIONS(4842), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4846), 1, + sym_test_operator, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(4970), 1, + anon_sym_esac, + STATE(4057), 1, + aux_sym__literal_repeat1, + STATE(4183), 1, + sym_concatenation, + STATE(4617), 1, + sym_last_case_item, + ACTIONS(4818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4844), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2230), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4816), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(4968), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(4027), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [76868] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, + anon_sym_DOLLAR, + ACTIONS(4828), 1, + sym__special_character, + ACTIONS(4830), 1, + anon_sym_DQUOTE, + ACTIONS(4832), 1, + aux_sym_number_token1, + ACTIONS(4834), 1, + aux_sym_number_token2, + ACTIONS(4836), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4838), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4840), 1, + anon_sym_BQUOTE, + ACTIONS(4842), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4846), 1, + sym_test_operator, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(4974), 1, + anon_sym_esac, + STATE(4057), 1, + aux_sym__literal_repeat1, + STATE(4183), 1, + sym_concatenation, + STATE(4687), 1, + sym_last_case_item, + ACTIONS(4818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4844), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2223), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4816), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(4972), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(4027), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [76957] = 5, + ACTIONS(63), 1, sym_comment, - STATE(1684), 1, + STATE(1703), 1, aux_sym_concatenation_repeat1, - ACTIONS(4936), 2, + ACTIONS(4976), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4049), 12, + ACTIONS(1258), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -126520,9 +125391,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4051), 22, + ACTIONS(1263), 24, sym_file_descriptor, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -126543,75 +125416,460 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [80533] = 5, + [77008] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, + anon_sym_DOLLAR, + ACTIONS(4828), 1, + sym__special_character, + ACTIONS(4830), 1, + anon_sym_DQUOTE, + ACTIONS(4832), 1, + aux_sym_number_token1, + ACTIONS(4834), 1, + aux_sym_number_token2, + ACTIONS(4836), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4838), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4840), 1, + anon_sym_BQUOTE, + ACTIONS(4842), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4846), 1, + sym_test_operator, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(4981), 1, + anon_sym_esac, + STATE(4057), 1, + aux_sym__literal_repeat1, + STATE(4183), 1, + sym_concatenation, + STATE(4600), 1, + sym_last_case_item, + ACTIONS(4818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4844), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2236), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4816), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(4979), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(4027), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [77097] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, + anon_sym_DOLLAR, + ACTIONS(4828), 1, + sym__special_character, + ACTIONS(4830), 1, + anon_sym_DQUOTE, + ACTIONS(4832), 1, + aux_sym_number_token1, + ACTIONS(4834), 1, + aux_sym_number_token2, + ACTIONS(4836), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4838), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4840), 1, + anon_sym_BQUOTE, + ACTIONS(4842), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4846), 1, + sym_test_operator, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(4985), 1, + anon_sym_esac, + STATE(4057), 1, + aux_sym__literal_repeat1, + STATE(4183), 1, + sym_concatenation, + STATE(4601), 1, + sym_last_case_item, + ACTIONS(4818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4844), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2227), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4816), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(4983), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(4027), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [77186] = 6, ACTIONS(63), 1, sym_comment, - STATE(1683), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4936), 2, - sym__concat, + ACTIONS(1155), 1, aux_sym_concatenation_token1, - ACTIONS(3888), 12, + ACTIONS(4987), 1, + sym__concat, + STATE(1416), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1246), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1248), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + sym_test_operator, + [77239] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4991), 1, + anon_sym_DQUOTE, + STATE(2389), 1, + sym_string, + ACTIONS(4993), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1213), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(4989), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 23, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(3892), 22, + sym_test_operator, + [77294] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4991), 1, + anon_sym_DQUOTE, + STATE(2389), 1, + sym_string, + ACTIONS(4993), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1217), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4989), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 23, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [77349] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(192), 1, + aux_sym_unary_expression_token1, + ACTIONS(230), 1, + sym_word, + ACTIONS(234), 1, + anon_sym_LPAREN, + ACTIONS(236), 1, + anon_sym_BANG, + ACTIONS(240), 1, + anon_sym_DOLLAR, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1187), 1, + sym__special_character, + ACTIONS(1191), 1, + sym_test_operator, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + STATE(1586), 1, + aux_sym__literal_repeat1, + STATE(2052), 1, + sym__expression, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(1189), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2117), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1593), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [77435] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1155), 1, + aux_sym_concatenation_token1, + ACTIONS(4995), 1, + sym__concat, + STATE(1416), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1252), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1254), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [77487] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(1710), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1155), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1227), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1364), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [80582] = 3, + [77537] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1324), 12, + ACTIONS(1276), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1326), 25, + ACTIONS(1278), 26, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -126620,7 +125878,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -126629,10 +125886,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [80627] = 3, + [77583] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1354), 13, + ACTIONS(1346), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -126646,8 +125903,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1356), 24, - anon_sym_RPAREN_RPAREN, + ACTIONS(1348), 25, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -126667,63 +125924,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [80672] = 23, + [77629] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(163), 1, + ACTIONS(192), 1, aux_sym_unary_expression_token1, - ACTIONS(316), 1, + ACTIONS(230), 1, sym_word, - ACTIONS(320), 1, + ACTIONS(234), 1, + anon_sym_LPAREN, + ACTIONS(236), 1, anon_sym_BANG, - ACTIONS(326), 1, + ACTIONS(240), 1, anon_sym_DOLLAR, - ACTIONS(332), 1, + ACTIONS(246), 1, aux_sym_number_token1, - ACTIONS(334), 1, + ACTIONS(248), 1, aux_sym_number_token2, - ACTIONS(338), 1, + ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, + ACTIONS(264), 1, sym__brace_start, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1159), 1, anon_sym_DQUOTE, - ACTIONS(1167), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, + ACTIONS(1165), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1175), 1, - anon_sym_LPAREN, - ACTIONS(1177), 1, + ACTIONS(1187), 1, sym__special_character, - ACTIONS(1181), 1, + ACTIONS(1191), 1, sym_test_operator, - ACTIONS(4799), 1, + ACTIONS(4779), 1, anon_sym_BQUOTE, - STATE(1461), 1, + STATE(1586), 1, aux_sym__literal_repeat1, - STATE(1872), 1, + STATE(2051), 1, sym__expression, - ACTIONS(1171), 2, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1179), 2, + ACTIONS(1189), 2, sym_raw_string, sym_ansi_c_string, - STATE(1911), 6, + STATE(2117), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1489), 9, + STATE(1593), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -126733,59 +125992,156 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [80757] = 23, + [77715] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(637), 1, + ACTIONS(4997), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, + anon_sym_QMARK, + STATE(4232), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5001), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5005), 19, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + sym_test_operator, + [77771] = 8, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, + anon_sym_QMARK, + ACTIONS(5009), 1, + anon_sym_RPAREN_RPAREN, + STATE(4293), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5001), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5005), 19, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + sym_test_operator, + [77827] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, anon_sym_DOLLAR, - ACTIONS(641), 1, - anon_sym_DQUOTE, - ACTIONS(645), 1, + ACTIONS(246), 1, aux_sym_number_token1, - ACTIONS(647), 1, + ACTIONS(248), 1, aux_sym_number_token2, - ACTIONS(649), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, + ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(661), 1, + ACTIONS(264), 1, sym__brace_start, - ACTIONS(1127), 1, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1171), 1, sym_word, - ACTIONS(1129), 1, - anon_sym_LPAREN, - ACTIONS(1131), 1, + ACTIONS(1173), 1, anon_sym_BANG, - ACTIONS(1135), 1, + ACTIONS(1175), 1, aux_sym_unary_expression_token1, - ACTIONS(1143), 1, + ACTIONS(1181), 1, sym_test_operator, - ACTIONS(4852), 1, + ACTIONS(4779), 1, anon_sym_BQUOTE, - ACTIONS(4873), 1, + ACTIONS(4902), 1, sym__special_character, - STATE(1533), 1, + STATE(1831), 1, aux_sym__literal_repeat1, - STATE(1700), 1, + STATE(2056), 1, sym__expression, - ACTIONS(657), 2, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1141), 2, + ACTIONS(1179), 2, sym_raw_string, sym_ansi_c_string, - STATE(1698), 6, + STATE(1623), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1455), 9, + STATE(1599), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -126795,34 +126151,129 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [80842] = 5, + [77913] = 8, ACTIONS(63), 1, sym_comment, - STATE(1792), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5062), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1274), 12, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, + anon_sym_QMARK, + ACTIONS(5011), 1, + anon_sym_RPAREN_RPAREN, + STATE(4266), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5001), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5005), 19, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + sym_test_operator, + [77969] = 8, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, + anon_sym_QMARK, + ACTIONS(5013), 1, + anon_sym_RPAREN_RPAREN, + STATE(4249), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5001), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5005), 19, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + sym_test_operator, + [78025] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1280), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1279), 22, + ACTIONS(1282), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -126830,7 +126281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -126839,31 +126290,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [80891] = 3, + [78071] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1328), 12, + ACTIONS(1258), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1330), 25, + ACTIONS(1263), 26, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -126872,7 +126325,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -126881,59 +126333,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [80936] = 23, + [78117] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(282), 1, - aux_sym_unary_expression_token1, - ACTIONS(622), 1, - sym_word, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(631), 1, - anon_sym_BANG, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(637), 1, + ACTIONS(1346), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1348), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + sym_test_operator, + [78163] = 8, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, + anon_sym_QMARK, + ACTIONS(5015), 1, + anon_sym_RPAREN_RPAREN, + STATE(4222), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5001), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5005), 19, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + sym_test_operator, + [78219] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1318), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1320), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + sym_test_operator, + [78265] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(611), 1, anon_sym_DOLLAR, - ACTIONS(641), 1, + ACTIONS(615), 1, anon_sym_DQUOTE, - ACTIONS(645), 1, + ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(647), 1, + ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(649), 1, + ACTIONS(623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, + ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, + ACTIONS(629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(659), 1, - sym_test_operator, - ACTIONS(661), 1, + ACTIONS(635), 1, sym__brace_start, - ACTIONS(4850), 1, + ACTIONS(1113), 1, + sym_word, + ACTIONS(1115), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, + anon_sym_BANG, + ACTIONS(1121), 1, + aux_sym_unary_expression_token1, + ACTIONS(1129), 1, + sym_test_operator, + ACTIONS(4755), 1, sym__special_character, - ACTIONS(4852), 1, + ACTIONS(4757), 1, anon_sym_BQUOTE, - STATE(1584), 1, + STATE(1641), 1, aux_sym__literal_repeat1, - STATE(2011), 1, + STATE(1929), 1, sym__expression, - ACTIONS(643), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(657), 2, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1898), 6, + ACTIONS(1127), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1978), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1559), 9, + STATE(1584), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -126943,10 +126530,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [81021] = 3, + [78351] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 12, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, + anon_sym_QMARK, + ACTIONS(5017), 1, + anon_sym_RPAREN_RPAREN, + STATE(4268), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5001), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5005), 19, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + sym_test_operator, + [78407] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1294), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -126959,11 +126594,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1336), 25, + ACTIONS(1296), 26, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -126985,10 +126621,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [81066] = 3, + [78453] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 12, + ACTIONS(1338), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -127001,11 +126637,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1286), 25, + ACTIONS(1340), 26, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -127027,10 +126664,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [81111] = 3, + [78499] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 12, + STATE(1780), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5019), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1242), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -127043,11 +126685,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1286), 25, + ACTIONS(1244), 23, sym_file_descriptor, - sym__concat, - sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -127060,7 +126701,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -127069,14 +126709,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [81156] = 5, + [78549] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4456), 1, - anon_sym_RBRACK, - ACTIONS(5065), 1, - sym__concat, - ACTIONS(1243), 13, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, + anon_sym_QMARK, + ACTIONS(5021), 1, + anon_sym_RPAREN_RPAREN, + STATE(4205), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -127090,9 +126737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1372), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -127111,29 +126756,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - anon_sym_QMARK, sym_test_operator, - [81205] = 3, + [78605] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1320), 12, + ACTIONS(5023), 1, + sym__special_character, + STATE(1854), 1, + aux_sym__literal_repeat1, + ACTIONS(145), 12, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1322), 25, + ACTIONS(178), 24, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -127145,41 +126793,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [81250] = 3, + [78655] = 8, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, + anon_sym_QMARK, + ACTIONS(5025), 1, + anon_sym_RPAREN_RPAREN, + STATE(4246), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5001), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5005), 19, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + sym_test_operator, + [78711] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1288), 12, + ACTIONS(1298), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1290), 25, + ACTIONS(1300), 26, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -127188,7 +126885,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -127197,59 +126893,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [81295] = 23, + [78757] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(147), 1, + ACTIONS(1326), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1328), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + sym_test_operator, + [78803] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(131), 1, aux_sym_unary_expression_token1, - ACTIONS(210), 1, + ACTIONS(139), 1, + sym_word, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(152), 1, + anon_sym_BANG, + ACTIONS(156), 1, anon_sym_DOLLAR, - ACTIONS(216), 1, + ACTIONS(162), 1, aux_sym_number_token1, - ACTIONS(218), 1, + ACTIONS(164), 1, aux_sym_number_token2, - ACTIONS(222), 1, + ACTIONS(168), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(236), 1, + ACTIONS(182), 1, sym__brace_start, - ACTIONS(240), 1, - sym_word, - ACTIONS(242), 1, - anon_sym_BANG, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1115), 1, + ACTIONS(1101), 1, anon_sym_DQUOTE, - ACTIONS(1119), 1, + ACTIONS(1105), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1121), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1203), 1, + ACTIONS(1141), 1, sym__special_character, - ACTIONS(1207), 1, + ACTIONS(1145), 1, sym_test_operator, - ACTIONS(4780), 1, + ACTIONS(4900), 1, anon_sym_BQUOTE, - STATE(1468), 1, + STATE(1636), 1, aux_sym__literal_repeat1, - STATE(1478), 1, + STATE(2107), 1, sym__expression, - ACTIONS(1123), 2, + ACTIONS(1095), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1205), 2, + ACTIONS(1143), 2, sym_raw_string, sym_ansi_c_string, - STATE(1557), 6, + STATE(1623), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1549), 9, + STATE(1637), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -127259,107 +126999,69 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [81380] = 3, + [78889] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1320), 12, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, + anon_sym_QMARK, + ACTIONS(5027), 1, + anon_sym_RPAREN_RPAREN, + STATE(4212), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5001), 13, + anon_sym_EQ, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1322), 25, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [81425] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 12, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1286), 25, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5005), 19, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, sym_test_operator, - [81470] = 8, + [78945] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4984), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4996), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5056), 1, - anon_sym_RPAREN, - ACTIONS(4988), 2, + ACTIONS(5029), 1, + anon_sym_RPAREN_RPAREN, + STATE(4158), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4992), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4986), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -127373,7 +127075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4990), 16, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -127384,79 +127086,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, sym_test_operator, - [81525] = 3, + [79001] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1354), 12, + ACTIONS(1302), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1356), 25, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [81570] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1286), 25, + ACTIONS(1304), 26, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -127465,7 +127130,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -127474,101 +127138,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [81615] = 3, + [79047] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 12, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, + anon_sym_QMARK, + ACTIONS(5031), 1, + anon_sym_RPAREN_RPAREN, + STATE(4230), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5001), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1336), 25, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5005), 19, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, sym_test_operator, - [81660] = 23, + [79103] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(637), 1, + ACTIONS(611), 1, anon_sym_DOLLAR, - ACTIONS(641), 1, + ACTIONS(615), 1, anon_sym_DQUOTE, - ACTIONS(645), 1, + ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(647), 1, + ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(649), 1, + ACTIONS(623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, + ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, + ACTIONS(629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(661), 1, + ACTIONS(635), 1, sym__brace_start, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, + ACTIONS(1115), 1, anon_sym_LPAREN, - ACTIONS(1131), 1, + ACTIONS(1117), 1, anon_sym_BANG, - ACTIONS(1135), 1, + ACTIONS(1121), 1, aux_sym_unary_expression_token1, - ACTIONS(1143), 1, - sym_test_operator, - ACTIONS(4852), 1, - anon_sym_BQUOTE, - ACTIONS(4873), 1, + ACTIONS(4755), 1, sym__special_character, - STATE(1533), 1, + ACTIONS(4757), 1, + anon_sym_BQUOTE, + ACTIONS(5033), 1, + sym_word, + ACTIONS(5037), 1, + sym_test_operator, + STATE(1655), 1, aux_sym__literal_repeat1, - STATE(1825), 1, + STATE(2187), 1, sym__expression, - ACTIONS(657), 2, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1141), 2, + ACTIONS(5035), 2, sym_raw_string, sym_ansi_c_string, - STATE(1698), 6, - sym_binary_expression, + STATE(1623), 2, sym_ternary_expression, - sym_unary_expression, sym_postfix_expression, + STATE(1973), 4, + sym_binary_expression, + sym_unary_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1455), 9, + STATE(1657), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -127578,59 +127250,60 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [81745] = 23, + [79191] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(147), 1, + ACTIONS(192), 1, aux_sym_unary_expression_token1, - ACTIONS(210), 1, + ACTIONS(230), 1, + sym_word, + ACTIONS(234), 1, + anon_sym_LPAREN, + ACTIONS(236), 1, + anon_sym_BANG, + ACTIONS(240), 1, anon_sym_DOLLAR, - ACTIONS(216), 1, + ACTIONS(246), 1, aux_sym_number_token1, - ACTIONS(218), 1, + ACTIONS(248), 1, aux_sym_number_token2, - ACTIONS(222), 1, + ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(236), 1, + ACTIONS(264), 1, sym__brace_start, - ACTIONS(240), 1, - sym_word, - ACTIONS(242), 1, - anon_sym_BANG, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1115), 1, + ACTIONS(1159), 1, anon_sym_DQUOTE, - ACTIONS(1119), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1121), 1, + ACTIONS(1165), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1203), 1, + ACTIONS(1187), 1, sym__special_character, - ACTIONS(1207), 1, + ACTIONS(1191), 1, sym_test_operator, - ACTIONS(4780), 1, + ACTIONS(4779), 1, anon_sym_BQUOTE, - STATE(1468), 1, + STATE(1586), 1, aux_sym__literal_repeat1, - STATE(1981), 1, + STATE(2085), 1, sym__expression, - ACTIONS(1123), 2, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1205), 2, + ACTIONS(1189), 2, sym_raw_string, sym_ansi_c_string, - STATE(1557), 6, + STATE(2117), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1549), 9, + STATE(1593), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -127640,59 +127313,60 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [81830] = 23, + [79277] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(163), 1, - aux_sym_unary_expression_token1, - ACTIONS(316), 1, - sym_word, - ACTIONS(320), 1, - anon_sym_BANG, - ACTIONS(326), 1, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, anon_sym_DOLLAR, - ACTIONS(332), 1, + ACTIONS(246), 1, aux_sym_number_token1, - ACTIONS(334), 1, + ACTIONS(248), 1, aux_sym_number_token2, - ACTIONS(338), 1, + ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, + ACTIONS(264), 1, sym__brace_start, + ACTIONS(1147), 1, + sym_word, + ACTIONS(1151), 1, + anon_sym_BANG, + ACTIONS(1153), 1, + aux_sym_unary_expression_token1, ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, + sym__special_character, + ACTIONS(1159), 1, anon_sym_DQUOTE, - ACTIONS(1167), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, + ACTIONS(1165), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1175), 1, - anon_sym_LPAREN, - ACTIONS(1177), 1, - sym__special_character, - ACTIONS(1181), 1, + ACTIONS(1169), 1, sym_test_operator, - ACTIONS(4799), 1, + ACTIONS(4779), 1, anon_sym_BQUOTE, - STATE(1461), 1, + STATE(1586), 1, aux_sym__literal_repeat1, - STATE(1895), 1, + STATE(2139), 1, sym__expression, - ACTIONS(1171), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1179), 2, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1161), 2, sym_raw_string, sym_ansi_c_string, - STATE(1911), 6, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1623), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1489), 9, + STATE(1583), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -127702,14 +127376,21 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [81915] = 5, + [79363] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4663), 1, - anon_sym_RBRACK, - ACTIONS(5067), 1, - sym__concat, - ACTIONS(1243), 13, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, + anon_sym_QMARK, + ACTIONS(5039), 1, + anon_sym_RPAREN_RPAREN, + STATE(4178), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -127723,9 +127404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1372), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -127744,116 +127423,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [81964] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1350), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1352), 25, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [82009] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(282), 1, - aux_sym_unary_expression_token1, - ACTIONS(622), 1, - sym_word, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(631), 1, - anon_sym_BANG, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(637), 1, - anon_sym_DOLLAR, - ACTIONS(641), 1, - anon_sym_DQUOTE, - ACTIONS(645), 1, - aux_sym_number_token1, - ACTIONS(647), 1, - aux_sym_number_token2, - ACTIONS(649), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(659), 1, sym_test_operator, - ACTIONS(661), 1, - sym__brace_start, - ACTIONS(4850), 1, - sym__special_character, - ACTIONS(4852), 1, - anon_sym_BQUOTE, - STATE(1584), 1, - aux_sym__literal_repeat1, - STATE(1928), 1, - sym__expression, - ACTIONS(643), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(657), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1898), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1559), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82094] = 3, + [79419] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 14, + ACTIONS(5043), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -127867,8 +127441,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - sym__special_character, - ACTIONS(1272), 23, + ACTIONS(5041), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -127888,100 +127463,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [82139] = 23, + [79465] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(163), 1, - aux_sym_unary_expression_token1, - ACTIONS(316), 1, - sym_word, - ACTIONS(320), 1, - anon_sym_BANG, - ACTIONS(326), 1, + STATE(1830), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5045), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1242), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(332), 1, aux_sym_number_token1, - ACTIONS(334), 1, aux_sym_number_token2, - ACTIONS(338), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1244), 24, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1157), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1167), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1175), 1, - anon_sym_LPAREN, - ACTIONS(1177), 1, - sym__special_character, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - STATE(1461), 1, - aux_sym__literal_repeat1, - STATE(1894), 1, - sym__expression, - ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1911), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1489), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82224] = 5, + sym_test_operator, + [79515] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5069), 1, - sym__special_character, - STATE(1816), 1, - aux_sym__literal_repeat1, - ACTIONS(1358), 12, - anon_sym_EQ_EQ, + ACTIONS(1310), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1363), 23, + ACTIONS(1312), 26, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -127989,130 +127546,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [82273] = 23, + [79561] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(147), 1, - aux_sym_unary_expression_token1, - ACTIONS(210), 1, + ACTIONS(611), 1, anon_sym_DOLLAR, - ACTIONS(216), 1, + ACTIONS(615), 1, + anon_sym_DQUOTE, + ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(218), 1, + ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(222), 1, + ACTIONS(623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(236), 1, + ACTIONS(629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(635), 1, sym__brace_start, - ACTIONS(240), 1, + ACTIONS(1113), 1, sym_word, - ACTIONS(242), 1, - anon_sym_BANG, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(1115), 1, - anon_sym_DQUOTE, - ACTIONS(1119), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1203), 1, - sym__special_character, - ACTIONS(1207), 1, - sym_test_operator, - ACTIONS(4780), 1, - anon_sym_BQUOTE, - STATE(1468), 1, - aux_sym__literal_repeat1, - STATE(1979), 1, - sym__expression, - ACTIONS(1123), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1205), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1549), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82358] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(326), 1, - anon_sym_DOLLAR, - ACTIONS(332), 1, - aux_sym_number_token1, - ACTIONS(334), 1, - aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, - sym__brace_start, - ACTIONS(1107), 1, anon_sym_LPAREN, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1191), 1, - sym_word, - ACTIONS(1193), 1, + ACTIONS(1117), 1, anon_sym_BANG, - ACTIONS(1195), 1, + ACTIONS(1121), 1, aux_sym_unary_expression_token1, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, + ACTIONS(1129), 1, sym_test_operator, - ACTIONS(4799), 1, + ACTIONS(4755), 1, + sym__special_character, + ACTIONS(4757), 1, anon_sym_BQUOTE, - STATE(1461), 1, + STATE(1641), 1, aux_sym__literal_repeat1, - STATE(1852), 1, + STATE(2003), 1, sym__expression, - ACTIONS(1171), 2, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1199), 2, + ACTIONS(1127), 2, sym_raw_string, sym_ansi_c_string, - STATE(1557), 6, + STATE(1978), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1453), 9, + STATE(1584), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -128122,31 +127618,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [82443] = 3, + [79647] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1338), 12, + ACTIONS(1314), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1340), 25, + ACTIONS(1316), 26, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -128155,7 +127653,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -128164,134 +127661,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [82488] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(326), 1, - anon_sym_DOLLAR, - ACTIONS(332), 1, - aux_sym_number_token1, - ACTIONS(334), 1, - aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1191), 1, - sym_word, - ACTIONS(1193), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - aux_sym_unary_expression_token1, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - STATE(1461), 1, - aux_sym__literal_repeat1, - STATE(1853), 1, - sym__expression, - ACTIONS(1171), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1453), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82573] = 23, + [79693] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(326), 1, - anon_sym_DOLLAR, - ACTIONS(332), 1, - aux_sym_number_token1, - ACTIONS(334), 1, - aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1223), 1, - sym_word, - ACTIONS(1225), 1, - anon_sym_BANG, - ACTIONS(1227), 1, - aux_sym_unary_expression_token1, - ACTIONS(1229), 1, - sym__special_character, - ACTIONS(1233), 1, + ACTIONS(5049), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5047), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - STATE(1461), 1, - aux_sym__literal_repeat1, - STATE(2044), 1, - sym__expression, - ACTIONS(1171), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1231), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1557), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1662), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82658] = 3, + [79739] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5074), 13, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, + anon_sym_QMARK, + ACTIONS(5051), 1, + anon_sym_RPAREN_RPAREN, + STATE(4198), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -128305,10 +127732,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5072), 24, + ACTIONS(5005), 19, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + sym_test_operator, + [79795] = 8, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, + anon_sym_QMARK, + ACTIONS(5053), 1, anon_sym_RPAREN_RPAREN, + STATE(4193), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5001), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128327,62 +127799,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, sym_test_operator, - [82703] = 23, + [79851] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(326), 1, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, anon_sym_DOLLAR, - ACTIONS(332), 1, + ACTIONS(246), 1, aux_sym_number_token1, - ACTIONS(334), 1, + ACTIONS(248), 1, aux_sym_number_token2, - ACTIONS(338), 1, + ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, + ACTIONS(264), 1, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1159), 1, anon_sym_DQUOTE, - ACTIONS(1167), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, + ACTIONS(1165), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1223), 1, + ACTIONS(1171), 1, sym_word, - ACTIONS(1225), 1, + ACTIONS(1173), 1, anon_sym_BANG, - ACTIONS(1227), 1, + ACTIONS(1175), 1, aux_sym_unary_expression_token1, - ACTIONS(1229), 1, - sym__special_character, - ACTIONS(1233), 1, + ACTIONS(1181), 1, sym_test_operator, - ACTIONS(4799), 1, + ACTIONS(4779), 1, anon_sym_BQUOTE, - STATE(1461), 1, + ACTIONS(4902), 1, + sym__special_character, + STATE(1831), 1, aux_sym__literal_repeat1, - STATE(2039), 1, + STATE(2125), 1, sym__expression, - ACTIONS(1171), 2, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1231), 2, + ACTIONS(1179), 2, sym_raw_string, sym_ansi_c_string, - STATE(1557), 6, + STATE(1623), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1662), 9, + STATE(1599), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -128392,59 +127863,123 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [82788] = 23, + [79937] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(326), 1, + ACTIONS(192), 1, + aux_sym_unary_expression_token1, + ACTIONS(230), 1, + sym_word, + ACTIONS(234), 1, + anon_sym_LPAREN, + ACTIONS(236), 1, + anon_sym_BANG, + ACTIONS(240), 1, anon_sym_DOLLAR, - ACTIONS(332), 1, + ACTIONS(246), 1, aux_sym_number_token1, - ACTIONS(334), 1, + ACTIONS(248), 1, aux_sym_number_token2, - ACTIONS(338), 1, + ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, + ACTIONS(264), 1, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1151), 1, - sym_word, - ACTIONS(1153), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1159), 1, anon_sym_DQUOTE, - ACTIONS(1167), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, + ACTIONS(1165), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1173), 1, + ACTIONS(1187), 1, + sym__special_character, + ACTIONS(1191), 1, sym_test_operator, - ACTIONS(4799), 1, + ACTIONS(4779), 1, anon_sym_BQUOTE, - ACTIONS(4805), 1, - sym__special_character, - STATE(1660), 1, + STATE(1586), 1, aux_sym__literal_repeat1, - STATE(1900), 1, + STATE(2122), 1, sym__expression, - ACTIONS(1165), 2, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1189), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1171), 2, + STATE(2117), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1593), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [80023] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(131), 1, + aux_sym_unary_expression_token1, + ACTIONS(139), 1, + sym_word, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(152), 1, + anon_sym_BANG, + ACTIONS(156), 1, + anon_sym_DOLLAR, + ACTIONS(162), 1, + aux_sym_number_token1, + ACTIONS(164), 1, + aux_sym_number_token2, + ACTIONS(168), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(182), 1, + sym__brace_start, + ACTIONS(1101), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1107), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1141), 1, + sym__special_character, + ACTIONS(1145), 1, + sym_test_operator, + ACTIONS(4900), 1, + anon_sym_BQUOTE, + STATE(1636), 1, + aux_sym__literal_repeat1, + STATE(2038), 1, + sym__expression, + ACTIONS(1095), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1557), 6, + ACTIONS(1143), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1623), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1438), 9, + STATE(1637), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -128454,20 +127989,21 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [82873] = 5, + [80109] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4928), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5030), 5, - sym__concat, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, + anon_sym_QMARK, + ACTIONS(5055), 1, + anon_sym_RPAREN_RPAREN, + STATE(4234), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(4922), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -128481,7 +128017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4926), 16, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128492,16 +128028,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, sym_test_operator, - [82922] = 3, + [80165] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1342), 12, + STATE(1790), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5057), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4036), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -128514,11 +128058,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1344), 25, + ACTIONS(4038), 23, sym_file_descriptor, - sym__concat, - sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -128530,7 +128073,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -128540,10 +128082,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [82967] = 3, + [80215] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 12, + ACTIONS(1284), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -128556,11 +128098,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1348), 25, + ACTIONS(1286), 26, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -128582,62 +128125,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [83012] = 7, + [80261] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(143), 1, - anon_sym_RBRACK, - ACTIONS(5084), 1, - anon_sym_QMARK, - ACTIONS(5078), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5082), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5076), 13, - anon_sym_EQ, + STATE(1788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5057), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4032), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5080), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(4034), 23, + sym_file_descriptor, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [83064] = 6, + [80311] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5086), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5090), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5088), 2, + ACTIONS(5059), 1, + anon_sym_RPAREN_RPAREN, + STATE(4255), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -128651,7 +128198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128671,10 +128218,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, sym_test_operator, - [83114] = 3, + [80367] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4968), 13, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, + anon_sym_QMARK, + ACTIONS(5061), 1, + anon_sym_RPAREN_RPAREN, + STATE(4176), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -128688,9 +128246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4966), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128708,25 +128264,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_EQ_TILDE, - anon_sym_QMARK, sym_test_operator, - [83158] = 7, + [80423] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, + anon_sym_DOLLAR, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1175), 1, + aux_sym_unary_expression_token1, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + ACTIONS(4902), 1, + sym__special_character, + STATE(1831), 1, + aux_sym__literal_repeat1, + STATE(2133), 1, + sym__expression, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1179), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1599), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [80509] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5098), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5100), 1, - anon_sym_COLON, - ACTIONS(4988), 2, + ACTIONS(5063), 1, + anon_sym_RPAREN_RPAREN, + STATE(4218), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5096), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5092), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -128740,7 +128357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5094), 16, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128751,16 +128368,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, sym_test_operator, - [83210] = 3, + [80565] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1312), 12, + STATE(1778), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5019), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3985), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -128773,10 +128398,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1314), 24, + ACTIONS(3987), 23, sym_file_descriptor, - sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -128789,7 +128414,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -128798,72 +128422,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [83254] = 3, + [80615] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(1354), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(611), 1, anon_sym_DOLLAR, + ACTIONS(615), 1, + anon_sym_DQUOTE, + ACTIONS(619), 1, aux_sym_number_token1, + ACTIONS(621), 1, aux_sym_number_token2, + ACTIONS(623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(635), 1, + sym__brace_start, + ACTIONS(1115), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, + anon_sym_BANG, + ACTIONS(1121), 1, + aux_sym_unary_expression_token1, + ACTIONS(4755), 1, + sym__special_character, + ACTIONS(4757), 1, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + ACTIONS(5065), 1, sym_word, - ACTIONS(1356), 24, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5069), 1, + sym_test_operator, + STATE(1604), 1, + aux_sym__literal_repeat1, + STATE(2187), 1, + sym__expression, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(631), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5067), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1623), 2, + sym_ternary_expression, + sym_postfix_expression, + STATE(2028), 4, + sym_binary_expression, + sym_unary_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1603), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [80703] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5023), 1, + sym__special_character, + STATE(1854), 1, + aux_sym__literal_repeat1, + ACTIONS(3663), 12, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3665), 24, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [83298] = 3, + [80753] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1324), 12, + ACTIONS(1338), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1326), 24, + ACTIONS(1340), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -128872,6 +128565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -128880,10 +128574,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [83342] = 3, + [80799] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1288), 12, + ACTIONS(1258), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -128896,10 +128590,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1290), 24, + ACTIONS(1263), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -128921,21 +128617,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [83386] = 7, + [80845] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5110), 1, - anon_sym_RPAREN, - ACTIONS(5112), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5104), 2, + ACTIONS(5071), 1, + anon_sym_RPAREN_RPAREN, + STATE(4188), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5108), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5102), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -128949,7 +128645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5106), 16, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128960,77 +128656,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, sym_test_operator, - [83438] = 3, + [80901] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(1328), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, anon_sym_DOLLAR, + ACTIONS(246), 1, aux_sym_number_token1, + ACTIONS(248), 1, aux_sym_number_token2, + ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1330), 25, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(264), 1, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(1159), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1163), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1175), 1, + aux_sym_unary_expression_token1, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + ACTIONS(4902), 1, + sym__special_character, + STATE(1831), 1, + aux_sym__literal_repeat1, + STATE(2075), 1, + sym__expression, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [83482] = 3, + ACTIONS(1179), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1599), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [80987] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1288), 11, + STATE(1780), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5019), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3989), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1290), 25, + ACTIONS(3991), 23, sym_file_descriptor, - sym__concat, - sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -129038,8 +128765,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129048,31 +128773,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [83526] = 3, + [81037] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1308), 12, + STATE(1827), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5045), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3837), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 24, + ACTIONS(3839), 24, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -129080,7 +128809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129089,10 +128818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [83570] = 3, + [81087] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1350), 12, + STATE(1830), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5045), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3841), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -129103,12 +128837,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1352), 24, + ACTIONS(3843), 24, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -129120,7 +128854,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -129130,30 +128863,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [83614] = 3, + [81137] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1328), 12, + STATE(1773), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5073), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1258), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1330), 24, + ACTIONS(1263), 23, sym_file_descriptor, - sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -129161,8 +128900,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129171,62 +128908,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [83658] = 3, + [81187] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 12, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, anon_sym_DOLLAR, + ACTIONS(246), 1, aux_sym_number_token1, + ACTIONS(248), 1, aux_sym_number_token2, + ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1272), 24, - sym_file_descriptor, - sym__bare_dollar, + ACTIONS(264), 1, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1147), 1, + sym_word, + ACTIONS(1151), 1, + anon_sym_BANG, + ACTIONS(1153), 1, + aux_sym_unary_expression_token1, + ACTIONS(1157), 1, sym__special_character, + ACTIONS(1159), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1163), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1165), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym_test_operator, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + STATE(1586), 1, + aux_sym__literal_repeat1, + STATE(2037), 1, + sym__expression, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1161), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1167), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [83702] = 7, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1583), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [81273] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5114), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5122), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(4988), 2, + ACTIONS(5076), 1, + anon_sym_RPAREN_RPAREN, + STATE(4166), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5120), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5116), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -129240,7 +128999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5118), 16, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129251,16 +129010,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, sym_test_operator, - [83754] = 3, + [81329] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1324), 12, + ACTIONS(1276), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -129273,10 +129035,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1326), 24, + ACTIONS(1278), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -129298,60 +129062,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [83798] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5096), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5030), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - ACTIONS(5092), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5094), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [83846] = 6, + [81375] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5124), 1, + ACTIONS(5078), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, + STATE(4291), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -129365,7 +129090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129385,55 +129110,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, sym_test_operator, - [83896] = 7, + [81431] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(143), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(5132), 1, - anon_sym_QMARK, - ACTIONS(4988), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5130), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5126), 13, - anon_sym_EQ, + ACTIONS(5019), 1, + aux_sym_concatenation_token1, + ACTIONS(5080), 1, + sym__concat, + STATE(1773), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1252), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5128), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1254), 23, + sym_file_descriptor, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [81483] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, + anon_sym_DOLLAR, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1147), 1, + sym_word, + ACTIONS(1151), 1, + anon_sym_BANG, + ACTIONS(1153), 1, + aux_sym_unary_expression_token1, + ACTIONS(1157), 1, + sym__special_character, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, sym_test_operator, - [83948] = 3, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + STATE(1586), 1, + aux_sym__literal_repeat1, + STATE(2128), 1, + sym__expression, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1161), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1583), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [81569] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1316), 12, + ACTIONS(5019), 1, + aux_sym_concatenation_token1, + ACTIONS(5082), 1, + sym__concat, + STATE(1773), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1246), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -129446,10 +129241,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1318), 24, + ACTIONS(1248), 23, sym_file_descriptor, - sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -129462,7 +129257,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129471,10 +129265,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [83992] = 3, + [81621] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5074), 13, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, + anon_sym_QMARK, + ACTIONS(5084), 1, + anon_sym_RPAREN_RPAREN, + STATE(4208), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -129488,9 +129293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5072), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129508,35 +129311,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_EQ_TILDE, - anon_sym_QMARK, sym_test_operator, - [84036] = 3, + [81677] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1328), 12, + ACTIONS(1280), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1330), 24, + ACTIONS(1282), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -129545,6 +129347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129553,10 +129356,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [84080] = 3, + [81723] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1316), 12, + STATE(1788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5057), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1242), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -129569,10 +129377,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1318), 24, + ACTIONS(1244), 23, sym_file_descriptor, - sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -129584,7 +129392,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -129594,96 +129401,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [84124] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5096), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4924), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - ACTIONS(5092), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5094), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [84172] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5096), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4924), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - ACTIONS(5092), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5094), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [84220] = 3, + [81773] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1274), 12, + ACTIONS(1318), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -129696,10 +129417,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1279), 24, + ACTIONS(1320), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -129721,51 +129444,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [84264] = 3, + [81819] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(1302), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(192), 1, + aux_sym_unary_expression_token1, + ACTIONS(230), 1, + sym_word, + ACTIONS(234), 1, + anon_sym_LPAREN, + ACTIONS(236), 1, + anon_sym_BANG, + ACTIONS(240), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(246), 1, aux_sym_number_token1, + ACTIONS(248), 1, aux_sym_number_token2, + ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1187), 1, + sym__special_character, + ACTIONS(1191), 1, + sym_test_operator, + ACTIONS(4779), 1, anon_sym_BQUOTE, + STATE(1586), 1, + aux_sym__literal_repeat1, + STATE(2080), 1, + sym__expression, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1189), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2117), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1593), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [81905] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(302), 1, + aux_sym_unary_expression_token1, + ACTIONS(596), 1, sym_word, - ACTIONS(1304), 24, - sym_file_descriptor, - sym__concat, + ACTIONS(605), 1, + anon_sym_LPAREN, + ACTIONS(607), 1, + anon_sym_BANG, + ACTIONS(611), 1, + anon_sym_DOLLAR, + ACTIONS(615), 1, + anon_sym_DQUOTE, + ACTIONS(619), 1, + aux_sym_number_token1, + ACTIONS(621), 1, + aux_sym_number_token2, + ACTIONS(623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(633), 1, + sym_test_operator, + ACTIONS(635), 1, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(4757), 1, + anon_sym_BQUOTE, + ACTIONS(4860), 1, + sym__special_character, + STATE(1923), 1, + aux_sym__literal_repeat1, + STATE(2140), 1, + sym__expression, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, + ACTIONS(617), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(631), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2073), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1635), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [81991] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(131), 1, + aux_sym_unary_expression_token1, + ACTIONS(139), 1, + sym_word, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(152), 1, + anon_sym_BANG, + ACTIONS(156), 1, + anon_sym_DOLLAR, + ACTIONS(162), 1, + aux_sym_number_token1, + ACTIONS(164), 1, + aux_sym_number_token2, + ACTIONS(168), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(182), 1, + sym__brace_start, + ACTIONS(1101), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1107), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1141), 1, + sym__special_character, + ACTIONS(1145), 1, + sym_test_operator, + ACTIONS(4900), 1, + anon_sym_BQUOTE, + STATE(1636), 1, + aux_sym__literal_repeat1, + STATE(2060), 1, + sym__expression, + ACTIONS(1095), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [84308] = 3, + ACTIONS(1143), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1637), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [82077] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1312), 12, + ACTIONS(5057), 1, + aux_sym_concatenation_token1, + ACTIONS(5086), 1, + sym__concat, + STATE(1799), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1246), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -129778,10 +129655,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1314), 24, + ACTIONS(1248), 23, sym_file_descriptor, - sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -129793,7 +129670,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -129803,10 +129679,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [84352] = 3, + [82129] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1324), 11, + ACTIONS(1294), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -129817,12 +129693,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1326), 25, + ACTIONS(1296), 26, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -129844,120 +129722,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [84396] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5134), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4974), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [84446] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5098), 1, - anon_sym_QMARK, - ACTIONS(5136), 1, - anon_sym_COLON, - ACTIONS(4988), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5096), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5092), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5094), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [84498] = 3, + [82175] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1288), 12, + ACTIONS(5057), 1, + aux_sym_concatenation_token1, + ACTIONS(5088), 1, + sym__concat, + STATE(1799), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1252), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1290), 24, + ACTIONS(1254), 23, sym_file_descriptor, - sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -129965,7 +129759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129974,30 +129768,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [84542] = 3, + [82227] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1308), 12, + ACTIONS(1326), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1310), 24, + ACTIONS(1328), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -130006,7 +129803,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -130015,30 +129811,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [84586] = 3, + [82273] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 12, + ACTIONS(1284), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1348), 24, + ACTIONS(1286), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -130047,7 +129846,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -130056,62 +129854,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [84630] = 3, - ACTIONS(63), 1, + [82319] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1344), 24, - sym_file_descriptor, + ACTIONS(4412), 1, + aux_sym_concatenation_token1, + ACTIONS(5090), 1, sym__concat, + STATE(1356), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 2, + sym_file_descriptor, sym__brace_start, + ACTIONS(1252), 33, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [84674] = 7, + [82371] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5098), 1, - anon_sym_QMARK, - ACTIONS(5138), 1, - anon_sym_COLON, - ACTIONS(4988), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5096), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5092), 13, + ACTIONS(5094), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -130125,7 +129917,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5094), 16, + ACTIONS(5092), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130136,64 +129932,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [84726] = 3, + [82417] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4879), 13, - anon_sym_EQ, + ACTIONS(1298), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4877), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1300), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [84770] = 6, + [82463] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5140), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(1284), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -130207,7 +130003,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(1286), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130225,94 +130024,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [84820] = 3, - ACTIONS(63), 1, + [82509] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1279), 24, - sym_file_descriptor, + ACTIONS(4412), 1, + aux_sym_concatenation_token1, + ACTIONS(5096), 1, sym__concat, + STATE(1356), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 2, + sym_file_descriptor, sym__brace_start, + ACTIONS(1246), 33, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [84864] = 3, + [82561] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(1302), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, anon_sym_DOLLAR, + ACTIONS(246), 1, aux_sym_number_token1, + ACTIONS(248), 1, aux_sym_number_token2, + ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1304), 24, - sym_file_descriptor, - sym__concat, + ACTIONS(264), 1, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(1159), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1163), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1193), 1, + sym_word, + ACTIONS(1195), 1, + anon_sym_BANG, + ACTIONS(1197), 1, + aux_sym_unary_expression_token1, + ACTIONS(1199), 1, + sym__special_character, + ACTIONS(1203), 1, + sym_test_operator, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + STATE(1586), 1, + aux_sym__literal_repeat1, + STATE(1629), 1, + sym__expression, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [84908] = 3, + ACTIONS(1201), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1711), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [82647] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1338), 12, + STATE(1799), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5098), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1258), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -130325,10 +130159,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1340), 24, + ACTIONS(1263), 23, sym_file_descriptor, - sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -130340,7 +130174,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -130350,10 +130183,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [84952] = 3, + [82697] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1354), 11, + ACTIONS(1302), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -130364,12 +130197,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1356), 25, + ACTIONS(1304), 26, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -130391,62 +130226,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [84996] = 3, + [82743] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(3416), 12, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, + ACTIONS(192), 1, + aux_sym_unary_expression_token1, + ACTIONS(230), 1, + sym_word, + ACTIONS(234), 1, + anon_sym_LPAREN, + ACTIONS(236), 1, + anon_sym_BANG, + ACTIONS(240), 1, anon_sym_DOLLAR, + ACTIONS(246), 1, aux_sym_number_token1, + ACTIONS(248), 1, aux_sym_number_token2, + ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3418), 24, - sym_file_descriptor, - sym__bare_dollar, + ACTIONS(264), 1, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + ACTIONS(1159), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1163), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1165), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(1187), 1, + sym__special_character, + ACTIONS(1191), 1, sym_test_operator, - [85040] = 7, - ACTIONS(63), 1, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + STATE(1586), 1, + aux_sym__literal_repeat1, + STATE(2100), 1, + sym__expression, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1189), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2117), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1593), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [82829] = 8, + ACTIONS(63), 1, sym_comment, - ACTIONS(5112), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5142), 1, - anon_sym_RPAREN, - ACTIONS(5104), 2, + ACTIONS(5101), 1, + anon_sym_RPAREN_RPAREN, + STATE(4165), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5108), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5102), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -130460,7 +130317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5106), 16, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130471,80 +130328,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, sym_test_operator, - [85092] = 6, + [82885] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5144), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, - anon_sym_EQ, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, + anon_sym_DOLLAR, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1193), 1, + sym_word, + ACTIONS(1195), 1, + anon_sym_BANG, + ACTIONS(1197), 1, + aux_sym_unary_expression_token1, + ACTIONS(1199), 1, + sym__special_character, + ACTIONS(1203), 1, + sym_test_operator, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + STATE(1586), 1, + aux_sym__literal_repeat1, + STATE(2181), 1, + sym__expression, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1201), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1711), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [82971] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1268), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4974), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1270), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [85142] = 3, + [83017] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1298), 12, + ACTIONS(1268), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1300), 24, + ACTIONS(1270), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -130553,7 +130478,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -130562,103 +130486,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [85186] = 7, + [83063] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(5054), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5122), 1, - anon_sym_QMARK, - ACTIONS(4988), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5120), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5116), 13, - anon_sym_EQ, + ACTIONS(302), 1, + aux_sym_unary_expression_token1, + ACTIONS(596), 1, + sym_word, + ACTIONS(605), 1, + anon_sym_LPAREN, + ACTIONS(607), 1, + anon_sym_BANG, + ACTIONS(611), 1, + anon_sym_DOLLAR, + ACTIONS(615), 1, + anon_sym_DQUOTE, + ACTIONS(619), 1, + aux_sym_number_token1, + ACTIONS(621), 1, + aux_sym_number_token2, + ACTIONS(623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(633), 1, + sym_test_operator, + ACTIONS(635), 1, + sym__brace_start, + ACTIONS(4757), 1, + anon_sym_BQUOTE, + ACTIONS(4860), 1, + sym__special_character, + STATE(1923), 1, + aux_sym__literal_repeat1, + STATE(2097), 1, + sym__expression, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(617), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(631), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2073), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1635), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [83149] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1310), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5118), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1312), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [85238] = 3, - ACTIONS(3), 1, + [83195] = 23, + ACTIONS(63), 1, sym_comment, - ACTIONS(5074), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, + anon_sym_DOLLAR, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1175), 1, + aux_sym_unary_expression_token1, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + ACTIONS(4902), 1, + sym__special_character, + STATE(1831), 1, + aux_sym__literal_repeat1, + STATE(2130), 1, + sym__expression, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1179), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1599), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [83281] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1314), 12, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5072), 20, + ACTIONS(1316), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_SLASH2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [85282] = 6, + [83327] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5146), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(1294), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -130672,7 +130715,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(1296), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130690,16 +130736,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [85332] = 5, + [83373] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(5148), 1, + ACTIONS(93), 1, + aux_sym_unary_expression_token1, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(156), 1, + anon_sym_DOLLAR, + ACTIONS(162), 1, + aux_sym_number_token1, + ACTIONS(164), 1, + aux_sym_number_token2, + ACTIONS(168), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(182), 1, + sym__brace_start, + ACTIONS(220), 1, + sym_word, + ACTIONS(222), 1, + anon_sym_BANG, + ACTIONS(1099), 1, sym__special_character, - STATE(1905), 1, + ACTIONS(1101), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1107), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1111), 1, + sym_test_operator, + ACTIONS(4900), 1, + anon_sym_BQUOTE, + STATE(1636), 1, aux_sym__literal_repeat1, - ACTIONS(4049), 10, + STATE(1990), 1, + sym__expression, + ACTIONS(1095), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1109), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1557), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [83459] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(1812), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5103), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1258), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -130709,16 +130822,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4051), 24, + ACTIONS(1263), 24, sym_file_descriptor, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -130726,80 +130840,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [85380] = 3, + [83509] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 12, + ACTIONS(1272), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1274), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + sym_test_operator, + [83555] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_unary_expression_token1, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(156), 1, anon_sym_DOLLAR, + ACTIONS(162), 1, aux_sym_number_token1, + ACTIONS(164), 1, aux_sym_number_token2, + ACTIONS(168), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1336), 24, - sym_file_descriptor, - sym__concat, + ACTIONS(182), 1, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(220), 1, + sym_word, + ACTIONS(222), 1, + anon_sym_BANG, + ACTIONS(1099), 1, sym__special_character, + ACTIONS(1101), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1105), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1107), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1111), 1, + sym_test_operator, + ACTIONS(4900), 1, + anon_sym_BQUOTE, + STATE(1636), 1, + aux_sym__literal_repeat1, + STATE(1989), 1, + sym__expression, + ACTIONS(1095), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1109), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [85424] = 3, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1557), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [83641] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 12, + ACTIONS(1342), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1286), 24, + ACTIONS(1344), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -130808,7 +130990,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -130817,30 +130998,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [85468] = 3, + [83687] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 12, + ACTIONS(1346), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1286), 24, + ACTIONS(1348), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -130849,7 +131033,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -130858,17 +131041,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [85512] = 6, + [83733] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, + anon_sym_DOLLAR, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1175), 1, + aux_sym_unary_expression_token1, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + ACTIONS(4902), 1, + sym__special_character, + STATE(1831), 1, + aux_sym__literal_repeat1, + STATE(2144), 1, + sym__expression, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1179), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1599), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [83819] = 8, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5150), 1, + ACTIONS(5106), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, + STATE(4256), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -130882,7 +131132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130902,21 +131152,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, sym_test_operator, - [85562] = 7, + [83875] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(155), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(5132), 1, + ACTIONS(611), 1, + anon_sym_DOLLAR, + ACTIONS(615), 1, + anon_sym_DQUOTE, + ACTIONS(619), 1, + aux_sym_number_token1, + ACTIONS(621), 1, + aux_sym_number_token2, + ACTIONS(623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(635), 1, + sym__brace_start, + ACTIONS(1115), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, + anon_sym_BANG, + ACTIONS(1121), 1, + aux_sym_unary_expression_token1, + ACTIONS(4755), 1, + sym__special_character, + ACTIONS(4757), 1, + anon_sym_BQUOTE, + ACTIONS(5108), 1, + sym_word, + ACTIONS(5112), 1, + sym_test_operator, + STATE(1699), 1, + aux_sym__literal_repeat1, + STATE(2187), 1, + sym__expression, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(631), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5110), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1623), 2, + sym_ternary_expression, + sym_postfix_expression, + STATE(1974), 4, + sym_binary_expression, + sym_unary_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1698), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [83963] = 8, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(4988), 2, + ACTIONS(5114), 1, + anon_sym_RPAREN_RPAREN, + STATE(4204), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5130), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5126), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -130930,7 +131244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5128), 16, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130941,68 +131255,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, sym_test_operator, - [85614] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4968), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4966), 20, - sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_SLASH2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [85658] = 7, + [84019] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(155), 1, - anon_sym_RBRACK, - ACTIONS(5084), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5078), 2, + ACTIONS(5116), 1, + anon_sym_RPAREN_RPAREN, + STATE(4179), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5082), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5076), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -131016,7 +131292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5080), 16, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131027,36 +131303,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, sym_test_operator, - [85710] = 3, + [84075] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1320), 12, + ACTIONS(1272), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1322), 24, + ACTIONS(1274), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -131065,7 +131347,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -131074,17 +131355,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [85754] = 6, + [84121] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5152), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(1242), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -131095,10 +131369,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(1244), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131117,11 +131395,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym__special_character, sym_test_operator, - [85804] = 3, + [84167] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4897), 13, + ACTIONS(5118), 1, + sym__special_character, + STATE(1824), 1, + aux_sym__literal_repeat1, + ACTIONS(1352), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -131135,7 +131419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4895), 23, + ACTIONS(1357), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -131155,14 +131439,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [85848] = 3, + [84217] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1354), 13, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, + anon_sym_QMARK, + ACTIONS(5121), 1, + anon_sym_RPAREN_RPAREN, + STATE(4236), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -131176,9 +131471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1356), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131196,25 +131489,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_EQ_TILDE, - anon_sym_QMARK, sym_test_operator, - [85892] = 7, + [84273] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(153), 1, - anon_sym_RBRACK, - ACTIONS(5084), 1, - anon_sym_QMARK, - ACTIONS(5078), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5082), 3, + ACTIONS(5023), 1, + sym__special_character, + STATE(1854), 1, + aux_sym__literal_repeat1, + ACTIONS(3673), 12, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_EQ_TILDE, - ACTIONS(5076), 13, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3675), 24, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [84323] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5045), 1, + aux_sym_concatenation_token1, + ACTIONS(5123), 1, + sym__concat, + STATE(1812), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1252), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1254), 24, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [84375] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1242), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -131228,7 +131599,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5080), 16, + sym__special_character, + ACTIONS(1244), 24, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131239,23 +131614,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [85944] = 6, + [84421] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5154), 1, + ACTIONS(5125), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, + STATE(4277), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -131269,7 +131653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131289,31 +131673,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, sym_test_operator, - [85994] = 3, + [84477] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1298), 12, + ACTIONS(5045), 1, + aux_sym_concatenation_token1, + ACTIONS(5127), 1, + sym__concat, + STATE(1812), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1246), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1300), 24, + ACTIONS(1248), 24, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -131321,7 +131710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -131330,33 +131719,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [86038] = 5, + [84529] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(5156), 1, + ACTIONS(5129), 1, sym__special_character, - STATE(1908), 1, + STATE(1910), 1, aux_sym__literal_repeat1, - ACTIONS(3787), 11, + ACTIONS(143), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(600), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [84579] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1334), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, + anon_sym_BQUOTE, sym_word, - ACTIONS(3789), 23, + ACTIONS(1336), 26, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -131364,71 +131798,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [86086] = 5, + [84625] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5108), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4924), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RPAREN, - anon_sym_QMARK, - ACTIONS(5102), 13, - anon_sym_EQ, + ACTIONS(1330), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5106), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1332), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [86134] = 5, + [84671] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5108), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4924), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RPAREN, - anon_sym_QMARK, - ACTIONS(5102), 13, + ACTIONS(1342), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -131442,7 +131867,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5106), 16, + ACTIONS(1344), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131453,16 +131881,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [86182] = 3, + [84717] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1350), 13, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, + anon_sym_QMARK, + ACTIONS(5131), 1, + anon_sym_RPAREN_RPAREN, + STATE(4185), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -131476,9 +131921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1352), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131496,21 +131939,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_EQ_TILDE, - anon_sym_QMARK, sym_test_operator, - [86226] = 6, + [84773] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, + ACTIONS(93), 1, + aux_sym_unary_expression_token1, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(156), 1, + anon_sym_DOLLAR, + ACTIONS(162), 1, + aux_sym_number_token1, + ACTIONS(164), 1, + aux_sym_number_token2, + ACTIONS(168), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(182), 1, + sym__brace_start, + ACTIONS(220), 1, + sym_word, + ACTIONS(222), 1, + anon_sym_BANG, + ACTIONS(1099), 1, + sym__special_character, + ACTIONS(1101), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1107), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1111), 1, + sym_test_operator, + ACTIONS(4900), 1, + anon_sym_BQUOTE, + STATE(1629), 1, + sym__expression, + STATE(1636), 1, + aux_sym__literal_repeat1, + ACTIONS(1095), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1109), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1557), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [84859] = 8, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5158), 1, + ACTIONS(5133), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, + STATE(4173), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -131524,7 +132032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131544,10 +132052,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, sym_test_operator, - [86276] = 3, + [84915] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1243), 13, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, + anon_sym_QMARK, + ACTIONS(5135), 1, + anon_sym_RPAREN_RPAREN, + STATE(4189), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -131561,9 +132080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1372), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131581,25 +132098,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, sym_test_operator, - [86320] = 7, + [84971] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(153), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(5132), 1, - anon_sym_QMARK, - ACTIONS(4988), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5130), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5126), 13, + ACTIONS(4799), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -131613,7 +132117,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5128), 16, + ACTIONS(4797), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131624,110 +132132,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [86372] = 5, + [85017] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(5130), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5030), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK, - ACTIONS(5126), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5128), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, + anon_sym_DOLLAR, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1147), 1, + sym_word, + ACTIONS(1151), 1, + anon_sym_BANG, + ACTIONS(1153), 1, + aux_sym_unary_expression_token1, + ACTIONS(1157), 1, + sym__special_character, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, sym_test_operator, - [86420] = 6, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + STATE(1586), 1, + aux_sym__literal_repeat1, + STATE(2102), 1, + sym__expression, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1161), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1583), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [85103] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5160), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, - anon_sym_EQ, + ACTIONS(1322), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4974), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1324), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [86470] = 6, + [85149] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5162), 1, - anon_sym_COLON, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(1334), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -131741,7 +132266,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(1336), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131759,23 +132287,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [86520] = 7, + [85195] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5098), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5164), 1, - anon_sym_COLON, - ACTIONS(4988), 2, + ACTIONS(5137), 1, + anon_sym_RPAREN_RPAREN, + STATE(4250), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5096), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5092), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -131789,7 +132320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5094), 16, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131800,100 +132331,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, sym_test_operator, - [86572] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1350), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1352), 25, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [86616] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5166), 1, - sym__special_character, - STATE(1905), 1, - aux_sym__literal_repeat1, - ACTIONS(1358), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1363), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [86664] = 3, + [85251] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1312), 11, + ACTIONS(1318), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -131904,12 +132354,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1314), 25, + ACTIONS(1320), 26, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -131931,15 +132383,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [86708] = 4, + [85297] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5050), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RPAREN, - anon_sym_QMARK, - ACTIONS(5169), 13, + ACTIONS(1330), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -131953,7 +132400,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5171), 19, + ACTIONS(1332), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131971,62 +132421,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [86754] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5173), 1, - sym__special_character, - STATE(1908), 1, - aux_sym__literal_repeat1, - ACTIONS(1358), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1363), 23, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [86802] = 6, + [85343] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5176), 1, + ACTIONS(5139), 6, anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4972), 13, + anon_sym_QMARK, + anon_sym_COLON, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132040,7 +132450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132060,17 +132470,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, sym_test_operator, - [86852] = 6, + [85391] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5178), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(611), 1, + anon_sym_DOLLAR, + ACTIONS(615), 1, + anon_sym_DQUOTE, + ACTIONS(619), 1, + aux_sym_number_token1, + ACTIONS(621), 1, + aux_sym_number_token2, + ACTIONS(623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(635), 1, + sym__brace_start, + ACTIONS(1113), 1, + sym_word, + ACTIONS(1115), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, + anon_sym_BANG, + ACTIONS(1121), 1, + aux_sym_unary_expression_token1, + ACTIONS(1129), 1, + sym_test_operator, + ACTIONS(4755), 1, + sym__special_character, + ACTIONS(4757), 1, + anon_sym_BQUOTE, + STATE(1641), 1, + aux_sym__literal_repeat1, + STATE(1967), 1, + sym__expression, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(631), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1127), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1978), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1584), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [85477] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5143), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132084,7 +132550,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(5141), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132103,11 +132573,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [86902] = 3, + [85523] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1243), 13, + ACTIONS(1268), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132121,7 +132593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1372), 23, + ACTIONS(1270), 25, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -132141,21 +132614,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [86946] = 6, + [85569] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5180), 1, + ACTIONS(5145), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, + STATE(4219), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132169,7 +132647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132189,17 +132667,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, sym_test_operator, - [86996] = 6, + [85625] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5184), 1, - anon_sym_RPAREN, - ACTIONS(5186), 1, - anon_sym_QMARK, - ACTIONS(5182), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5169), 13, + ACTIONS(1326), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1328), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [85671] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1268), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132213,7 +132727,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5171), 19, + ACTIONS(1270), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132231,23 +132748,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [87046] = 7, + [85717] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5112), 1, - anon_sym_QMARK, - ACTIONS(5188), 1, - anon_sym_RPAREN, - ACTIONS(5104), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5108), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5102), 13, + ACTIONS(1338), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132261,7 +132770,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5106), 16, + ACTIONS(1340), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132272,23 +132784,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [87098] = 6, + [85763] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5190), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(5147), 1, + sym__special_character, + STATE(1854), 1, + aux_sym__literal_repeat1, + ACTIONS(1352), 12, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1357), 24, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [85813] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_unary_expression_token1, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(156), 1, + anon_sym_DOLLAR, + ACTIONS(162), 1, + aux_sym_number_token1, + ACTIONS(164), 1, + aux_sym_number_token2, + ACTIONS(168), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(182), 1, + sym__brace_start, + ACTIONS(220), 1, + sym_word, + ACTIONS(222), 1, + anon_sym_BANG, + ACTIONS(1099), 1, + sym__special_character, + ACTIONS(1101), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1107), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1111), 1, + sym_test_operator, + ACTIONS(4900), 1, + anon_sym_BQUOTE, + STATE(1636), 1, + aux_sym__literal_repeat1, + STATE(1985), 1, + sym__expression, + ACTIONS(1095), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1109), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1557), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [85899] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1258), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132302,7 +132921,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(1263), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132320,23 +132942,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [87148] = 7, + [85945] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4984), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5122), 1, - anon_sym_QMARK, - ACTIONS(4988), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5120), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5116), 13, + ACTIONS(1302), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132350,7 +132964,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5118), 16, + ACTIONS(1304), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132361,23 +132978,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [87200] = 6, + [85991] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5192), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, + anon_sym_DOLLAR, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1147), 1, + sym_word, + ACTIONS(1151), 1, + anon_sym_BANG, + ACTIONS(1153), 1, + aux_sym_unary_expression_token1, + ACTIONS(1157), 1, + sym__special_character, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym_test_operator, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + STATE(1586), 1, + aux_sym__literal_repeat1, + STATE(1629), 1, + sym__expression, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1161), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1583), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [86077] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(192), 1, + aux_sym_unary_expression_token1, + ACTIONS(230), 1, + sym_word, + ACTIONS(234), 1, + anon_sym_LPAREN, + ACTIONS(236), 1, + anon_sym_BANG, + ACTIONS(240), 1, + anon_sym_DOLLAR, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1187), 1, + sym__special_character, + ACTIONS(1191), 1, + sym_test_operator, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + STATE(1586), 1, + aux_sym__literal_repeat1, + STATE(2063), 1, + sym__expression, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1189), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2117), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1593), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [86163] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, + anon_sym_DOLLAR, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1147), 1, + sym_word, + ACTIONS(1151), 1, + anon_sym_BANG, + ACTIONS(1153), 1, + aux_sym_unary_expression_token1, + ACTIONS(1157), 1, + sym__special_character, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym_test_operator, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + STATE(1586), 1, + aux_sym__literal_repeat1, + STATE(2106), 1, + sym__expression, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1161), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1583), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [86249] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5152), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132391,7 +133196,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(5150), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132410,11 +133219,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [87250] = 3, + [86295] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 13, + ACTIONS(5152), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132428,7 +133239,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1348), 23, + ACTIONS(5150), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -132448,14 +133261,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [87294] = 3, + [86341] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1342), 13, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, + anon_sym_QMARK, + ACTIONS(5154), 1, + anon_sym_RPAREN_RPAREN, + STATE(4274), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132469,9 +133293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1344), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132489,14 +133311,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_EQ_TILDE, - anon_sym_QMARK, sym_test_operator, - [87338] = 3, + [86397] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 11, + ACTIONS(1268), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -132507,12 +133327,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1286), 25, + ACTIONS(1270), 26, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -132534,61 +133356,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [87382] = 6, + [86443] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5194), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, - anon_sym_EQ, + ACTIONS(1268), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4974), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1270), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [87432] = 6, + [86489] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5196), 1, + ACTIONS(5156), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, + STATE(4238), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132602,7 +133427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132622,17 +133447,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, sym_test_operator, - [87482] = 6, + [86545] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5198), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(1272), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132646,7 +133464,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(1274), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132665,22 +133487,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [87532] = 7, + [86591] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(5132), 1, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, + anon_sym_DOLLAR, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1193), 1, + sym_word, + ACTIONS(1195), 1, + anon_sym_BANG, + ACTIONS(1197), 1, + aux_sym_unary_expression_token1, + ACTIONS(1199), 1, + sym__special_character, + ACTIONS(1203), 1, + sym_test_operator, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + STATE(1586), 1, + aux_sym__literal_repeat1, + STATE(2149), 1, + sym__expression, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1201), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1711), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [86677] = 8, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(4988), 2, + ACTIONS(5158), 1, + anon_sym_RPAREN_RPAREN, + STATE(4276), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5130), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5126), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132694,7 +133581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5128), 16, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132705,16 +133592,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, sym_test_operator, - [87584] = 3, + [86733] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(1338), 13, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, + anon_sym_DOLLAR, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1147), 1, + sym_word, + ACTIONS(1151), 1, + anon_sym_BANG, + ACTIONS(1153), 1, + aux_sym_unary_expression_token1, + ACTIONS(1157), 1, + sym__special_character, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym_test_operator, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + STATE(1586), 1, + aux_sym__literal_repeat1, + STATE(2054), 1, + sym__expression, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1161), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1583), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [86819] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5162), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132728,7 +133681,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1340), 23, + ACTIONS(5160), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -132748,25 +133703,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [87628] = 7, + [86865] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_RBRACK, - ACTIONS(5084), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5078), 2, + ACTIONS(5164), 1, + anon_sym_RPAREN_RPAREN, + STATE(4195), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5082), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5076), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132780,7 +133735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5080), 16, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132791,23 +133746,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, sym_test_operator, - [87680] = 6, + [86921] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5200), 1, + ACTIONS(5166), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, + STATE(4282), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132821,7 +133783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132841,19 +133803,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, sym_test_operator, - [87730] = 5, + [86977] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5082), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5030), 4, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, + anon_sym_QMARK, + ACTIONS(5168), 1, + anon_sym_RPAREN_RPAREN, + STATE(4253), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(5076), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132867,7 +133831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5080), 16, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132878,23 +133842,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, sym_test_operator, - [87778] = 6, + [87033] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5202), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(1342), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1344), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [87079] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1346), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1348), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [87125] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1276), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132908,7 +133954,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(1278), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132926,19 +133975,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [87828] = 6, - ACTIONS(63), 1, + [87171] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(5090), 1, + ACTIONS(4412), 1, + aux_sym_concatenation_token1, + ACTIONS(4414), 1, + sym__concat, + STATE(1793), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3987), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(3985), 33, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [87223] = 8, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5204), 1, + ACTIONS(5170), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, + STATE(4270), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132952,7 +134054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132972,32 +134074,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, sym_test_operator, - [87878] = 7, + [87279] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5046), 1, - anon_sym_DQUOTE, - STATE(2627), 1, - sym_string, - ACTIONS(1217), 2, + ACTIONS(4412), 1, + aux_sym_concatenation_token1, + ACTIONS(4414), 1, + sym__concat, + STATE(1797), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3991), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(5048), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5044), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 21, - anon_sym_LF, - anon_sym_SEMI, + sym__brace_start, + ACTIONS(3989), 33, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -133005,9 +134095,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133015,98 +134102,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [87930] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5046), 1, - anon_sym_DQUOTE, - STATE(2627), 1, - sym_string, - ACTIONS(1221), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5048), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5044), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 21, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - [87982] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1308), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1310), 25, - sym_file_descriptor, + sym_test_operator, + [87331] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1314), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1316), 25, sym__concat, - sym_variable_name, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_test_operator, - [88026] = 3, + [87377] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 11, + ACTIONS(1272), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -133117,12 +134177,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1286), 25, + ACTIONS(1274), 26, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -133144,10 +134206,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [88070] = 3, + [87423] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 13, + ACTIONS(1242), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133161,7 +134223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1336), 23, + ACTIONS(1244), 25, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -133184,18 +134246,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, + sym__special_character, sym_test_operator, - [88114] = 6, + [87469] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5206), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(611), 1, + anon_sym_DOLLAR, + ACTIONS(615), 1, + anon_sym_DQUOTE, + ACTIONS(619), 1, + aux_sym_number_token1, + ACTIONS(621), 1, + aux_sym_number_token2, + ACTIONS(623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(635), 1, + sym__brace_start, + ACTIONS(1113), 1, + sym_word, + ACTIONS(1115), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, + anon_sym_BANG, + ACTIONS(1121), 1, + aux_sym_unary_expression_token1, + ACTIONS(1129), 1, + sym_test_operator, + ACTIONS(4755), 1, + sym__special_character, + ACTIONS(4757), 1, + anon_sym_BQUOTE, + STATE(1641), 1, + aux_sym__literal_repeat1, + STATE(2004), 1, + sym__expression, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(631), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1127), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1978), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1584), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87555] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1280), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133209,7 +134329,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(1282), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133227,19 +134350,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [88164] = 6, + [87601] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5208), 1, + ACTIONS(5172), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, + STATE(4209), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133253,7 +134383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133273,17 +134403,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, sym_test_operator, - [88214] = 6, + [87657] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5210), 1, + ACTIONS(5174), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, + STATE(4272), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133297,7 +134431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133317,17 +134451,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, sym_test_operator, - [88264] = 6, + [87713] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5212), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(302), 1, + aux_sym_unary_expression_token1, + ACTIONS(596), 1, + sym_word, + ACTIONS(605), 1, + anon_sym_LPAREN, + ACTIONS(607), 1, + anon_sym_BANG, + ACTIONS(611), 1, + anon_sym_DOLLAR, + ACTIONS(615), 1, + anon_sym_DQUOTE, + ACTIONS(619), 1, + aux_sym_number_token1, + ACTIONS(621), 1, + aux_sym_number_token2, + ACTIONS(623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(633), 1, + sym_test_operator, + ACTIONS(635), 1, + sym__brace_start, + ACTIONS(4757), 1, + anon_sym_BQUOTE, + ACTIONS(4860), 1, + sym__special_character, + STATE(1923), 1, + aux_sym__literal_repeat1, + STATE(2093), 1, + sym__expression, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(617), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(631), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2073), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1635), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87799] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(302), 1, + aux_sym_unary_expression_token1, + ACTIONS(596), 1, + sym_word, + ACTIONS(605), 1, + anon_sym_LPAREN, + ACTIONS(607), 1, + anon_sym_BANG, + ACTIONS(611), 1, + anon_sym_DOLLAR, + ACTIONS(615), 1, + anon_sym_DQUOTE, + ACTIONS(619), 1, + aux_sym_number_token1, + ACTIONS(621), 1, + aux_sym_number_token2, + ACTIONS(623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(633), 1, + sym_test_operator, + ACTIONS(635), 1, + sym__brace_start, + ACTIONS(4757), 1, + anon_sym_BQUOTE, + ACTIONS(4860), 1, + sym__special_character, + STATE(1923), 1, + aux_sym__literal_repeat1, + STATE(2096), 1, + sym__expression, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(617), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(631), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2073), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1635), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87885] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1318), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133341,7 +134594,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(1320), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133359,102 +134615,265 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [88314] = 7, - ACTIONS(3), 1, + [87931] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(1217), 1, - sym_file_descriptor, - ACTIONS(5216), 1, - anon_sym_DQUOTE, - STATE(2657), 1, - sym_string, - ACTIONS(5218), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5214), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + STATE(1827), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5045), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3985), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 22, - anon_sym_LF, - anon_sym_SEMI, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3987), 24, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [87981] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1334), 12, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1336), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - [88366] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1221), 1, - sym_file_descriptor, - ACTIONS(5216), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - STATE(2657), 1, - sym_string, - ACTIONS(5218), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5214), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [88027] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1330), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 22, - anon_sym_LF, - anon_sym_SEMI, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1332), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [88073] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(1830), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5045), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3989), 11, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3991), 24, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - [88418] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [88123] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(1320), 13, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, + anon_sym_DOLLAR, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1147), 1, + sym_word, + ACTIONS(1151), 1, + anon_sym_BANG, + ACTIONS(1153), 1, + aux_sym_unary_expression_token1, + ACTIONS(1157), 1, + sym__special_character, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym_test_operator, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + STATE(1586), 1, + aux_sym__literal_repeat1, + STATE(2062), 1, + sym__expression, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1161), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1583), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88209] = 8, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, + anon_sym_QMARK, + ACTIONS(5176), 1, + anon_sym_RPAREN_RPAREN, + STATE(4284), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133468,9 +134887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1322), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133488,21 +134905,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_EQ_TILDE, - anon_sym_QMARK, sym_test_operator, - [88462] = 6, + [88265] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5220), 1, + ACTIONS(5178), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, + STATE(4283), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133516,7 +134935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133536,140 +134955,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, sym_test_operator, - [88512] = 3, - ACTIONS(3), 1, + [88321] = 23, + ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1286), 20, - sym__brace_start, - anon_sym_SEMI, + ACTIONS(150), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_SLASH2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [88556] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + ACTIONS(240), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(246), 1, aux_sym_number_token1, + ACTIONS(248), 1, aux_sym_number_token2, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1286), 20, + ACTIONS(264), 1, sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1147), 1, + sym_word, + ACTIONS(1151), 1, + anon_sym_BANG, + ACTIONS(1153), 1, + aux_sym_unary_expression_token1, + ACTIONS(1157), 1, + sym__special_character, + ACTIONS(1159), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, + ACTIONS(1163), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_SLASH2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - anon_sym_BQUOTE, + ACTIONS(1165), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(1169), 1, sym_test_operator, - [88600] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1354), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, + ACTIONS(4779), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1356), 24, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + STATE(1586), 1, + aux_sym__literal_repeat1, + STATE(2057), 1, + sym__expression, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, + ACTIONS(1161), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [88644] = 6, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1583), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88407] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5222), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(4866), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133683,7 +135035,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(4864), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133702,18 +135058,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [88694] = 6, + [88453] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5224), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(1310), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133727,7 +135078,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(1312), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133745,19 +135099,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [88744] = 6, + [88499] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5226), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(1322), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1324), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [88545] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1322), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133771,7 +135164,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(1324), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133790,18 +135187,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [88794] = 6, + [88591] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5228), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(1326), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133815,7 +135207,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(1328), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133833,19 +135228,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [88844] = 6, + [88637] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5230), 1, + ACTIONS(5180), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, + STATE(4206), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133859,7 +135261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133879,17 +135281,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, sym_test_operator, - [88894] = 6, + [88693] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5232), 1, + ACTIONS(5182), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, + STATE(4260), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133903,7 +135309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133923,17 +135329,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, sym_test_operator, - [88944] = 6, + [88749] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5234), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, + anon_sym_DOLLAR, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1193), 1, + sym_word, + ACTIONS(1195), 1, + anon_sym_BANG, + ACTIONS(1197), 1, + aux_sym_unary_expression_token1, + ACTIONS(1199), 1, + sym__special_character, + ACTIONS(1203), 1, + sym_test_operator, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + STATE(1586), 1, + aux_sym__literal_repeat1, + STATE(2163), 1, + sym__expression, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1201), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1711), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88835] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1322), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133947,7 +135409,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(1324), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133965,19 +135430,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [88994] = 6, + [88881] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5236), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(1330), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133991,7 +135452,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(1332), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134010,18 +135475,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [89044] = 6, + [88927] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5238), 1, + ACTIONS(5184), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, + STATE(4252), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -134035,7 +135506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134055,17 +135526,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, sym_test_operator, - [89094] = 6, + [88983] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5240), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(5186), 1, + sym__special_character, + STATE(1910), 1, + aux_sym__literal_repeat1, + ACTIONS(1352), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -134079,7 +135547,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(1357), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134097,146 +135567,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [89144] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(2022), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5242), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3888), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3892), 22, - sym_file_descriptor, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [89192] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(2021), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5242), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4049), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4051), 22, - sym_file_descriptor, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [89240] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4879), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4877), 20, - sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_SLASH2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [89284] = 6, + [89033] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5244), 1, + ACTIONS(5189), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, + STATE(4235), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -134250,7 +135599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134270,58 +135619,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, sym_test_operator, - [89334] = 3, + [89089] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, anon_sym_DOLLAR, + ACTIONS(246), 1, aux_sym_number_token1, + ACTIONS(248), 1, aux_sym_number_token2, + ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1348), 25, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(264), 1, sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(1147), 1, + sym_word, + ACTIONS(1151), 1, + anon_sym_BANG, + ACTIONS(1153), 1, + aux_sym_unary_expression_token1, + ACTIONS(1157), 1, sym__special_character, + ACTIONS(1159), 1, anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym_test_operator, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + STATE(1586), 1, + aux_sym__literal_repeat1, + STATE(2092), 1, + sym__expression, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1161), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1583), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89175] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(611), 1, + anon_sym_DOLLAR, + ACTIONS(615), 1, + anon_sym_DQUOTE, + ACTIONS(619), 1, + aux_sym_number_token1, + ACTIONS(621), 1, + aux_sym_number_token2, + ACTIONS(623), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(629), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(635), 1, + sym__brace_start, + ACTIONS(1115), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, + anon_sym_BANG, + ACTIONS(1121), 1, + aux_sym_unary_expression_token1, + ACTIONS(4755), 1, + sym__special_character, + ACTIONS(4757), 1, + anon_sym_BQUOTE, + ACTIONS(5191), 1, + sym_word, + ACTIONS(5195), 1, + sym_test_operator, + STATE(1585), 1, + aux_sym__literal_repeat1, + STATE(2187), 1, + sym__expression, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(5193), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1623), 2, + sym_ternary_expression, + sym_postfix_expression, + STATE(1982), 4, + sym_binary_expression, + sym_unary_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1587), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89263] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(192), 1, + aux_sym_unary_expression_token1, + ACTIONS(230), 1, + sym_word, + ACTIONS(234), 1, + anon_sym_LPAREN, + ACTIONS(236), 1, + anon_sym_BANG, + ACTIONS(240), 1, + anon_sym_DOLLAR, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1187), 1, + sym__special_character, + ACTIONS(1191), 1, sym_test_operator, - [89378] = 6, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + STATE(1586), 1, + aux_sym__literal_repeat1, + STATE(2129), 1, + sym__expression, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1189), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2117), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1593), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89349] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5246), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(1342), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -134335,7 +135826,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(1344), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134354,18 +135849,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [89428] = 6, + [89395] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5248), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(1334), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -134379,7 +135869,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(1336), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134398,103 +135892,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [89478] = 3, - ACTIONS(3), 1, + [89441] = 23, + ACTIONS(63), 1, sym_comment, - ACTIONS(4897), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(246), 1, aux_sym_number_token1, + ACTIONS(248), 1, aux_sym_number_token2, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1147), 1, sym_word, - ACTIONS(4895), 20, + ACTIONS(1151), 1, + anon_sym_BANG, + ACTIONS(1153), 1, + aux_sym_unary_expression_token1, + ACTIONS(1157), 1, + sym__special_character, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 1, + sym_test_operator, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + STATE(1586), 1, + aux_sym__literal_repeat1, + STATE(2120), 1, + sym__expression, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1161), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1583), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89527] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4412), 1, + aux_sym_concatenation_token1, + ACTIONS(4414), 1, + sym__concat, + STATE(1797), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 2, + sym_file_descriptor, sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1242), 33, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_SLASH2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [89522] = 6, + [89579] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5250), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4974), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, + anon_sym_DOLLAR, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1175), 1, + aux_sym_unary_expression_token1, + ACTIONS(1181), 1, sym_test_operator, - [89572] = 6, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + ACTIONS(4902), 1, + sym__special_character, + STATE(1629), 1, + sym__expression, + STATE(1831), 1, + aux_sym__literal_repeat1, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1179), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1599), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89665] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5252), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(1298), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -134508,7 +136084,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(1300), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134526,19 +136105,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [89622] = 6, + [89711] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5254), 1, + ACTIONS(5197), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, + STATE(4289), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -134552,7 +136138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134572,61 +136158,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, sym_test_operator, - [89672] = 6, + [89767] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5256), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4974), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, + ACTIONS(131), 1, + aux_sym_unary_expression_token1, + ACTIONS(139), 1, + sym_word, + ACTIONS(150), 1, + anon_sym_LPAREN, + ACTIONS(152), 1, + anon_sym_BANG, + ACTIONS(156), 1, + anon_sym_DOLLAR, + ACTIONS(162), 1, + aux_sym_number_token1, + ACTIONS(164), 1, + aux_sym_number_token2, + ACTIONS(168), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(182), 1, + sym__brace_start, + ACTIONS(1101), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1107), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1141), 1, + sym__special_character, + ACTIONS(1145), 1, sym_test_operator, - [89722] = 6, + ACTIONS(4900), 1, + anon_sym_BQUOTE, + STATE(1629), 1, + sym__expression, + STATE(1636), 1, + aux_sym__literal_repeat1, + ACTIONS(1095), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1143), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1623), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1637), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89853] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5258), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(5199), 1, + sym__special_character, + STATE(1824), 1, + aux_sym__literal_repeat1, + ACTIONS(143), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -134640,7 +136242,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(600), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134658,19 +136262,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [89772] = 6, + [89903] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5260), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(5203), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -134684,7 +136283,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(5201), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134703,59 +136306,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [89822] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1316), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1318), 25, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [89866] = 6, + [89949] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5262), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(5207), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -134769,7 +136326,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(5205), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134788,18 +136349,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [89916] = 6, + [89995] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5264), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(1155), 1, + aux_sym_concatenation_token1, + ACTIONS(5209), 1, + sym__concat, + STATE(1416), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1246), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -134813,7 +136375,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(1248), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134832,18 +136396,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [89966] = 6, + [90047] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, anon_sym_QMARK, - ACTIONS(5266), 1, + ACTIONS(5211), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, + STATE(4170), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5003), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -134857,7 +136426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134877,30 +136446,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, sym_test_operator, - [90016] = 3, + [90103] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1342), 11, + ACTIONS(1276), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1344), 25, + ACTIONS(1278), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -134909,7 +136480,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -134918,17 +136488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [90060] = 6, + [90148] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5268), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, + ACTIONS(4886), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -134942,7 +136505,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4974), 19, + ACTIONS(4884), 24, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134960,28 +136526,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [90110] = 3, + [90193] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1241), 12, - anon_sym_EQ_EQ, + ACTIONS(1272), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1250), 24, + ACTIONS(1274), 25, sym_file_descriptor, - sym__bare_dollar, + sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -134993,106 +136562,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [90154] = 5, + [90238] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(5108), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5030), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RPAREN, - anon_sym_QMARK, - ACTIONS(5102), 13, - anon_sym_EQ, + STATE(1931), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5213), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1258), 11, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5106), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1263), 23, + sym_file_descriptor, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [90202] = 5, + [90287] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(5120), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4924), 4, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(5116), 13, - anon_sym_EQ, + ACTIONS(5216), 1, + aux_sym_concatenation_token1, + ACTIONS(5218), 1, + sym__concat, + STATE(1931), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1252), 11, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5118), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1254), 23, + sym_file_descriptor, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [90250] = 3, + [90338] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1350), 12, + ACTIONS(1346), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -135105,10 +136677,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1352), 24, + ACTIONS(1348), 25, sym_file_descriptor, sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -135130,118 +136703,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [90294] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5120), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4924), 4, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(5116), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5118), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [90342] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5098), 1, - anon_sym_QMARK, - ACTIONS(5270), 1, - anon_sym_COLON, - ACTIONS(4988), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5096), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5092), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5094), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [90394] = 3, + [90383] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1338), 11, + ACTIONS(1342), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1340), 25, + ACTIONS(1344), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -135250,7 +136737,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -135259,10 +136745,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [90438] = 3, + [90428] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 11, + ACTIONS(5216), 1, + aux_sym_concatenation_token1, + ACTIONS(5220), 1, + sym__concat, + STATE(1931), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1246), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -135274,11 +136766,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1336), 25, + ACTIONS(1248), 23, sym_file_descriptor, - sym__concat, - sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -135290,7 +136781,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -135300,51 +136790,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [90482] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4687), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4685), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [90526] = 3, + [90479] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1274), 11, + ACTIONS(1334), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -135355,12 +136804,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1279), 25, + ACTIONS(1336), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -135382,10 +136832,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [90570] = 3, + [90524] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1302), 11, + ACTIONS(1330), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -135396,12 +136846,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1304), 25, + ACTIONS(1332), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -135423,55 +136874,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [90614] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5098), 1, - anon_sym_QMARK, - ACTIONS(5272), 1, - anon_sym_COLON, - ACTIONS(4988), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5096), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5092), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5094), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [90666] = 3, + [90569] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 12, + ACTIONS(1322), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -135484,10 +136890,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1286), 24, + ACTIONS(1324), 25, sym_file_descriptor, sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -135509,10 +136916,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [90710] = 3, + [90614] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 12, + ACTIONS(1330), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -135525,10 +136932,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1286), 24, + ACTIONS(1332), 25, sym_file_descriptor, sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -135550,51 +136958,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [90754] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4586), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4584), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [90798] = 3, + [90659] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1320), 11, + ACTIONS(1322), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -135605,12 +136972,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1322), 25, + ACTIONS(1324), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -135632,92 +137000,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [90842] = 3, + [90704] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4942), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4940), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, + ACTIONS(5222), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5232), 1, anon_sym_RPAREN, - anon_sym_EQ_TILDE, + ACTIONS(5234), 1, anon_sym_QMARK, - sym_test_operator, - [90886] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4586), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4584), 23, + ACTIONS(5226), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(5230), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [90930] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4934), 13, + ACTIONS(5224), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -135731,9 +137030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4932), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5228), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135744,42 +137041,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, sym_test_operator, - [90974] = 3, + [90759] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 12, + ACTIONS(1322), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1348), 24, + ACTIONS(1324), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -135788,6 +137080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -135796,30 +137089,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [91018] = 3, + [90804] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3458), 12, - anon_sym_EQ_EQ, + ACTIONS(1334), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(3460), 24, + ACTIONS(1336), 25, sym_file_descriptor, - sym__bare_dollar, + sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -135827,20 +137122,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [91062] = 3, + [90849] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1342), 12, + ACTIONS(1272), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -135853,10 +137147,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1344), 24, + ACTIONS(1274), 25, sym_file_descriptor, sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -135878,10 +137173,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [91106] = 3, + [90894] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(4590), 13, + ACTIONS(5007), 1, + anon_sym_QMARK, + ACTIONS(5003), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5236), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + ACTIONS(5001), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -135895,9 +137198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4588), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5005), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135915,34 +137216,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_EQ_TILDE, - anon_sym_QMARK, sym_test_operator, - [91150] = 3, + [90945] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1298), 11, + ACTIONS(1268), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1300), 25, + ACTIONS(1270), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -135951,7 +137252,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -135960,10 +137260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [91194] = 3, + [90990] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1338), 12, + ACTIONS(1268), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -135976,51 +137276,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1340), 24, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [91238] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1336), 24, + ACTIONS(1270), 25, sym_file_descriptor, sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -136042,107 +137302,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [91282] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5130), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4924), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK, - ACTIONS(5126), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5128), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [91330] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5130), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4924), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK, - ACTIONS(5126), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5128), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [91378] = 7, + [91035] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5122), 1, - anon_sym_QMARK, - ACTIONS(5274), 1, + ACTIONS(5222), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(4988), 2, + ACTIONS(5234), 1, + anon_sym_QMARK, + ACTIONS(5238), 1, + anon_sym_RPAREN, + ACTIONS(5226), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5120), 3, + ACTIONS(5230), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(5116), 13, + ACTIONS(5224), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -136156,7 +137332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5118), 16, + ACTIONS(5228), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136173,31 +137349,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, sym_test_operator, - [91430] = 3, + [91090] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1320), 12, + ACTIONS(1330), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1322), 24, + ACTIONS(1332), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -136206,6 +137382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -136214,277 +137391,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [91474] = 7, + [91135] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5112), 1, - anon_sym_QMARK, - ACTIONS(5276), 1, - anon_sym_RPAREN, - ACTIONS(5104), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5108), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5102), 13, - anon_sym_EQ, + ACTIONS(1334), 11, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5106), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1336), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [91526] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4970), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RPAREN, - anon_sym_QMARK, - ACTIONS(5169), 13, - anon_sym_EQ, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5171), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [91572] = 4, + [91180] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4970), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RPAREN, - anon_sym_QMARK, - ACTIONS(5169), 13, - anon_sym_EQ, + STATE(1935), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5216), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1242), 11, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5171), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1244), 23, + sym_file_descriptor, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [91618] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4978), 13, - anon_sym_EQ, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4976), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [91662] = 5, + [91229] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5082), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4924), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(5076), 13, - anon_sym_EQ, + ACTIONS(1272), 11, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5080), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1274), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [91710] = 5, + [91274] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5082), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4924), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(5076), 13, - anon_sym_EQ, + ACTIONS(1326), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5080), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1328), 25, + sym_file_descriptor, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [91758] = 7, + [91319] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5098), 1, + ACTIONS(5234), 1, anon_sym_QMARK, - ACTIONS(5278), 1, - anon_sym_COLON, - ACTIONS(4988), 2, + ACTIONS(5238), 1, + anon_sym_RPAREN, + ACTIONS(5240), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5226), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5096), 3, + ACTIONS(5230), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(5092), 13, + ACTIONS(5224), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -136498,7 +137591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5094), 16, + ACTIONS(5228), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136515,99 +137608,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, sym_test_operator, - [91810] = 3, + [91374] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4687), 13, - anon_sym_EQ, + ACTIONS(1346), 11, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4685), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1348), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [91854] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5186), 1, - anon_sym_QMARK, - ACTIONS(5280), 1, - anon_sym_RPAREN, - ACTIONS(5182), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5169), 13, - anon_sym_EQ, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5171), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [91904] = 5, + [91419] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5156), 1, - sym__special_character, - STATE(1908), 1, - aux_sym__literal_repeat1, - ACTIONS(3844), 11, + ACTIONS(1342), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -136617,12 +137663,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, + anon_sym_BQUOTE, sym_word, - ACTIONS(3846), 23, + ACTIONS(1344), 26, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -136634,196 +137682,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [91952] = 6, + [91464] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5282), 1, - anon_sym_COLON, - ACTIONS(5088), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4972), 13, - anon_sym_EQ, + ACTIONS(1318), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4974), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1320), 25, + sym_file_descriptor, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [92002] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5098), 1, - anon_sym_QMARK, - ACTIONS(5284), 1, - anon_sym_COLON, - ACTIONS(4988), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5096), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5092), 13, - anon_sym_EQ, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5094), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [92054] = 3, + [91509] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5004), 13, - anon_sym_EQ, + ACTIONS(1268), 11, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5002), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1270), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [92098] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4586), 13, - anon_sym_EQ, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4584), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [92142] = 6, + [91554] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5242), 1, - aux_sym_concatenation_token1, - ACTIONS(5286), 1, - sym__concat, - STATE(2025), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1264), 11, + ACTIONS(1268), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -136835,9 +137791,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1266), 22, + ACTIONS(1270), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -136849,6 +137808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -136858,16 +137818,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [92192] = 6, + [91599] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5242), 1, - aux_sym_concatenation_token1, - ACTIONS(5288), 1, - sym__concat, - STATE(2025), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 11, + ACTIONS(1314), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -136878,10 +137832,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1260), 22, + ACTIONS(1316), 25, sym_file_descriptor, + sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -136893,6 +137850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -136902,19 +137860,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [92242] = 5, + [91644] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(5120), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5030), 4, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(5116), 13, + ACTIONS(5242), 1, + sym__concat, + ACTIONS(4866), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -136928,7 +137879,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5118), 16, + ACTIONS(4864), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136939,16 +137892,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [92290] = 3, + [91691] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4586), 13, + ACTIONS(5244), 1, + sym__concat, + ACTIONS(4926), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -136962,7 +137922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4584), 23, + ACTIONS(4924), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -136982,19 +137942,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [92334] = 5, + [91738] = 3, ACTIONS(63), 1, sym_comment, - STATE(2025), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5290), 2, + ACTIONS(1346), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1348), 25, + sym_file_descriptor, sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - ACTIONS(1274), 11, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [91783] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1342), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -137005,10 +138002,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1279), 22, + ACTIONS(1344), 25, sym_file_descriptor, + sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -137020,6 +138020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -137029,10 +138030,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [92382] = 3, + [91828] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4590), 13, + ACTIONS(5246), 1, + sym__concat, + ACTIONS(4934), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -137046,7 +138049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4588), 23, + ACTIONS(4932), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -137066,19 +138069,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [92426] = 5, + [91875] = 3, ACTIONS(63), 1, sym_comment, - STATE(2021), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5242), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1270), 11, + ACTIONS(1326), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -137090,9 +138088,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1272), 22, + ACTIONS(1328), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -137104,6 +138105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -137113,10 +138115,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [92474] = 3, + [91920] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(5000), 13, + ACTIONS(5254), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5250), 5, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(5248), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -137130,9 +138142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4998), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5252), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137143,21 +138153,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, sym_test_operator, - [92518] = 3, + [91969] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1350), 11, + ACTIONS(5256), 1, + sym__special_character, + STATE(1983), 1, + aux_sym__literal_repeat1, + ACTIONS(3989), 10, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -137167,16 +138176,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1352), 24, + ACTIONS(3991), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -137184,20 +138194,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [92561] = 3, + [92018] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 11, + ACTIONS(1318), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -137207,12 +138216,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, + anon_sym_BQUOTE, sym_word, - ACTIONS(1272), 24, + ACTIONS(1320), 26, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -137224,40 +138235,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [92604] = 3, + [92063] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 11, + ACTIONS(1225), 12, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1272), 24, + ACTIONS(1234), 25, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -137265,6 +138277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -137274,29 +138287,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [92647] = 3, + [92108] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1316), 11, + ACTIONS(1314), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1318), 24, + ACTIONS(1316), 25, sym_file_descriptor, sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -137305,7 +138321,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -137314,29 +138329,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [92690] = 3, + [92153] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5258), 1, + anon_sym_LBRACK, + ACTIONS(4775), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4773), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [92200] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4918), 1, + anon_sym_RBRACK, + ACTIONS(5260), 1, + sym__concat, + ACTIONS(1227), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1364), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [92249] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4958), 1, + anon_sym_RBRACK, + ACTIONS(5262), 1, + sym__concat, + ACTIONS(1227), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1364), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [92298] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1324), 11, + ACTIONS(1302), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1326), 24, + ACTIONS(1304), 25, sym_file_descriptor, sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -137345,7 +138494,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -137354,14 +138502,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [92733] = 5, + [92343] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(5293), 1, + ACTIONS(5264), 1, sym__special_character, - STATE(2035), 1, + STATE(1993), 1, aux_sym__literal_repeat1, - ACTIONS(3787), 10, + ACTIONS(3841), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -137371,11 +138519,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(3789), 23, + ACTIONS(3843), 24, sym_file_descriptor, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -137396,32 +138546,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [92780] = 5, + [92392] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5295), 1, - sym__special_character, - STATE(2035), 1, - aux_sym__literal_repeat1, - ACTIONS(1358), 10, + ACTIONS(1294), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1363), 23, + ACTIONS(1296), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -137429,19 +138579,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [92827] = 3, + [92437] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1227), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1364), 24, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [92482] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1328), 11, + ACTIONS(1314), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -137453,10 +138645,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1330), 24, + ACTIONS(1316), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -137478,69 +138672,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [92870] = 3, - ACTIONS(63), 1, + [92527] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 11, - anon_sym_LT_LT, + ACTIONS(3946), 1, + sym__brace_start, + ACTIONS(5270), 1, + aux_sym_number_token1, + ACTIONS(5272), 1, + aux_sym_number_token2, + ACTIONS(5274), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5266), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5268), 2, + anon_sym_LF, + aux_sym__simple_variable_name_token1, + STATE(4398), 3, + sym_arithmetic_expansion, + sym_number, + sym_expansion, + ACTIONS(3948), 26, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_AMP_GT, + anon_sym_COLON, anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1314), 24, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [92913] = 3, + [92584] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1288), 11, + ACTIONS(1310), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1290), 24, + ACTIONS(1312), 25, sym_file_descriptor, sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -137549,7 +138754,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -137558,18 +138762,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [92956] = 5, + [92629] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4924), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(5302), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5298), 13, + ACTIONS(4769), 1, + anon_sym_RBRACK, + ACTIONS(5276), 1, + sym__concat, + ACTIONS(1227), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -137583,7 +138783,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5300), 16, + ACTIONS(1364), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137594,16 +138796,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [93003] = 3, + [92678] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1308), 11, + ACTIONS(5278), 1, + sym__special_character, + STATE(1983), 1, + aux_sym__literal_repeat1, + ACTIONS(1352), 10, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -137613,16 +138823,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 24, + ACTIONS(1357), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -137630,20 +138841,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [93046] = 3, + [92727] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1274), 11, + ACTIONS(1302), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -137655,10 +138865,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1279), 24, + ACTIONS(1304), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -137680,29 +138892,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [93089] = 3, + [92772] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1302), 11, + ACTIONS(5281), 1, + anon_sym_RPAREN, + ACTIONS(5230), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5250), 4, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + ACTIONS(5224), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5228), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [92823] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5264), 1, + sym__special_character, + STATE(1993), 1, + aux_sym__literal_repeat1, + ACTIONS(3777), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(3779), 24, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [92872] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1298), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1304), 24, + ACTIONS(1300), 25, sym_file_descriptor, sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -137711,7 +139015,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -137720,10 +139023,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [93132] = 3, + [92917] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1298), 11, + ACTIONS(1294), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -137735,10 +139038,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1300), 24, + ACTIONS(1296), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -137760,18 +139065,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [93175] = 5, + [92962] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(4924), 3, + ACTIONS(5285), 1, + anon_sym_RPAREN, + ACTIONS(5230), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5283), 4, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(5302), 3, + ACTIONS(5224), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5228), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [93013] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5285), 1, + anon_sym_RPAREN, + ACTIONS(5230), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(5298), 13, + ACTIONS(5283), 4, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + ACTIONS(5224), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -137785,7 +139138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5300), 16, + ACTIONS(5228), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137802,28 +139155,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, sym_test_operator, - [93222] = 5, + [93064] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5304), 1, - sym__special_character, - STATE(2045), 1, - aux_sym__literal_repeat1, - ACTIONS(1358), 11, + ACTIONS(3659), 12, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1363), 22, + ACTIONS(3661), 25, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -137835,6 +139187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -137844,27 +139197,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [93269] = 5, + [93109] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5307), 1, - sym__special_character, - STATE(2046), 1, - aux_sym__literal_repeat1, - ACTIONS(1358), 10, + ACTIONS(1280), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1363), 23, + ACTIONS(1282), 25, sym_file_descriptor, + sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -137877,19 +139230,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [93316] = 3, + [93154] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1354), 11, + ACTIONS(5287), 1, + sym__special_character, + STATE(1993), 1, + aux_sym__literal_repeat1, + ACTIONS(1352), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -137899,12 +139256,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1356), 24, + ACTIONS(1357), 24, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -137916,20 +139274,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [93359] = 3, + [93203] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3783), 11, + ACTIONS(1310), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -137939,12 +139296,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, + anon_sym_BQUOTE, sym_word, - ACTIONS(3785), 24, + ACTIONS(1312), 26, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -137956,110 +139315,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [93402] = 5, + [93248] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5030), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(5302), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5298), 13, - anon_sym_EQ, + ACTIONS(1268), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5300), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [93449] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4382), 2, - anon_sym_LT_LT, - anon_sym_PIPE, - ACTIONS(4384), 3, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3207), 6, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(4387), 6, + ACTIONS(1270), 25, sym_file_descriptor, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4703), 6, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(3223), 12, - sym_variable_name, - sym__brace_start, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [93500] = 5, + [93293] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5310), 1, - sym__special_character, - STATE(2046), 1, - aux_sym__literal_repeat1, - ACTIONS(4049), 10, + ACTIONS(1268), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -138069,15 +139380,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(4051), 23, + ACTIONS(1270), 25, sym_file_descriptor, + sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -138085,30 +139399,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [93547] = 7, + [93338] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5314), 1, + ACTIONS(5292), 1, anon_sym_DQUOTE, - STATE(2824), 1, + STATE(2730), 1, sym_string, - ACTIONS(5316), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1221), 3, + ACTIONS(1217), 2, sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, - ACTIONS(5312), 9, + ACTIONS(5294), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5290), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -138118,8 +139432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 19, - anon_sym_LF, + ACTIONS(1215), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138127,8 +139440,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138136,34 +139452,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [93598] = 5, + [93391] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5293), 1, + ACTIONS(1258), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, sym__special_character, - STATE(2035), 1, - aux_sym__literal_repeat1, - ACTIONS(4049), 10, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1263), 25, + sym_file_descriptor, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [93436] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1338), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4051), 23, + ACTIONS(1340), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -138171,30 +139530,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [93481] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1298), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + sym_word, + ACTIONS(1300), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [93645] = 7, + [93526] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5314), 1, + ACTIONS(5292), 1, anon_sym_DQUOTE, - STATE(2824), 1, + STATE(2730), 1, sym_string, - ACTIONS(5316), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + ACTIONS(1213), 2, sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, - ACTIONS(5312), 9, + ACTIONS(5294), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5290), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -138204,8 +139604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 19, - anon_sym_LF, + ACTIONS(1205), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138213,8 +139612,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138222,60 +139624,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [93696] = 7, - ACTIONS(3), 1, + [93579] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1217), 1, + ACTIONS(1284), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1286), 25, sym_file_descriptor, - ACTIONS(5216), 1, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - STATE(2657), 1, - sym_string, - ACTIONS(5218), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5214), 9, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [93624] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5254), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5283), 5, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(5248), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 21, - anon_sym_LF, - anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5252), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [93673] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5254), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5283), 5, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(5248), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5252), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [93722] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1284), 12, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1286), 25, + sym_file_descriptor, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - [93747] = 5, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [93767] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5318), 1, - sym__special_character, - STATE(2045), 1, - aux_sym__literal_repeat1, - ACTIONS(4021), 11, + ACTIONS(1280), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -138285,11 +139812,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, + anon_sym_BQUOTE, sym_word, - ACTIONS(4023), 22, + ACTIONS(1282), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -138301,19 +139831,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [93794] = 3, + [93812] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 11, + ACTIONS(1326), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -138324,11 +139855,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1286), 24, + ACTIONS(1328), 25, sym_file_descriptor, sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -138350,10 +139883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [93837] = 3, + [93857] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 11, + ACTIONS(1338), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -138364,11 +139897,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1286), 24, + ACTIONS(1340), 25, sym_file_descriptor, sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -138390,19 +139925,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [93880] = 6, + [93902] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5320), 1, - anon_sym_QMARK, - ACTIONS(4988), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4928), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4922), 13, + ACTIONS(1242), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -138416,7 +139942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4926), 16, + sym__special_character, + ACTIONS(1244), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138427,16 +139956,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [93929] = 3, + [93947] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 11, + ACTIONS(1258), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -138447,11 +139981,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1348), 24, + ACTIONS(1263), 25, sym_file_descriptor, sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -138473,10 +140009,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [93972] = 3, + [93992] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1342), 11, + ACTIONS(1276), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -138487,11 +140023,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1344), 24, + ACTIONS(1278), 25, sym_file_descriptor, sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -138513,10 +140051,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [94015] = 3, + [94037] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1338), 11, + ACTIONS(1276), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -138528,10 +140066,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1340), 24, + ACTIONS(1278), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -138553,10 +140093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [94058] = 3, + [94082] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 11, + ACTIONS(1280), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -138567,11 +140107,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1336), 24, + ACTIONS(1282), 25, sym_file_descriptor, sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -138593,98 +140135,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [94101] = 7, - ACTIONS(3), 1, + [94127] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_DQUOTE, - STATE(2705), 1, - sym_string, - ACTIONS(1221), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5326), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5322), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 20, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3683), 12, + anon_sym_EQ_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3685), 25, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - [94152] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, - STATE(2705), 1, - sym_string, - ACTIONS(1217), 2, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [94172] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1258), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1263), 26, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(5326), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5322), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 20, - anon_sym_LF, - anon_sym_SEMI, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - [94203] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [94217] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1320), 11, + ACTIONS(1318), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -138695,11 +140233,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1322), 24, + ACTIONS(1320), 25, sym_file_descriptor, sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -138721,54 +140261,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [94246] = 7, - ACTIONS(3), 1, + [94262] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1221), 1, - sym_file_descriptor, - ACTIONS(5216), 1, - anon_sym_DQUOTE, - STATE(2657), 1, - sym_string, - ACTIONS(5218), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5214), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 21, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1338), 11, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1340), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - [94297] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [94307] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4291), 11, + ACTIONS(1294), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -138778,12 +140316,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(4293), 24, + ACTIONS(1296), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -138795,108 +140335,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [94340] = 7, - ACTIONS(3), 1, + [94352] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_DQUOTE, - STATE(2705), 1, - sym_string, - ACTIONS(1221), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5326), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5322), 9, + ACTIONS(1242), 14, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 20, - anon_sym_LF, - anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + sym__special_character, + ACTIONS(1244), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [94397] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(1932), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5216), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3985), 11, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [94391] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_DQUOTE, - STATE(2705), 1, - sym_string, - ACTIONS(1217), 2, + sym_word, + ACTIONS(3987), 23, sym_file_descriptor, - sym_variable_name, - ACTIONS(5326), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5322), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 20, - anon_sym_LF, - anon_sym_SEMI, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [94442] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [94446] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4295), 11, + STATE(1935), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5216), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3989), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -138906,12 +140449,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, + anon_sym_BQUOTE, sym_word, - ACTIONS(4297), 24, + ACTIONS(3991), 23, sym_file_descriptor, - sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -138928,199 +140471,99 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [94485] = 24, + [94495] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, + ACTIONS(1298), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4760), 1, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4766), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1300), 25, + sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5330), 1, - anon_sym_esac, - ACTIONS(5332), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(5336), 1, anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4687), 1, - sym_last_case_item, - ACTIONS(5338), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5346), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2128), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94569] = 24, + sym_test_operator, + [94540] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - ACTIONS(5350), 1, - anon_sym_esac, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4504), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2180), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94653] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, + ACTIONS(5296), 1, + sym__concat, + ACTIONS(4799), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4797), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - ACTIONS(5352), 1, - anon_sym_esac, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4612), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2151), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94737] = 5, + [94587] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5354), 1, - sym__special_character, - STATE(2108), 1, - aux_sym__literal_repeat1, - ACTIONS(4049), 10, + ACTIONS(1302), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -139130,10 +140573,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(4051), 22, + ACTIONS(1304), 25, sym_file_descriptor, + sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -139145,171 +140592,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [94783] = 24, - ACTIONS(63), 1, + [94632] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, + ACTIONS(5298), 1, + sym__concat, + ACTIONS(4799), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(4760), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4766), 1, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + anon_sym_COMMA2, + anon_sym_CARET2, anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, + sym_word, + ACTIONS(4797), 19, sym__brace_start, - ACTIONS(4819), 1, - anon_sym_esac, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, anon_sym_DQUOTE, - ACTIONS(5340), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, + anon_sym_RBRACE3, + anon_sym_COMMA_COMMA2, + anon_sym_CARET_CARET2, anon_sym_BQUOTE, - ACTIONS(5344), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4613), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2156), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94867] = 7, - ACTIONS(3), 1, + sym_test_operator, + [94679] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_DQUOTE, - STATE(2705), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5326), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5322), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 19, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4892), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [94917] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_DQUOTE, - STATE(2705), 1, - sym_string, - ACTIONS(1221), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5326), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5322), 9, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 19, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_AMP, - [94967] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5356), 1, - anon_sym_LF, - ACTIONS(5360), 1, - anon_sym_EQ, - ACTIONS(5358), 32, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(4890), 24, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -139317,7 +140671,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -139329,126 +140682,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [95011] = 7, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [94724] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5364), 1, - anon_sym_DQUOTE, - STATE(2873), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(5366), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5362), 9, + ACTIONS(5300), 1, + sym__concat, + ACTIONS(4866), 17, + anon_sym_EQ, anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 19, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + anon_sym_COMMA2, + anon_sym_CARET2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4864), 19, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [95061] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5364), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DQUOTE, - STATE(2873), 1, - sym_string, - ACTIONS(1221), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(5366), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5362), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, + sym_raw_string, + sym_ansi_c_string, anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 19, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_COMMA_COMMA2, + anon_sym_CARET_CARET2, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [94771] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4806), 1, + anon_sym_RBRACK, + ACTIONS(5302), 1, + sym__concat, + ACTIONS(1227), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_AMP, - [95111] = 3, + anon_sym_CARET, + ACTIONS(1364), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [94820] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 11, + ACTIONS(1242), 12, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1272), 23, + ACTIONS(1244), 25, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -139456,6 +140806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -139465,190 +140816,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [95153] = 24, - ACTIONS(63), 1, + [94865] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(4885), 1, - anon_sym_esac, - ACTIONS(5328), 1, + ACTIONS(5304), 1, + sym__concat, + ACTIONS(4934), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4563), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2160), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95237] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(4760), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4766), 1, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + anon_sym_COMMA2, + anon_sym_CARET2, anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, + sym_word, + ACTIONS(4932), 19, sym__brace_start, - ACTIONS(4889), 1, - anon_sym_esac, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4568), 1, - sym_last_case_item, - ACTIONS(5338), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2159), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95321] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, + anon_sym_RBRACE3, + anon_sym_COMMA_COMMA2, + anon_sym_CARET_CARET2, anon_sym_BQUOTE, - ACTIONS(5344), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - ACTIONS(5368), 1, - anon_sym_esac, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4574), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2158), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95405] = 3, + sym_test_operator, + [94912] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4295), 10, + ACTIONS(1310), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -139658,11 +140872,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(4297), 24, + ACTIONS(1312), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -139674,153 +140891,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [95447] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - ACTIONS(5370), 1, - anon_sym_esac, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4577), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2157), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95531] = 24, + [94957] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, + ACTIONS(1284), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4760), 1, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4766), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(4815), 1, - anon_sym_esac, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4662), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2123), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95615] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3207), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4346), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(4348), 11, + ACTIONS(1286), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -139831,48 +140932,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(3223), 13, - sym_variable_name, - sym__brace_start, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [95661] = 5, + [95002] = 4, ACTIONS(3), 1, sym_comment, - STATE(2109), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5372), 2, + ACTIONS(5306), 1, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1270), 15, + ACTIONS(4926), 17, anon_sym_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_LPAREN, anon_sym_COLON, anon_sym_DOLLAR, sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_QMARK, anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + anon_sym_COMMA2, + anon_sym_CARET2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1272), 16, + ACTIONS(4924), 19, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -139882,14 +140979,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR_LBRACE, anon_sym_RBRACE3, + anon_sym_COMMA_COMMA2, + anon_sym_CARET_CARET2, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [95707] = 3, + [95049] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4886), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4884), 24, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [95094] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 11, + ACTIONS(3837), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -139901,9 +141043,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1272), 23, + ACTIONS(3839), 25, sym_file_descriptor, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -139925,504 +141069,306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [95749] = 7, - ACTIONS(3), 1, + [95138] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1217), 1, - sym_file_descriptor, - ACTIONS(5376), 1, - anon_sym_DQUOTE, - STATE(2751), 1, - sym_string, - ACTIONS(5378), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5374), 9, + ACTIONS(5094), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5092), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 20, - anon_sym_LF, - anon_sym_SEMI, + sym_test_operator, + [95182] = 7, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5314), 1, + anon_sym_QMARK, + ACTIONS(5316), 1, + anon_sym_COLON, + ACTIONS(5226), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5308), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5310), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [95234] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5322), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5283), 4, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + ACTIONS(5318), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [95799] = 24, + anon_sym_CARET, + ACTIONS(5320), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [95282] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4750), 1, - anon_sym_esac, - ACTIONS(4754), 1, + ACTIONS(1314), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4760), 1, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4766), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4675), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2148), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95883] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, + sym_word, + ACTIONS(1316), 25, sym_file_descriptor, - ACTIONS(5376), 1, - anon_sym_DQUOTE, - STATE(2751), 1, - sym_string, - ACTIONS(5378), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5374), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 20, - anon_sym_LF, - anon_sym_SEMI, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - [95933] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(4831), 1, - anon_sym_esac, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(5336), 1, anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4677), 1, - sym_last_case_item, - ACTIONS(5338), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2146), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96017] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - ACTIONS(5380), 1, - anon_sym_esac, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4679), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2145), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96101] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, sym_test_operator, - ACTIONS(5382), 1, - anon_sym_esac, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4681), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2144), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96185] = 5, - ACTIONS(3), 1, + [95326] = 3, + ACTIONS(63), 1, sym_comment, - STATE(2106), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5372), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4087), 15, + ACTIONS(5049), 13, anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4085), 16, - sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [96231] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1221), 1, - sym_file_descriptor, - ACTIONS(5376), 1, - anon_sym_DQUOTE, - STATE(2751), 1, - sym_string, - ACTIONS(5378), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5374), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 20, - anon_sym_LF, - anon_sym_SEMI, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5047), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, + anon_sym_STAR_STAR, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [96281] = 5, - ACTIONS(3), 1, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [95370] = 6, + ACTIONS(63), 1, sym_comment, - STATE(2109), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5372), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5384), 15, + ACTIONS(5007), 1, + anon_sym_QMARK, + ACTIONS(5324), 1, + anon_sym_COLON, + ACTIONS(5003), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5001), 13, anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(5386), 16, - sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [96327] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1221), 1, - sym_file_descriptor, - ACTIONS(5376), 1, - anon_sym_DQUOTE, - STATE(2751), 1, - sym_string, - ACTIONS(5378), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5374), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 20, - anon_sym_LF, - anon_sym_SEMI, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5005), 19, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + sym_test_operator, + [95420] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1334), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [96377] = 3, + anon_sym_CARET, + ACTIONS(1336), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [95464] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 10, + ACTIONS(1258), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -140432,11 +141378,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1272), 24, + ACTIONS(1263), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -140448,87 +141396,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [96419] = 7, - ACTIONS(63), 1, + [95508] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4382), 2, - anon_sym_LT_LT, - anon_sym_PIPE, - ACTIONS(4384), 3, + ACTIONS(4799), 17, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(3207), 5, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + anon_sym_COMMA2, + anon_sym_CARET2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4703), 5, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(4387), 6, - sym_file_descriptor, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(3223), 13, - sym_variable_name, + ACTIONS(4797), 19, sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_COMMA_COMMA2, + anon_sym_CARET_CARET2, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [96469] = 5, + [95552] = 7, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5326), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5328), 1, + anon_sym_QMARK, + ACTIONS(5226), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5322), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5318), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5320), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [95604] = 3, ACTIONS(3), 1, sym_comment, - STATE(2104), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5388), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1274), 15, + ACTIONS(4866), 17, anon_sym_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_LPAREN, anon_sym_COLON, anon_sym_DOLLAR, sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_QMARK, anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + anon_sym_COMMA2, + anon_sym_CARET2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1279), 16, + ACTIONS(4864), 19, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -140538,14 +141526,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR_LBRACE, anon_sym_RBRACE3, + anon_sym_COMMA_COMMA2, + anon_sym_CARET_CARET2, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [96515] = 3, + [95648] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4291), 10, + ACTIONS(1268), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -140555,11 +141546,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4293), 24, + ACTIONS(1270), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -140571,62 +141564,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [96557] = 6, - ACTIONS(3), 1, + [95692] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(5372), 1, - aux_sym_concatenation_token1, - ACTIONS(5391), 1, - sym__concat, - STATE(2104), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 15, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, + ACTIONS(1268), 11, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1260), 16, + ACTIONS(1270), 25, + sym_file_descriptor, + sym__concat, sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [96605] = 3, + [95736] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3783), 10, + ACTIONS(1338), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -140636,11 +141628,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(3785), 24, + ACTIONS(1340), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -140652,24 +141646,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [96647] = 5, + [95780] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4898), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4896), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [95824] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5334), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5283), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_QMARK, + ACTIONS(5330), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5332), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [95872] = 7, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5338), 1, + anon_sym_RPAREN, + ACTIONS(5340), 1, + anon_sym_QMARK, + ACTIONS(5336), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5334), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5330), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5332), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [95924] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(5393), 1, + ACTIONS(5342), 1, sym__special_character, - STATE(2108), 1, + STATE(2142), 1, aux_sym__literal_repeat1, - ACTIONS(1358), 10, + ACTIONS(3841), 10, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -140680,9 +141803,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1363), 22, + ACTIONS(3843), 24, sym_file_descriptor, + sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -140703,35 +141828,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [96693] = 6, + [95972] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5283), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + ACTIONS(5308), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5310), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [96020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5372), 1, - aux_sym_concatenation_token1, - ACTIONS(5396), 1, - sym__concat, - STATE(2104), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1264), 15, + ACTIONS(1268), 17, anon_sym_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_LPAREN, anon_sym_COLON, anon_sym_DOLLAR, sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_QMARK, anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + anon_sym_COMMA2, + anon_sym_CARET2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1266), 16, + ACTIONS(1270), 19, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -140741,217 +141905,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR_LBRACE, anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [96741] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(4797), 1, - anon_sym_esac, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, + anon_sym_COMMA_COMMA2, + anon_sym_CARET_CARET2, anon_sym_BQUOTE, - ACTIONS(5344), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4695), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2132), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96825] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(4786), 1, - anon_sym_esac, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4694), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2131), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96909] = 24, + [96064] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - ACTIONS(5398), 1, - anon_sym_esac, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4689), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2129), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96993] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 1, - anon_sym_LF, - ACTIONS(1346), 32, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(77), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5350), 1, + anon_sym_QMARK, + ACTIONS(5226), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5348), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5344), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5346), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [96116] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5283), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + ACTIONS(5308), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -140959,37 +141978,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, - [97034] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 1, - anon_sym_LF, - ACTIONS(1284), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_CARET, + ACTIONS(5310), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [96164] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4799), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -140997,56 +142012,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, - [97075] = 3, - ACTIONS(3), 1, + anon_sym_CARET, + ACTIONS(4797), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [96208] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1298), 15, + ACTIONS(5207), 13, anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1300), 18, - sym__concat, - sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [97116] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5400), 1, - anon_sym_LF, - ACTIONS(5402), 32, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5205), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -141054,7 +142066,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -141066,6 +142077,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [96252] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5322), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5283), 4, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + ACTIONS(5318), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -141073,209 +142103,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, - [97157] = 3, - ACTIONS(3), 1, + anon_sym_CARET, + ACTIONS(5320), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [96300] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1302), 15, + ACTIONS(4866), 13, anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1304), 18, - sym__concat, - sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4864), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [97198] = 3, - ACTIONS(3), 1, + [96344] = 7, + ACTIONS(63), 1, sym_comment, - ACTIONS(1274), 15, + ACTIONS(5314), 1, + anon_sym_QMARK, + ACTIONS(5352), 1, + anon_sym_COLON, + ACTIONS(5226), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5308), 13, anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1279), 18, - sym__concat, - sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5310), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, sym_test_operator, - [97239] = 23, + [96396] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4613), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97320] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1270), 10, + anon_sym_QMARK, + ACTIONS(5354), 1, + anon_sym_RPAREN, + ACTIONS(5336), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5334), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5330), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1272), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [97361] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5404), 1, - anon_sym_LF, - ACTIONS(5406), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5332), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [96448] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5043), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -141283,18 +142268,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, - [97402] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5408), 1, - anon_sym_LF, - ACTIONS(5410), 32, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(5041), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -141302,7 +142281,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -141314,6 +142292,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [96492] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4886), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -141321,761 +142309,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, - [97443] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, + anon_sym_CARET, + ACTIONS(4884), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4504), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97524] = 3, - ACTIONS(3), 1, + [96536] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1308), 15, + ACTIONS(5203), 13, anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1310), 18, - sym__concat, - sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5201), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [97565] = 23, + [96580] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4662), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97646] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 15, + ACTIONS(5007), 1, + anon_sym_QMARK, + ACTIONS(5356), 1, + anon_sym_COLON, + ACTIONS(5003), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5001), 13, anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1314), 18, - sym__concat, - sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [97687] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5416), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5418), 1, - anon_sym_DOLLAR, - ACTIONS(5420), 1, - sym__special_character, - ACTIONS(5422), 1, - anon_sym_DQUOTE, - ACTIONS(5424), 1, - aux_sym_number_token1, - ACTIONS(5426), 1, - aux_sym_number_token2, - ACTIONS(5428), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5430), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5432), 1, - anon_sym_BQUOTE, - ACTIONS(5434), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5438), 1, - sym_test_operator, - ACTIONS(5440), 1, - sym__brace_start, - STATE(2957), 1, - aux_sym__literal_repeat1, - ACTIONS(5436), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2141), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(5412), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(5414), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(2796), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97760] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4685), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97841] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, + anon_sym_CARET, + ACTIONS(5005), 19, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4686), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97922] = 3, + [96630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 15, + ACTIONS(5049), 17, anon_sym_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_LPAREN, anon_sym_COLON, anon_sym_DOLLAR, sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_QMARK, anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + anon_sym_COMMA2, + anon_sym_CARET2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1318), 18, - sym__concat, + ACTIONS(5047), 19, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_POUND, anon_sym_DOLLAR_LBRACE, anon_sym_RBRACE3, + anon_sym_COMMA_COMMA2, + anon_sym_CARET_CARET2, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [97963] = 23, + [96674] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, + ACTIONS(5358), 1, sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, + STATE(2069), 1, aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4687), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98044] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, + ACTIONS(1352), 10, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4760), 1, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4766), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4689), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98125] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4744), 1, sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, + ACTIONS(1357), 24, + sym_file_descriptor, sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4694), 1, - sym_last_case_item, - ACTIONS(5338), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98206] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, anon_sym_BQUOTE, - ACTIONS(5344), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4695), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98287] = 3, - ACTIONS(3), 1, + sym_test_operator, + [96722] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1324), 15, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, + ACTIONS(1318), 11, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1326), 18, + ACTIONS(1320), 25, + sym_file_descriptor, sym__concat, sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [98328] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5416), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5418), 1, - anon_sym_DOLLAR, - ACTIONS(5420), 1, - sym__special_character, - ACTIONS(5422), 1, - anon_sym_DQUOTE, - ACTIONS(5424), 1, - aux_sym_number_token1, - ACTIONS(5426), 1, - aux_sym_number_token2, - ACTIONS(5428), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5430), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5432), 1, - anon_sym_BQUOTE, - ACTIONS(5434), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5438), 1, - sym_test_operator, - ACTIONS(5440), 1, - sym__brace_start, - STATE(2957), 1, - aux_sym__literal_repeat1, - ACTIONS(5436), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2141), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(5412), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(5442), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2796), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98401] = 3, - ACTIONS(3), 1, + [96766] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1322), 1, - anon_sym_LF, - ACTIONS(1320), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4892), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -142083,18 +142560,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, - [98442] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5444), 1, - anon_sym_LF, - ACTIONS(5446), 32, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(4890), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -142102,7 +142573,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -142114,6 +142584,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [96810] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1318), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -142121,18 +142601,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, - [98483] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 1, - anon_sym_LF, - ACTIONS(1284), 32, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(1320), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -142140,7 +142614,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -142152,6 +142625,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [96854] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1227), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -142159,18 +142642,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, - [98524] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 1, - anon_sym_LF, - ACTIONS(1334), 32, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(1364), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -142178,7 +142655,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -142190,6 +142666,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [96898] = 7, + ACTIONS(63), 1, + sym_comment, + ACTIONS(77), 1, + anon_sym_RBRACK, + ACTIONS(5369), 1, + anon_sym_QMARK, + ACTIONS(5363), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5367), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5361), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -142197,91 +142694,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, - [98565] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5451), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5454), 1, - anon_sym_DOLLAR, - ACTIONS(5457), 1, - sym__special_character, - ACTIONS(5460), 1, - anon_sym_DQUOTE, - ACTIONS(5463), 1, - aux_sym_number_token1, - ACTIONS(5466), 1, - aux_sym_number_token2, - ACTIONS(5469), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5472), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5475), 1, - anon_sym_BQUOTE, - ACTIONS(5478), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5484), 1, - sym_test_operator, - ACTIONS(5487), 1, - sym__brace_start, - STATE(2957), 1, - aux_sym__literal_repeat1, - ACTIONS(5481), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2141), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(5448), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(2015), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2796), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98638] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 1, - anon_sym_LF, - ACTIONS(1338), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_CARET, + ACTIONS(5365), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [96950] = 7, + ACTIONS(63), 1, + sym_comment, + ACTIONS(137), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5350), 1, + anon_sym_QMARK, + ACTIONS(5226), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5348), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5344), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -142289,348 +142739,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, - [98679] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 1, - anon_sym_LF, - ACTIONS(1342), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_CARET, + ACTIONS(5346), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [98720] = 23, + sym_test_operator, + [97002] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, + ACTIONS(4374), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4760), 1, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4766), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(4376), 25, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, sym__special_character, - ACTIONS(5336), 1, anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4683), 1, - sym_last_case_item, - ACTIONS(5338), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98801] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, anon_sym_BQUOTE, - ACTIONS(5344), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4682), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98882] = 23, + sym_test_operator, + [97046] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, + ACTIONS(1276), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4760), 1, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4766), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1278), 25, + sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(5336), 1, anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4681), 1, - sym_last_case_item, - ACTIONS(5338), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5346), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98963] = 3, + sym_test_operator, + [97090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 15, + ACTIONS(5043), 17, anon_sym_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_LPAREN, anon_sym_COLON, anon_sym_DOLLAR, sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_QMARK, anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + anon_sym_COMMA2, + anon_sym_CARET2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1330), 18, - sym__concat, + ACTIONS(5041), 19, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_POUND, anon_sym_DOLLAR_LBRACE, anon_sym_RBRACE3, + anon_sym_COMMA_COMMA2, + anon_sym_CARET_CARET2, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [99004] = 23, + [97134] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, + ACTIONS(5222), 1, + anon_sym_RPAREN_RPAREN, ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4679), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99085] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5490), 1, - anon_sym_LF, - ACTIONS(5494), 2, + anon_sym_QMARK, + ACTIONS(5226), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5492), 3, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(5322), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5318), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5496), 27, + anon_sym_CARET, + ACTIONS(5320), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [97186] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4886), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -142638,305 +142941,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - [99130] = 3, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4884), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [97230] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(1288), 15, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, + ACTIONS(5371), 1, + sym__special_character, + STATE(2081), 1, + aux_sym__literal_repeat1, + ACTIONS(1352), 11, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1290), 18, - sym__concat, + ACTIONS(1357), 23, + sym_file_descriptor, sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [99171] = 23, + [97278] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, + ACTIONS(1342), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4760), 1, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4766), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1344), 25, + sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(5336), 1, anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4417), 1, - sym_last_case_item, - ACTIONS(5338), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5346), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99252] = 23, + sym_test_operator, + [97322] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, + ACTIONS(1346), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4760), 1, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4766), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1348), 25, + sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(5336), 1, anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4677), 1, - sym_last_case_item, - ACTIONS(5338), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5346), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99333] = 23, + sym_test_operator, + [97366] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, + ACTIONS(1280), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4760), 1, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4766), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1282), 25, + sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(5336), 1, anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4675), 1, - sym_last_case_item, - ACTIONS(5338), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99414] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5416), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5418), 1, - anon_sym_DOLLAR, - ACTIONS(5420), 1, - sym__special_character, - ACTIONS(5422), 1, - anon_sym_DQUOTE, - ACTIONS(5424), 1, - aux_sym_number_token1, - ACTIONS(5426), 1, - aux_sym_number_token2, - ACTIONS(5428), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5430), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5432), 1, - anon_sym_BQUOTE, - ACTIONS(5434), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5438), 1, - sym_test_operator, - ACTIONS(5440), 1, - sym__brace_start, - STATE(2957), 1, - aux_sym__literal_repeat1, - ACTIONS(5436), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2141), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(5412), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(5498), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2796), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99487] = 5, - ACTIONS(3), 1, + sym_test_operator, + [97410] = 7, + ACTIONS(63), 1, sym_comment, - ACTIONS(5500), 1, - anon_sym_LF, - ACTIONS(5494), 2, + ACTIONS(5340), 1, + anon_sym_QMARK, + ACTIONS(5374), 1, + anon_sym_RPAREN, + ACTIONS(5336), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5502), 3, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(5334), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5330), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5496), 27, + anon_sym_CARET, + ACTIONS(5332), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [97462] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1342), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -142944,312 +143193,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - [99532] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4612), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99613] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4582), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99694] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1344), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4580), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99775] = 23, + [97506] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, + ACTIONS(1346), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1348), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4577), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99856] = 23, + [97550] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, + ACTIONS(4892), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4890), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4574), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99937] = 7, + [97594] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1217), 1, + ACTIONS(1213), 1, sym_file_descriptor, - ACTIONS(5376), 1, + ACTIONS(5378), 1, anon_sym_DQUOTE, - STATE(2751), 1, + STATE(2889), 1, sym_string, - ACTIONS(5378), 2, + ACTIONS(5380), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5374), 9, + ACTIONS(5376), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -143259,8 +143326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 19, - anon_sym_LF, + ACTIONS(1205), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143268,8 +143334,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -143277,79 +143346,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [99986] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4568), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100067] = 7, + [97646] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1221), 1, + ACTIONS(1217), 1, sym_file_descriptor, - ACTIONS(5376), 1, + ACTIONS(5378), 1, anon_sym_DQUOTE, - STATE(2751), 1, + STATE(2889), 1, sym_string, - ACTIONS(5378), 2, + ACTIONS(5380), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5374), 9, + ACTIONS(5376), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -143359,8 +143371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 19, - anon_sym_LF, + ACTIONS(1215), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143368,8 +143379,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -143377,166 +143391,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [100116] = 23, + [97698] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4563), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100197] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5416), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5418), 1, - anon_sym_DOLLAR, - ACTIONS(5420), 1, - sym__special_character, - ACTIONS(5422), 1, - anon_sym_DQUOTE, - ACTIONS(5424), 1, - aux_sym_number_token1, - ACTIONS(5426), 1, - aux_sym_number_token2, - ACTIONS(5428), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5430), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5432), 1, - anon_sym_BQUOTE, - ACTIONS(5434), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5438), 1, - sym_test_operator, - ACTIONS(5440), 1, - sym__brace_start, - STATE(2957), 1, - aux_sym__literal_repeat1, - ACTIONS(5436), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2141), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(5412), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(5504), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2796), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100270] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 15, + ACTIONS(5162), 13, anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1322), 18, - sym__concat, - sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [100311] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1352), 1, - anon_sym_LF, - ACTIONS(1350), 32, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5160), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -143544,7 +143419,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -143556,6 +143430,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [97742] = 7, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5314), 1, + anon_sym_QMARK, + ACTIONS(5382), 1, + anon_sym_COLON, + ACTIONS(5226), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5308), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -143563,56 +143458,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, - [100352] = 3, - ACTIONS(3), 1, + anon_sym_CARET, + ACTIONS(5310), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [97794] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 15, + ACTIONS(4886), 13, anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1336), 18, - sym__concat, - sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [100393] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1356), 1, - anon_sym_LF, - ACTIONS(1354), 32, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4884), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -143620,7 +143505,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -143632,82 +143516,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [100434] = 3, - ACTIONS(3), 1, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [97838] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(1338), 15, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, + ACTIONS(5384), 1, + sym__special_character, + STATE(2069), 1, + aux_sym__literal_repeat1, + ACTIONS(3989), 10, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1340), 18, - sym__concat, + ACTIONS(3991), 24, + sym_file_descriptor, sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [100475] = 3, - ACTIONS(3), 1, + [97886] = 7, + ACTIONS(63), 1, sym_comment, - ACTIONS(1290), 1, - anon_sym_LF, - ACTIONS(1288), 32, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(137), 1, + anon_sym_RBRACK, + ACTIONS(5369), 1, + anon_sym_QMARK, + ACTIONS(5363), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5367), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5361), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5365), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [97938] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5367), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5283), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(5361), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -143715,94 +143630,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, - [100516] = 3, - ACTIONS(3), 1, + anon_sym_CARET, + ACTIONS(5365), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [97986] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(1342), 15, + ACTIONS(5367), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5283), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(5361), 13, anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1344), 18, - sym__concat, - sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5365), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, sym_test_operator, - [100557] = 3, - ACTIONS(3), 1, + [98034] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 15, + ACTIONS(1322), 13, anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1348), 18, - sym__concat, - sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [100598] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1330), 1, - anon_sym_LF, - ACTIONS(1328), 32, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1324), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -143810,7 +143720,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -143822,6 +143731,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [98078] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5139), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_QMARK, + ACTIONS(5386), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -143829,26 +143753,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, - [100639] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1318), 1, - anon_sym_LF, - ACTIONS(1316), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_CARET, + ACTIONS(5388), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -143860,6 +143775,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + sym_test_operator, + [98124] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5334), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5250), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_QMARK, + ACTIONS(5330), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -143867,394 +143799,511 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, - [100680] = 3, - ACTIONS(3), 1, + anon_sym_CARET, + ACTIONS(5332), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [98172] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 15, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, + ACTIONS(1298), 11, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1286), 18, + ACTIONS(1300), 25, + sym_file_descriptor, sym__concat, sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [100721] = 3, - ACTIONS(3), 1, + [98216] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 15, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5250), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + ACTIONS(5308), 13, anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5310), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [98264] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1326), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1286), 18, + ACTIONS(1328), 25, + sym_file_descriptor, sym__concat, sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [100762] = 3, - ACTIONS(3), 1, + [98308] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1350), 15, + ACTIONS(5152), 13, anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5150), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [98352] = 7, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4420), 2, + anon_sym_LT_LT, + anon_sym_PIPE, + ACTIONS(4422), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3236), 6, anon_sym_DOLLAR, sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1352), 18, - sym__concat, + ACTIONS(4425), 6, + sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4638), 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(3248), 13, + sym_variable_name, sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [100803] = 3, - ACTIONS(3), 1, + [98404] = 7, + ACTIONS(63), 1, sym_comment, - ACTIONS(1354), 15, + ACTIONS(5314), 1, + anon_sym_QMARK, + ACTIONS(5390), 1, + anon_sym_COLON, + ACTIONS(5226), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5308), 13, anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5310), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [98456] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5322), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5250), 4, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + ACTIONS(5318), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5320), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [98504] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1310), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1356), 18, + ACTIONS(1312), 25, + sym_file_descriptor, sym__concat, sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [100844] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4744), 1, - sym_word, - ACTIONS(4754), 1, - anon_sym_DOLLAR, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4776), 1, - sym_extglob_pattern, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5328), 1, - anon_sym_LPAREN, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, - sym__special_character, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5348), 1, - sym_test_operator, - STATE(3918), 1, - aux_sym__literal_repeat1, - STATE(4006), 1, - sym_concatenation, - STATE(4254), 1, - sym_last_case_item, - ACTIONS(5338), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100925] = 22, + [98548] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, - sym_word, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5510), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5512), 1, - anon_sym_DOLLAR, - ACTIONS(5514), 1, - sym__special_character, - ACTIONS(5516), 1, + ACTIONS(5292), 1, anon_sym_DQUOTE, - ACTIONS(5520), 1, - aux_sym_number_token1, - ACTIONS(5522), 1, - aux_sym_number_token2, - ACTIONS(5524), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5526), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5528), 1, - anon_sym_BQUOTE, - ACTIONS(5530), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5534), 1, - sym__comment_word, - ACTIONS(5536), 1, - sym_test_operator, - ACTIONS(5538), 1, - sym__empty_value, - ACTIONS(5540), 1, - sym__brace_start, - STATE(2394), 1, - aux_sym__literal_repeat1, - ACTIONS(5518), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5532), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2436), 2, - sym_concatenation, - sym_array, - STATE(2286), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(2730), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101003] = 22, + ACTIONS(1213), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(5294), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5290), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [98600] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5542), 1, - sym_word, - ACTIONS(5545), 1, - anon_sym_LPAREN, - ACTIONS(5548), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5551), 1, - anon_sym_DOLLAR, - ACTIONS(5554), 1, - sym__special_character, - ACTIONS(5557), 1, - anon_sym_DQUOTE, - ACTIONS(5563), 1, - aux_sym_number_token1, - ACTIONS(5566), 1, - aux_sym_number_token2, - ACTIONS(5569), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5572), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5575), 1, - anon_sym_BQUOTE, - ACTIONS(5578), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5584), 1, + ACTIONS(5152), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5150), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - ACTIONS(5587), 1, - sym_extglob_pattern, - ACTIONS(5590), 1, - sym__brace_start, - STATE(3912), 1, - aux_sym__literal_repeat1, - STATE(4054), 1, - sym_concatenation, - ACTIONS(5560), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5581), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3889), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101081] = 22, - ACTIONS(3), 1, + [98644] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1725), 1, - anon_sym_DOLLAR, - ACTIONS(1731), 1, - aux_sym_number_token1, - ACTIONS(1733), 1, - aux_sym_number_token2, - ACTIONS(1737), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1751), 1, - sym__brace_start, - ACTIONS(5593), 1, - sym_word, - ACTIONS(5595), 1, - anon_sym_LPAREN, - ACTIONS(5597), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5599), 1, - sym__special_character, - ACTIONS(5601), 1, - anon_sym_DQUOTE, - ACTIONS(5605), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5607), 1, - anon_sym_BQUOTE, - ACTIONS(5609), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5613), 1, - sym__comment_word, - ACTIONS(5615), 1, + ACTIONS(4898), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4896), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - ACTIONS(5617), 1, - sym__empty_value, - STATE(1309), 1, - aux_sym__literal_repeat1, - ACTIONS(5603), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5611), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1409), 2, - sym_concatenation, - sym_array, - STATE(989), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101159] = 4, + [98688] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(5619), 1, + ACTIONS(5240), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5328), 1, + anon_sym_QMARK, + ACTIONS(5226), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5322), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5318), 13, anon_sym_EQ, - ACTIONS(5358), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -144262,12 +144311,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5320), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + sym_test_operator, + [98740] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1326), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - ACTIONS(5356), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1328), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -144275,7 +144358,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -144287,143 +144369,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [101201] = 22, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [98784] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(5621), 1, - sym_word, - ACTIONS(5623), 1, - anon_sym_LPAREN, - ACTIONS(5625), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5627), 1, + ACTIONS(1242), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(5629), 1, - sym__special_character, - ACTIONS(5631), 1, - anon_sym_DQUOTE, - ACTIONS(5635), 1, aux_sym_number_token1, - ACTIONS(5637), 1, aux_sym_number_token2, - ACTIONS(5639), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5643), 1, - anon_sym_BQUOTE, - ACTIONS(5645), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5649), 1, - sym__comment_word, - ACTIONS(5651), 1, - sym_test_operator, - ACTIONS(5653), 1, - sym__empty_value, - ACTIONS(5655), 1, - sym__brace_start, - STATE(2835), 1, - aux_sym__literal_repeat1, - ACTIONS(5633), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5647), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2947), 2, - sym_concatenation, - sym_array, - STATE(2727), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101279] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5659), 1, - anon_sym_LPAREN, - ACTIONS(5661), 1, + ACTIONS(1244), 25, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5663), 1, - anon_sym_DOLLAR, - ACTIONS(5665), 1, sym__special_character, - ACTIONS(5667), 1, anon_sym_DQUOTE, - ACTIONS(5671), 1, - aux_sym_number_token1, - ACTIONS(5673), 1, - aux_sym_number_token2, - ACTIONS(5675), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(5677), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5679), 1, anon_sym_BQUOTE, - ACTIONS(5681), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5685), 1, - sym__comment_word, - ACTIONS(5687), 1, - sym_test_operator, - ACTIONS(5689), 1, - sym__empty_value, - ACTIONS(5691), 1, - sym__brace_start, - STATE(1372), 1, - aux_sym__literal_repeat1, - ACTIONS(5669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5683), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1548), 2, - sym_concatenation, - sym_array, - STATE(1043), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101357] = 5, + sym_test_operator, + [98828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5693), 1, - sym__special_character, - STATE(2198), 1, - aux_sym__literal_repeat1, - ACTIONS(5384), 13, + ACTIONS(1268), 17, anon_sym_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_LPAREN, anon_sym_COLON, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_QMARK, anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + anon_sym_COMMA2, + anon_sym_CARET2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(5386), 17, + ACTIONS(1270), 19, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -144433,267 +144449,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR_LBRACE, anon_sym_RBRACE3, + anon_sym_COMMA_COMMA2, + anon_sym_CARET_CARET2, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [101401] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1535), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - aux_sym_number_token1, - ACTIONS(1543), 1, - aux_sym_number_token2, - ACTIONS(1547), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1561), 1, - sym__brace_start, - ACTIONS(5695), 1, - sym_word, - ACTIONS(5697), 1, - anon_sym_LPAREN, - ACTIONS(5699), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5701), 1, - sym__special_character, - ACTIONS(5703), 1, - anon_sym_DQUOTE, - ACTIONS(5707), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5709), 1, - anon_sym_BQUOTE, - ACTIONS(5711), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5715), 1, - sym__comment_word, - ACTIONS(5717), 1, - sym_test_operator, - ACTIONS(5719), 1, - sym__empty_value, - STATE(1129), 1, - aux_sym__literal_repeat1, - ACTIONS(5705), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5713), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1207), 2, - sym_concatenation, - sym_array, - STATE(860), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101479] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5721), 1, - sym_word, - ACTIONS(5723), 1, - anon_sym_LPAREN, - ACTIONS(5725), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5727), 1, - anon_sym_DOLLAR, - ACTIONS(5729), 1, - sym__special_character, - ACTIONS(5731), 1, - anon_sym_DQUOTE, - ACTIONS(5735), 1, - aux_sym_number_token1, - ACTIONS(5737), 1, - aux_sym_number_token2, - ACTIONS(5739), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5741), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5743), 1, - anon_sym_BQUOTE, - ACTIONS(5745), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5749), 1, - sym__comment_word, - ACTIONS(5751), 1, - sym_test_operator, - ACTIONS(5753), 1, - sym__empty_value, - ACTIONS(5755), 1, - sym__brace_start, - STATE(1355), 1, - aux_sym__literal_repeat1, - ACTIONS(5733), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5747), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1472), 2, - sym_concatenation, - sym_array, - STATE(1145), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101557] = 7, - ACTIONS(3), 1, + [98872] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(1217), 1, - sym__brace_start, - ACTIONS(5422), 1, - anon_sym_DQUOTE, - STATE(2911), 1, - sym_string, - ACTIONS(5759), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5757), 9, + ACTIONS(5394), 1, + anon_sym_RPAREN, + ACTIONS(5396), 1, + anon_sym_QMARK, + ACTIONS(5392), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5386), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 18, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_CARET, + ACTIONS(5388), 19, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, sym_test_operator, - [101605] = 7, - ACTIONS(3), 1, + [98922] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1221), 1, - sym__brace_start, - ACTIONS(5422), 1, - anon_sym_DQUOTE, - STATE(2911), 1, - sym_string, - ACTIONS(5759), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5757), 9, + ACTIONS(1227), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 18, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_CARET, + ACTIONS(1364), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [98966] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5398), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + STATE(2081), 1, + aux_sym__literal_repeat1, + ACTIONS(4032), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [101653] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5761), 1, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5763), 1, - anon_sym_LPAREN, - ACTIONS(5765), 1, + ACTIONS(4034), 23, + sym_file_descriptor, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5767), 1, - anon_sym_DOLLAR, - ACTIONS(5769), 1, - sym__special_character, - ACTIONS(5771), 1, anon_sym_DQUOTE, - ACTIONS(5775), 1, - aux_sym_number_token1, - ACTIONS(5777), 1, - aux_sym_number_token2, - ACTIONS(5779), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(5781), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5783), 1, anon_sym_BQUOTE, - ACTIONS(5785), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5789), 1, - sym__comment_word, - ACTIONS(5791), 1, - sym_test_operator, - ACTIONS(5793), 1, - sym__empty_value, - ACTIONS(5795), 1, - sym__brace_start, - STATE(2711), 1, - aux_sym__literal_repeat1, - ACTIONS(5773), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5787), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2890), 2, - sym_concatenation, - sym_array, - STATE(2715), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101731] = 4, + sym_test_operator, + [99014] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5797), 1, + ACTIONS(1272), 13, anon_sym_EQ, - ACTIONS(5358), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -144701,11 +144596,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(5356), 21, - anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1274), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -144713,7 +144609,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -144725,778 +144620,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, anon_sym_RPAREN, - [101773] = 22, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [99058] = 7, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5314), 1, + anon_sym_QMARK, + ACTIONS(5400), 1, + anon_sym_COLON, + ACTIONS(5226), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5308), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5310), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [99110] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, - anon_sym_LPAREN, - ACTIONS(5661), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5663), 1, - anon_sym_DOLLAR, - ACTIONS(5667), 1, - anon_sym_DQUOTE, - ACTIONS(5671), 1, - aux_sym_number_token1, - ACTIONS(5673), 1, - aux_sym_number_token2, - ACTIONS(5675), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5677), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5679), 1, - anon_sym_BQUOTE, - ACTIONS(5681), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5685), 1, - sym__comment_word, - ACTIONS(5689), 1, - sym__empty_value, - ACTIONS(5691), 1, - sym__brace_start, - ACTIONS(5799), 1, - sym_word, - ACTIONS(5801), 1, - sym__special_character, - ACTIONS(5805), 1, - sym_test_operator, - STATE(1372), 1, - aux_sym__literal_repeat1, - ACTIONS(5683), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5803), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1548), 2, - sym_concatenation, - sym_array, - STATE(1195), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101851] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(1785), 1, - aux_sym_number_token1, - ACTIONS(1787), 1, - aux_sym_number_token2, - ACTIONS(1791), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1805), 1, - sym__brace_start, - ACTIONS(5807), 1, - sym_word, - ACTIONS(5809), 1, - anon_sym_LPAREN, - ACTIONS(5811), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5813), 1, - sym__special_character, - ACTIONS(5815), 1, - anon_sym_DQUOTE, - ACTIONS(5819), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5821), 1, - anon_sym_BQUOTE, - ACTIONS(5823), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5827), 1, - sym__comment_word, - ACTIONS(5829), 1, - sym_test_operator, - ACTIONS(5831), 1, - sym__empty_value, - STATE(1328), 1, - aux_sym__literal_repeat1, - ACTIONS(5817), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5825), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1381), 2, - sym_concatenation, - sym_array, - STATE(1019), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101929] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5833), 1, - sym_word, - ACTIONS(5835), 1, - anon_sym_LPAREN, - ACTIONS(5837), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5839), 1, - anon_sym_DOLLAR, - ACTIONS(5841), 1, - sym__special_character, - ACTIONS(5843), 1, + ACTIONS(5292), 1, anon_sym_DQUOTE, - ACTIONS(5847), 1, - aux_sym_number_token1, - ACTIONS(5849), 1, - aux_sym_number_token2, - ACTIONS(5851), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5853), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5855), 1, - anon_sym_BQUOTE, - ACTIONS(5857), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5861), 1, - sym__comment_word, - ACTIONS(5863), 1, - sym_test_operator, - ACTIONS(5865), 1, - sym__empty_value, - ACTIONS(5867), 1, - sym__brace_start, - STATE(1219), 1, - aux_sym__literal_repeat1, - ACTIONS(5845), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5859), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1338), 2, - sym_concatenation, - sym_array, - STATE(893), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(2730), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102007] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1467), 1, + ACTIONS(1217), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(5294), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5290), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1473), 1, - aux_sym_number_token1, - ACTIONS(1475), 1, - aux_sym_number_token2, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1495), 1, - sym__brace_start, - ACTIONS(5869), 1, - sym_word, - ACTIONS(5871), 1, - anon_sym_LPAREN, - ACTIONS(5873), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5875), 1, - sym__special_character, - ACTIONS(5877), 1, - anon_sym_DQUOTE, - ACTIONS(5881), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5883), 1, - anon_sym_BQUOTE, - ACTIONS(5885), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5889), 1, - sym__comment_word, - ACTIONS(5891), 1, - sym_test_operator, - ACTIONS(5893), 1, - sym__empty_value, - STATE(947), 1, - aux_sym__literal_repeat1, - ACTIONS(5879), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5887), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1124), 2, - sym_concatenation, - sym_array, - STATE(722), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102085] = 5, - ACTIONS(3), 1, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [99162] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(5895), 1, - sym__special_character, - STATE(2198), 1, - aux_sym__literal_repeat1, - ACTIONS(1358), 13, + ACTIONS(5334), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5283), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_QMARK, + ACTIONS(5330), 13, anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1363), 17, - sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5332), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, sym_test_operator, - [102129] = 22, - ACTIONS(3), 1, + [99210] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(3045), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3047), 1, + ACTIONS(1242), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(3049), 1, sym__special_character, - ACTIONS(3051), 1, - anon_sym_DQUOTE, - ACTIONS(3055), 1, aux_sym_number_token1, - ACTIONS(3057), 1, aux_sym_number_token2, - ACTIONS(3059), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3061), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3063), 1, - anon_sym_BQUOTE, - ACTIONS(3065), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3075), 1, - sym__brace_start, - ACTIONS(5898), 1, sym_word, - ACTIONS(5900), 1, - anon_sym_LPAREN, - ACTIONS(5904), 1, - sym__comment_word, - ACTIONS(5906), 1, - sym_test_operator, - ACTIONS(5908), 1, - sym__empty_value, - STATE(1893), 1, - aux_sym__literal_repeat1, - ACTIONS(3067), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5902), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2048), 2, - sym_concatenation, - sym_array, - STATE(1652), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102207] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5763), 1, - anon_sym_LPAREN, - ACTIONS(5765), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5767), 1, - anon_sym_DOLLAR, - ACTIONS(5771), 1, - anon_sym_DQUOTE, - ACTIONS(5775), 1, - aux_sym_number_token1, - ACTIONS(5777), 1, - aux_sym_number_token2, - ACTIONS(5779), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5781), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5783), 1, - anon_sym_BQUOTE, - ACTIONS(5785), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5789), 1, - sym__comment_word, - ACTIONS(5793), 1, - sym__empty_value, - ACTIONS(5795), 1, + ACTIONS(1244), 25, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(5910), 1, - sym_word, - ACTIONS(5912), 1, - sym__special_character, - ACTIONS(5916), 1, - sym_test_operator, - STATE(2711), 1, - aux_sym__literal_repeat1, - ACTIONS(5787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5914), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2890), 2, - sym_concatenation, - sym_array, - STATE(2717), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102285] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5918), 1, - sym_word, - ACTIONS(5920), 1, - anon_sym_LPAREN, - ACTIONS(5922), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5924), 1, - anon_sym_DOLLAR, - ACTIONS(5926), 1, - sym__special_character, - ACTIONS(5928), 1, anon_sym_DQUOTE, - ACTIONS(5932), 1, - aux_sym_number_token1, - ACTIONS(5934), 1, - aux_sym_number_token2, - ACTIONS(5936), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5938), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5940), 1, - anon_sym_BQUOTE, - ACTIONS(5942), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5946), 1, - sym__comment_word, - ACTIONS(5948), 1, - sym_test_operator, - ACTIONS(5950), 1, - sym__empty_value, - ACTIONS(5952), 1, - sym__brace_start, - STATE(3321), 1, - aux_sym__literal_repeat1, - ACTIONS(5930), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5944), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3454), 2, - sym_concatenation, - sym_array, - STATE(3243), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102363] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5954), 1, - sym_word, - ACTIONS(5956), 1, - anon_sym_LPAREN, - ACTIONS(5958), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5960), 1, - anon_sym_DOLLAR, - ACTIONS(5962), 1, - sym__special_character, - ACTIONS(5964), 1, - anon_sym_DQUOTE, - ACTIONS(5968), 1, - aux_sym_number_token1, - ACTIONS(5970), 1, - aux_sym_number_token2, - ACTIONS(5972), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5974), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5976), 1, anon_sym_BQUOTE, - ACTIONS(5978), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5982), 1, - sym__comment_word, - ACTIONS(5984), 1, - sym_test_operator, - ACTIONS(5986), 1, - sym__empty_value, - ACTIONS(5988), 1, - sym__brace_start, - STATE(1105), 1, - aux_sym__literal_repeat1, - ACTIONS(5966), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5980), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1287), 2, - sym_concatenation, - sym_array, - STATE(844), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102441] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5990), 1, - sym_word, - ACTIONS(5992), 1, - anon_sym_LPAREN, - ACTIONS(5994), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5996), 1, - anon_sym_DOLLAR, - ACTIONS(5998), 1, - sym__special_character, - ACTIONS(6000), 1, - anon_sym_DQUOTE, - ACTIONS(6004), 1, - aux_sym_number_token1, - ACTIONS(6006), 1, - aux_sym_number_token2, - ACTIONS(6008), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6010), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6012), 1, - anon_sym_BQUOTE, - ACTIONS(6014), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6018), 1, - sym__comment_word, - ACTIONS(6020), 1, sym_test_operator, - ACTIONS(6022), 1, - sym__empty_value, - ACTIONS(6024), 1, - sym__brace_start, - STATE(2628), 1, - aux_sym__literal_repeat1, - ACTIONS(6002), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6016), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2836), 2, - sym_concatenation, - sym_array, - STATE(2404), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102519] = 22, - ACTIONS(3), 1, + [99254] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(5992), 1, - anon_sym_LPAREN, - ACTIONS(5994), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5996), 1, + ACTIONS(4370), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(6000), 1, - anon_sym_DQUOTE, - ACTIONS(6004), 1, aux_sym_number_token1, - ACTIONS(6006), 1, aux_sym_number_token2, - ACTIONS(6008), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6010), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6012), 1, - anon_sym_BQUOTE, - ACTIONS(6014), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6018), 1, - sym__comment_word, - ACTIONS(6022), 1, - sym__empty_value, - ACTIONS(6024), 1, - sym__brace_start, - ACTIONS(6026), 1, - sym_word, - ACTIONS(6028), 1, - sym__special_character, - ACTIONS(6032), 1, - sym_test_operator, - STATE(2628), 1, - aux_sym__literal_repeat1, - ACTIONS(6016), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6030), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2836), 2, - sym_concatenation, - sym_array, - STATE(2597), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102597] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6034), 1, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(6036), 1, - anon_sym_LPAREN, - ACTIONS(6038), 1, + ACTIONS(4372), 25, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6040), 1, - anon_sym_DOLLAR, - ACTIONS(6042), 1, sym__special_character, - ACTIONS(6044), 1, anon_sym_DQUOTE, - ACTIONS(6048), 1, - aux_sym_number_token1, - ACTIONS(6050), 1, - aux_sym_number_token2, - ACTIONS(6052), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6054), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6056), 1, - anon_sym_BQUOTE, - ACTIONS(6058), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6062), 1, - sym__comment_word, - ACTIONS(6064), 1, - sym_test_operator, - ACTIONS(6066), 1, - sym__empty_value, - ACTIONS(6068), 1, - sym__brace_start, - STATE(2034), 1, - aux_sym__literal_repeat1, - ACTIONS(6046), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6060), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2107), 2, - sym_concatenation, - sym_array, - STATE(1679), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102675] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(1785), 1, - aux_sym_number_token1, - ACTIONS(1787), 1, - aux_sym_number_token2, - ACTIONS(1791), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1805), 1, - sym__brace_start, - ACTIONS(5809), 1, - anon_sym_LPAREN, - ACTIONS(5811), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5815), 1, - anon_sym_DQUOTE, - ACTIONS(5819), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5821), 1, anon_sym_BQUOTE, - ACTIONS(5823), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5827), 1, - sym__comment_word, - ACTIONS(5831), 1, - sym__empty_value, - ACTIONS(6070), 1, - sym_word, - ACTIONS(6072), 1, - sym__special_character, - ACTIONS(6076), 1, - sym_test_operator, - STATE(1328), 1, - aux_sym__literal_repeat1, - ACTIONS(5825), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6074), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1381), 2, - sym_concatenation, - sym_array, - STATE(1146), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102753] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5763), 1, - anon_sym_LPAREN, - ACTIONS(5765), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5767), 1, - anon_sym_DOLLAR, - ACTIONS(5771), 1, - anon_sym_DQUOTE, - ACTIONS(5775), 1, - aux_sym_number_token1, - ACTIONS(5777), 1, - aux_sym_number_token2, - ACTIONS(5779), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5781), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5783), 1, - anon_sym_BQUOTE, - ACTIONS(5785), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5789), 1, - sym__comment_word, - ACTIONS(5793), 1, - sym__empty_value, - ACTIONS(5795), 1, - sym__brace_start, - ACTIONS(6078), 1, - sym_word, - ACTIONS(6080), 1, - sym__special_character, - ACTIONS(6084), 1, sym_test_operator, - STATE(2711), 1, - aux_sym__literal_repeat1, - ACTIONS(5787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6082), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2890), 2, - sym_concatenation, - sym_array, - STATE(2766), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102831] = 3, + [99298] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1288), 10, + ACTIONS(5348), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5283), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + ACTIONS(5344), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -145504,107 +144861,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1290), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5346), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [102870] = 3, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + sym_test_operator, + [99346] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(4291), 14, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, + ACTIONS(1284), 11, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4293), 17, + ACTIONS(1286), 25, + sym_file_descriptor, + sym__concat, sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [102909] = 3, + [99390] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5406), 10, + ACTIONS(1272), 11, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(5404), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1274), 25, + sym_file_descriptor, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [102948] = 3, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [99434] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(5446), 10, + ACTIONS(5314), 1, + anon_sym_QMARK, + ACTIONS(5402), 1, + anon_sym_COLON, + ACTIONS(5226), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5308), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -145612,35 +144988,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(5444), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5310), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [102987] = 3, + anon_sym_STAR_STAR, + sym_test_operator, + [99486] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(5402), 10, + ACTIONS(5340), 1, + anon_sym_QMARK, + ACTIONS(5404), 1, + anon_sym_RPAREN, + ACTIONS(5336), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5334), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5330), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -145648,35 +145033,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(5400), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5332), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [103026] = 3, + anon_sym_STAR_STAR, + sym_test_operator, + [99538] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1342), 10, + ACTIONS(5348), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5283), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + ACTIONS(5344), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -145684,35 +145076,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1344), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5346), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [103065] = 3, + anon_sym_STAR_STAR, + sym_test_operator, + [99586] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 10, + ACTIONS(4886), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -145720,12 +145110,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1286), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4884), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -145733,7 +145123,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -145745,10 +145134,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [103104] = 3, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [99630] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 10, + ACTIONS(1330), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -145756,12 +145151,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1286), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1332), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -145769,7 +145164,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -145781,10 +145175,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [103143] = 3, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [99674] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 10, + ACTIONS(5348), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5250), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + ACTIONS(5344), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -145792,64 +145201,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1348), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5346), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [103182] = 9, + anon_sym_STAR_STAR, + sym_test_operator, + [99722] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(6096), 1, - sym_file_descriptor, - ACTIONS(6099), 1, - sym_variable_name, - STATE(4169), 1, - sym_subscript, - ACTIONS(6091), 3, + ACTIONS(5342), 1, + sym__special_character, + STATE(2142), 1, + aux_sym__literal_repeat1, + ACTIONS(3989), 10, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, - STATE(2217), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(6086), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(6088), 5, + ACTIONS(3991), 24, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(6094), 12, - sym__brace_start, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -145859,10 +145266,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [103233] = 3, + [99770] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1316), 10, + ACTIONS(5314), 1, + anon_sym_QMARK, + ACTIONS(5406), 1, + anon_sym_COLON, + ACTIONS(5226), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5308), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -145870,41 +145289,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1318), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5310), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [103272] = 5, + anon_sym_STAR_STAR, + sym_test_operator, + [99822] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5490), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - ACTIONS(6102), 2, + ACTIONS(1294), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1296), 25, + sym_file_descriptor, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [99866] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5396), 1, + anon_sym_QMARK, + ACTIONS(5408), 1, + anon_sym_RPAREN, + ACTIONS(5392), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6106), 10, + ACTIONS(5386), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -145912,16 +145371,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(6104), 17, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5388), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -145933,82 +145393,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [103315] = 3, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + sym_test_operator, + [99916] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 14, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, + ACTIONS(1302), 11, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1272), 17, + ACTIONS(1304), 25, + sym_file_descriptor, + sym__concat, sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [103354] = 3, + [99960] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1350), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1352), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(5314), 1, + anon_sym_QMARK, + ACTIONS(5410), 1, + anon_sym_COLON, + ACTIONS(5226), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(5312), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [103393] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1338), 10, + anon_sym_EQ_TILDE, + ACTIONS(5308), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -146016,143 +145460,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1340), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5310), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [103432] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1338), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1340), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [103471] = 3, + sym_test_operator, + [100012] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1350), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1352), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(5367), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [103510] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1354), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1356), 21, - anon_sym_COMMA, + anon_sym_EQ_TILDE, + ACTIONS(5250), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [103549] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5446), 10, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(5361), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -146160,221 +145503,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(5444), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5365), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [103588] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5410), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5408), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [103627] = 3, + sym_test_operator, + [100060] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1342), 10, + ACTIONS(1322), 11, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1344), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1324), 25, + sym_file_descriptor, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [103666] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 10, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1336), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [103705] = 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [100104] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1320), 10, + ACTIONS(5412), 1, + sym__special_character, + STATE(2142), 1, + aux_sym__literal_repeat1, + ACTIONS(1352), 10, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1322), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1357), 24, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [103744] = 3, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [100152] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1320), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1322), 21, - anon_sym_COMMA, + ACTIONS(127), 1, + anon_sym_RBRACK, + ACTIONS(5369), 1, + anon_sym_QMARK, + ACTIONS(5363), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(5367), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [103783] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5500), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - ACTIONS(6102), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6106), 10, + anon_sym_EQ_TILDE, + ACTIONS(5361), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -146382,67 +145632,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(6104), 17, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5365), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [103826] = 3, + anon_sym_STAR_STAR, + sym_test_operator, + [100204] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1348), 21, - anon_sym_COMMA, + ACTIONS(127), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5350), 1, + anon_sym_QMARK, + ACTIONS(5226), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(5348), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [103865] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1328), 10, + anon_sym_EQ_TILDE, + ACTIONS(5344), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -146450,35 +145677,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1330), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5346), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [103904] = 3, + anon_sym_STAR_STAR, + sym_test_operator, + [100256] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1328), 10, + ACTIONS(5143), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -146486,12 +145711,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1330), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5141), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -146499,7 +145724,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -146511,300 +145735,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [103943] = 3, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [100300] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1354), 10, + ACTIONS(1334), 11, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1356), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [103982] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4295), 14, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4297), 17, + ACTIONS(1336), 25, + sym_file_descriptor, + sym__concat, sym__brace_start, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [104021] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1336), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [104060] = 3, + [100344] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5406), 10, + ACTIONS(1330), 11, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5404), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [104099] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5490), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(6108), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6112), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(6110), 17, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1332), 25, + sym_file_descriptor, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [104142] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5402), 10, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5400), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [104181] = 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [100388] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1286), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [104220] = 3, + ACTIONS(4816), 1, + sym_word, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, + anon_sym_DOLLAR, + ACTIONS(4832), 1, + aux_sym_number_token1, + ACTIONS(4834), 1, + aux_sym_number_token2, + ACTIONS(4838), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(5417), 1, + anon_sym_esac, + ACTIONS(5419), 1, + sym__special_character, + ACTIONS(5421), 1, + anon_sym_DQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5427), 1, + anon_sym_BQUOTE, + ACTIONS(5429), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5433), 1, + sym_test_operator, + STATE(4057), 1, + aux_sym__literal_repeat1, + STATE(4183), 1, + sym_concatenation, + STATE(4770), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5431), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2208), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100473] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1288), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1290), 21, - anon_sym_COMMA, + ACTIONS(5250), 3, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_QMARK, + ACTIONS(5439), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [104259] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5410), 10, + anon_sym_EQ_TILDE, + ACTIONS(5435), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -146812,154 +145903,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(5408), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5437), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [104298] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1286), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [104337] = 5, + sym_test_operator, + [100520] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5500), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(6108), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6112), 10, + ACTIONS(1242), 10, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(6110), 17, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1244), 25, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [104380] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1316), 10, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1318), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [104419] = 7, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [100563] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1217), 1, - sym_file_descriptor, - ACTIONS(6116), 1, + ACTIONS(5443), 1, anon_sym_DQUOTE, - STATE(3401), 1, + STATE(2781), 1, sym_string, - ACTIONS(6118), 2, + ACTIONS(1217), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(5445), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6114), 9, + ACTIONS(5441), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -146969,7 +145988,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 16, + ACTIONS(1215), 20, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -146977,58 +145997,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - [104465] = 20, + anon_sym_AMP, + anon_sym_BQUOTE, + [100614] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(4083), 1, + ACTIONS(4816), 1, sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4101), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(4103), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(4981), 1, + anon_sym_esac, + ACTIONS(5419), 1, + sym__special_character, + ACTIONS(5421), 1, + anon_sym_DQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(4111), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, + ACTIONS(5433), 1, sym_test_operator, - ACTIONS(4117), 1, - sym__brace_start, - ACTIONS(6120), 1, - anon_sym_RPAREN, - ACTIONS(6122), 1, - sym__special_character, - STATE(3322), 1, + STATE(4057), 1, aux_sym__literal_repeat1, - ACTIONS(4099), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4600), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4113), 2, + ACTIONS(5431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2252), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, + STATE(2236), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147038,49 +146070,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104537] = 20, + [100699] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(4083), 1, + ACTIONS(4816), 1, sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4101), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(4103), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(5419), 1, + sym__special_character, + ACTIONS(5421), 1, + anon_sym_DQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(4111), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, + ACTIONS(5433), 1, sym_test_operator, - ACTIONS(4117), 1, - sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6124), 1, - anon_sym_RPAREN, - STATE(3322), 1, + ACTIONS(5447), 1, + anon_sym_esac, + STATE(4057), 1, aux_sym__literal_repeat1, - ACTIONS(4099), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4580), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4113), 2, + ACTIONS(5431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2252), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, + STATE(2190), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147090,361 +146131,184 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104609] = 20, + [100784] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4083), 1, - sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, + ACTIONS(3236), 5, anon_sym_DOLLAR, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4101), 1, aux_sym_number_token1, - ACTIONS(4103), 1, aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, - anon_sym_BQUOTE, - ACTIONS(4111), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, - sym_test_operator, - ACTIONS(4117), 1, - sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6126), 1, - anon_sym_RPAREN, - STATE(3322), 1, - aux_sym__literal_repeat1, - ACTIONS(4099), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4113), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2264), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104681] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2053), 1, - anon_sym_RPAREN, - ACTIONS(6128), 1, sym_word, - ACTIONS(6131), 1, + ACTIONS(4390), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(4392), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(3248), 14, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6134), 1, - anon_sym_DOLLAR, - ACTIONS(6137), 1, sym__special_character, - ACTIONS(6140), 1, anon_sym_DQUOTE, - ACTIONS(6146), 1, - aux_sym_number_token1, - ACTIONS(6149), 1, - aux_sym_number_token2, - ACTIONS(6152), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6155), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6158), 1, anon_sym_BQUOTE, - ACTIONS(6161), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6167), 1, - sym_test_operator, - ACTIONS(6170), 1, - sym__brace_start, - STATE(3322), 1, - aux_sym__literal_repeat1, - ACTIONS(6143), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6164), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2252), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104753] = 20, - ACTIONS(63), 1, + sym_test_operator, + [100831] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4083), 1, - sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, + STATE(2179), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5453), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5449), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4101), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(4103), 1, aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, anon_sym_BQUOTE, - ACTIONS(4111), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, - sym_test_operator, - ACTIONS(4117), 1, + sym_word, + ACTIONS(5451), 16, sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6173), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(3322), 1, - aux_sym__literal_repeat1, - ACTIONS(4099), 2, + anon_sym_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(4113), 2, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2252), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104825] = 20, + sym_test_operator, + [100878] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4083), 1, - sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, + ACTIONS(5455), 1, + sym__special_character, + STATE(2156), 1, + aux_sym__literal_repeat1, + ACTIONS(1352), 10, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4101), 1, aux_sym_number_token1, - ACTIONS(4103), 1, aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, - anon_sym_BQUOTE, - ACTIONS(4111), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, - sym_test_operator, - ACTIONS(4117), 1, - sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6175), 1, - anon_sym_RPAREN, - STATE(3322), 1, - aux_sym__literal_repeat1, - ACTIONS(4099), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4113), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2291), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104897] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4083), 1, sym_word, - ACTIONS(4091), 1, + ACTIONS(1357), 23, + sym_file_descriptor, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, - anon_sym_DOLLAR, - ACTIONS(4097), 1, anon_sym_DQUOTE, - ACTIONS(4101), 1, - aux_sym_number_token1, - ACTIONS(4103), 1, - aux_sym_number_token2, - ACTIONS(4105), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, anon_sym_BQUOTE, - ACTIONS(4111), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, - sym_test_operator, - ACTIONS(4117), 1, - sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6177), 1, - anon_sym_RPAREN, - STATE(3322), 1, - aux_sym__literal_repeat1, - ACTIONS(4099), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4113), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2285), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104969] = 20, + sym_test_operator, + [100925] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(4083), 1, + ACTIONS(4816), 1, sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4101), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(4103), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, - anon_sym_BQUOTE, - ACTIONS(4111), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, - sym_test_operator, - ACTIONS(4117), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, sym__brace_start, - ACTIONS(6122), 1, + ACTIONS(4882), 1, + anon_sym_esac, + ACTIONS(5419), 1, sym__special_character, - ACTIONS(6179), 1, - anon_sym_RPAREN, - STATE(3322), 1, - aux_sym__literal_repeat1, - ACTIONS(4099), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4113), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2263), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105041] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4083), 1, - sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, - anon_sym_DOLLAR, - ACTIONS(4097), 1, + ACTIONS(5421), 1, anon_sym_DQUOTE, - ACTIONS(4101), 1, - aux_sym_number_token1, - ACTIONS(4103), 1, - aux_sym_number_token2, - ACTIONS(4105), 1, + ACTIONS(5425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(4111), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, + ACTIONS(5433), 1, sym_test_operator, - ACTIONS(4117), 1, - sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6181), 1, - anon_sym_RPAREN, - STATE(3322), 1, + STATE(4057), 1, aux_sym__literal_repeat1, - ACTIONS(4099), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4422), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4113), 2, + ACTIONS(5431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2252), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, + STATE(2210), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147454,101 +146318,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105113] = 20, + [101010] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(4083), 1, + ACTIONS(4816), 1, sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4101), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(4103), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, - anon_sym_BQUOTE, - ACTIONS(4111), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, - sym_test_operator, - ACTIONS(4117), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, sym__brace_start, - ACTIONS(6122), 1, + ACTIONS(4985), 1, + anon_sym_esac, + ACTIONS(5419), 1, sym__special_character, - ACTIONS(6183), 1, - anon_sym_RPAREN, - STATE(3322), 1, - aux_sym__literal_repeat1, - ACTIONS(4099), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4113), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2250), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105185] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4083), 1, - sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, - anon_sym_DOLLAR, - ACTIONS(4097), 1, + ACTIONS(5421), 1, anon_sym_DQUOTE, - ACTIONS(4101), 1, - aux_sym_number_token1, - ACTIONS(4103), 1, - aux_sym_number_token2, - ACTIONS(4105), 1, + ACTIONS(5425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(4111), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, + ACTIONS(5433), 1, sym_test_operator, - ACTIONS(4117), 1, - sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6185), 1, - anon_sym_RPAREN, - STATE(3322), 1, + STATE(4057), 1, aux_sym__literal_repeat1, - ACTIONS(4099), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4601), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4113), 2, + ACTIONS(5431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2253), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, + STATE(2227), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147558,110 +146379,106 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105257] = 20, - ACTIONS(63), 1, + [101095] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(4083), 1, - sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, - anon_sym_DOLLAR, - ACTIONS(4097), 1, + ACTIONS(5443), 1, anon_sym_DQUOTE, - ACTIONS(4101), 1, - aux_sym_number_token1, - ACTIONS(4103), 1, - aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, - anon_sym_BQUOTE, - ACTIONS(4111), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, - sym_test_operator, - ACTIONS(4117), 1, - sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6187), 1, - anon_sym_RPAREN, - STATE(3322), 1, - aux_sym__literal_repeat1, - ACTIONS(4099), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4113), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(2781), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105329] = 6, - ACTIONS(63), 1, + ACTIONS(5445), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1217), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(5441), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [101146] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6189), 1, - aux_sym_concatenation_token1, - ACTIONS(6191), 1, - sym__concat, - STATE(2279), 1, + STATE(2179), 1, aux_sym_concatenation_repeat1, - ACTIONS(1264), 9, + ACTIONS(5453), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1242), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1266), 18, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1244), 16, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [105373] = 7, + [101193] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6195), 1, + ACTIONS(5443), 1, anon_sym_DQUOTE, - STATE(3377), 1, + STATE(2781), 1, sym_string, - ACTIONS(1221), 2, + ACTIONS(1213), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(6197), 2, + ACTIONS(5445), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6193), 9, + ACTIONS(5441), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -147671,14 +146488,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 15, + ACTIONS(1205), 20, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -147686,192 +146506,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - [105419] = 20, - ACTIONS(63), 1, + anon_sym_AMP, + [101244] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(4083), 1, - sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, - anon_sym_DOLLAR, - ACTIONS(4097), 1, + ACTIONS(1213), 1, + sym_file_descriptor, + ACTIONS(5378), 1, anon_sym_DQUOTE, - ACTIONS(4101), 1, - aux_sym_number_token1, - ACTIONS(4103), 1, - aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, - anon_sym_BQUOTE, - ACTIONS(4111), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, - sym_test_operator, - ACTIONS(4117), 1, - sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6199), 1, - anon_sym_RPAREN, - STATE(3322), 1, - aux_sym__literal_repeat1, - ACTIONS(4099), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4113), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2252), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(2889), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105491] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4083), 1, - sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, + ACTIONS(5380), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5376), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4101), 1, - aux_sym_number_token1, - ACTIONS(4103), 1, - aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, - anon_sym_BQUOTE, - ACTIONS(4111), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, - sym_test_operator, - ACTIONS(4117), 1, - sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6201), 1, - anon_sym_RPAREN, - STATE(3322), 1, - aux_sym__literal_repeat1, - ACTIONS(4099), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4113), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2252), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105563] = 6, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [101295] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(6189), 1, - aux_sym_concatenation_token1, - ACTIONS(6203), 1, - sym__concat, - STATE(2279), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 9, + ACTIONS(5283), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + ACTIONS(5439), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5435), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1260), 18, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5437), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [101342] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5443), 1, + anon_sym_DQUOTE, + STATE(2781), 1, + sym_string, + ACTIONS(5445), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1213), 3, sym_file_descriptor, sym_variable_name, - sym__brace_start, + ts_builtin_sym_end, + ACTIONS(5441), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [105607] = 20, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [101393] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(4083), 1, + ACTIONS(4816), 1, sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4101), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(4103), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(5419), 1, + sym__special_character, + ACTIONS(5421), 1, + anon_sym_DQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(4111), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, + ACTIONS(5433), 1, sym_test_operator, - ACTIONS(4117), 1, - sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6205), 1, - anon_sym_RPAREN, - STATE(3322), 1, + ACTIONS(5458), 1, + anon_sym_esac, + STATE(4057), 1, aux_sym__literal_repeat1, - ACTIONS(4099), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4578), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4113), 2, + ACTIONS(5431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2252), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, + STATE(2193), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147881,20 +146700,20 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105679] = 7, + [101478] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6195), 1, + ACTIONS(5443), 1, anon_sym_DQUOTE, - STATE(3377), 1, + STATE(2781), 1, sym_string, - ACTIONS(1217), 2, + ACTIONS(1213), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(6197), 2, + ACTIONS(5445), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6193), 9, + ACTIONS(5441), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -147904,7 +146723,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 15, + ACTIONS(1205), 20, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -147912,6 +146732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -147919,20 +146740,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - [105725] = 7, + anon_sym_AMP, + anon_sym_BQUOTE, + [101529] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1221), 1, + ACTIONS(1217), 1, sym_file_descriptor, - ACTIONS(6116), 1, + ACTIONS(5378), 1, anon_sym_DQUOTE, - STATE(3401), 1, + STATE(2889), 1, sym_string, - ACTIONS(6118), 2, + ACTIONS(5380), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6114), 9, + ACTIONS(5376), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -147942,7 +146766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1219), 16, + ACTIONS(1215), 21, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -147950,110 +146775,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - [105771] = 20, + anon_sym_AMP, + [101580] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(4083), 1, + ACTIONS(4816), 1, sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4101), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(4103), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, - anon_sym_BQUOTE, - ACTIONS(4111), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, - sym_test_operator, - ACTIONS(4117), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, sym__brace_start, - ACTIONS(6122), 1, + ACTIONS(5419), 1, sym__special_character, - ACTIONS(6207), 1, - anon_sym_RPAREN, - STATE(3322), 1, - aux_sym__literal_repeat1, - ACTIONS(4099), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4113), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2252), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105843] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4083), 1, - sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, - anon_sym_DOLLAR, - ACTIONS(4097), 1, + ACTIONS(5421), 1, anon_sym_DQUOTE, - ACTIONS(4101), 1, - aux_sym_number_token1, - ACTIONS(4103), 1, - aux_sym_number_token2, - ACTIONS(4105), 1, + ACTIONS(5425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(4111), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, + ACTIONS(5433), 1, sym_test_operator, - ACTIONS(4117), 1, - sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6209), 1, - anon_sym_RPAREN, - STATE(3322), 1, + ACTIONS(5460), 1, + anon_sym_esac, + STATE(4057), 1, aux_sym__literal_repeat1, - ACTIONS(4099), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4411), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4113), 2, + ACTIONS(5431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2252), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, + STATE(2215), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148063,138 +146849,138 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105915] = 20, + [101665] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4083), 1, - sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, + ACTIONS(4370), 10, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4101), 1, aux_sym_number_token1, - ACTIONS(4103), 1, aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, - anon_sym_BQUOTE, - ACTIONS(4111), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, - sym_test_operator, - ACTIONS(4117), 1, + sym_word, + ACTIONS(4372), 25, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(6122), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, - ACTIONS(6211), 1, - anon_sym_RPAREN, - STATE(3322), 1, - aux_sym__literal_repeat1, - ACTIONS(4099), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(4113), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2269), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105987] = 5, + sym_test_operator, + [101708] = 3, ACTIONS(63), 1, sym_comment, - STATE(2261), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6189), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4049), 9, + ACTIONS(3837), 10, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(4051), 18, + ACTIONS(3839), 25, sym_file_descriptor, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [106029] = 20, + [101751] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(4083), 1, + ACTIONS(4816), 1, sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4101), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(4103), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(5419), 1, + sym__special_character, + ACTIONS(5421), 1, + anon_sym_DQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(4111), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, + ACTIONS(5433), 1, sym_test_operator, - ACTIONS(4117), 1, - sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6213), 1, - anon_sym_RPAREN, - STATE(3322), 1, + ACTIONS(5462), 1, + anon_sym_esac, + STATE(4057), 1, aux_sym__literal_repeat1, - ACTIONS(4099), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4743), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4113), 2, + ACTIONS(5431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2257), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, + STATE(2207), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148204,242 +146990,140 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106101] = 5, + [101836] = 3, ACTIONS(63), 1, sym_comment, - STATE(2265), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6189), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3888), 9, + ACTIONS(1242), 11, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(3892), 18, + ACTIONS(1244), 24, sym_file_descriptor, - sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [106143] = 20, - ACTIONS(63), 1, + [101879] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4083), 1, - sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, - anon_sym_DOLLAR, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4101), 1, - aux_sym_number_token1, - ACTIONS(4103), 1, - aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, - anon_sym_BQUOTE, - ACTIONS(4111), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, - sym_test_operator, - ACTIONS(4117), 1, + STATE(2180), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5453), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3946), 16, sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6215), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(3322), 1, - aux_sym__literal_repeat1, - ACTIONS(4099), 2, + anon_sym_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(4113), 2, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2281), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106215] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4083), 1, - sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, + sym_test_operator, + ACTIONS(3948), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4101), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(4103), 1, aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, anon_sym_BQUOTE, - ACTIONS(4111), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, - sym_test_operator, - ACTIONS(4117), 1, - sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6217), 1, - anon_sym_RPAREN, - STATE(3322), 1, - aux_sym__literal_repeat1, - ACTIONS(4099), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4113), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2252), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106287] = 20, + sym_word, + [101926] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(4083), 1, + ACTIONS(4816), 1, sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4101), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(4103), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, - anon_sym_BQUOTE, - ACTIONS(4111), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, - sym_test_operator, - ACTIONS(4117), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, sym__brace_start, - ACTIONS(6122), 1, + ACTIONS(4974), 1, + anon_sym_esac, + ACTIONS(5419), 1, sym__special_character, - ACTIONS(6219), 1, - anon_sym_RPAREN, - STATE(3322), 1, - aux_sym__literal_repeat1, - ACTIONS(4099), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4113), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2252), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106359] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4083), 1, - sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, - anon_sym_DOLLAR, - ACTIONS(4097), 1, + ACTIONS(5421), 1, anon_sym_DQUOTE, - ACTIONS(4101), 1, - aux_sym_number_token1, - ACTIONS(4103), 1, - aux_sym_number_token2, - ACTIONS(4105), 1, + ACTIONS(5425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(4111), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, + ACTIONS(5433), 1, sym_test_operator, - ACTIONS(4117), 1, - sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6221), 1, - anon_sym_RPAREN, - STATE(3322), 1, + STATE(4057), 1, aux_sym__literal_repeat1, - ACTIONS(4099), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4687), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4113), 2, + ACTIONS(5431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2280), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, + STATE(2223), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148449,509 +147133,352 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106431] = 5, + [102011] = 7, ACTIONS(63), 1, sym_comment, - STATE(2279), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6223), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1274), 9, + ACTIONS(4420), 2, + anon_sym_LT_LT, + anon_sym_PIPE, + ACTIONS(4422), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, + ACTIONS(3236), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1279), 18, + ACTIONS(4638), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4425), 6, sym_file_descriptor, - sym_variable_name, - sym__brace_start, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(3248), 14, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [106473] = 20, + [102062] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4083), 1, - sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, + ACTIONS(1242), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4101), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(4103), 1, aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, - anon_sym_BQUOTE, - ACTIONS(4111), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, - sym_test_operator, - ACTIONS(4117), 1, + sym_word, + ACTIONS(1244), 24, + sym_file_descriptor, sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6226), 1, - anon_sym_RPAREN, - STATE(3322), 1, - aux_sym__literal_repeat1, - ACTIONS(4099), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4113), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2252), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106545] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4083), 1, - sym_word, - ACTIONS(4091), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, - anon_sym_DOLLAR, - ACTIONS(4097), 1, anon_sym_DQUOTE, - ACTIONS(4101), 1, - aux_sym_number_token1, - ACTIONS(4103), 1, - aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, - anon_sym_BQUOTE, - ACTIONS(4111), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, - sym_test_operator, - ACTIONS(4117), 1, - sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6228), 1, - anon_sym_RPAREN, - STATE(3322), 1, - aux_sym__literal_repeat1, - ACTIONS(4099), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4113), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2252), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106617] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4083), 1, - sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, - anon_sym_DOLLAR, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4101), 1, - aux_sym_number_token1, - ACTIONS(4103), 1, - aux_sym_number_token2, - ACTIONS(4105), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, anon_sym_BQUOTE, - ACTIONS(4111), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, - sym_test_operator, - ACTIONS(4117), 1, - sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6230), 1, - anon_sym_RPAREN, - STATE(3322), 1, - aux_sym__literal_repeat1, - ACTIONS(4099), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4113), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2289), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106689] = 5, + sym_test_operator, + [102105] = 3, ACTIONS(63), 1, sym_comment, - STATE(2261), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6189), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1270), 9, + ACTIONS(4374), 10, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1272), 18, + ACTIONS(4376), 25, sym_file_descriptor, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [106731] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4083), 1, - sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, - anon_sym_DOLLAR, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4101), 1, - aux_sym_number_token1, - ACTIONS(4103), 1, - aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, anon_sym_BQUOTE, - ACTIONS(4111), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, - sym_test_operator, - ACTIONS(4117), 1, - sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6232), 1, - anon_sym_RPAREN, - STATE(3322), 1, - aux_sym__literal_repeat1, - ACTIONS(4099), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4113), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2249), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106803] = 20, + sym_test_operator, + [102148] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4083), 1, - sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, - anon_sym_DOLLAR, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4101), 1, - aux_sym_number_token1, - ACTIONS(4103), 1, - aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, - anon_sym_BQUOTE, - ACTIONS(4111), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, - sym_test_operator, - ACTIONS(4117), 1, - sym__brace_start, - ACTIONS(6122), 1, + ACTIONS(5464), 1, sym__special_character, - ACTIONS(6234), 1, - anon_sym_RPAREN, - STATE(3322), 1, + STATE(2156), 1, aux_sym__literal_repeat1, - ACTIONS(4099), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4113), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2252), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106875] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(2265), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6189), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3783), 9, + ACTIONS(3989), 10, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(3785), 18, + ACTIONS(3991), 23, sym_file_descriptor, - sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [106917] = 20, - ACTIONS(63), 1, + [102195] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(4083), 1, - sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, + ACTIONS(5453), 1, + aux_sym_concatenation_token1, + ACTIONS(5466), 1, + sym__concat, + STATE(2185), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1246), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4101), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(4103), 1, aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, anon_sym_BQUOTE, - ACTIONS(4111), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, - sym_test_operator, - ACTIONS(4117), 1, + sym_word, + ACTIONS(1248), 16, sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6236), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(3322), 1, - aux_sym__literal_repeat1, - ACTIONS(4099), 2, + anon_sym_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(4113), 2, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2277), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106989] = 5, - ACTIONS(63), 1, + sym_test_operator, + [102244] = 6, + ACTIONS(3), 1, sym_comment, - STATE(2261), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6189), 2, - sym__concat, + ACTIONS(5453), 1, aux_sym_concatenation_token1, - ACTIONS(3787), 9, + ACTIONS(5468), 1, + sym__concat, + STATE(2185), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1252), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(3789), 18, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1254), 16, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [107031] = 20, + [102293] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5283), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + ACTIONS(5439), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5435), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5437), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [102340] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(4083), 1, + ACTIONS(4816), 1, sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4101), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(4103), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(4876), 1, + anon_sym_esac, + ACTIONS(5419), 1, + sym__special_character, + ACTIONS(5421), 1, + anon_sym_DQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(4111), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, + ACTIONS(5433), 1, sym_test_operator, - ACTIONS(4117), 1, - sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6238), 1, - anon_sym_RPAREN, - STATE(3322), 1, + STATE(4057), 1, aux_sym__literal_repeat1, - ACTIONS(4099), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4419), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4113), 2, + ACTIONS(5431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2252), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, + STATE(2214), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148961,49 +147488,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107103] = 20, + [102425] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(4083), 1, + ACTIONS(4816), 1, sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4101), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(4103), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(4945), 1, + anon_sym_esac, + ACTIONS(5419), 1, + sym__special_character, + ACTIONS(5421), 1, + anon_sym_DQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(4111), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, + ACTIONS(5433), 1, sym_test_operator, - ACTIONS(4117), 1, - sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6240), 1, - anon_sym_RPAREN, - STATE(3322), 1, + STATE(4057), 1, aux_sym__literal_repeat1, - ACTIONS(4099), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4669), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4113), 2, + ACTIONS(5431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2266), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, + STATE(2204), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149013,49 +147549,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107175] = 20, + [102510] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(4083), 1, + ACTIONS(4816), 1, sym_word, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4101), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(4103), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(4105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(5419), 1, + sym__special_character, + ACTIONS(5421), 1, + anon_sym_DQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(4111), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4115), 1, + ACTIONS(5433), 1, sym_test_operator, - ACTIONS(4117), 1, - sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6242), 1, - anon_sym_RPAREN, - STATE(3322), 1, + ACTIONS(5470), 1, + anon_sym_esac, + STATE(4057), 1, aux_sym__literal_repeat1, - ACTIONS(4099), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4410), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4113), 2, + ACTIONS(5431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2252), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3103), 9, + STATE(2220), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149065,104 +147610,62 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107247] = 3, - ACTIONS(63), 1, + [102595] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 9, + STATE(2185), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5472), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1258), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1344), 20, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(1263), 16, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [107284] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(380), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(382), 1, - anon_sym_DOLLAR, - ACTIONS(386), 1, - anon_sym_DQUOTE, - ACTIONS(390), 1, - aux_sym_number_token1, - ACTIONS(392), 1, - aux_sym_number_token2, - ACTIONS(394), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(396), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(398), 1, - anon_sym_BQUOTE, - ACTIONS(400), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(410), 1, - sym__brace_start, - ACTIONS(4063), 1, - sym__special_character, - ACTIONS(6244), 1, - sym_word, - ACTIONS(6248), 1, - sym_test_operator, - ACTIONS(6250), 1, - sym_regex, - STATE(1178), 1, - aux_sym__literal_repeat1, - STATE(1237), 1, - sym_concatenation, - ACTIONS(402), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6246), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(779), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107355] = 7, + [102642] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1217), 1, - sym_file_descriptor, - ACTIONS(6254), 1, + ACTIONS(5443), 1, anon_sym_DQUOTE, - STATE(3441), 1, + STATE(2781), 1, sym_string, - ACTIONS(6256), 2, + ACTIONS(1217), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(5445), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6252), 9, + ACTIONS(5441), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -149172,14 +147675,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(1209), 15, + ACTIONS(1215), 20, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149187,303 +147693,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - [107400] = 3, + anon_sym_AMP, + [102693] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1312), 9, + ACTIONS(5475), 1, + anon_sym_QMARK, + ACTIONS(5226), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5254), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5248), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5252), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [102742] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1334), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1314), 20, - sym_file_descriptor, + ACTIONS(1336), 18, sym__concat, - sym_variable_name, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [107437] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(380), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(382), 1, - anon_sym_DOLLAR, - ACTIONS(386), 1, - anon_sym_DQUOTE, - ACTIONS(390), 1, - aux_sym_number_token1, - ACTIONS(392), 1, - aux_sym_number_token2, - ACTIONS(394), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(396), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(398), 1, - anon_sym_BQUOTE, - ACTIONS(400), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(410), 1, - sym__brace_start, - ACTIONS(4158), 1, - sym__special_character, - ACTIONS(6250), 1, - sym_regex, - ACTIONS(6258), 1, - sym_word, - ACTIONS(6262), 1, - sym_test_operator, - STATE(1178), 1, - aux_sym__literal_repeat1, - STATE(1237), 1, - sym_concatenation, - ACTIONS(402), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6260), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1001), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107508] = 7, + [102784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1221), 1, - sym_file_descriptor, - ACTIONS(6254), 1, - anon_sym_DQUOTE, - STATE(3441), 1, - sym_string, - ACTIONS(6256), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6252), 9, + ACTIONS(1342), 16, + anon_sym_EQ, anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [107553] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6264), 1, - anon_sym_LF, - ACTIONS(6270), 1, - anon_sym_LPAREN, - ACTIONS(6272), 1, - aux_sym__c_word_token1, - ACTIONS(6274), 1, - anon_sym_DOLLAR, - ACTIONS(6276), 1, - anon_sym_DQUOTE, - ACTIONS(6278), 1, - aux_sym_number_token1, - ACTIONS(6280), 1, - aux_sym_number_token2, - ACTIONS(6282), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6284), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6286), 1, - anon_sym_BQUOTE, - ACTIONS(6288), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2378), 1, - sym__c_terminator, - STATE(4267), 1, - sym__for_body, - ACTIONS(6266), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(6268), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3901), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2149), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [107620] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6264), 1, - anon_sym_LF, - ACTIONS(6270), 1, anon_sym_LPAREN, - ACTIONS(6272), 1, - aux_sym__c_word_token1, - ACTIONS(6274), 1, - anon_sym_DOLLAR, - ACTIONS(6276), 1, - anon_sym_DQUOTE, - ACTIONS(6278), 1, - aux_sym_number_token1, - ACTIONS(6280), 1, - aux_sym_number_token2, - ACTIONS(6282), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6284), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6286), 1, - anon_sym_BQUOTE, - ACTIONS(6288), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2378), 1, - sym__c_terminator, - STATE(4600), 1, - sym__for_body, - ACTIONS(6266), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(6268), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3901), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2149), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [107687] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1324), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_COLON, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1326), 20, - sym_file_descriptor, + ACTIONS(1344), 18, sym__concat, - sym_variable_name, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [107724] = 19, + [102826] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(5510), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5512), 1, + ACTIONS(4816), 1, + sym_word, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(5514), 1, - sym__special_character, - ACTIONS(5516), 1, - anon_sym_DQUOTE, - ACTIONS(5520), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(5522), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(5524), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5526), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5528), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(5419), 1, + sym__special_character, + ACTIONS(5421), 1, + anon_sym_DQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(5530), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5540), 1, - sym__brace_start, - ACTIONS(6290), 1, - sym_word, - ACTIONS(6294), 1, + ACTIONS(5433), 1, sym_test_operator, - STATE(2367), 1, + STATE(4057), 1, aux_sym__literal_repeat1, - ACTIONS(5532), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6292), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4572), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - STATE(1547), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2274), 9, + ACTIONS(5431), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2276), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149493,81 +147876,56 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107793] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1350), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1352), 20, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [107830] = 19, + [102908] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(5412), 1, + ACTIONS(4816), 1, sym_word, - ACTIONS(5418), 1, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(5424), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(5426), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(5430), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5440), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, sym__brace_start, - ACTIONS(6296), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6298), 1, + ACTIONS(5419), 1, sym__special_character, - ACTIONS(6300), 1, + ACTIONS(5421), 1, anon_sym_DQUOTE, - ACTIONS(6304), 1, + ACTIONS(5425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6306), 1, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(6308), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6312), 1, + ACTIONS(5433), 1, sym_test_operator, - STATE(2957), 1, + STATE(4057), 1, aux_sym__literal_repeat1, - ACTIONS(6302), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4687), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6310), 2, + ACTIONS(5431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2154), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2796), 9, + STATE(2276), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149577,48 +147935,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107899] = 20, - ACTIONS(63), 1, + [102990] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3836), 1, - anon_sym_RBRACE3, - ACTIONS(6314), 1, - sym_word, - ACTIONS(6316), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6318), 1, + ACTIONS(5483), 1, anon_sym_DOLLAR, - ACTIONS(6320), 1, + ACTIONS(5485), 1, sym__special_character, - ACTIONS(6322), 1, + ACTIONS(5487), 1, anon_sym_DQUOTE, - ACTIONS(6326), 1, + ACTIONS(5489), 1, aux_sym_number_token1, - ACTIONS(6328), 1, + ACTIONS(5491), 1, aux_sym_number_token2, - ACTIONS(6330), 1, + ACTIONS(5493), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6332), 1, + ACTIONS(5495), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6334), 1, + ACTIONS(5497), 1, anon_sym_BQUOTE, - ACTIONS(6336), 1, + ACTIONS(5499), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6340), 1, + ACTIONS(5503), 1, sym_test_operator, - ACTIONS(6342), 1, + ACTIONS(5505), 1, sym__brace_start, - STATE(4022), 1, + STATE(3090), 1, aux_sym__literal_repeat1, - STATE(4323), 1, + ACTIONS(5479), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5501), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2196), 2, sym_concatenation, - ACTIONS(6324), 2, + aux_sym_for_statement_repeat1, + ACTIONS(5477), 3, sym_raw_string, sym_ansi_c_string, - ACTIONS(6338), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3967), 9, + sym_word, + ACTIONS(5481), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2811), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149628,48 +147990,56 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107970] = 20, + [103064] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(4754), 1, + ACTIONS(4816), 1, + sym_word, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(4760), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(4762), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(4766), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4778), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, sym__brace_start, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, + ACTIONS(5419), 1, sym__special_character, - ACTIONS(5336), 1, + ACTIONS(5421), 1, anon_sym_DQUOTE, - ACTIONS(5340), 1, + ACTIONS(5425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(5344), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6344), 1, - sym_word, - ACTIONS(6348), 1, + ACTIONS(5433), 1, sym_test_operator, - ACTIONS(6350), 1, - sym_extglob_pattern, - STATE(3947), 1, + STATE(4057), 1, aux_sym__literal_repeat1, - STATE(4120), 1, + STATE(4183), 1, sym_concatenation, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6346), 2, + STATE(4571), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - STATE(3928), 9, + ACTIONS(5431), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2276), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149679,97 +148049,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108041] = 19, - ACTIONS(63), 1, + [103146] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6038), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6040), 1, + ACTIONS(1272), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(6042), 1, sym__special_character, - ACTIONS(6044), 1, - anon_sym_DQUOTE, - ACTIONS(6048), 1, aux_sym_number_token1, - ACTIONS(6050), 1, aux_sym_number_token2, - ACTIONS(6052), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6054), 1, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, - ACTIONS(6056), 1, anon_sym_BQUOTE, - ACTIONS(6058), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6068), 1, - sym__brace_start, - ACTIONS(6352), 1, sym_word, - ACTIONS(6356), 1, - sym_test_operator, - STATE(2053), 1, - aux_sym__literal_repeat1, - ACTIONS(6060), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6354), 2, + ACTIONS(1274), 18, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(702), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1764), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108110] = 19, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [103188] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(6038), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6040), 1, + ACTIONS(4816), 1, + sym_word, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(6042), 1, - sym__special_character, - ACTIONS(6044), 1, - anon_sym_DQUOTE, - ACTIONS(6048), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(6050), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(6052), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6054), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6056), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(5419), 1, + sym__special_character, + ACTIONS(5421), 1, + anon_sym_DQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(6058), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6068), 1, - sym__brace_start, - ACTIONS(6352), 1, - sym_word, - ACTIONS(6356), 1, + ACTIONS(5433), 1, sym_test_operator, - STATE(2053), 1, + STATE(4057), 1, aux_sym__literal_repeat1, - ACTIONS(6060), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6354), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4422), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - STATE(700), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1764), 9, + ACTIONS(5431), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2276), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149779,47 +148147,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108179] = 19, - ACTIONS(63), 1, + [103270] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5663), 1, + ACTIONS(5513), 1, anon_sym_DOLLAR, - ACTIONS(5667), 1, + ACTIONS(5516), 1, + sym__special_character, + ACTIONS(5519), 1, anon_sym_DQUOTE, - ACTIONS(5671), 1, + ACTIONS(5522), 1, aux_sym_number_token1, - ACTIONS(5673), 1, + ACTIONS(5525), 1, aux_sym_number_token2, - ACTIONS(5675), 1, + ACTIONS(5528), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5677), 1, + ACTIONS(5531), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5679), 1, + ACTIONS(5534), 1, anon_sym_BQUOTE, - ACTIONS(5681), 1, + ACTIONS(5537), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5691), 1, - sym__brace_start, - ACTIONS(5801), 1, - sym__special_character, - ACTIONS(6358), 1, - sym_word, - ACTIONS(6362), 1, + ACTIONS(5543), 1, sym_test_operator, - STATE(1380), 1, + ACTIONS(5546), 1, + sym__brace_start, + STATE(3090), 1, aux_sym__literal_repeat1, - ACTIONS(5683), 2, + ACTIONS(5510), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5540), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6360), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(555), 2, + STATE(2196), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1203), 9, + ACTIONS(5507), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(2059), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2811), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149829,182 +148202,260 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108248] = 3, - ACTIONS(63), 1, + [103344] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 9, + ACTIONS(1314), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1356), 20, - sym_file_descriptor, + ACTIONS(1316), 18, sym__concat, - sym_variable_name, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [108285] = 18, + [103386] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6264), 1, - anon_sym_LF, - ACTIONS(6270), 1, - anon_sym_LPAREN, - ACTIONS(6272), 1, - aux_sym__c_word_token1, - ACTIONS(6274), 1, - anon_sym_DOLLAR, - ACTIONS(6276), 1, + ACTIONS(5443), 1, anon_sym_DQUOTE, - ACTIONS(6278), 1, - aux_sym_number_token1, - ACTIONS(6280), 1, - aux_sym_number_token2, - ACTIONS(6282), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6284), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6286), 1, - anon_sym_BQUOTE, - ACTIONS(6288), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2378), 1, - sym__c_terminator, - STATE(4210), 1, - sym__for_body, - ACTIONS(6266), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(6268), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3901), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2149), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, + STATE(2781), 1, sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [108352] = 20, - ACTIONS(39), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(41), 1, + ACTIONS(1217), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(5445), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5441), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(45), 1, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [103436] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5443), 1, anon_sym_DQUOTE, - ACTIONS(49), 1, + STATE(2781), 1, + sym_string, + ACTIONS(1213), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(5445), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5441), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [103486] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1346), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, - ACTIONS(51), 1, aux_sym_number_token2, - ACTIONS(53), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, - ACTIONS(57), 1, anon_sym_BQUOTE, - ACTIONS(59), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(63), 1, - sym_comment, - ACTIONS(71), 1, - sym__brace_start, - ACTIONS(4160), 1, - sym__special_character, - ACTIONS(6364), 1, sym_word, - ACTIONS(6368), 1, - sym_test_operator, - ACTIONS(6370), 1, - sym_regex, - STATE(1115), 1, - aux_sym__literal_repeat1, - STATE(1241), 1, - sym_concatenation, - ACTIONS(61), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6366), 2, + ACTIONS(1348), 18, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(781), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108423] = 20, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [103528] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5551), 1, + anon_sym_EQ, + ACTIONS(5553), 1, + anon_sym_LF, + ACTIONS(5549), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [103572] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(4754), 1, + ACTIONS(4816), 1, + sym_word, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(4760), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(4762), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(4766), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4778), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, sym__brace_start, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, + ACTIONS(5419), 1, sym__special_character, - ACTIONS(5336), 1, + ACTIONS(5421), 1, anon_sym_DQUOTE, - ACTIONS(5340), 1, + ACTIONS(5425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(5344), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6372), 1, - sym_word, - ACTIONS(6376), 1, + ACTIONS(5433), 1, sym_test_operator, - ACTIONS(6378), 1, - sym_extglob_pattern, - STATE(3935), 1, + STATE(4057), 1, aux_sym__literal_repeat1, - STATE(4080), 1, + STATE(4183), 1, sym_concatenation, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6374), 2, + STATE(4419), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - STATE(3896), 9, + ACTIONS(5431), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2276), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150014,148 +148465,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108494] = 19, - ACTIONS(63), 1, + [103654] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6380), 1, - sym_word, - ACTIONS(6382), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6384), 1, + ACTIONS(1330), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(6386), 1, sym__special_character, - ACTIONS(6388), 1, - anon_sym_DQUOTE, - ACTIONS(6392), 1, aux_sym_number_token1, - ACTIONS(6394), 1, aux_sym_number_token2, - ACTIONS(6396), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6398), 1, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, - ACTIONS(6400), 1, anon_sym_BQUOTE, - ACTIONS(6402), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6406), 1, - sym_test_operator, - ACTIONS(6408), 1, + sym_word, + ACTIONS(1332), 18, + sym__concat, sym__brace_start, - STATE(1878), 1, - aux_sym__literal_repeat1, - ACTIONS(6390), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(6404), 2, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(658), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1588), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108563] = 20, + sym_test_operator, + [103696] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(586), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(588), 1, + ACTIONS(4816), 1, + sym_word, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(592), 1, - anon_sym_DQUOTE, - ACTIONS(596), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(598), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(600), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(602), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(604), 1, - anon_sym_BQUOTE, - ACTIONS(606), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(616), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, sym__brace_start, - ACTIONS(4071), 1, - sym__special_character, - ACTIONS(6410), 1, - sym_word, - ACTIONS(6414), 1, - sym_test_operator, - ACTIONS(6416), 1, - sym_regex, - STATE(969), 1, - aux_sym__literal_repeat1, - STATE(1110), 1, - sym_concatenation, - ACTIONS(608), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6412), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(747), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108634] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6380), 1, - sym_word, - ACTIONS(6382), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6384), 1, - anon_sym_DOLLAR, - ACTIONS(6386), 1, + ACTIONS(5419), 1, sym__special_character, - ACTIONS(6388), 1, + ACTIONS(5421), 1, anon_sym_DQUOTE, - ACTIONS(6392), 1, - aux_sym_number_token1, - ACTIONS(6394), 1, - aux_sym_number_token2, - ACTIONS(6396), 1, + ACTIONS(5425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6398), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6400), 1, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(6402), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6406), 1, + ACTIONS(5433), 1, sym_test_operator, - ACTIONS(6408), 1, - sym__brace_start, - STATE(1878), 1, + STATE(4057), 1, aux_sym__literal_repeat1, - ACTIONS(6390), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4770), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6404), 2, + ACTIONS(5431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(654), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1588), 9, + STATE(2276), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150165,115 +148563,134 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108703] = 3, - ACTIONS(63), 1, + [103778] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 9, + ACTIONS(1268), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1318), 20, - sym_file_descriptor, + ACTIONS(1270), 18, sym__concat, - sym_variable_name, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [108740] = 3, - ACTIONS(63), 1, + [103820] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 9, + ACTIONS(1268), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1290), 20, - sym_file_descriptor, + ACTIONS(1270), 18, sym__concat, - sym_variable_name, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [108777] = 19, + [103862] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5663), 1, + ACTIONS(4816), 1, + sym_word, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(5665), 1, - sym__special_character, - ACTIONS(5667), 1, - anon_sym_DQUOTE, - ACTIONS(5671), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(5673), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(5675), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5677), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5679), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(5419), 1, + sym__special_character, + ACTIONS(5421), 1, + anon_sym_DQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(5681), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5691), 1, - sym__brace_start, - ACTIONS(6418), 1, - sym_word, - ACTIONS(6422), 1, + ACTIONS(5433), 1, sym_test_operator, - STATE(1380), 1, + STATE(4057), 1, aux_sym__literal_repeat1, - ACTIONS(5683), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6420), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4711), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - STATE(531), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1173), 9, + ACTIONS(5431), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2276), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150283,81 +148700,56 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108846] = 3, + [103944] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(4816), 1, + sym_word, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, + ACTIONS(4832), 1, aux_sym_number_token1, + ACTIONS(4834), 1, aux_sym_number_token2, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 20, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [108883] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5510), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5512), 1, - anon_sym_DOLLAR, - ACTIONS(5514), 1, + ACTIONS(5419), 1, sym__special_character, - ACTIONS(5516), 1, + ACTIONS(5421), 1, anon_sym_DQUOTE, - ACTIONS(5520), 1, - aux_sym_number_token1, - ACTIONS(5522), 1, - aux_sym_number_token2, - ACTIONS(5524), 1, + ACTIONS(5425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5526), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5528), 1, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(5530), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5540), 1, - sym__brace_start, - ACTIONS(6290), 1, - sym_word, - ACTIONS(6294), 1, + ACTIONS(5433), 1, sym_test_operator, - STATE(2367), 1, + STATE(4057), 1, aux_sym__literal_repeat1, - ACTIONS(5532), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6292), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4714), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - STATE(1460), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2274), 9, + ACTIONS(5431), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2276), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150367,97 +148759,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108952] = 19, - ACTIONS(63), 1, + [104026] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5412), 1, - sym_word, - ACTIONS(5418), 1, + ACTIONS(1310), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(5424), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(5426), 1, aux_sym_number_token2, - ACTIONS(5430), 1, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, - ACTIONS(5440), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1312), 18, + sym__concat, sym__brace_start, - ACTIONS(6296), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6298), 1, - sym__special_character, - ACTIONS(6300), 1, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - ACTIONS(6304), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6306), 1, - anon_sym_BQUOTE, - ACTIONS(6308), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6312), 1, - sym_test_operator, - STATE(2957), 1, - aux_sym__literal_repeat1, - ACTIONS(6302), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6310), 2, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2165), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2796), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109021] = 19, + sym_test_operator, + [104068] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(2940), 1, + ACTIONS(4816), 1, + sym_word, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(2946), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(2948), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(2952), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2962), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, sym__brace_start, - ACTIONS(3086), 1, - sym_word, - ACTIONS(6424), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6426), 1, + ACTIONS(5419), 1, sym__special_character, - ACTIONS(6428), 1, + ACTIONS(5421), 1, anon_sym_DQUOTE, - ACTIONS(6432), 1, + ACTIONS(5425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6434), 1, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(6436), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6440), 1, + ACTIONS(5433), 1, sym_test_operator, - STATE(1499), 1, + STATE(4057), 1, aux_sym__literal_repeat1, - ACTIONS(6430), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4411), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6438), 2, + ACTIONS(5431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(616), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1395), 9, + STATE(2276), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150467,131 +148857,181 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109090] = 19, - ACTIONS(63), 1, + [104150] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(2940), 1, - anon_sym_DOLLAR, - ACTIONS(2946), 1, - aux_sym_number_token1, - ACTIONS(2948), 1, - aux_sym_number_token2, - ACTIONS(2952), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2962), 1, + ACTIONS(5555), 1, + anon_sym_RPAREN, + ACTIONS(5557), 1, + anon_sym_DQUOTE, + STATE(4524), 1, + sym_string, + ACTIONS(5559), 2, + sym_regex, + sym_raw_string, + ACTIONS(3946), 14, sym__brace_start, - ACTIONS(3086), 1, - sym_word, - ACTIONS(6424), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6426), 1, - sym__special_character, - ACTIONS(6428), 1, - anon_sym_DQUOTE, - ACTIONS(6432), 1, + sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - ACTIONS(6434), 1, + anon_sym_RBRACE3, anon_sym_BQUOTE, - ACTIONS(6436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6440), 1, - sym_test_operator, - STATE(1499), 1, - aux_sym__literal_repeat1, - ACTIONS(6430), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6438), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(617), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1395), 9, - sym_arithmetic_expansion, - sym_brace_expression, + sym_test_operator, + ACTIONS(3948), 15, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, + anon_sym_DOLLAR_LPAREN, + sym_word, + [104200] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5563), 1, + anon_sym_DQUOTE, + STATE(2901), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109159] = 3, + ACTIONS(1213), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(5565), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5561), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [104250] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 9, + ACTIONS(1242), 10, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1336), 20, + ACTIONS(1244), 24, sym_file_descriptor, - sym__concat, - sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [109196] = 19, + [104292] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5663), 1, + ACTIONS(4816), 1, + sym_word, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(5665), 1, - sym__special_character, - ACTIONS(5667), 1, - anon_sym_DQUOTE, - ACTIONS(5671), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(5673), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(5675), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5677), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5679), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(5419), 1, + sym__special_character, + ACTIONS(5421), 1, + anon_sym_DQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(5681), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5691), 1, - sym__brace_start, - ACTIONS(6418), 1, - sym_word, - ACTIONS(6422), 1, + ACTIONS(5433), 1, sym_test_operator, - STATE(1380), 1, + STATE(4057), 1, aux_sym__literal_repeat1, - ACTIONS(5683), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6420), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4410), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - STATE(536), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1173), 9, + ACTIONS(5431), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2276), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150601,47 +149041,56 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109265] = 19, + [104374] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(3749), 1, + ACTIONS(4816), 1, sym_word, - ACTIONS(3751), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3753), 1, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(3755), 1, - sym__special_character, - ACTIONS(3757), 1, - anon_sym_DQUOTE, - ACTIONS(3761), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(3763), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(3765), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3767), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3769), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(5419), 1, + sym__special_character, + ACTIONS(5421), 1, + anon_sym_DQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(3771), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3775), 1, + ACTIONS(5433), 1, sym_test_operator, - ACTIONS(3777), 1, - sym__brace_start, - STATE(2075), 1, + STATE(4057), 1, aux_sym__literal_repeat1, - ACTIONS(3759), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4431), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3773), 2, + ACTIONS(5431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(720), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1957), 9, + STATE(2276), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150651,48 +149100,224 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109334] = 20, - ACTIONS(63), 1, + [104456] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(466), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(468), 1, - anon_sym_DOLLAR, - ACTIONS(472), 1, + ACTIONS(5563), 1, anon_sym_DQUOTE, - ACTIONS(476), 1, + STATE(2901), 1, + sym_string, + ACTIONS(1217), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(5565), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5561), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [104506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, - ACTIONS(478), 1, aux_sym_number_token2, - ACTIONS(480), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(482), 1, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, - ACTIONS(484), 1, anon_sym_BQUOTE, - ACTIONS(486), 1, + sym_word, + ACTIONS(1324), 18, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, - ACTIONS(496), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [104548] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1217), 1, + sym_file_descriptor, + ACTIONS(5563), 1, + anon_sym_DQUOTE, + STATE(2901), 1, + sym_string, + ACTIONS(5565), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5561), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [104598] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 1, + sym_file_descriptor, + ACTIONS(5563), 1, + anon_sym_DQUOTE, + STATE(2901), 1, + sym_string, + ACTIONS(5565), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5561), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [104648] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4816), 1, + sym_word, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, + anon_sym_DOLLAR, + ACTIONS(4832), 1, + aux_sym_number_token1, + ACTIONS(4834), 1, + aux_sym_number_token2, + ACTIONS(4838), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, sym__brace_start, - ACTIONS(4193), 1, + ACTIONS(5419), 1, sym__special_character, - ACTIONS(6442), 1, - sym_word, - ACTIONS(6446), 1, + ACTIONS(5421), 1, + anon_sym_DQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5427), 1, + anon_sym_BQUOTE, + ACTIONS(5429), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5433), 1, sym_test_operator, - ACTIONS(6448), 1, - sym_regex, - STATE(807), 1, + STATE(4057), 1, aux_sym__literal_repeat1, - STATE(945), 1, + STATE(4183), 1, sym_concatenation, - ACTIONS(488), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6444), 2, + STATE(4442), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - STATE(674), 9, + ACTIONS(5431), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2276), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150702,47 +149327,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109405] = 19, - ACTIONS(63), 1, + [104730] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - sym_word, - ACTIONS(3751), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3753), 1, + ACTIONS(1217), 1, + sym_file_descriptor, + ACTIONS(5563), 1, + anon_sym_DQUOTE, + STATE(2901), 1, + sym_string, + ACTIONS(5565), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5561), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [104780] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5483), 1, anon_sym_DOLLAR, - ACTIONS(3755), 1, + ACTIONS(5485), 1, sym__special_character, - ACTIONS(3757), 1, + ACTIONS(5487), 1, anon_sym_DQUOTE, - ACTIONS(3761), 1, + ACTIONS(5489), 1, aux_sym_number_token1, - ACTIONS(3763), 1, + ACTIONS(5491), 1, aux_sym_number_token2, - ACTIONS(3765), 1, + ACTIONS(5493), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3767), 1, + ACTIONS(5495), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3769), 1, + ACTIONS(5497), 1, anon_sym_BQUOTE, - ACTIONS(3771), 1, + ACTIONS(5499), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3775), 1, + ACTIONS(5503), 1, sym_test_operator, - ACTIONS(3777), 1, + ACTIONS(5505), 1, sym__brace_start, - STATE(2075), 1, + STATE(3090), 1, aux_sym__literal_repeat1, - ACTIONS(3759), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3773), 2, + ACTIONS(5479), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5501), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(719), 2, + STATE(2196), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1957), 9, + ACTIONS(5477), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(5567), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2811), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150752,48 +149425,56 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109474] = 20, + [104854] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(1077), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1079), 1, + ACTIONS(4816), 1, + sym_word, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(1083), 1, - anon_sym_DQUOTE, - ACTIONS(1087), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(1089), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(1091), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1093), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1095), 1, - anon_sym_BQUOTE, - ACTIONS(1097), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1105), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, sym__brace_start, - ACTIONS(3234), 1, + ACTIONS(5419), 1, sym__special_character, - ACTIONS(6450), 1, - sym_word, - ACTIONS(6454), 1, + ACTIONS(5421), 1, + anon_sym_DQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5427), 1, + anon_sym_BQUOTE, + ACTIONS(5429), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5433), 1, sym_test_operator, - ACTIONS(6456), 1, - sym_regex, - STATE(1721), 1, + STATE(4057), 1, aux_sym__literal_repeat1, - STATE(1997), 1, + STATE(4183), 1, sym_concatenation, - ACTIONS(1099), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6452), 2, + STATE(4743), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - STATE(1431), 9, + ACTIONS(5431), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2276), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150803,249 +149484,177 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109545] = 3, - ACTIONS(63), 1, + [104936] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 9, + ACTIONS(1302), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1286), 20, - sym_file_descriptor, + ACTIONS(1304), 18, sym__concat, - sym_variable_name, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [109582] = 3, - ACTIONS(63), 1, + [104978] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 9, + ACTIONS(1326), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1348), 20, - sym_file_descriptor, + ACTIONS(1328), 18, sym__concat, - sym_variable_name, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [109619] = 19, - ACTIONS(63), 1, + [105020] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(5412), 1, - sym_word, - ACTIONS(5418), 1, - anon_sym_DOLLAR, - ACTIONS(5424), 1, - aux_sym_number_token1, - ACTIONS(5426), 1, - aux_sym_number_token2, - ACTIONS(5430), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5440), 1, - sym__brace_start, - ACTIONS(6296), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6298), 1, - sym__special_character, - ACTIONS(6300), 1, + ACTIONS(1213), 1, + sym_file_descriptor, + ACTIONS(5563), 1, anon_sym_DQUOTE, - ACTIONS(6304), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6306), 1, - anon_sym_BQUOTE, - ACTIONS(6308), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6312), 1, - sym_test_operator, - STATE(2957), 1, - aux_sym__literal_repeat1, - ACTIONS(6302), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6310), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2136), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2796), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(2901), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109688] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1320), 9, + ACTIONS(5565), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5561), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1322), 20, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [109725] = 19, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [105070] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(2970), 1, + ACTIONS(4816), 1, sym_word, - ACTIONS(2974), 1, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(2980), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(2982), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(2986), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2996), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, sym__brace_start, - ACTIONS(6458), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6460), 1, + ACTIONS(5419), 1, sym__special_character, - ACTIONS(6462), 1, + ACTIONS(5421), 1, anon_sym_DQUOTE, - ACTIONS(6466), 1, + ACTIONS(5425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6468), 1, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(6470), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6474), 1, + ACTIONS(5433), 1, sym_test_operator, - STATE(1465), 1, + STATE(4057), 1, aux_sym__literal_repeat1, - ACTIONS(6464), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6472), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(570), 2, + STATE(4183), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1210), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109794] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2970), 1, - sym_word, - ACTIONS(2974), 1, - anon_sym_DOLLAR, - ACTIONS(2980), 1, - aux_sym_number_token1, - ACTIONS(2982), 1, - aux_sym_number_token2, - ACTIONS(2986), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2996), 1, - sym__brace_start, - ACTIONS(6458), 1, + STATE(4580), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6460), 1, - sym__special_character, - ACTIONS(6462), 1, - anon_sym_DQUOTE, - ACTIONS(6466), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6468), 1, - anon_sym_BQUOTE, - ACTIONS(6470), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6474), 1, - sym_test_operator, - STATE(1465), 1, - aux_sym__literal_repeat1, - ACTIONS(6464), 2, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6472), 2, + ACTIONS(5431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(585), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1210), 9, + STATE(2276), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151055,385 +149664,134 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109863] = 19, - ACTIONS(63), 1, + [105152] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5727), 1, + ACTIONS(1298), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(5729), 1, sym__special_character, - ACTIONS(5731), 1, - anon_sym_DQUOTE, - ACTIONS(5735), 1, aux_sym_number_token1, - ACTIONS(5737), 1, aux_sym_number_token2, - ACTIONS(5739), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5741), 1, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, - ACTIONS(5743), 1, anon_sym_BQUOTE, - ACTIONS(5745), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, - sym__brace_start, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6480), 1, - sym_test_operator, - STATE(1377), 1, - aux_sym__literal_repeat1, - ACTIONS(5747), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6478), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(538), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1113), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109932] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5412), 1, sym_word, - ACTIONS(5418), 1, - anon_sym_DOLLAR, - ACTIONS(5424), 1, - aux_sym_number_token1, - ACTIONS(5426), 1, - aux_sym_number_token2, - ACTIONS(5430), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5440), 1, + ACTIONS(1300), 18, + sym__concat, sym__brace_start, - ACTIONS(6296), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6298), 1, - sym__special_character, - ACTIONS(6300), 1, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - ACTIONS(6304), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6306), 1, - anon_sym_BQUOTE, - ACTIONS(6308), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6312), 1, - sym_test_operator, - STATE(2957), 1, - aux_sym__literal_repeat1, - ACTIONS(6302), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6310), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2127), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2796), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110001] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5958), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5960), 1, - anon_sym_DOLLAR, - ACTIONS(5962), 1, - sym__special_character, - ACTIONS(5964), 1, - anon_sym_DQUOTE, - ACTIONS(5968), 1, - aux_sym_number_token1, - ACTIONS(5970), 1, - aux_sym_number_token2, - ACTIONS(5972), 1, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - ACTIONS(5974), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5976), 1, - anon_sym_BQUOTE, - ACTIONS(5978), 1, + anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5988), 1, - sym__brace_start, - ACTIONS(6482), 1, - sym_word, - ACTIONS(6486), 1, - sym_test_operator, - STATE(1120), 1, - aux_sym__literal_repeat1, - ACTIONS(5980), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6484), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(473), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(774), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110070] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3426), 1, - sym_word, - ACTIONS(3428), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3430), 1, - anon_sym_DOLLAR, - ACTIONS(3434), 1, - anon_sym_DQUOTE, - ACTIONS(3438), 1, - aux_sym_number_token1, - ACTIONS(3440), 1, - aux_sym_number_token2, - ACTIONS(3442), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3444), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3446), 1, - anon_sym_BQUOTE, - ACTIONS(3448), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3452), 1, sym_test_operator, - ACTIONS(3454), 1, - sym__brace_start, - ACTIONS(6488), 1, - sym__special_character, - STATE(2051), 1, - aux_sym__literal_repeat1, - ACTIONS(3436), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3450), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(681), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1787), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110139] = 19, - ACTIONS(63), 1, + [105194] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3426), 1, - sym_word, - ACTIONS(3428), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3430), 1, + ACTIONS(1294), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(3434), 1, - anon_sym_DQUOTE, - ACTIONS(3438), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(3440), 1, aux_sym_number_token2, - ACTIONS(3442), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3444), 1, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, - ACTIONS(3446), 1, anon_sym_BQUOTE, - ACTIONS(3448), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3452), 1, - sym_test_operator, - ACTIONS(3454), 1, - sym__brace_start, - ACTIONS(6488), 1, - sym__special_character, - STATE(2051), 1, - aux_sym__literal_repeat1, - ACTIONS(3436), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3450), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(672), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1787), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110208] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1221), 1, + sym_word, + ACTIONS(1296), 18, + sym__concat, sym__brace_start, - ACTIONS(6492), 1, - anon_sym_DQUOTE, - STATE(3289), 1, - sym_string, - ACTIONS(6494), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6490), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1219), 15, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [110253] = 19, + [105236] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5727), 1, + ACTIONS(4816), 1, + sym_word, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(5729), 1, - sym__special_character, - ACTIONS(5731), 1, - anon_sym_DQUOTE, - ACTIONS(5735), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(5737), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(5739), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5741), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5743), 1, - anon_sym_BQUOTE, - ACTIONS(5745), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, sym__brace_start, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6480), 1, - sym_test_operator, - STATE(1377), 1, - aux_sym__literal_repeat1, - ACTIONS(5747), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6478), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(532), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1113), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110322] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5958), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5960), 1, - anon_sym_DOLLAR, - ACTIONS(5962), 1, + ACTIONS(5419), 1, sym__special_character, - ACTIONS(5964), 1, + ACTIONS(5421), 1, anon_sym_DQUOTE, - ACTIONS(5968), 1, - aux_sym_number_token1, - ACTIONS(5970), 1, - aux_sym_number_token2, - ACTIONS(5972), 1, + ACTIONS(5425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5974), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5976), 1, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(5978), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5988), 1, - sym__brace_start, - ACTIONS(6482), 1, - sym_word, - ACTIONS(6486), 1, + ACTIONS(5433), 1, sym_test_operator, - STATE(1120), 1, + STATE(4057), 1, aux_sym__literal_repeat1, - ACTIONS(5980), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6484), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4600), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - STATE(472), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(774), 9, + ACTIONS(5431), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2276), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151443,81 +149801,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110391] = 3, - ACTIONS(63), 1, + [105318] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 9, + ACTIONS(1318), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1304), 20, - sym_file_descriptor, + ACTIONS(1320), 18, sym__concat, - sym_variable_name, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [110428] = 19, + [105360] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(2466), 1, + ACTIONS(4816), 1, sym_word, - ACTIONS(2470), 1, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(2476), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(2478), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(2482), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2492), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, sym__brace_start, - ACTIONS(6496), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6498), 1, + ACTIONS(5419), 1, sym__special_character, - ACTIONS(6500), 1, + ACTIONS(5421), 1, anon_sym_DQUOTE, - ACTIONS(6504), 1, + ACTIONS(5425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6506), 1, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(6508), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6512), 1, + ACTIONS(5433), 1, sym_test_operator, - STATE(1340), 1, + STATE(4057), 1, aux_sym__literal_repeat1, - ACTIONS(6502), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4601), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6510), 2, + ACTIONS(5431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(522), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1176), 9, + STATE(2276), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151527,47 +149899,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110497] = 19, - ACTIONS(63), 1, + [105442] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(2936), 1, - sym_word, - ACTIONS(2940), 1, + ACTIONS(5483), 1, anon_sym_DOLLAR, - ACTIONS(2946), 1, + ACTIONS(5485), 1, + sym__special_character, + ACTIONS(5487), 1, + anon_sym_DQUOTE, + ACTIONS(5489), 1, aux_sym_number_token1, - ACTIONS(2948), 1, + ACTIONS(5491), 1, aux_sym_number_token2, - ACTIONS(2952), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2962), 1, - sym__brace_start, - ACTIONS(6424), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6428), 1, - anon_sym_DQUOTE, - ACTIONS(6432), 1, + ACTIONS(5493), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6434), 1, + ACTIONS(5495), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5497), 1, anon_sym_BQUOTE, - ACTIONS(6436), 1, + ACTIONS(5499), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6514), 1, - sym__special_character, - ACTIONS(6518), 1, + ACTIONS(5503), 1, sym_test_operator, - STATE(1499), 1, + ACTIONS(5505), 1, + sym__brace_start, + STATE(3090), 1, aux_sym__literal_repeat1, - ACTIONS(6438), 2, + ACTIONS(5479), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5501), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6516), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(564), 2, + STATE(2196), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1325), 9, + ACTIONS(5477), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(5569), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2811), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151577,131 +149954,134 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110566] = 19, - ACTIONS(63), 1, + [105516] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2936), 1, - sym_word, - ACTIONS(2940), 1, + ACTIONS(1280), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(2946), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(2948), 1, aux_sym_number_token2, - ACTIONS(2952), 1, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, - ACTIONS(2962), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1282), 18, + sym__concat, sym__brace_start, - ACTIONS(6424), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6428), 1, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - ACTIONS(6432), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - ACTIONS(6434), 1, - anon_sym_BQUOTE, - ACTIONS(6436), 1, + anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6514), 1, - sym__special_character, - ACTIONS(6518), 1, - sym_test_operator, - STATE(1499), 1, - aux_sym__literal_repeat1, - ACTIONS(6438), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6516), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(590), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1325), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110635] = 3, - ACTIONS(63), 1, + sym_test_operator, + [105558] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 9, + ACTIONS(1276), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1300), 20, - sym_file_descriptor, + ACTIONS(1278), 18, sym__concat, - sym_variable_name, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [110672] = 19, + [105600] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(2466), 1, + ACTIONS(4816), 1, sym_word, - ACTIONS(2470), 1, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(2476), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(2478), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(2482), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2492), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, sym__brace_start, - ACTIONS(6496), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6498), 1, + ACTIONS(5419), 1, sym__special_character, - ACTIONS(6500), 1, + ACTIONS(5421), 1, anon_sym_DQUOTE, - ACTIONS(6504), 1, + ACTIONS(5425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6506), 1, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(6508), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6512), 1, + ACTIONS(5433), 1, sym_test_operator, - STATE(1340), 1, + STATE(4057), 1, aux_sym__literal_repeat1, - ACTIONS(6502), 2, + STATE(4183), 1, + sym_concatenation, + STATE(4578), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6510), 2, + ACTIONS(5431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(541), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1176), 9, + STATE(2276), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151711,48 +150091,56 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110741] = 20, + [105682] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(4754), 1, + ACTIONS(4816), 1, + sym_word, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(4760), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(4762), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(4766), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4778), 1, + ACTIONS(4848), 1, + sym_extglob_pattern, + ACTIONS(4850), 1, sym__brace_start, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5334), 1, + ACTIONS(5419), 1, sym__special_character, - ACTIONS(5336), 1, + ACTIONS(5421), 1, anon_sym_DQUOTE, - ACTIONS(5340), 1, + ACTIONS(5425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(5344), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6520), 1, - sym_word, - ACTIONS(6524), 1, + ACTIONS(5433), 1, sym_test_operator, - ACTIONS(6526), 1, - sym_extglob_pattern, - STATE(3930), 1, + STATE(4057), 1, aux_sym__literal_repeat1, - STATE(4042), 1, + STATE(4183), 1, sym_concatenation, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6522), 2, + STATE(4669), 1, + sym_last_case_item, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5423), 2, sym_raw_string, sym_ansi_c_string, - STATE(3886), 9, + ACTIONS(5431), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2276), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151762,318 +150150,208 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110812] = 18, + [105764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6264), 1, - anon_sym_LF, - ACTIONS(6270), 1, + ACTIONS(1284), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_LPAREN, - ACTIONS(6272), 1, - aux_sym__c_word_token1, - ACTIONS(6274), 1, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(6276), 1, - anon_sym_DQUOTE, - ACTIONS(6278), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(6280), 1, aux_sym_number_token2, - ACTIONS(6282), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6284), 1, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, - ACTIONS(6286), 1, anon_sym_BQUOTE, - ACTIONS(6288), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2378), 1, - sym__c_terminator, - STATE(4529), 1, - sym__for_body, - ACTIONS(6266), 2, + sym_word, + ACTIONS(1286), 18, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(6268), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3901), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2149), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [110879] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5661), 1, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5663), 1, - anon_sym_DOLLAR, - ACTIONS(5667), 1, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - ACTIONS(5671), 1, - aux_sym_number_token1, - ACTIONS(5673), 1, - aux_sym_number_token2, - ACTIONS(5675), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - ACTIONS(5677), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5679), 1, - anon_sym_BQUOTE, - ACTIONS(5681), 1, + anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5691), 1, - sym__brace_start, - ACTIONS(5801), 1, - sym__special_character, - ACTIONS(6358), 1, - sym_word, - ACTIONS(6362), 1, - sym_test_operator, - STATE(1380), 1, - aux_sym__literal_repeat1, - ACTIONS(5683), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6360), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(579), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1203), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110948] = 7, + sym_test_operator, + [105806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1217), 1, - sym__brace_start, - ACTIONS(6492), 1, - anon_sym_DQUOTE, - STATE(3289), 1, - sym_string, - ACTIONS(6494), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6490), 9, + ACTIONS(1338), 16, + anon_sym_EQ, anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1209), 15, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [110993] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2348), 1, sym_word, - ACTIONS(2352), 1, - anon_sym_DOLLAR, - ACTIONS(2358), 1, - aux_sym_number_token1, - ACTIONS(2360), 1, - aux_sym_number_token2, - ACTIONS(2364), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2374), 1, + ACTIONS(1340), 18, + sym__concat, sym__brace_start, - ACTIONS(6528), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6530), 1, - sym__special_character, - ACTIONS(6532), 1, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - ACTIONS(6536), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6538), 1, - anon_sym_BQUOTE, - ACTIONS(6540), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6544), 1, - sym_test_operator, - STATE(1247), 1, - aux_sym__literal_repeat1, - ACTIONS(6534), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6542), 2, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(515), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(932), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [111062] = 3, - ACTIONS(63), 1, + sym_test_operator, + [105848] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 9, + ACTIONS(1258), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1330), 20, - sym_file_descriptor, + ACTIONS(1263), 18, sym__concat, - sym_variable_name, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [111099] = 19, + [105890] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5573), 1, + anon_sym_LF, + ACTIONS(5571), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [105931] = 21, ACTIONS(63), 1, sym_comment, - ACTIONS(2940), 1, - anon_sym_DOLLAR, - ACTIONS(2946), 1, - aux_sym_number_token1, - ACTIONS(2948), 1, - aux_sym_number_token2, - ACTIONS(2952), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2962), 1, - sym__brace_start, - ACTIONS(3086), 1, + ACTIONS(5575), 1, sym_word, - ACTIONS(6424), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6426), 1, + ACTIONS(5581), 1, + anon_sym_LPAREN, + ACTIONS(5584), 1, + anon_sym_DOLLAR, + ACTIONS(5587), 1, sym__special_character, - ACTIONS(6428), 1, + ACTIONS(5590), 1, anon_sym_DQUOTE, - ACTIONS(6432), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6434), 1, - anon_sym_BQUOTE, - ACTIONS(6436), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6440), 1, - sym_test_operator, - STATE(1499), 1, - aux_sym__literal_repeat1, - ACTIONS(6430), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6438), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(620), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1395), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [111168] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2940), 1, - anon_sym_DOLLAR, - ACTIONS(2946), 1, + ACTIONS(5596), 1, aux_sym_number_token1, - ACTIONS(2948), 1, + ACTIONS(5599), 1, aux_sym_number_token2, - ACTIONS(2952), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2962), 1, - sym__brace_start, - ACTIONS(3086), 1, - sym_word, - ACTIONS(6424), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6426), 1, - sym__special_character, - ACTIONS(6428), 1, - anon_sym_DQUOTE, - ACTIONS(6432), 1, + ACTIONS(5602), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6434), 1, + ACTIONS(5605), 1, + anon_sym_RBRACE3, + ACTIONS(5607), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5610), 1, anon_sym_BQUOTE, - ACTIONS(6436), 1, + ACTIONS(5613), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6440), 1, + ACTIONS(5619), 1, sym_test_operator, - STATE(1499), 1, + ACTIONS(5622), 1, + sym__brace_start, + STATE(3217), 1, aux_sym__literal_repeat1, - ACTIONS(6430), 2, + ACTIONS(5578), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5593), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6438), 2, + ACTIONS(5616), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(608), 2, + STATE(2242), 3, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1395), 9, + sym_array, + aux_sym__expansion_body_repeat1, + STATE(3005), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152083,81 +150361,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111237] = 3, - ACTIONS(63), 1, + [106008] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(5625), 1, sym_word, - ACTIONS(1310), 20, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(5629), 1, + anon_sym_LPAREN, + ACTIONS(5631), 1, + anon_sym_DOLLAR, + ACTIONS(5633), 1, sym__special_character, + ACTIONS(5635), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [111274] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2348), 1, - sym_word, - ACTIONS(2352), 1, - anon_sym_DOLLAR, - ACTIONS(2358), 1, + ACTIONS(5639), 1, aux_sym_number_token1, - ACTIONS(2360), 1, + ACTIONS(5641), 1, aux_sym_number_token2, - ACTIONS(2364), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2374), 1, - sym__brace_start, - ACTIONS(6528), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6530), 1, - sym__special_character, - ACTIONS(6532), 1, - anon_sym_DQUOTE, - ACTIONS(6536), 1, + ACTIONS(5643), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6538), 1, + ACTIONS(5645), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5647), 1, anon_sym_BQUOTE, - ACTIONS(6540), 1, + ACTIONS(5649), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6544), 1, + ACTIONS(5653), 1, + sym__comment_word, + ACTIONS(5655), 1, sym_test_operator, - STATE(1247), 1, + ACTIONS(5657), 1, + sym__empty_value, + ACTIONS(5659), 1, + sym__brace_start, + STATE(2053), 1, aux_sym__literal_repeat1, - ACTIONS(6534), 2, + ACTIONS(5627), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5637), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6542), 2, + ACTIONS(5651), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(506), 2, + STATE(2170), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(932), 9, + sym_array, + STATE(1771), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152167,165 +150418,328 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111343] = 3, - ACTIONS(63), 1, + [106087] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1340), 20, + ACTIONS(5663), 1, + anon_sym_LF, + ACTIONS(5661), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [106128] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1296), 1, + anon_sym_LF, + ACTIONS(1294), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [106169] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5667), 1, + anon_sym_LF, + ACTIONS(5665), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [106210] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1304), 1, + anon_sym_LF, + ACTIONS(1302), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [106251] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, + ACTIONS(5563), 1, + anon_sym_DQUOTE, + STATE(2901), 1, + sym_string, + ACTIONS(5565), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5561), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [111380] = 19, - ACTIONS(63), 1, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [106300] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5837), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5839), 1, - anon_sym_DOLLAR, - ACTIONS(5841), 1, - sym__special_character, - ACTIONS(5843), 1, + ACTIONS(1316), 1, + anon_sym_LF, + ACTIONS(1314), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [106341] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1217), 1, + sym_file_descriptor, + ACTIONS(5563), 1, anon_sym_DQUOTE, - ACTIONS(5847), 1, - aux_sym_number_token1, - ACTIONS(5849), 1, - aux_sym_number_token2, - ACTIONS(5851), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5853), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5855), 1, - anon_sym_BQUOTE, - ACTIONS(5857), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5867), 1, - sym__brace_start, - ACTIONS(6546), 1, - sym_word, - ACTIONS(6550), 1, - sym_test_operator, - STATE(1222), 1, - aux_sym__literal_repeat1, - ACTIONS(5859), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6548), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(510), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(903), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(2901), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [111449] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1274), 9, + ACTIONS(5565), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5561), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1279), 20, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [111486] = 19, - ACTIONS(63), 1, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [106390] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(5837), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5839), 1, + ACTIONS(5669), 1, + sym_word, + ACTIONS(5673), 1, + anon_sym_LPAREN, + ACTIONS(5675), 1, anon_sym_DOLLAR, - ACTIONS(5841), 1, + ACTIONS(5677), 1, sym__special_character, - ACTIONS(5843), 1, + ACTIONS(5679), 1, anon_sym_DQUOTE, - ACTIONS(5847), 1, + ACTIONS(5683), 1, aux_sym_number_token1, - ACTIONS(5849), 1, + ACTIONS(5685), 1, aux_sym_number_token2, - ACTIONS(5851), 1, + ACTIONS(5687), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5853), 1, + ACTIONS(5689), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5855), 1, + ACTIONS(5691), 1, anon_sym_BQUOTE, - ACTIONS(5857), 1, + ACTIONS(5693), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5867), 1, - sym__brace_start, - ACTIONS(6546), 1, - sym_word, - ACTIONS(6550), 1, + ACTIONS(5697), 1, + sym__comment_word, + ACTIONS(5699), 1, sym_test_operator, - STATE(1222), 1, + ACTIONS(5701), 1, + sym__empty_value, + ACTIONS(5703), 1, + sym__brace_start, + STATE(2788), 1, aux_sym__literal_repeat1, - ACTIONS(5859), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6548), 2, + ACTIONS(5671), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5681), 2, sym_raw_string, sym_ansi_c_string, - STATE(508), 2, + ACTIONS(5695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2975), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(903), 9, + sym_array, + STATE(3151), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152335,46 +150749,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111555] = 19, - ACTIONS(63), 1, + [106469] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(6552), 1, + ACTIONS(5705), 1, sym_word, - ACTIONS(6554), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6556), 1, + ACTIONS(5709), 1, + anon_sym_LPAREN, + ACTIONS(5711), 1, anon_sym_DOLLAR, - ACTIONS(6558), 1, + ACTIONS(5713), 1, sym__special_character, - ACTIONS(6560), 1, + ACTIONS(5715), 1, anon_sym_DQUOTE, - ACTIONS(6564), 1, + ACTIONS(5719), 1, aux_sym_number_token1, - ACTIONS(6566), 1, + ACTIONS(5721), 1, aux_sym_number_token2, - ACTIONS(6568), 1, + ACTIONS(5723), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6572), 1, + ACTIONS(5727), 1, anon_sym_BQUOTE, - ACTIONS(6574), 1, + ACTIONS(5729), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6578), 1, + ACTIONS(5733), 1, + sym__comment_word, + ACTIONS(5735), 1, sym_test_operator, - ACTIONS(6580), 1, + ACTIONS(5737), 1, + sym__empty_value, + ACTIONS(5739), 1, sym__brace_start, - STATE(3873), 1, + STATE(1446), 1, aux_sym__literal_repeat1, - STATE(3931), 1, - sym_concatenation, - ACTIONS(6562), 2, + ACTIONS(5707), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5717), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6576), 2, + ACTIONS(5731), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3798), 9, + STATE(1454), 2, + sym_concatenation, + sym_array, + STATE(1072), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152384,46 +150806,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111623] = 19, - ACTIONS(63), 1, + [106548] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(6554), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6556), 1, + ACTIONS(5673), 1, + anon_sym_LPAREN, + ACTIONS(5675), 1, anon_sym_DOLLAR, - ACTIONS(6558), 1, - sym__special_character, - ACTIONS(6560), 1, + ACTIONS(5679), 1, anon_sym_DQUOTE, - ACTIONS(6564), 1, + ACTIONS(5683), 1, aux_sym_number_token1, - ACTIONS(6566), 1, + ACTIONS(5685), 1, aux_sym_number_token2, - ACTIONS(6568), 1, + ACTIONS(5687), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, + ACTIONS(5689), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6572), 1, + ACTIONS(5691), 1, anon_sym_BQUOTE, - ACTIONS(6574), 1, + ACTIONS(5693), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6580), 1, + ACTIONS(5697), 1, + sym__comment_word, + ACTIONS(5701), 1, + sym__empty_value, + ACTIONS(5703), 1, sym__brace_start, - ACTIONS(6582), 1, + ACTIONS(5741), 1, sym_word, - ACTIONS(6586), 1, + ACTIONS(5743), 1, + sym__special_character, + ACTIONS(5747), 1, sym_test_operator, - STATE(3846), 1, + STATE(2788), 1, aux_sym__literal_repeat1, - STATE(3921), 1, - sym_concatenation, - ACTIONS(6576), 2, + ACTIONS(5671), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6584), 2, + ACTIONS(5745), 2, sym_raw_string, sym_ansi_c_string, - STATE(3807), 9, + STATE(2975), 2, + sym_concatenation, + sym_array, + STATE(2870), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152433,45 +150863,322 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111691] = 18, + [106627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(637), 1, + ACTIONS(1324), 1, + anon_sym_LF, + ACTIONS(1322), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [106668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1270), 1, + anon_sym_LF, + ACTIONS(1268), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [106709] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1270), 1, + anon_sym_LF, + ACTIONS(1268), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [106750] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1332), 1, + anon_sym_LF, + ACTIONS(1330), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [106791] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1336), 1, + anon_sym_LF, + ACTIONS(1334), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [106832] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_LF, + ACTIONS(1318), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [106873] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5755), 1, + anon_sym_LF, + ACTIONS(5751), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5749), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_AMP, + ACTIONS(5753), 27, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + [106918] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, anon_sym_DOLLAR, - ACTIONS(641), 1, - anon_sym_DQUOTE, - ACTIONS(645), 1, + ACTIONS(1899), 1, aux_sym_number_token1, - ACTIONS(647), 1, + ACTIONS(1901), 1, aux_sym_number_token2, - ACTIONS(649), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, + ACTIONS(1905), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(661), 1, + ACTIONS(1919), 1, sym__brace_start, - ACTIONS(4852), 1, - anon_sym_BQUOTE, - ACTIONS(6588), 1, + ACTIONS(5757), 1, sym_word, - ACTIONS(6590), 1, - anon_sym_RBRACK, - ACTIONS(6596), 1, - sym_test_operator, - ACTIONS(657), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6592), 2, + ACTIONS(5761), 1, + anon_sym_LPAREN, + ACTIONS(5763), 1, sym__special_character, + ACTIONS(5765), 1, + anon_sym_DQUOTE, + ACTIONS(5769), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5771), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5777), 1, sym__comment_word, - ACTIONS(6594), 2, + ACTIONS(5779), 1, + sym_test_operator, + ACTIONS(5781), 1, + sym__empty_value, + STATE(1295), 1, + aux_sym__literal_repeat1, + ACTIONS(5759), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5767), 2, sym_raw_string, sym_ansi_c_string, - STATE(1643), 9, + ACTIONS(5775), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1394), 2, + sym_concatenation, + sym_array, + STATE(964), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152481,80 +151188,94 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111757] = 5, - ACTIONS(63), 1, + [106997] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6598), 1, + ACTIONS(5783), 1, sym__special_character, - STATE(2392), 1, + STATE(2291), 1, aux_sym__literal_repeat1, - ACTIONS(4049), 8, + ACTIONS(5449), 14, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4051), 18, - sym_file_descriptor, - sym_variable_name, + ACTIONS(5451), 17, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [111797] = 18, + [107042] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(637), 1, + ACTIONS(5785), 1, + sym_word, + ACTIONS(5789), 1, + anon_sym_LPAREN, + ACTIONS(5791), 1, anon_sym_DOLLAR, - ACTIONS(641), 1, + ACTIONS(5793), 1, + sym__special_character, + ACTIONS(5795), 1, anon_sym_DQUOTE, - ACTIONS(645), 1, + ACTIONS(5799), 1, aux_sym_number_token1, - ACTIONS(647), 1, + ACTIONS(5801), 1, aux_sym_number_token2, - ACTIONS(649), 1, + ACTIONS(5803), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, + ACTIONS(5805), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(661), 1, - sym__brace_start, - ACTIONS(4852), 1, + ACTIONS(5807), 1, anon_sym_BQUOTE, - ACTIONS(6588), 1, - sym_word, - ACTIONS(6596), 1, - sym_test_operator, - ACTIONS(6600), 1, - anon_sym_RBRACK, - ACTIONS(657), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6592), 2, - sym__special_character, + ACTIONS(5809), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5813), 1, sym__comment_word, - ACTIONS(6594), 2, + ACTIONS(5815), 1, + sym_test_operator, + ACTIONS(5817), 1, + sym__empty_value, + ACTIONS(5819), 1, + sym__brace_start, + STATE(1370), 1, + aux_sym__literal_repeat1, + ACTIONS(5787), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5797), 2, sym_raw_string, sym_ansi_c_string, - STATE(1643), 9, + ACTIONS(5811), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1560), 2, + sym_concatenation, + sym_array, + STATE(1578), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152564,46 +151285,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111863] = 19, - ACTIONS(63), 1, + [107121] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(6602), 1, - sym_word, - ACTIONS(6604), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6606), 1, + ACTIONS(1559), 1, anon_sym_DOLLAR, - ACTIONS(6608), 1, - sym__special_character, - ACTIONS(6610), 1, - anon_sym_DQUOTE, - ACTIONS(6614), 1, + ACTIONS(1565), 1, aux_sym_number_token1, - ACTIONS(6616), 1, + ACTIONS(1567), 1, aux_sym_number_token2, - ACTIONS(6618), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6620), 1, + ACTIONS(1571), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6622), 1, + ACTIONS(1585), 1, + sym__brace_start, + ACTIONS(5821), 1, + sym_word, + ACTIONS(5825), 1, + anon_sym_LPAREN, + ACTIONS(5827), 1, + sym__special_character, + ACTIONS(5829), 1, + anon_sym_DQUOTE, + ACTIONS(5833), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5835), 1, anon_sym_BQUOTE, - ACTIONS(6624), 1, + ACTIONS(5837), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6628), 1, + ACTIONS(5841), 1, + sym__comment_word, + ACTIONS(5843), 1, sym_test_operator, - ACTIONS(6630), 1, - sym__brace_start, - STATE(2829), 1, + ACTIONS(5845), 1, + sym__empty_value, + STATE(1192), 1, aux_sym__literal_repeat1, - STATE(2996), 1, - sym_concatenation, - ACTIONS(6612), 2, + ACTIONS(5823), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5831), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6626), 2, + ACTIONS(5839), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2747), 9, + STATE(1222), 2, + sym_concatenation, + sym_array, + STATE(786), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152613,46 +151342,53 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111931] = 19, + [107200] = 21, ACTIONS(63), 1, sym_comment, - ACTIONS(6632), 1, + ACTIONS(3942), 1, sym_word, - ACTIONS(6634), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6636), 1, + ACTIONS(3950), 1, + anon_sym_LPAREN, + ACTIONS(3952), 1, anon_sym_DOLLAR, - ACTIONS(6638), 1, + ACTIONS(3954), 1, sym__special_character, - ACTIONS(6640), 1, + ACTIONS(3956), 1, anon_sym_DQUOTE, - ACTIONS(6644), 1, + ACTIONS(3960), 1, aux_sym_number_token1, - ACTIONS(6646), 1, + ACTIONS(3962), 1, aux_sym_number_token2, - ACTIONS(6648), 1, + ACTIONS(3964), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6650), 1, + ACTIONS(3969), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6652), 1, + ACTIONS(3971), 1, anon_sym_BQUOTE, - ACTIONS(6654), 1, + ACTIONS(3973), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6658), 1, + ACTIONS(3977), 1, sym_test_operator, - ACTIONS(6660), 1, + ACTIONS(3979), 1, sym__brace_start, - STATE(3414), 1, + ACTIONS(5847), 1, + anon_sym_RBRACE3, + STATE(3217), 1, aux_sym__literal_repeat1, - STATE(3453), 1, - sym_concatenation, - ACTIONS(6642), 2, + ACTIONS(3944), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6656), 2, + ACTIONS(3975), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3269), 9, + STATE(2277), 3, + sym_concatenation, + sym_array, + aux_sym__expansion_body_repeat1, + STATE(3005), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152662,93 +151398,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111999] = 18, + [107277] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(637), 1, + ACTIONS(1925), 1, anon_sym_DOLLAR, - ACTIONS(641), 1, - anon_sym_DQUOTE, - ACTIONS(645), 1, + ACTIONS(1931), 1, aux_sym_number_token1, - ACTIONS(647), 1, + ACTIONS(1933), 1, aux_sym_number_token2, - ACTIONS(649), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, + ACTIONS(1937), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(661), 1, + ACTIONS(1951), 1, sym__brace_start, - ACTIONS(4852), 1, - anon_sym_BQUOTE, - ACTIONS(6588), 1, + ACTIONS(5849), 1, sym_word, - ACTIONS(6596), 1, - sym_test_operator, - ACTIONS(6662), 1, - anon_sym_RBRACK, - ACTIONS(657), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6592), 2, + ACTIONS(5853), 1, + anon_sym_LPAREN, + ACTIONS(5855), 1, sym__special_character, - sym__comment_word, - ACTIONS(6594), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1643), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [112065] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(637), 1, - anon_sym_DOLLAR, - ACTIONS(641), 1, + ACTIONS(5857), 1, anon_sym_DQUOTE, - ACTIONS(645), 1, - aux_sym_number_token1, - ACTIONS(647), 1, - aux_sym_number_token2, - ACTIONS(649), 1, + ACTIONS(5861), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(661), 1, - sym__brace_start, - ACTIONS(4852), 1, + ACTIONS(5863), 1, anon_sym_BQUOTE, - ACTIONS(6588), 1, - sym_word, - ACTIONS(6596), 1, - sym_test_operator, - ACTIONS(6664), 1, - anon_sym_RBRACK, - ACTIONS(657), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6592), 2, - sym__special_character, + ACTIONS(5865), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5869), 1, sym__comment_word, - ACTIONS(6594), 2, + ACTIONS(5871), 1, + sym_test_operator, + ACTIONS(5873), 1, + sym__empty_value, + STATE(1348), 1, + aux_sym__literal_repeat1, + ACTIONS(5851), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5859), 2, sym_raw_string, sym_ansi_c_string, - STATE(1643), 9, + ACTIONS(5867), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1376), 2, + sym_concatenation, + sym_array, + STATE(1517), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152758,95 +151455,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112131] = 19, - ACTIONS(63), 1, + [107356] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(6634), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6636), 1, + ACTIONS(5673), 1, + anon_sym_LPAREN, + ACTIONS(5675), 1, anon_sym_DOLLAR, - ACTIONS(6638), 1, - sym__special_character, - ACTIONS(6640), 1, + ACTIONS(5679), 1, anon_sym_DQUOTE, - ACTIONS(6644), 1, + ACTIONS(5683), 1, aux_sym_number_token1, - ACTIONS(6646), 1, + ACTIONS(5685), 1, aux_sym_number_token2, - ACTIONS(6648), 1, + ACTIONS(5687), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6650), 1, + ACTIONS(5689), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6652), 1, + ACTIONS(5691), 1, anon_sym_BQUOTE, - ACTIONS(6654), 1, + ACTIONS(5693), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6660), 1, + ACTIONS(5697), 1, + sym__comment_word, + ACTIONS(5701), 1, + sym__empty_value, + ACTIONS(5703), 1, sym__brace_start, - ACTIONS(6666), 1, + ACTIONS(5875), 1, sym_word, - ACTIONS(6670), 1, + ACTIONS(5877), 1, + sym__special_character, + ACTIONS(5881), 1, sym_test_operator, - STATE(3371), 1, + STATE(2788), 1, aux_sym__literal_repeat1, - STATE(3456), 1, - sym_concatenation, - ACTIONS(6656), 2, + ACTIONS(5671), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6668), 2, + ACTIONS(5879), 2, sym_raw_string, sym_ansi_c_string, - STATE(3185), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [112199] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6672), 1, - sym_word, - ACTIONS(6674), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6676), 1, - anon_sym_DOLLAR, - ACTIONS(6678), 1, - sym__special_character, - ACTIONS(6680), 1, - anon_sym_DQUOTE, - ACTIONS(6684), 1, - aux_sym_number_token1, - ACTIONS(6686), 1, - aux_sym_number_token2, - ACTIONS(6688), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6690), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6692), 1, - anon_sym_BQUOTE, - ACTIONS(6694), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6698), 1, - sym_test_operator, - ACTIONS(6700), 1, - sym__brace_start, - STATE(2903), 1, - aux_sym__literal_repeat1, - STATE(3023), 1, + STATE(2975), 2, sym_concatenation, - ACTIONS(6682), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6696), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2823), 9, + sym_array, + STATE(2955), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152856,46 +151512,53 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112267] = 19, + [107435] = 21, ACTIONS(63), 1, sym_comment, - ACTIONS(6702), 1, + ACTIONS(3942), 1, sym_word, - ACTIONS(6704), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6706), 1, + ACTIONS(3950), 1, + anon_sym_LPAREN, + ACTIONS(3952), 1, anon_sym_DOLLAR, - ACTIONS(6708), 1, + ACTIONS(3954), 1, sym__special_character, - ACTIONS(6710), 1, + ACTIONS(3956), 1, anon_sym_DQUOTE, - ACTIONS(6714), 1, + ACTIONS(3960), 1, aux_sym_number_token1, - ACTIONS(6716), 1, + ACTIONS(3962), 1, aux_sym_number_token2, - ACTIONS(6718), 1, + ACTIONS(3964), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6720), 1, + ACTIONS(3969), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6722), 1, + ACTIONS(3971), 1, anon_sym_BQUOTE, - ACTIONS(6724), 1, + ACTIONS(3973), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6728), 1, + ACTIONS(3977), 1, sym_test_operator, - ACTIONS(6730), 1, + ACTIONS(3979), 1, sym__brace_start, - STATE(2676), 1, + ACTIONS(5883), 1, + anon_sym_RBRACE3, + STATE(3217), 1, aux_sym__literal_repeat1, - STATE(2895), 1, - sym_concatenation, - ACTIONS(6712), 2, + ACTIONS(3944), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6726), 2, + ACTIONS(3975), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2598), 9, + STATE(2289), 3, + sym_concatenation, + sym_array, + aux_sym__expansion_body_repeat1, + STATE(3005), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152905,46 +151568,132 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112335] = 19, - ACTIONS(63), 1, + [107512] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6604), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6606), 1, + ACTIONS(5887), 1, + anon_sym_LF, + ACTIONS(5751), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5885), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_AMP, + ACTIONS(5753), 27, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + [107557] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1274), 1, + anon_sym_LF, + ACTIONS(1272), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [107598] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5789), 1, + anon_sym_LPAREN, + ACTIONS(5791), 1, anon_sym_DOLLAR, - ACTIONS(6608), 1, - sym__special_character, - ACTIONS(6610), 1, + ACTIONS(5795), 1, anon_sym_DQUOTE, - ACTIONS(6614), 1, + ACTIONS(5799), 1, aux_sym_number_token1, - ACTIONS(6616), 1, + ACTIONS(5801), 1, aux_sym_number_token2, - ACTIONS(6618), 1, + ACTIONS(5803), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6620), 1, + ACTIONS(5805), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6622), 1, + ACTIONS(5807), 1, anon_sym_BQUOTE, - ACTIONS(6624), 1, + ACTIONS(5809), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6630), 1, + ACTIONS(5813), 1, + sym__comment_word, + ACTIONS(5817), 1, + sym__empty_value, + ACTIONS(5819), 1, sym__brace_start, - ACTIONS(6732), 1, + ACTIONS(5889), 1, sym_word, - ACTIONS(6736), 1, + ACTIONS(5891), 1, + sym__special_character, + ACTIONS(5895), 1, sym_test_operator, - STATE(2790), 1, + STATE(1370), 1, aux_sym__literal_repeat1, - STATE(2980), 1, - sym_concatenation, - ACTIONS(6626), 2, + ACTIONS(5787), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5811), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6734), 2, + ACTIONS(5893), 2, sym_raw_string, sym_ansi_c_string, - STATE(2798), 9, + STATE(1560), 2, + sym_concatenation, + sym_array, + STATE(1166), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152954,46 +151703,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112403] = 19, - ACTIONS(63), 1, + [107677] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(6704), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6706), 1, + ACTIONS(5673), 1, + anon_sym_LPAREN, + ACTIONS(5675), 1, anon_sym_DOLLAR, - ACTIONS(6708), 1, - sym__special_character, - ACTIONS(6710), 1, + ACTIONS(5679), 1, anon_sym_DQUOTE, - ACTIONS(6714), 1, + ACTIONS(5683), 1, aux_sym_number_token1, - ACTIONS(6716), 1, + ACTIONS(5685), 1, aux_sym_number_token2, - ACTIONS(6718), 1, + ACTIONS(5687), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6720), 1, + ACTIONS(5689), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6722), 1, + ACTIONS(5691), 1, anon_sym_BQUOTE, - ACTIONS(6724), 1, + ACTIONS(5693), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6730), 1, + ACTIONS(5697), 1, + sym__comment_word, + ACTIONS(5701), 1, + sym__empty_value, + ACTIONS(5703), 1, sym__brace_start, - ACTIONS(6738), 1, + ACTIONS(5897), 1, sym_word, - ACTIONS(6742), 1, + ACTIONS(5899), 1, + sym__special_character, + ACTIONS(5903), 1, sym_test_operator, - STATE(2726), 1, + STATE(2788), 1, aux_sym__literal_repeat1, - STATE(2925), 1, - sym_concatenation, - ACTIONS(6726), 2, + ACTIONS(5671), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6740), 2, + ACTIONS(5901), 2, sym_raw_string, sym_ansi_c_string, - STATE(2609), 9, + STATE(2975), 2, + sym_concatenation, + sym_array, + STATE(2794), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153003,187 +151760,243 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112471] = 17, + [107756] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6270), 1, + ACTIONS(5905), 1, + sym_word, + ACTIONS(5909), 1, anon_sym_LPAREN, - ACTIONS(6272), 1, - aux_sym__c_word_token1, - ACTIONS(6274), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR, - ACTIONS(6276), 1, + ACTIONS(5913), 1, + sym__special_character, + ACTIONS(5915), 1, anon_sym_DQUOTE, - ACTIONS(6278), 1, + ACTIONS(5919), 1, aux_sym_number_token1, - ACTIONS(6280), 1, + ACTIONS(5921), 1, aux_sym_number_token2, - ACTIONS(6282), 1, + ACTIONS(5923), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6284), 1, + ACTIONS(5925), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6286), 1, + ACTIONS(5927), 1, anon_sym_BQUOTE, - ACTIONS(6288), 1, + ACTIONS(5929), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6744), 1, - anon_sym_LF, - STATE(2719), 1, - sym__c_terminator, - ACTIONS(6268), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6746), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(3880), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2149), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, + ACTIONS(5933), 1, + sym__comment_word, + ACTIONS(5935), 1, + sym_test_operator, + ACTIONS(5937), 1, + sym__empty_value, + ACTIONS(5939), 1, + sym__brace_start, + STATE(1240), 1, + aux_sym__literal_repeat1, + ACTIONS(5907), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5917), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5931), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1368), 2, + sym_concatenation, + sym_array, + STATE(915), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [112535] = 17, + sym_process_substitution, + [107835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6270), 1, - anon_sym_LPAREN, - ACTIONS(6272), 1, - aux_sym__c_word_token1, - ACTIONS(6274), 1, - anon_sym_DOLLAR, - ACTIONS(6276), 1, - anon_sym_DQUOTE, - ACTIONS(6278), 1, - aux_sym_number_token1, - ACTIONS(6280), 1, - aux_sym_number_token2, - ACTIONS(6282), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6284), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6286), 1, - anon_sym_BQUOTE, - ACTIONS(6288), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6748), 1, + ACTIONS(1348), 1, anon_sym_LF, - STATE(2642), 1, - sym__c_terminator, - ACTIONS(6268), 2, + ACTIONS(1346), 32, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6750), 2, - anon_sym_SEMI, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - STATE(3904), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2149), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [112599] = 17, + [107876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6270), 1, + ACTIONS(1344), 1, + anon_sym_LF, + ACTIONS(1342), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [107917] = 22, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5941), 1, + sym_word, + ACTIONS(5947), 1, anon_sym_LPAREN, - ACTIONS(6272), 1, - aux_sym__c_word_token1, - ACTIONS(6274), 1, + ACTIONS(5950), 1, anon_sym_DOLLAR, - ACTIONS(6276), 1, + ACTIONS(5953), 1, + sym__special_character, + ACTIONS(5956), 1, anon_sym_DQUOTE, - ACTIONS(6278), 1, + ACTIONS(5962), 1, aux_sym_number_token1, - ACTIONS(6280), 1, + ACTIONS(5965), 1, aux_sym_number_token2, - ACTIONS(6282), 1, + ACTIONS(5968), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6284), 1, + ACTIONS(5971), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6286), 1, + ACTIONS(5974), 1, anon_sym_BQUOTE, - ACTIONS(6288), 1, + ACTIONS(5977), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6752), 1, - anon_sym_LF, - STATE(2730), 1, - sym__c_terminator, - ACTIONS(6268), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6754), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(3903), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2149), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, + ACTIONS(5983), 1, + sym_test_operator, + ACTIONS(5986), 1, + sym_extglob_pattern, + ACTIONS(5989), 1, + sym__brace_start, + STATE(4076), 1, + aux_sym__literal_repeat1, + STATE(4215), 1, + sym_concatenation, + ACTIONS(5944), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5959), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2276), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(4044), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [112663] = 19, + sym_process_substitution, + [107996] = 21, ACTIONS(63), 1, sym_comment, - ACTIONS(6554), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6556), 1, + ACTIONS(3942), 1, + sym_word, + ACTIONS(3950), 1, + anon_sym_LPAREN, + ACTIONS(3952), 1, anon_sym_DOLLAR, - ACTIONS(6558), 1, + ACTIONS(3954), 1, sym__special_character, - ACTIONS(6560), 1, + ACTIONS(3956), 1, anon_sym_DQUOTE, - ACTIONS(6564), 1, + ACTIONS(3960), 1, aux_sym_number_token1, - ACTIONS(6566), 1, + ACTIONS(3962), 1, aux_sym_number_token2, - ACTIONS(6568), 1, + ACTIONS(3964), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, + ACTIONS(3969), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6572), 1, + ACTIONS(3971), 1, anon_sym_BQUOTE, - ACTIONS(6574), 1, + ACTIONS(3973), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6580), 1, - sym__brace_start, - ACTIONS(6756), 1, - sym_word, - ACTIONS(6760), 1, + ACTIONS(3977), 1, sym_test_operator, - STATE(3832), 1, + ACTIONS(3979), 1, + sym__brace_start, + ACTIONS(5992), 1, + anon_sym_RBRACE3, + STATE(3217), 1, aux_sym__literal_repeat1, - STATE(3908), 1, - sym_concatenation, - ACTIONS(6576), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6758), 2, + ACTIONS(3944), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3958), 2, sym_raw_string, sym_ansi_c_string, - STATE(3811), 9, + ACTIONS(3975), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2242), 3, + sym_concatenation, + sym_array, + aux_sym__expansion_body_repeat1, + STATE(3005), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153193,45 +152006,92 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112731] = 18, + [108073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(637), 1, + ACTIONS(1328), 1, + anon_sym_LF, + ACTIONS(1326), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [108114] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5994), 1, + sym_word, + ACTIONS(5998), 1, + anon_sym_LPAREN, + ACTIONS(6000), 1, anon_sym_DOLLAR, - ACTIONS(641), 1, + ACTIONS(6002), 1, + sym__special_character, + ACTIONS(6004), 1, anon_sym_DQUOTE, - ACTIONS(645), 1, + ACTIONS(6008), 1, aux_sym_number_token1, - ACTIONS(647), 1, + ACTIONS(6010), 1, aux_sym_number_token2, - ACTIONS(649), 1, + ACTIONS(6012), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, + ACTIONS(6014), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(661), 1, - sym__brace_start, - ACTIONS(4852), 1, + ACTIONS(6016), 1, anon_sym_BQUOTE, - ACTIONS(6588), 1, - sym_word, - ACTIONS(6596), 1, - sym_test_operator, - ACTIONS(6762), 1, - anon_sym_RBRACK, - ACTIONS(657), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6592), 2, - sym__special_character, + ACTIONS(6018), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6022), 1, sym__comment_word, - ACTIONS(6594), 2, + ACTIONS(6024), 1, + sym_test_operator, + ACTIONS(6026), 1, + sym__empty_value, + ACTIONS(6028), 1, + sym__brace_start, + STATE(2756), 1, + aux_sym__literal_repeat1, + ACTIONS(5996), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6006), 2, sym_raw_string, sym_ansi_c_string, - STATE(1643), 9, + ACTIONS(6020), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2951), 2, + sym_concatenation, + sym_array, + STATE(2717), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153241,46 +152101,138 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112797] = 19, - ACTIONS(63), 1, + [108193] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(6604), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6606), 1, - anon_sym_DOLLAR, - ACTIONS(6610), 1, + ACTIONS(1217), 1, + sym__brace_start, + ACTIONS(5487), 1, anon_sym_DQUOTE, - ACTIONS(6614), 1, + STATE(2952), 1, + sym_string, + ACTIONS(6032), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6030), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 19, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(6616), 1, aux_sym_number_token2, - ACTIONS(6618), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6620), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6622), 1, anon_sym_BQUOTE, - ACTIONS(6624), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6630), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [108242] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 1, sym__brace_start, - ACTIONS(6764), 1, + ACTIONS(5487), 1, + anon_sym_DQUOTE, + STATE(2952), 1, + sym_string, + ACTIONS(6032), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6030), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 19, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(6766), 1, + sym_test_operator, + [108291] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6034), 1, + sym_word, + ACTIONS(6038), 1, + anon_sym_LPAREN, + ACTIONS(6040), 1, + anon_sym_DOLLAR, + ACTIONS(6042), 1, sym__special_character, - ACTIONS(6770), 1, + ACTIONS(6044), 1, + anon_sym_DQUOTE, + ACTIONS(6048), 1, + aux_sym_number_token1, + ACTIONS(6050), 1, + aux_sym_number_token2, + ACTIONS(6052), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6054), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6056), 1, + anon_sym_BQUOTE, + ACTIONS(6058), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6062), 1, + sym__comment_word, + ACTIONS(6064), 1, sym_test_operator, - STATE(2790), 1, + ACTIONS(6066), 1, + sym__empty_value, + ACTIONS(6068), 1, + sym__brace_start, + STATE(2483), 1, aux_sym__literal_repeat1, - STATE(2980), 1, - sym_concatenation, - ACTIONS(6626), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6768), 2, + ACTIONS(6036), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6046), 2, sym_raw_string, sym_ansi_c_string, - STATE(2838), 9, + ACTIONS(6060), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2530), 2, + sym_concatenation, + sym_array, + STATE(2345), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153290,45 +152242,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112865] = 18, + [108370] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(637), 1, + ACTIONS(5998), 1, + anon_sym_LPAREN, + ACTIONS(6000), 1, anon_sym_DOLLAR, - ACTIONS(641), 1, + ACTIONS(6004), 1, anon_sym_DQUOTE, - ACTIONS(645), 1, + ACTIONS(6008), 1, aux_sym_number_token1, - ACTIONS(647), 1, + ACTIONS(6010), 1, aux_sym_number_token2, - ACTIONS(649), 1, + ACTIONS(6012), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, + ACTIONS(6014), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, + ACTIONS(6016), 1, + anon_sym_BQUOTE, + ACTIONS(6018), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(661), 1, + ACTIONS(6022), 1, + sym__comment_word, + ACTIONS(6026), 1, + sym__empty_value, + ACTIONS(6028), 1, sym__brace_start, - ACTIONS(4852), 1, - anon_sym_BQUOTE, - ACTIONS(6588), 1, + ACTIONS(6070), 1, sym_word, - ACTIONS(6596), 1, + ACTIONS(6072), 1, + sym__special_character, + ACTIONS(6076), 1, sym_test_operator, - ACTIONS(6772), 1, - anon_sym_RBRACK, - ACTIONS(657), 2, + STATE(2756), 1, + aux_sym__literal_repeat1, + ACTIONS(5996), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6020), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6592), 2, - sym__special_character, - sym__comment_word, - ACTIONS(6594), 2, + ACTIONS(6074), 2, sym_raw_string, sym_ansi_c_string, - STATE(1643), 9, + STATE(2951), 2, + sym_concatenation, + sym_array, + STATE(2786), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153338,46 +152299,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112931] = 19, - ACTIONS(63), 1, + [108449] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(6704), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6706), 1, + ACTIONS(1519), 1, anon_sym_DOLLAR, - ACTIONS(6710), 1, - anon_sym_DQUOTE, - ACTIONS(6714), 1, + ACTIONS(1525), 1, aux_sym_number_token1, - ACTIONS(6716), 1, + ACTIONS(1527), 1, aux_sym_number_token2, - ACTIONS(6718), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6720), 1, + ACTIONS(1531), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6722), 1, - anon_sym_BQUOTE, - ACTIONS(6724), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6730), 1, + ACTIONS(1547), 1, sym__brace_start, - ACTIONS(6774), 1, + ACTIONS(6078), 1, sym_word, - ACTIONS(6776), 1, + ACTIONS(6082), 1, + anon_sym_LPAREN, + ACTIONS(6084), 1, sym__special_character, - ACTIONS(6780), 1, + ACTIONS(6086), 1, + anon_sym_DQUOTE, + ACTIONS(6090), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6092), 1, + anon_sym_BQUOTE, + ACTIONS(6094), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6098), 1, + sym__comment_word, + ACTIONS(6100), 1, sym_test_operator, - STATE(2676), 1, + ACTIONS(6102), 1, + sym__empty_value, + STATE(900), 1, aux_sym__literal_repeat1, - STATE(2895), 1, - sym_concatenation, - ACTIONS(6726), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6778), 2, + ACTIONS(6080), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6088), 2, sym_raw_string, sym_ansi_c_string, - STATE(2671), 9, + ACTIONS(6096), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1137), 2, + sym_concatenation, + sym_array, + STATE(747), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153387,46 +152356,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112999] = 19, - ACTIONS(63), 1, + [108528] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(6704), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6706), 1, + ACTIONS(1925), 1, anon_sym_DOLLAR, - ACTIONS(6710), 1, - anon_sym_DQUOTE, - ACTIONS(6714), 1, + ACTIONS(1931), 1, aux_sym_number_token1, - ACTIONS(6716), 1, + ACTIONS(1933), 1, aux_sym_number_token2, - ACTIONS(6718), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6720), 1, + ACTIONS(1937), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6722), 1, + ACTIONS(1951), 1, + sym__brace_start, + ACTIONS(5853), 1, + anon_sym_LPAREN, + ACTIONS(5857), 1, + anon_sym_DQUOTE, + ACTIONS(5861), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5863), 1, anon_sym_BQUOTE, - ACTIONS(6724), 1, + ACTIONS(5865), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6730), 1, - sym__brace_start, - ACTIONS(6776), 1, - sym__special_character, - ACTIONS(6782), 1, + ACTIONS(5869), 1, + sym__comment_word, + ACTIONS(5873), 1, + sym__empty_value, + ACTIONS(6104), 1, sym_word, - ACTIONS(6786), 1, + ACTIONS(6106), 1, + sym__special_character, + ACTIONS(6110), 1, sym_test_operator, - STATE(2726), 1, + STATE(1348), 1, aux_sym__literal_repeat1, - STATE(2925), 1, - sym_concatenation, - ACTIONS(6726), 2, + ACTIONS(5851), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5867), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6784), 2, + ACTIONS(6108), 2, sym_raw_string, sym_ansi_c_string, - STATE(2666), 9, + STATE(1376), 2, + sym_concatenation, + sym_array, + STATE(1188), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153436,46 +152413,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113067] = 19, - ACTIONS(63), 1, + [108607] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(6604), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6606), 1, + ACTIONS(5673), 1, + anon_sym_LPAREN, + ACTIONS(5675), 1, anon_sym_DOLLAR, - ACTIONS(6610), 1, + ACTIONS(5679), 1, anon_sym_DQUOTE, - ACTIONS(6614), 1, + ACTIONS(5683), 1, aux_sym_number_token1, - ACTIONS(6616), 1, + ACTIONS(5685), 1, aux_sym_number_token2, - ACTIONS(6618), 1, + ACTIONS(5687), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6620), 1, + ACTIONS(5689), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6622), 1, + ACTIONS(5691), 1, anon_sym_BQUOTE, - ACTIONS(6624), 1, + ACTIONS(5693), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6630), 1, + ACTIONS(5697), 1, + sym__comment_word, + ACTIONS(5701), 1, + sym__empty_value, + ACTIONS(5703), 1, sym__brace_start, - ACTIONS(6766), 1, - sym__special_character, - ACTIONS(6788), 1, + ACTIONS(6112), 1, sym_word, - ACTIONS(6792), 1, + ACTIONS(6114), 1, + sym__special_character, + ACTIONS(6118), 1, sym_test_operator, - STATE(2829), 1, + STATE(2788), 1, aux_sym__literal_repeat1, - STATE(2996), 1, - sym_concatenation, - ACTIONS(6626), 2, + ACTIONS(5671), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6790), 2, + ACTIONS(6116), 2, sym_raw_string, sym_ansi_c_string, - STATE(2782), 9, + STATE(2975), 2, + sym_concatenation, + sym_array, + STATE(2883), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153485,46 +152470,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113135] = 19, - ACTIONS(63), 1, + [108686] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(6604), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6606), 1, + ACTIONS(5789), 1, + anon_sym_LPAREN, + ACTIONS(5791), 1, anon_sym_DOLLAR, - ACTIONS(6610), 1, + ACTIONS(5795), 1, anon_sym_DQUOTE, - ACTIONS(6614), 1, + ACTIONS(5799), 1, aux_sym_number_token1, - ACTIONS(6616), 1, + ACTIONS(5801), 1, aux_sym_number_token2, - ACTIONS(6618), 1, + ACTIONS(5803), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6620), 1, + ACTIONS(5805), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6622), 1, + ACTIONS(5807), 1, anon_sym_BQUOTE, - ACTIONS(6624), 1, + ACTIONS(5809), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6630), 1, + ACTIONS(5813), 1, + sym__comment_word, + ACTIONS(5817), 1, + sym__empty_value, + ACTIONS(5819), 1, sym__brace_start, - ACTIONS(6794), 1, + ACTIONS(6120), 1, sym_word, - ACTIONS(6796), 1, + ACTIONS(6122), 1, sym__special_character, - ACTIONS(6800), 1, + ACTIONS(6126), 1, sym_test_operator, - STATE(2829), 1, + STATE(1370), 1, aux_sym__literal_repeat1, - STATE(2996), 1, - sym_concatenation, - ACTIONS(6626), 2, + ACTIONS(5787), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5811), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6798), 2, + ACTIONS(6124), 2, sym_raw_string, sym_ansi_c_string, - STATE(2850), 9, + STATE(1560), 2, + sym_concatenation, + sym_array, + STATE(1210), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153534,46 +152527,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113203] = 19, - ACTIONS(63), 1, + [108765] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(6604), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6606), 1, + ACTIONS(1925), 1, anon_sym_DOLLAR, - ACTIONS(6610), 1, - anon_sym_DQUOTE, - ACTIONS(6614), 1, + ACTIONS(1931), 1, aux_sym_number_token1, - ACTIONS(6616), 1, + ACTIONS(1933), 1, aux_sym_number_token2, - ACTIONS(6618), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6620), 1, + ACTIONS(1937), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6622), 1, + ACTIONS(1951), 1, + sym__brace_start, + ACTIONS(5853), 1, + anon_sym_LPAREN, + ACTIONS(5857), 1, + anon_sym_DQUOTE, + ACTIONS(5861), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5863), 1, anon_sym_BQUOTE, - ACTIONS(6624), 1, + ACTIONS(5865), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6630), 1, - sym__brace_start, - ACTIONS(6796), 1, - sym__special_character, - ACTIONS(6802), 1, + ACTIONS(5869), 1, + sym__comment_word, + ACTIONS(5873), 1, + sym__empty_value, + ACTIONS(6128), 1, sym_word, - ACTIONS(6806), 1, + ACTIONS(6130), 1, + sym__special_character, + ACTIONS(6134), 1, sym_test_operator, - STATE(2790), 1, + STATE(1348), 1, aux_sym__literal_repeat1, - STATE(2980), 1, - sym_concatenation, - ACTIONS(6626), 2, + ACTIONS(5851), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5867), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6804), 2, + ACTIONS(6132), 2, sym_raw_string, sym_ansi_c_string, - STATE(2864), 9, + STATE(1376), 2, + sym_concatenation, + sym_array, + STATE(892), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153583,82 +152584,53 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113271] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6808), 1, - aux_sym_concatenation_token1, - ACTIONS(6810), 1, - sym__concat, - STATE(2507), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1272), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1270), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - [113313] = 19, + [108844] = 21, ACTIONS(63), 1, sym_comment, - ACTIONS(6812), 1, + ACTIONS(3942), 1, sym_word, - ACTIONS(6814), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6816), 1, + ACTIONS(3950), 1, + anon_sym_LPAREN, + ACTIONS(3952), 1, anon_sym_DOLLAR, - ACTIONS(6818), 1, + ACTIONS(3954), 1, sym__special_character, - ACTIONS(6820), 1, + ACTIONS(3956), 1, anon_sym_DQUOTE, - ACTIONS(6824), 1, + ACTIONS(3960), 1, aux_sym_number_token1, - ACTIONS(6826), 1, + ACTIONS(3962), 1, aux_sym_number_token2, - ACTIONS(6828), 1, + ACTIONS(3964), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6830), 1, + ACTIONS(3969), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6832), 1, + ACTIONS(3971), 1, anon_sym_BQUOTE, - ACTIONS(6834), 1, + ACTIONS(3973), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6838), 1, + ACTIONS(3977), 1, sym_test_operator, - ACTIONS(6840), 1, + ACTIONS(3979), 1, sym__brace_start, - STATE(3428), 1, + ACTIONS(6136), 1, + anon_sym_RBRACE3, + STATE(3217), 1, aux_sym__literal_repeat1, - STATE(3473), 1, - sym_concatenation, - ACTIONS(6822), 2, + ACTIONS(3944), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6836), 2, + ACTIONS(3975), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3355), 9, + STATE(2242), 3, + sym_concatenation, + sym_array, + aux_sym__expansion_body_repeat1, + STATE(3005), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153668,81 +152640,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113381] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6842), 1, - sym__special_character, - STATE(2392), 1, - aux_sym__literal_repeat1, - ACTIONS(1358), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1363), 18, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [113421] = 19, - ACTIONS(63), 1, + [108921] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(6674), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6676), 1, + ACTIONS(3092), 1, anon_sym_DOLLAR, - ACTIONS(6678), 1, + ACTIONS(3094), 1, sym__special_character, - ACTIONS(6680), 1, + ACTIONS(3096), 1, anon_sym_DQUOTE, - ACTIONS(6684), 1, + ACTIONS(3100), 1, aux_sym_number_token1, - ACTIONS(6686), 1, + ACTIONS(3102), 1, aux_sym_number_token2, - ACTIONS(6688), 1, + ACTIONS(3104), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6690), 1, + ACTIONS(3106), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6692), 1, + ACTIONS(3108), 1, anon_sym_BQUOTE, - ACTIONS(6694), 1, + ACTIONS(3110), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6700), 1, + ACTIONS(3120), 1, sym__brace_start, - ACTIONS(6845), 1, + ACTIONS(6138), 1, sym_word, - ACTIONS(6849), 1, + ACTIONS(6140), 1, + anon_sym_LPAREN, + ACTIONS(6144), 1, + sym__comment_word, + ACTIONS(6146), 1, sym_test_operator, - STATE(2868), 1, + ACTIONS(6148), 1, + sym__empty_value, + STATE(1976), 1, aux_sym__literal_repeat1, - STATE(3098), 1, - sym_concatenation, - ACTIONS(6696), 2, + ACTIONS(3090), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3112), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6847), 2, + ACTIONS(6142), 2, sym_raw_string, sym_ansi_c_string, - STATE(2805), 9, + STATE(2035), 2, + sym_concatenation, + sym_array, + STATE(1581), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153752,81 +152697,132 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113489] = 5, - ACTIONS(63), 1, + [109000] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6598), 1, + ACTIONS(6150), 1, sym__special_character, - STATE(2392), 1, + STATE(2291), 1, aux_sym__literal_repeat1, - ACTIONS(3787), 8, + ACTIONS(1352), 14, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(3789), 18, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1357), 17, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [113529] = 19, - ACTIONS(63), 1, + [109045] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6814), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6816), 1, + ACTIONS(6155), 1, + anon_sym_LF, + ACTIONS(6153), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [109086] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6157), 1, + sym_word, + ACTIONS(6161), 1, + anon_sym_LPAREN, + ACTIONS(6163), 1, anon_sym_DOLLAR, - ACTIONS(6818), 1, + ACTIONS(6165), 1, sym__special_character, - ACTIONS(6820), 1, + ACTIONS(6167), 1, anon_sym_DQUOTE, - ACTIONS(6824), 1, + ACTIONS(6171), 1, aux_sym_number_token1, - ACTIONS(6826), 1, + ACTIONS(6173), 1, aux_sym_number_token2, - ACTIONS(6828), 1, + ACTIONS(6175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6830), 1, + ACTIONS(6177), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6832), 1, + ACTIONS(6179), 1, anon_sym_BQUOTE, - ACTIONS(6834), 1, + ACTIONS(6181), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6840), 1, - sym__brace_start, - ACTIONS(6851), 1, - sym_word, - ACTIONS(6855), 1, + ACTIONS(6185), 1, + sym__comment_word, + ACTIONS(6187), 1, sym_test_operator, - STATE(3431), 1, + ACTIONS(6189), 1, + sym__empty_value, + ACTIONS(6191), 1, + sym__brace_start, + STATE(3511), 1, aux_sym__literal_repeat1, - STATE(3470), 1, - sym_concatenation, - ACTIONS(6836), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6853), 2, + ACTIONS(6159), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6169), 2, sym_raw_string, sym_ansi_c_string, - STATE(3382), 9, + ACTIONS(6183), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3572), 2, + sym_concatenation, + sym_array, + STATE(3430), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153836,45 +152832,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113597] = 18, + [109165] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(637), 1, + ACTIONS(6193), 1, + sym_word, + ACTIONS(6197), 1, + anon_sym_LPAREN, + ACTIONS(6199), 1, anon_sym_DOLLAR, - ACTIONS(641), 1, + ACTIONS(6201), 1, + sym__special_character, + ACTIONS(6203), 1, anon_sym_DQUOTE, - ACTIONS(645), 1, + ACTIONS(6207), 1, aux_sym_number_token1, - ACTIONS(647), 1, + ACTIONS(6209), 1, aux_sym_number_token2, - ACTIONS(649), 1, + ACTIONS(6211), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, + ACTIONS(6213), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, + ACTIONS(6215), 1, + anon_sym_BQUOTE, + ACTIONS(6217), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(661), 1, + ACTIONS(6221), 1, + sym__comment_word, + ACTIONS(6223), 1, + sym_test_operator, + ACTIONS(6225), 1, + sym__empty_value, + ACTIONS(6227), 1, sym__brace_start, - ACTIONS(4852), 1, - anon_sym_BQUOTE, - ACTIONS(6588), 1, - sym_word, - ACTIONS(6596), 1, - sym_test_operator, - ACTIONS(6857), 1, - anon_sym_RBRACK, - ACTIONS(657), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6592), 2, - sym__special_character, - sym__comment_word, - ACTIONS(6594), 2, + STATE(1130), 1, + aux_sym__literal_repeat1, + ACTIONS(6195), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6205), 2, sym_raw_string, sym_ansi_c_string, - STATE(1643), 9, + ACTIONS(6219), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1299), 2, + sym_concatenation, + sym_array, + STATE(779), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153884,324 +152889,318 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113663] = 18, - ACTIONS(3), 1, + [109244] = 9, + ACTIONS(63), 1, sym_comment, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(637), 1, + ACTIONS(6239), 1, + sym_file_descriptor, + ACTIONS(6242), 1, + sym_variable_name, + STATE(4396), 1, + sym_subscript, + ACTIONS(6236), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(2295), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + ACTIONS(6229), 5, anon_sym_DOLLAR, - ACTIONS(641), 1, - anon_sym_DQUOTE, - ACTIONS(645), 1, aux_sym_number_token1, - ACTIONS(647), 1, aux_sym_number_token2, - ACTIONS(649), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(661), 1, - sym__brace_start, - ACTIONS(4852), 1, - anon_sym_BQUOTE, - ACTIONS(6588), 1, sym_word, - ACTIONS(6596), 1, - sym_test_operator, - ACTIONS(6859), 1, - anon_sym_RBRACK, - ACTIONS(657), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6592), 2, - sym__special_character, - sym__comment_word, - ACTIONS(6594), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1643), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [113729] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6554), 1, + ACTIONS(6233), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(6231), 13, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6556), 1, - anon_sym_DOLLAR, - ACTIONS(6558), 1, sym__special_character, - ACTIONS(6560), 1, anon_sym_DQUOTE, - ACTIONS(6564), 1, - aux_sym_number_token1, - ACTIONS(6566), 1, - aux_sym_number_token2, - ACTIONS(6568), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6572), 1, anon_sym_BQUOTE, - ACTIONS(6574), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6580), 1, - sym__brace_start, - ACTIONS(6861), 1, - sym_word, - ACTIONS(6865), 1, - sym_test_operator, - STATE(3821), 1, - aux_sym__literal_repeat1, - STATE(3938), 1, - sym_concatenation, - ACTIONS(6576), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6863), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3795), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [113797] = 17, + sym_test_operator, + [109296] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(6245), 1, + anon_sym_EQ, + ACTIONS(5549), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5553), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [109338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(641), 1, - anon_sym_DQUOTE, - ACTIONS(645), 1, + ACTIONS(4374), 15, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, - ACTIONS(647), 1, aux_sym_number_token2, - ACTIONS(649), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(661), 1, + sym_word, + ACTIONS(4376), 17, sym__brace_start, - ACTIONS(4852), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, anon_sym_BQUOTE, - ACTIONS(6588), 1, - sym_word, - ACTIONS(6592), 1, - sym__comment_word, - ACTIONS(6867), 1, - anon_sym_DOLLAR, - ACTIONS(657), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6594), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6596), 2, - sym__special_character, sym_test_operator, - STATE(1643), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [113860] = 17, + [109378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2940), 1, + ACTIONS(4370), 15, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(2946), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(2948), 1, aux_sym_number_token2, - ACTIONS(2952), 1, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, - ACTIONS(2962), 1, + sym_word, + ACTIONS(4372), 17, sym__brace_start, - ACTIONS(6424), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6428), 1, anon_sym_DQUOTE, - ACTIONS(6432), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - ACTIONS(6434), 1, + anon_sym_RBRACE3, anon_sym_BQUOTE, - ACTIONS(6436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6869), 1, - sym_word, - ACTIONS(6875), 1, - sym__comment_word, - ACTIONS(6438), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6871), 2, - sym__special_character, sym_test_operator, - ACTIONS(6873), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1371), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [113923] = 17, + [109418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5765), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5771), 1, - anon_sym_DQUOTE, - ACTIONS(5775), 1, + ACTIONS(1242), 15, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, - ACTIONS(5777), 1, aux_sym_number_token2, - ACTIONS(5779), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5781), 1, + anon_sym_COLON_DASH, + anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, - ACTIONS(5783), 1, - anon_sym_BQUOTE, - ACTIONS(5785), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5795), 1, - sym__brace_start, - ACTIONS(6877), 1, sym_word, - ACTIONS(6879), 1, - anon_sym_DOLLAR, - ACTIONS(6885), 1, - sym__comment_word, - ACTIONS(5787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6881), 2, - sym__special_character, - sym_test_operator, - ACTIONS(6883), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2641), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [113986] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5765), 1, + ACTIONS(1244), 17, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5771), 1, anon_sym_DQUOTE, - ACTIONS(5775), 1, - aux_sym_number_token1, - ACTIONS(5777), 1, - aux_sym_number_token2, - ACTIONS(5779), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - ACTIONS(5781), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5783), 1, + anon_sym_RBRACE3, anon_sym_BQUOTE, - ACTIONS(5785), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5795), 1, - sym__brace_start, - ACTIONS(6877), 1, - sym_word, - ACTIONS(6885), 1, - sym__comment_word, - ACTIONS(6887), 1, - anon_sym_DOLLAR, - ACTIONS(5787), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6881), 2, - sym__special_character, sym_test_operator, - ACTIONS(6883), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2641), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114049] = 17, - ACTIONS(3), 1, + [109458] = 4, + ACTIONS(63), 1, sym_comment, - ACTIONS(6604), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6610), 1, + ACTIONS(6247), 1, + anon_sym_EQ, + ACTIONS(5549), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5553), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [109500] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5755), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + ACTIONS(6249), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6253), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6251), 17, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [109543] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(6614), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(6616), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(6618), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6620), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6622), 1, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(6624), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6630), 1, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(6889), 1, - sym_word, - ACTIONS(6891), 1, - anon_sym_DOLLAR, - ACTIONS(6897), 1, - sym__comment_word, - ACTIONS(6626), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6893), 2, + ACTIONS(6255), 1, + anon_sym_RPAREN, + ACTIONS(6257), 1, sym__special_character, - sym_test_operator, - ACTIONS(6895), 2, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(2827), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2374), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -154211,124 +153210,160 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114112] = 6, - ACTIONS(3), 1, + [109616] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(6808), 1, - aux_sym_concatenation_token1, - ACTIONS(6810), 1, - sym__concat, - STATE(2509), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3785), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(3783), 21, - anon_sym_SEMI, + ACTIONS(5887), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(6259), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6263), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6261), 17, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + [109659] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1302), 10, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [114153] = 17, - ACTIONS(3), 1, + ACTIONS(1304), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [109698] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(6604), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6610), 1, + ACTIONS(1314), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1316), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [109737] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(6614), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(6616), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(6618), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6620), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6622), 1, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(6624), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6630), 1, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(6889), 1, - sym_word, - ACTIONS(6897), 1, - sym__comment_word, - ACTIONS(6899), 1, - anon_sym_DOLLAR, - ACTIONS(6626), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6893), 2, + ACTIONS(6257), 1, sym__special_character, - sym_test_operator, - ACTIONS(6895), 2, + ACTIONS(6265), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(2827), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114216] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(216), 1, - aux_sym_number_token1, - ACTIONS(218), 1, - aux_sym_number_token2, - ACTIONS(222), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(236), 1, - sym__brace_start, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1115), 1, - anon_sym_DQUOTE, - ACTIONS(1119), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4780), 1, - anon_sym_BQUOTE, - ACTIONS(6901), 1, - sym_word, - ACTIONS(6903), 1, - anon_sym_DOLLAR, - ACTIONS(6909), 1, - sym__comment_word, - ACTIONS(1123), 2, + ACTIONS(4260), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6905), 2, - sym__special_character, - sym_test_operator, - ACTIONS(6907), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1538), 9, + STATE(2325), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -154338,89 +153373,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114279] = 17, - ACTIONS(3), 1, + [109810] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(4760), 1, - aux_sym_number_token1, - ACTIONS(4762), 1, - aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, - anon_sym_BQUOTE, - ACTIONS(5344), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6911), 1, + ACTIONS(4234), 1, sym_word, - ACTIONS(6913), 1, + ACTIONS(4240), 1, anon_sym_DOLLAR, - ACTIONS(6919), 1, - sym__comment_word, - ACTIONS(5346), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6915), 2, - sym__special_character, - sym_test_operator, - ACTIONS(6917), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3977), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114342] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(380), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(386), 1, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(390), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(392), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(394), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(396), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(398), 1, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(400), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(410), 1, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(6921), 1, - sym_word, - ACTIONS(6923), 1, - anon_sym_DOLLAR, - ACTIONS(6929), 1, - sym__comment_word, - ACTIONS(402), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6925), 2, + ACTIONS(6257), 1, sym__special_character, - sym_test_operator, - ACTIONS(6927), 2, + ACTIONS(6267), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(921), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2349), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -154430,43 +153426,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114405] = 17, - ACTIONS(3), 1, + [109883] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(380), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(386), 1, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(390), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(392), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(394), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(396), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(398), 1, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(400), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(410), 1, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(6921), 1, - sym_word, - ACTIONS(6929), 1, - sym__comment_word, - ACTIONS(6931), 1, - anon_sym_DOLLAR, - ACTIONS(402), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6925), 2, + ACTIONS(6257), 1, sym__special_character, - sym_test_operator, - ACTIONS(6927), 2, + ACTIONS(6269), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(921), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2375), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -154476,135 +153479,89 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114468] = 17, + [109956] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5731), 1, - anon_sym_DQUOTE, - ACTIONS(5735), 1, - aux_sym_number_token1, - ACTIONS(5737), 1, - aux_sym_number_token2, - ACTIONS(5739), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5741), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5743), 1, - anon_sym_BQUOTE, - ACTIONS(5745), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(1217), 1, sym__brace_start, - ACTIONS(6933), 1, - sym_word, - ACTIONS(6935), 1, + ACTIONS(6273), 1, + anon_sym_DQUOTE, + STATE(3125), 1, + sym_string, + ACTIONS(6275), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6271), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(6941), 1, - sym__comment_word, - ACTIONS(5747), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6937), 2, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, - sym_test_operator, - ACTIONS(6939), 2, sym_raw_string, sym_ansi_c_string, - STATE(1249), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114531] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4760), 1, aux_sym_number_token1, - ACTIONS(4762), 1, aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, + anon_sym_RBRACE3, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(5344), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6911), 1, - sym_word, - ACTIONS(6919), 1, - sym__comment_word, - ACTIONS(6943), 1, - anon_sym_DOLLAR, - ACTIONS(5346), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6915), 2, - sym__special_character, + sym_word, sym_test_operator, - ACTIONS(6917), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3977), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114594] = 17, + [110003] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(637), 1, + ACTIONS(2059), 1, + anon_sym_LF, + ACTIONS(5513), 1, anon_sym_DOLLAR, - ACTIONS(641), 1, + ACTIONS(5519), 1, anon_sym_DQUOTE, - ACTIONS(645), 1, + ACTIONS(5522), 1, aux_sym_number_token1, - ACTIONS(647), 1, + ACTIONS(5525), 1, aux_sym_number_token2, - ACTIONS(649), 1, + ACTIONS(5528), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, + ACTIONS(5531), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, + ACTIONS(5534), 1, + anon_sym_BQUOTE, + ACTIONS(5537), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(661), 1, + ACTIONS(5546), 1, sym__brace_start, - ACTIONS(4852), 1, - anon_sym_BQUOTE, - ACTIONS(6588), 1, - sym_word, - ACTIONS(6592), 1, - sym__comment_word, - ACTIONS(657), 2, + ACTIONS(6280), 1, + sym__special_character, + ACTIONS(6283), 1, + sym_test_operator, + STATE(3090), 1, + aux_sym__literal_repeat1, + ACTIONS(5510), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5540), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6594), 2, + STATE(2310), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(6277), 3, sym_raw_string, sym_ansi_c_string, - ACTIONS(6596), 2, - sym__special_character, - sym_test_operator, - STATE(1643), 9, + sym_word, + STATE(3139), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -154614,43 +153571,86 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114657] = 17, - ACTIONS(3), 1, + [110074] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(45), 1, + ACTIONS(1302), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1304), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [110113] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(49), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(51), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(53), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(57), 1, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(59), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(6945), 1, - sym_word, - ACTIONS(6947), 1, - anon_sym_DOLLAR, - ACTIONS(6953), 1, - sym__comment_word, - ACTIONS(61), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6949), 2, + ACTIONS(6257), 1, sym__special_character, - sym_test_operator, - ACTIONS(6951), 2, + ACTIONS(6286), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(916), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2349), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -154660,43 +153660,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114720] = 17, - ACTIONS(3), 1, + [110186] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5731), 1, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(5735), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(5737), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(5739), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5741), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5743), 1, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(5745), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(6933), 1, - sym_word, - ACTIONS(6941), 1, - sym__comment_word, - ACTIONS(6955), 1, - anon_sym_DOLLAR, - ACTIONS(5747), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6937), 2, + ACTIONS(6257), 1, sym__special_character, - sym_test_operator, - ACTIONS(6939), 2, + ACTIONS(6288), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(1249), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2307), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -154706,89 +153713,162 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114783] = 17, + [110259] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(45), 1, + ACTIONS(1213), 1, + sym__brace_start, + ACTIONS(6273), 1, anon_sym_DQUOTE, - ACTIONS(49), 1, + STATE(3125), 1, + sym_string, + ACTIONS(6275), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6271), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(51), 1, aux_sym_number_token2, - ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, + anon_sym_RBRACE3, anon_sym_DOLLAR_LPAREN, - ACTIONS(57), 1, anon_sym_BQUOTE, - ACTIONS(59), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, - sym__brace_start, - ACTIONS(6945), 1, - sym_word, - ACTIONS(6953), 1, - sym__comment_word, - ACTIONS(6957), 1, - anon_sym_DOLLAR, - ACTIONS(61), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6949), 2, - sym__special_character, + sym_word, sym_test_operator, - ACTIONS(6951), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(916), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114846] = 17, - ACTIONS(3), 1, + [110306] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(2726), 1, - aux_sym_number_token1, - ACTIONS(2728), 1, - aux_sym_number_token2, - ACTIONS(2732), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2744), 1, - sym__brace_start, - ACTIONS(6959), 1, + ACTIONS(6153), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6155), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [110345] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1334), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1336), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [110384] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4234), 1, sym_word, - ACTIONS(6961), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6963), 1, + ACTIONS(4240), 1, anon_sym_DOLLAR, - ACTIONS(6967), 1, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(6971), 1, + ACTIONS(4248), 1, + aux_sym_number_token1, + ACTIONS(4250), 1, + aux_sym_number_token2, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6973), 1, + ACTIONS(4254), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(6975), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6979), 1, - sym__comment_word, - ACTIONS(6965), 2, - sym__special_character, + ACTIONS(4262), 1, sym_test_operator, - ACTIONS(6969), 2, + ACTIONS(4264), 1, + sym__brace_start, + ACTIONS(6257), 1, + sym__special_character, + ACTIONS(6290), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6977), 2, + ACTIONS(4260), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1235), 9, + STATE(2349), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -154798,30 +153878,37 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114909] = 4, + [110457] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3299), 2, + ACTIONS(5443), 1, + anon_sym_DQUOTE, + STATE(2781), 1, + sym_string, + ACTIONS(1213), 2, sym_file_descriptor, - anon_sym_LF, - STATE(2450), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3297), 21, - anon_sym_SEMI, + sym_variable_name, + ACTIONS(5445), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5441), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -154829,45 +153916,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - [114946] = 17, - ACTIONS(3), 1, + [110504] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(2726), 1, - aux_sym_number_token1, - ACTIONS(2728), 1, - aux_sym_number_token2, - ACTIONS(2732), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2744), 1, - sym__brace_start, - ACTIONS(6959), 1, + ACTIONS(5661), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5663), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [110543] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1314), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1316), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [110582] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4234), 1, sym_word, - ACTIONS(6961), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6967), 1, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(6971), 1, + ACTIONS(4248), 1, + aux_sym_number_token1, + ACTIONS(4250), 1, + aux_sym_number_token2, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6973), 1, + ACTIONS(4254), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(6975), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6979), 1, - sym__comment_word, - ACTIONS(6981), 1, - anon_sym_DOLLAR, - ACTIONS(6965), 2, - sym__special_character, + ACTIONS(4262), 1, sym_test_operator, - ACTIONS(6969), 2, + ACTIONS(4264), 1, + sym__brace_start, + ACTIONS(6257), 1, + sym__special_character, + ACTIONS(6292), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6977), 2, + ACTIONS(4260), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1235), 9, + STATE(2349), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -154877,43 +154043,86 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115009] = 17, - ACTIONS(3), 1, + [110655] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(2946), 1, + ACTIONS(5571), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5573), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [110694] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, + anon_sym_DQUOTE, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(2948), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(2952), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2962), 1, - sym__brace_start, - ACTIONS(6424), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6428), 1, - anon_sym_DQUOTE, - ACTIONS(6432), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6434), 1, + ACTIONS(4254), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(6436), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6869), 1, - sym_word, - ACTIONS(6875), 1, - sym__comment_word, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6438), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6871), 2, - sym__special_character, + ACTIONS(4262), 1, sym_test_operator, - ACTIONS(6873), 2, + ACTIONS(4264), 1, + sym__brace_start, + ACTIONS(6257), 1, + sym__special_character, + ACTIONS(6294), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(1371), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2328), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -154923,43 +154132,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115072] = 17, - ACTIONS(3), 1, + [110767] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(3464), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3466), 1, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, anon_sym_DOLLAR, - ACTIONS(3470), 1, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(3474), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(3476), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(3478), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3480), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3482), 1, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(3484), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3492), 1, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(6985), 1, - sym_word, - ACTIONS(6991), 1, - sym__comment_word, - ACTIONS(3486), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6987), 2, + ACTIONS(6257), 1, sym__special_character, - sym_test_operator, - ACTIONS(6989), 2, + ACTIONS(6296), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(1867), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2312), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -154969,43 +154185,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115135] = 17, - ACTIONS(3), 1, + [110840] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(5765), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5771), 1, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(5775), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(5777), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(5779), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5781), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5783), 1, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(5785), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5795), 1, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(6877), 1, - sym_word, - ACTIONS(6885), 1, - sym__comment_word, - ACTIONS(6993), 1, - anon_sym_DOLLAR, - ACTIONS(5787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6881), 2, + ACTIONS(6257), 1, sym__special_character, - sym_test_operator, - ACTIONS(6883), 2, + ACTIONS(6298), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(2641), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2349), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155015,43 +154238,90 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115198] = 17, + [110913] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(284), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(290), 1, + ACTIONS(5443), 1, + anon_sym_DQUOTE, + STATE(2781), 1, + sym_string, + ACTIONS(1217), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(5445), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5441), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + [110960] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(294), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(296), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(298), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(300), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(302), 1, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(304), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(314), 1, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(6995), 1, - sym_word, - ACTIONS(6997), 1, - anon_sym_DOLLAR, - ACTIONS(7003), 1, - sym__comment_word, - ACTIONS(306), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6999), 2, + ACTIONS(6257), 1, sym__special_character, - sym_test_operator, - ACTIONS(7001), 2, + ACTIONS(6300), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(431), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2350), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155061,43 +154331,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115261] = 17, - ACTIONS(3), 1, + [111033] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(5510), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5516), 1, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(5520), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(5522), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(5524), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5526), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5528), 1, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(5530), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5540), 1, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(7005), 1, - sym_word, - ACTIONS(7007), 1, - anon_sym_DOLLAR, - ACTIONS(7013), 1, - sym__comment_word, - ACTIONS(5532), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7009), 2, + ACTIONS(6257), 1, sym__special_character, - sym_test_operator, - ACTIONS(7011), 2, + ACTIONS(6302), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(2362), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2349), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155107,43 +154384,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115324] = 17, - ACTIONS(3), 1, + [111106] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5667), 1, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(5671), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(5673), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(5675), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5677), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5679), 1, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(5681), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5691), 1, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(7015), 1, - sym_word, - ACTIONS(7017), 1, - anon_sym_DOLLAR, - ACTIONS(7023), 1, - sym__comment_word, - ACTIONS(5683), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7019), 2, + ACTIONS(6257), 1, sym__special_character, - sym_test_operator, - ACTIONS(7021), 2, + ACTIONS(6304), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(1304), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2349), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155153,43 +154437,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115387] = 17, - ACTIONS(3), 1, + [111179] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5667), 1, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(5671), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(5673), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(5675), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5677), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5679), 1, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(5681), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5691), 1, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(7015), 1, - sym_word, - ACTIONS(7023), 1, - sym__comment_word, - ACTIONS(7025), 1, - anon_sym_DOLLAR, - ACTIONS(5683), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7019), 2, + ACTIONS(6257), 1, sym__special_character, - sym_test_operator, - ACTIONS(7021), 2, + ACTIONS(6306), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(1304), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2321), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155199,43 +154490,158 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115450] = 17, - ACTIONS(3), 1, + [111252] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(641), 1, + ACTIONS(1318), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1320), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [111291] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5571), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5573), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [111330] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1326), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1328), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [111369] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(645), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(647), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(649), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, + ACTIONS(4256), 1, + anon_sym_BQUOTE, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(661), 1, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(4852), 1, - anon_sym_BQUOTE, - ACTIONS(6588), 1, - sym_word, - ACTIONS(6592), 1, - sym__comment_word, - ACTIONS(7027), 1, - anon_sym_DOLLAR, - ACTIONS(657), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6594), 2, + ACTIONS(6257), 1, + sym__special_character, + ACTIONS(6308), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6596), 2, - sym__special_character, - sym_test_operator, - STATE(1643), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2349), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155245,43 +154651,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115513] = 17, - ACTIONS(3), 1, + [111442] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(641), 1, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(645), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(647), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(649), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, + ACTIONS(4256), 1, + anon_sym_BQUOTE, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(661), 1, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(4852), 1, - anon_sym_BQUOTE, - ACTIONS(6588), 1, - sym_word, - ACTIONS(6592), 1, - sym__comment_word, - ACTIONS(7029), 1, - anon_sym_DOLLAR, - ACTIONS(657), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6594), 2, + ACTIONS(6257), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6596), 2, - sym__special_character, - sym_test_operator, - STATE(1643), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2383), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155291,43 +154704,232 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115576] = 17, - ACTIONS(3), 1, + [111515] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(5661), 1, + STATE(2376), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6312), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3841), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3843), 19, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5663), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [111558] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1268), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1270), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [111597] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1294), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1296), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [111636] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5665), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5667), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [111675] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5661), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5663), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [111714] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, anon_sym_DOLLAR, - ACTIONS(5667), 1, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(5671), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(5673), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(5675), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5677), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5679), 1, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(5681), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5691), 1, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(7015), 1, - sym_word, - ACTIONS(7023), 1, - sym__comment_word, - ACTIONS(5683), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7019), 2, + ACTIONS(6257), 1, sym__special_character, - sym_test_operator, - ACTIONS(7021), 2, + ACTIONS(6314), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(1304), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2357), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155337,89 +154939,232 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115639] = 17, - ACTIONS(3), 1, + [111787] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(332), 1, + ACTIONS(1268), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1270), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [111826] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1294), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1296), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [111865] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1268), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1270), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [111904] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(2377), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6312), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3837), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(334), 1, aux_sym_number_token2, - ACTIONS(338), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3839), 19, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1157), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1167), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - ACTIONS(7031), 1, - sym_word, - ACTIONS(7033), 1, - anon_sym_DOLLAR, - ACTIONS(7039), 1, - sym__comment_word, - ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7035), 2, - sym__special_character, sym_test_operator, - ACTIONS(7037), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1343), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [115702] = 17, - ACTIONS(3), 1, + [111947] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(6153), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6155), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [111986] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(2720), 1, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, anon_sym_DOLLAR, - ACTIONS(2726), 1, + ACTIONS(4244), 1, + anon_sym_DQUOTE, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(2728), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(2732), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2744), 1, - sym__brace_start, - ACTIONS(6959), 1, - sym_word, - ACTIONS(6961), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6967), 1, - anon_sym_DQUOTE, - ACTIONS(6971), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6973), 1, + ACTIONS(4254), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(6975), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6979), 1, - sym__comment_word, - ACTIONS(6965), 2, - sym__special_character, + ACTIONS(4262), 1, sym_test_operator, - ACTIONS(6969), 2, + ACTIONS(4264), 1, + sym__brace_start, + ACTIONS(6257), 1, + sym__special_character, + ACTIONS(6316), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6977), 2, + ACTIONS(4260), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1235), 9, + STATE(2329), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155429,43 +155174,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115765] = 17, - ACTIONS(3), 1, + [112059] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(332), 1, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, + anon_sym_DQUOTE, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(334), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, - sym__brace_start, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4799), 1, + ACTIONS(4254), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(7031), 1, - sym_word, - ACTIONS(7039), 1, - sym__comment_word, - ACTIONS(7041), 1, - anon_sym_DOLLAR, - ACTIONS(1171), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7035), 2, - sym__special_character, + ACTIONS(4258), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4262), 1, sym_test_operator, - ACTIONS(7037), 2, + ACTIONS(4264), 1, + sym__brace_start, + ACTIONS(6257), 1, + sym__special_character, + ACTIONS(6318), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(1343), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2349), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155475,43 +155227,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115828] = 17, - ACTIONS(3), 1, + [112132] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(1725), 1, + ACTIONS(2094), 1, + anon_sym_RPAREN, + ACTIONS(6320), 1, + sym_word, + ACTIONS(6326), 1, anon_sym_DOLLAR, - ACTIONS(1731), 1, + ACTIONS(6329), 1, + sym__special_character, + ACTIONS(6332), 1, + anon_sym_DQUOTE, + ACTIONS(6338), 1, aux_sym_number_token1, - ACTIONS(1733), 1, + ACTIONS(6341), 1, aux_sym_number_token2, - ACTIONS(1737), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1751), 1, - sym__brace_start, - ACTIONS(5597), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5601), 1, - anon_sym_DQUOTE, - ACTIONS(5605), 1, + ACTIONS(6344), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5607), 1, + ACTIONS(6347), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6350), 1, anon_sym_BQUOTE, - ACTIONS(5609), 1, + ACTIONS(6353), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7043), 1, - sym_word, - ACTIONS(7049), 1, - sym__comment_word, - ACTIONS(5611), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7045), 2, - sym__special_character, + ACTIONS(6359), 1, sym_test_operator, - ACTIONS(7047), 2, + ACTIONS(6362), 1, + sym__brace_start, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(6323), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6335), 2, sym_raw_string, sym_ansi_c_string, - STATE(1040), 9, + ACTIONS(6356), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2349), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155521,43 +155280,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115891] = 17, - ACTIONS(3), 1, + [112205] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(380), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(386), 1, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(390), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(392), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(394), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(396), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(398), 1, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(400), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(410), 1, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(6921), 1, - sym_word, - ACTIONS(6929), 1, - sym__comment_word, - ACTIONS(7051), 1, - anon_sym_DOLLAR, - ACTIONS(402), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6925), 2, + ACTIONS(6257), 1, sym__special_character, - sym_test_operator, - ACTIONS(6927), 2, + ACTIONS(6365), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(921), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2349), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155567,43 +155333,230 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115954] = 17, - ACTIONS(3), 1, + [112278] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(380), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(386), 1, + ACTIONS(1268), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1270), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [112317] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1318), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1320), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [112356] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1342), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1344), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [112395] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1346), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1348), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [112434] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1342), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1344), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [112473] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(390), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(392), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(394), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(396), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(398), 1, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(400), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(410), 1, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(6921), 1, - sym_word, - ACTIONS(6929), 1, - sym__comment_word, - ACTIONS(7053), 1, - anon_sym_DOLLAR, - ACTIONS(402), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6925), 2, + ACTIONS(6257), 1, sym__special_character, - sym_test_operator, - ACTIONS(6927), 2, + ACTIONS(6367), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(921), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2365), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155613,43 +155566,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116017] = 17, - ACTIONS(3), 1, + [112546] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(216), 1, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, + anon_sym_DQUOTE, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(218), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(222), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(236), 1, - sym__brace_start, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1115), 1, - anon_sym_DQUOTE, - ACTIONS(1119), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4780), 1, + ACTIONS(4254), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(6901), 1, - sym_word, - ACTIONS(6909), 1, - sym__comment_word, - ACTIONS(7055), 1, - anon_sym_DOLLAR, - ACTIONS(1123), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6905), 2, - sym__special_character, + ACTIONS(4258), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4262), 1, sym_test_operator, - ACTIONS(6907), 2, + ACTIONS(4264), 1, + sym__brace_start, + ACTIONS(6257), 1, + sym__special_character, + ACTIONS(6369), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(1538), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2349), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155659,10 +155619,195 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116080] = 3, + [112619] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1322), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1324), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [112658] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1326), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1328), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [112697] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5665), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5667), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [112736] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1346), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1348), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [112775] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1272), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1274), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [112814] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(3783), 8, + STATE(2376), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6312), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3989), 9, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -155670,11 +155815,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(3785), 19, + ACTIONS(3991), 19, sym_file_descriptor, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -155686,48 +155833,54 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [116115] = 17, - ACTIONS(3), 1, + [112857] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(5765), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5771), 1, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(5775), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(5777), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(5779), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5781), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5783), 1, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(5785), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5795), 1, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(6877), 1, - sym_word, - ACTIONS(6885), 1, - sym__comment_word, - ACTIONS(7057), 1, - anon_sym_DOLLAR, - ACTIONS(5787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6881), 2, + ACTIONS(6257), 1, sym__special_character, - sym_test_operator, - ACTIONS(6883), 2, + ACTIONS(6371), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(2641), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2370), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155737,43 +155890,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116178] = 17, - ACTIONS(3), 1, + [112930] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(216), 1, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, + anon_sym_DQUOTE, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(218), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(222), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(236), 1, - sym__brace_start, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1115), 1, - anon_sym_DQUOTE, - ACTIONS(1119), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4780), 1, + ACTIONS(4254), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(6901), 1, - sym_word, - ACTIONS(6909), 1, - sym__comment_word, - ACTIONS(7059), 1, - anon_sym_DOLLAR, - ACTIONS(1123), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6905), 2, - sym__special_character, + ACTIONS(4258), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4262), 1, sym_test_operator, - ACTIONS(6907), 2, + ACTIONS(4264), 1, + sym__brace_start, + ACTIONS(6257), 1, + sym__special_character, + ACTIONS(6373), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(1538), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2349), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155783,89 +155943,196 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116241] = 17, - ACTIONS(3), 1, + [113003] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(216), 1, + ACTIONS(1334), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1336), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [113042] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1330), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1332), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [113081] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(2377), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6312), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3985), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(218), 1, aux_sym_number_token2, - ACTIONS(222), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(236), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3987), 19, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1109), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1115), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1119), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4780), 1, - anon_sym_BQUOTE, - ACTIONS(6901), 1, - sym_word, - ACTIONS(6909), 1, - sym__comment_word, - ACTIONS(7061), 1, - anon_sym_DOLLAR, - ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6905), 2, - sym__special_character, sym_test_operator, - ACTIONS(6907), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1538), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116304] = 17, - ACTIONS(3), 1, + [113124] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(165), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(171), 1, + ACTIONS(1322), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1324), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [113163] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(175), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(177), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(179), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(181), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(183), 1, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(185), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(191), 1, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(7063), 1, - sym_word, - ACTIONS(7065), 1, - anon_sym_DOLLAR, - ACTIONS(7071), 1, - sym__comment_word, - ACTIONS(187), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7067), 2, + ACTIONS(6257), 1, sym__special_character, - sym_test_operator, - ACTIONS(7069), 2, + ACTIONS(6375), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(402), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2349), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155875,43 +156142,88 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116367] = 17, - ACTIONS(3), 1, + [113236] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(165), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(167), 1, + ACTIONS(5887), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + ACTIONS(6249), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6253), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6251), 17, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [113279] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, anon_sym_DOLLAR, - ACTIONS(171), 1, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(175), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(177), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(179), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(181), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(183), 1, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(185), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(191), 1, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(7063), 1, - sym_word, - ACTIONS(7071), 1, - sym__comment_word, - ACTIONS(187), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7067), 2, + ACTIONS(6257), 1, sym__special_character, - sym_test_operator, - ACTIONS(7069), 2, + ACTIONS(6377), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(402), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2317), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155921,43 +156233,86 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116430] = 17, - ACTIONS(3), 1, + [113352] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1077), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1079), 1, + ACTIONS(1330), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1332), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [113391] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, anon_sym_DOLLAR, - ACTIONS(1083), 1, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(1087), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(1089), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(1091), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1093), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1095), 1, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(1097), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1105), 1, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(7073), 1, - sym_word, - ACTIONS(7079), 1, - sym__comment_word, - ACTIONS(1099), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7075), 2, + ACTIONS(6257), 1, sym__special_character, - sym_test_operator, - ACTIONS(7077), 2, + ACTIONS(6379), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(1586), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2349), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155967,43 +156322,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116493] = 17, - ACTIONS(3), 1, + [113464] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(5922), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5928), 1, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(5932), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(5934), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(5936), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5938), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5940), 1, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(5942), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5952), 1, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(7081), 1, - sym_word, - ACTIONS(7083), 1, - anon_sym_DOLLAR, - ACTIONS(7089), 1, - sym__comment_word, - ACTIONS(5944), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7085), 2, + ACTIONS(6257), 1, sym__special_character, - sym_test_operator, - ACTIONS(7087), 2, + ACTIONS(6381), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(3309), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2349), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -156013,89 +156375,127 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116556] = 17, - ACTIONS(3), 1, + [113537] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(5922), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5928), 1, - anon_sym_DQUOTE, - ACTIONS(5932), 1, + ACTIONS(6312), 1, + aux_sym_concatenation_token1, + ACTIONS(6383), 1, + sym__concat, + STATE(2384), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1246), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(5934), 1, aux_sym_number_token2, - ACTIONS(5936), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5938), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5940), 1, anon_sym_BQUOTE, - ACTIONS(5942), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5952), 1, - sym__brace_start, - ACTIONS(7081), 1, sym_word, - ACTIONS(7089), 1, - sym__comment_word, - ACTIONS(7091), 1, - anon_sym_DOLLAR, - ACTIONS(5944), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7085), 2, + ACTIONS(1248), 19, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, - sym_test_operator, - ACTIONS(7087), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(3309), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116619] = 17, - ACTIONS(3), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [113582] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(2946), 1, + ACTIONS(6312), 1, + aux_sym_concatenation_token1, + ACTIONS(6385), 1, + sym__concat, + STATE(2384), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1252), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(2948), 1, aux_sym_number_token2, - ACTIONS(2952), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2962), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1254), 19, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(6424), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6428), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(6432), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6434), 1, - anon_sym_BQUOTE, - ACTIONS(6436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6869), 1, - sym_word, - ACTIONS(6875), 1, - sym__comment_word, - ACTIONS(7093), 1, - anon_sym_DOLLAR, - ACTIONS(6438), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6871), 2, + sym_test_operator, + [113627] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2045), 1, + anon_sym_LF, + ACTIONS(5483), 1, + anon_sym_DOLLAR, + ACTIONS(5487), 1, + anon_sym_DQUOTE, + ACTIONS(5489), 1, + aux_sym_number_token1, + ACTIONS(5491), 1, + aux_sym_number_token2, + ACTIONS(5493), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5495), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5497), 1, + anon_sym_BQUOTE, + ACTIONS(5499), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5505), 1, + sym__brace_start, + ACTIONS(6389), 1, sym__special_character, + ACTIONS(6391), 1, sym_test_operator, - ACTIONS(6873), 2, + STATE(3090), 1, + aux_sym__literal_repeat1, + ACTIONS(5479), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5501), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2310), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(6387), 3, sym_raw_string, sym_ansi_c_string, - STATE(1371), 9, + sym_word, + STATE(3139), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -156105,43 +156505,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116682] = 17, - ACTIONS(3), 1, + [113698] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(3100), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3106), 1, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(3110), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(3112), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(3114), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3122), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3124), 1, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(3126), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3132), 1, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(7095), 1, - sym_word, - ACTIONS(7097), 1, - anon_sym_DOLLAR, - ACTIONS(7103), 1, - sym__comment_word, - ACTIONS(3128), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7099), 2, + ACTIONS(6257), 1, sym__special_character, - sym_test_operator, - ACTIONS(7101), 2, + ACTIONS(6393), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(2118), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2334), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -156151,43 +156558,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116745] = 17, + [113771] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(2049), 1, + anon_sym_LF, + ACTIONS(5483), 1, + anon_sym_DOLLAR, + ACTIONS(5487), 1, + anon_sym_DQUOTE, + ACTIONS(5489), 1, aux_sym_number_token1, - ACTIONS(1787), 1, + ACTIONS(5491), 1, aux_sym_number_token2, - ACTIONS(1791), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1805), 1, - sym__brace_start, - ACTIONS(5811), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5815), 1, - anon_sym_DQUOTE, - ACTIONS(5819), 1, + ACTIONS(5493), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5821), 1, + ACTIONS(5495), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5497), 1, anon_sym_BQUOTE, - ACTIONS(5823), 1, + ACTIONS(5499), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7105), 1, - sym_word, - ACTIONS(7107), 1, - anon_sym_DOLLAR, - ACTIONS(7113), 1, - sym__comment_word, - ACTIONS(5825), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7109), 2, + ACTIONS(5505), 1, + sym__brace_start, + ACTIONS(6389), 1, sym__special_character, + ACTIONS(6391), 1, sym_test_operator, - ACTIONS(7111), 2, + STATE(3090), 1, + aux_sym__literal_repeat1, + ACTIONS(5479), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5501), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2310), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(6387), 3, sym_raw_string, sym_ansi_c_string, - STATE(1134), 9, + sym_word, + STATE(3139), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -156197,89 +156610,124 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116808] = 17, - ACTIONS(3), 1, + [113842] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(5625), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5631), 1, - anon_sym_DQUOTE, - ACTIONS(5635), 1, - aux_sym_number_token1, - ACTIONS(5637), 1, - aux_sym_number_token2, - ACTIONS(5639), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5641), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5643), 1, + ACTIONS(1272), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1274), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [113881] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(2376), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6312), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1242), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(5645), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5655), 1, - sym__brace_start, - ACTIONS(7115), 1, sym_word, - ACTIONS(7117), 1, - anon_sym_DOLLAR, - ACTIONS(7123), 1, - sym__comment_word, - ACTIONS(5647), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7119), 2, + ACTIONS(1244), 19, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, - sym_test_operator, - ACTIONS(7121), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2783), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116871] = 17, - ACTIONS(3), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [113924] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(3100), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3102), 1, + ACTIONS(4234), 1, + sym_word, + ACTIONS(4240), 1, anon_sym_DOLLAR, - ACTIONS(3106), 1, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(3110), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(3112), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(3114), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3122), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3124), 1, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(3126), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3132), 1, + ACTIONS(4262), 1, + sym_test_operator, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(7095), 1, - sym_word, - ACTIONS(7103), 1, - sym__comment_word, - ACTIONS(3128), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7099), 2, + ACTIONS(6257), 1, sym__special_character, - sym_test_operator, - ACTIONS(7101), 2, + ACTIONS(6395), 1, + anon_sym_RPAREN, + STATE(3355), 1, + aux_sym__literal_repeat1, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4246), 2, sym_raw_string, sym_ansi_c_string, - STATE(2118), 9, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2349), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3102), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -156289,172 +156737,124 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116934] = 8, - ACTIONS(3), 1, + [113997] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(3221), 1, - anon_sym_LT_LT_LT, - ACTIONS(7125), 1, - anon_sym_LF, - ACTIONS(7131), 1, - sym_file_descriptor, - ACTIONS(3215), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2559), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7129), 8, - anon_sym_GT_GT, + STATE(2384), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6397), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1258), 9, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7127), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP, - [116979] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2980), 1, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(2982), 1, aux_sym_number_token2, - ACTIONS(2986), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2996), 1, - sym__brace_start, - ACTIONS(6458), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6462), 1, - anon_sym_DQUOTE, - ACTIONS(6466), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6468), 1, anon_sym_BQUOTE, - ACTIONS(6470), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7133), 1, sym_word, - ACTIONS(7135), 1, - anon_sym_DOLLAR, - ACTIONS(7141), 1, - sym__comment_word, - ACTIONS(6472), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7137), 2, + ACTIONS(1263), 19, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, - sym_test_operator, - ACTIONS(7139), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(1426), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [117042] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5765), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5771), 1, - anon_sym_DQUOTE, - ACTIONS(5775), 1, - aux_sym_number_token1, - ACTIONS(5777), 1, - aux_sym_number_token2, - ACTIONS(5779), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5781), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5783), 1, - anon_sym_BQUOTE, - ACTIONS(5785), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5795), 1, - sym__brace_start, - ACTIONS(6877), 1, - sym_word, - ACTIONS(6885), 1, - sym__comment_word, - ACTIONS(7143), 1, - anon_sym_DOLLAR, - ACTIONS(5787), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6881), 2, - sym__special_character, sym_test_operator, - ACTIONS(6883), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2641), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [117105] = 17, - ACTIONS(3), 1, + [114040] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(5765), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5771), 1, + ACTIONS(5755), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(6259), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6263), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6261), 17, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [114083] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5791), 1, + anon_sym_DOLLAR, + ACTIONS(5793), 1, + sym__special_character, + ACTIONS(5795), 1, anon_sym_DQUOTE, - ACTIONS(5775), 1, + ACTIONS(5799), 1, aux_sym_number_token1, - ACTIONS(5777), 1, + ACTIONS(5801), 1, aux_sym_number_token2, - ACTIONS(5779), 1, + ACTIONS(5803), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5781), 1, + ACTIONS(5805), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5783), 1, + ACTIONS(5807), 1, anon_sym_BQUOTE, - ACTIONS(5785), 1, + ACTIONS(5809), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5795), 1, + ACTIONS(5819), 1, sym__brace_start, - ACTIONS(6877), 1, + ACTIONS(6400), 1, sym_word, - ACTIONS(6885), 1, - sym__comment_word, - ACTIONS(7145), 1, - anon_sym_DOLLAR, + ACTIONS(6404), 1, + sym_test_operator, + STATE(1443), 1, + aux_sym__literal_repeat1, ACTIONS(5787), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5811), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6881), 2, - sym__special_character, - sym_test_operator, - ACTIONS(6883), 2, + ACTIONS(6402), 2, sym_raw_string, sym_ansi_c_string, - STATE(2641), 9, + STATE(626), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1580), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -156464,33 +156864,38 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117168] = 6, + [114153] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6808), 1, - aux_sym_concatenation_token1, - ACTIONS(6810), 1, - sym__concat, - STATE(2507), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3789), 3, + ACTIONS(1213), 1, sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(3787), 21, - anon_sym_SEMI, + ACTIONS(6408), 1, + anon_sym_DQUOTE, + STATE(3535), 1, + sym_string, + ACTIONS(6410), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6406), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156498,90 +156903,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - [117209] = 17, + [114199] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5994), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5996), 1, - anon_sym_DOLLAR, - ACTIONS(6000), 1, + ACTIONS(1217), 1, + sym__brace_start, + ACTIONS(5487), 1, anon_sym_DQUOTE, - ACTIONS(6004), 1, + STATE(2952), 1, + sym_string, + ACTIONS(6032), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6030), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 16, + anon_sym_LPAREN_LPAREN, + anon_sym_LF, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(6006), 1, aux_sym_number_token2, - ACTIONS(6008), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6010), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6012), 1, anon_sym_BQUOTE, - ACTIONS(6014), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6024), 1, - sym__brace_start, - ACTIONS(7147), 1, - sym_word, - ACTIONS(7153), 1, - sym__comment_word, - ACTIONS(6016), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7149), 2, - sym__special_character, + sym_word, sym_test_operator, - ACTIONS(7151), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2623), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [117272] = 17, - ACTIONS(3), 1, + [114245] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(1284), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(1787), 1, aux_sym_number_token2, - ACTIONS(1791), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1805), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1286), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(5811), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5815), 1, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(5819), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(5821), 1, - anon_sym_BQUOTE, - ACTIONS(5823), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7105), 1, - sym_word, - ACTIONS(7113), 1, - sym__comment_word, - ACTIONS(7155), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [114283] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 1, + sym__brace_start, + ACTIONS(5487), 1, + anon_sym_DQUOTE, + STATE(2952), 1, + sym_string, + ACTIONS(6032), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6030), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(5825), 2, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 16, + anon_sym_LPAREN_LPAREN, + anon_sym_LF, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7109), 2, + sym_word, + sym_test_operator, + [114329] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(360), 1, + anon_sym_DOLLAR, + ACTIONS(364), 1, + anon_sym_DQUOTE, + ACTIONS(368), 1, + aux_sym_number_token1, + ACTIONS(370), 1, + aux_sym_number_token2, + ACTIONS(372), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(374), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(376), 1, + anon_sym_BQUOTE, + ACTIONS(378), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(388), 1, + sym__brace_start, + ACTIONS(4170), 1, sym__special_character, + ACTIONS(6412), 1, + sym_word, + ACTIONS(6416), 1, sym_test_operator, - ACTIONS(7111), 2, + ACTIONS(6418), 1, + sym_regex, + STATE(1139), 1, + aux_sym__literal_repeat1, + STATE(1278), 1, + sym_concatenation, + ACTIONS(340), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(380), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6414), 2, sym_raw_string, sym_ansi_c_string, - STATE(1134), 9, + STATE(1377), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -156591,78 +157068,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117335] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7161), 1, - sym_variable_name, - STATE(4146), 1, - sym_subscript, - ACTIONS(7157), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2510), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7159), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [117376] = 17, - ACTIONS(3), 1, + [114401] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(2980), 1, + ACTIONS(360), 1, + anon_sym_DOLLAR, + ACTIONS(364), 1, + anon_sym_DQUOTE, + ACTIONS(368), 1, aux_sym_number_token1, - ACTIONS(2982), 1, + ACTIONS(370), 1, aux_sym_number_token2, - ACTIONS(2986), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2996), 1, - sym__brace_start, - ACTIONS(6458), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6462), 1, - anon_sym_DQUOTE, - ACTIONS(6466), 1, + ACTIONS(372), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6468), 1, + ACTIONS(374), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(376), 1, anon_sym_BQUOTE, - ACTIONS(6470), 1, + ACTIONS(378), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7133), 1, + ACTIONS(388), 1, + sym__brace_start, + ACTIONS(4217), 1, + sym__special_character, + ACTIONS(6418), 1, + sym_regex, + ACTIONS(6420), 1, sym_word, - ACTIONS(7141), 1, - sym__comment_word, - ACTIONS(7163), 1, - anon_sym_DOLLAR, - ACTIONS(6472), 2, + ACTIONS(6424), 1, + sym_test_operator, + STATE(1139), 1, + aux_sym__literal_repeat1, + STATE(1278), 1, + sym_concatenation, + ACTIONS(340), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(380), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7137), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7139), 2, + ACTIONS(6422), 2, sym_raw_string, sym_ansi_c_string, - STATE(1426), 9, + STATE(935), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -156672,43 +157120,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117439] = 17, - ACTIONS(3), 1, + [114473] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(5837), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5839), 1, + ACTIONS(6040), 1, anon_sym_DOLLAR, - ACTIONS(5843), 1, + ACTIONS(6042), 1, + sym__special_character, + ACTIONS(6044), 1, anon_sym_DQUOTE, - ACTIONS(5847), 1, + ACTIONS(6048), 1, aux_sym_number_token1, - ACTIONS(5849), 1, + ACTIONS(6050), 1, aux_sym_number_token2, - ACTIONS(5851), 1, + ACTIONS(6052), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5853), 1, + ACTIONS(6054), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5855), 1, + ACTIONS(6056), 1, anon_sym_BQUOTE, - ACTIONS(5857), 1, + ACTIONS(6058), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5867), 1, + ACTIONS(6068), 1, sym__brace_start, - ACTIONS(7165), 1, + ACTIONS(6426), 1, sym_word, - ACTIONS(7171), 1, - sym__comment_word, - ACTIONS(5859), 2, + ACTIONS(6430), 1, + sym_test_operator, + STATE(2495), 1, + aux_sym__literal_repeat1, + ACTIONS(6036), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6060), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7167), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7169), 2, + ACTIONS(6428), 2, sym_raw_string, sym_ansi_c_string, - STATE(1162), 9, + STATE(1467), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2368), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -156718,43 +157171,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117502] = 17, - ACTIONS(3), 1, + [114543] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(5510), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5516), 1, + ACTIONS(6040), 1, + anon_sym_DOLLAR, + ACTIONS(6042), 1, + sym__special_character, + ACTIONS(6044), 1, anon_sym_DQUOTE, - ACTIONS(5520), 1, + ACTIONS(6048), 1, aux_sym_number_token1, - ACTIONS(5522), 1, + ACTIONS(6050), 1, aux_sym_number_token2, - ACTIONS(5524), 1, + ACTIONS(6052), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5526), 1, + ACTIONS(6054), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5528), 1, + ACTIONS(6056), 1, anon_sym_BQUOTE, - ACTIONS(5530), 1, + ACTIONS(6058), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5540), 1, + ACTIONS(6068), 1, sym__brace_start, - ACTIONS(7005), 1, + ACTIONS(6426), 1, sym_word, - ACTIONS(7013), 1, - sym__comment_word, - ACTIONS(7173), 1, - anon_sym_DOLLAR, - ACTIONS(5532), 2, + ACTIONS(6430), 1, + sym_test_operator, + STATE(2495), 1, + aux_sym__literal_repeat1, + ACTIONS(6036), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6060), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7009), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7011), 2, + ACTIONS(6428), 2, sym_raw_string, sym_ansi_c_string, - STATE(2362), 9, + STATE(1520), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2368), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -156764,43 +157222,83 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117565] = 17, - ACTIONS(3), 1, + [114613] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5727), 1, + ACTIONS(1276), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(5731), 1, - anon_sym_DQUOTE, - ACTIONS(5735), 1, aux_sym_number_token1, - ACTIONS(5737), 1, aux_sym_number_token2, - ACTIONS(5739), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5741), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5743), 1, anon_sym_BQUOTE, - ACTIONS(5745), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, - sym__brace_start, - ACTIONS(6933), 1, sym_word, - ACTIONS(6941), 1, - sym__comment_word, - ACTIONS(5747), 2, + ACTIONS(1278), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6937), 2, + sym_test_operator, + [114651] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(2697), 1, + sym_word, + ACTIONS(2701), 1, + anon_sym_DOLLAR, + ACTIONS(2707), 1, + aux_sym_number_token1, + ACTIONS(2709), 1, + aux_sym_number_token2, + ACTIONS(2713), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2723), 1, + sym__brace_start, + ACTIONS(6434), 1, sym__special_character, + ACTIONS(6436), 1, + anon_sym_DQUOTE, + ACTIONS(6440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6442), 1, + anon_sym_BQUOTE, + ACTIONS(6444), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6448), 1, sym_test_operator, - ACTIONS(6939), 2, + STATE(1386), 1, + aux_sym__literal_repeat1, + ACTIONS(6432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6438), 2, sym_raw_string, sym_ansi_c_string, - STATE(1249), 9, + ACTIONS(6446), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(522), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1179), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -156810,43 +157308,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117628] = 17, - ACTIONS(3), 1, + [114721] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(633), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(641), 1, - anon_sym_DQUOTE, - ACTIONS(645), 1, + ACTIONS(2697), 1, + sym_word, + ACTIONS(2701), 1, + anon_sym_DOLLAR, + ACTIONS(2707), 1, aux_sym_number_token1, - ACTIONS(647), 1, + ACTIONS(2709), 1, aux_sym_number_token2, - ACTIONS(649), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, + ACTIONS(2713), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(655), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(661), 1, + ACTIONS(2723), 1, sym__brace_start, - ACTIONS(4852), 1, + ACTIONS(6434), 1, + sym__special_character, + ACTIONS(6436), 1, + anon_sym_DQUOTE, + ACTIONS(6440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6442), 1, anon_sym_BQUOTE, - ACTIONS(6588), 1, - sym_word, - ACTIONS(6592), 1, - sym__comment_word, - ACTIONS(7175), 1, - anon_sym_DOLLAR, - ACTIONS(657), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6594), 2, + ACTIONS(6444), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6448), 1, + sym_test_operator, + STATE(1386), 1, + aux_sym__literal_repeat1, + ACTIONS(6432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6438), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6596), 2, - sym__special_character, - sym_test_operator, - STATE(1643), 9, + ACTIONS(6446), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(526), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1179), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -156856,43 +157359,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117691] = 17, - ACTIONS(3), 1, + [114791] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(4826), 1, + anon_sym_DOLLAR, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(1787), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(1791), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1805), 1, + ACTIONS(4850), 1, sym__brace_start, - ACTIONS(5811), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5815), 1, + ACTIONS(5419), 1, + sym__special_character, + ACTIONS(5421), 1, anon_sym_DQUOTE, - ACTIONS(5819), 1, + ACTIONS(5425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5821), 1, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(5823), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7105), 1, + ACTIONS(6450), 1, sym_word, - ACTIONS(7113), 1, - sym__comment_word, - ACTIONS(7177), 1, - anon_sym_DOLLAR, - ACTIONS(5825), 2, + ACTIONS(6454), 1, + sym_test_operator, + ACTIONS(6456), 1, + sym_extglob_pattern, + STATE(4071), 1, + aux_sym__literal_repeat1, + STATE(4285), 1, + sym_concatenation, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7109), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7111), 2, + ACTIONS(6452), 2, sym_raw_string, sym_ansi_c_string, - STATE(1134), 9, + STATE(4042), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -156902,43 +157411,83 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117754] = 17, - ACTIONS(3), 1, + [114863] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(1280), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(2506), 1, aux_sym_number_token2, - ACTIONS(2510), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2522), 1, - sym__brace_start, - ACTIONS(7179), 1, + anon_sym_BQUOTE, sym_word, - ACTIONS(7181), 1, + ACTIONS(1282), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7183), 1, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [114901] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5911), 1, anon_sym_DOLLAR, - ACTIONS(7187), 1, + ACTIONS(5913), 1, + sym__special_character, + ACTIONS(5915), 1, anon_sym_DQUOTE, - ACTIONS(7191), 1, + ACTIONS(5919), 1, + aux_sym_number_token1, + ACTIONS(5921), 1, + aux_sym_number_token2, + ACTIONS(5923), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7193), 1, + ACTIONS(5925), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5927), 1, anon_sym_BQUOTE, - ACTIONS(7195), 1, + ACTIONS(5929), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7199), 1, - sym__comment_word, - ACTIONS(7185), 2, - sym__special_character, + ACTIONS(5939), 1, + sym__brace_start, + ACTIONS(6458), 1, + sym_word, + ACTIONS(6462), 1, sym_test_operator, - ACTIONS(7189), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7197), 2, + STATE(1204), 1, + aux_sym__literal_repeat1, + ACTIONS(5907), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5931), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1317), 9, + ACTIONS(6460), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(497), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(942), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -156948,83 +157497,88 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117817] = 11, + [114971] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3221), 1, - anon_sym_LT_LT_LT, - ACTIONS(7131), 1, + ACTIONS(1217), 1, sym_file_descriptor, - ACTIONS(7201), 1, - anon_sym_LF, - ACTIONS(3213), 2, + ACTIONS(6408), 1, + anon_sym_DQUOTE, + STATE(3535), 1, + sym_string, + ACTIONS(6410), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6406), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3215), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3219), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3244), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(2189), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(2450), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7129), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [117868] = 17, - ACTIONS(3), 1, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [115017] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4097), 1, + ACTIONS(442), 1, + anon_sym_DOLLAR, + ACTIONS(446), 1, anon_sym_DQUOTE, - ACTIONS(4101), 1, + ACTIONS(450), 1, aux_sym_number_token1, - ACTIONS(4103), 1, + ACTIONS(452), 1, aux_sym_number_token2, - ACTIONS(4105), 1, + ACTIONS(454), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, + ACTIONS(456), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, + ACTIONS(458), 1, anon_sym_BQUOTE, - ACTIONS(4111), 1, + ACTIONS(460), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4117), 1, + ACTIONS(470), 1, sym__brace_start, - ACTIONS(7203), 1, + ACTIONS(4226), 1, + sym__special_character, + ACTIONS(6464), 1, sym_word, - ACTIONS(7205), 1, - anon_sym_DOLLAR, - ACTIONS(7211), 1, - sym__comment_word, - ACTIONS(4113), 2, + ACTIONS(6468), 1, + sym_test_operator, + ACTIONS(6470), 1, + sym_regex, + STATE(792), 1, + aux_sym__literal_repeat1, + STATE(950), 1, + sym_concatenation, + ACTIONS(406), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(462), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7207), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7209), 2, + ACTIONS(6466), 2, sym_raw_string, sym_ansi_c_string, - STATE(3144), 9, + STATE(681), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157034,43 +157588,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117931] = 17, - ACTIONS(3), 1, + [115089] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(6382), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, + ACTIONS(5711), 1, + anon_sym_DOLLAR, + ACTIONS(5713), 1, + sym__special_character, + ACTIONS(5715), 1, anon_sym_DQUOTE, - ACTIONS(6392), 1, + ACTIONS(5719), 1, aux_sym_number_token1, - ACTIONS(6394), 1, + ACTIONS(5721), 1, aux_sym_number_token2, - ACTIONS(6396), 1, + ACTIONS(5723), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6398), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6400), 1, + ACTIONS(5727), 1, anon_sym_BQUOTE, - ACTIONS(6402), 1, + ACTIONS(5729), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6408), 1, + ACTIONS(5739), 1, sym__brace_start, - ACTIONS(7213), 1, + ACTIONS(6472), 1, sym_word, - ACTIONS(7215), 1, - anon_sym_DOLLAR, - ACTIONS(7221), 1, - sym__comment_word, - ACTIONS(6404), 2, + ACTIONS(6476), 1, + sym_test_operator, + STATE(1438), 1, + aux_sym__literal_repeat1, + ACTIONS(5707), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5731), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7217), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7219), 2, + ACTIONS(6474), 2, sym_raw_string, sym_ansi_c_string, - STATE(1702), 9, + STATE(520), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157080,43 +157639,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117994] = 17, - ACTIONS(3), 1, + [115159] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(1535), 1, + ACTIONS(6478), 1, + sym_word, + ACTIONS(6482), 1, anon_sym_DOLLAR, - ACTIONS(1541), 1, + ACTIONS(6484), 1, + sym__special_character, + ACTIONS(6486), 1, + anon_sym_DQUOTE, + ACTIONS(6490), 1, aux_sym_number_token1, - ACTIONS(1543), 1, + ACTIONS(6492), 1, aux_sym_number_token2, - ACTIONS(1547), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1561), 1, - sym__brace_start, - ACTIONS(5699), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5703), 1, - anon_sym_DQUOTE, - ACTIONS(5707), 1, + ACTIONS(6494), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5709), 1, + ACTIONS(6496), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6498), 1, anon_sym_BQUOTE, - ACTIONS(5711), 1, + ACTIONS(6500), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7223), 1, - sym_word, - ACTIONS(7229), 1, - sym__comment_word, - ACTIONS(5713), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7225), 2, - sym__special_character, + ACTIONS(6504), 1, sym_test_operator, - ACTIONS(7227), 2, + ACTIONS(6506), 1, + sym__brace_start, + STATE(1968), 1, + aux_sym__literal_repeat1, + ACTIONS(6480), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6488), 2, sym_raw_string, sym_ansi_c_string, - STATE(954), 9, + ACTIONS(6502), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(620), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1620), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157126,43 +157690,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118057] = 17, - ACTIONS(3), 1, + [115229] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(6478), 1, + sym_word, + ACTIONS(6482), 1, anon_sym_DOLLAR, - ACTIONS(2980), 1, + ACTIONS(6484), 1, + sym__special_character, + ACTIONS(6486), 1, + anon_sym_DQUOTE, + ACTIONS(6490), 1, aux_sym_number_token1, - ACTIONS(2982), 1, + ACTIONS(6492), 1, aux_sym_number_token2, - ACTIONS(2986), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2996), 1, - sym__brace_start, - ACTIONS(6458), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6462), 1, - anon_sym_DQUOTE, - ACTIONS(6466), 1, + ACTIONS(6494), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6468), 1, + ACTIONS(6496), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6498), 1, anon_sym_BQUOTE, - ACTIONS(6470), 1, + ACTIONS(6500), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7133), 1, - sym_word, - ACTIONS(7141), 1, - sym__comment_word, - ACTIONS(6472), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7137), 2, - sym__special_character, + ACTIONS(6504), 1, sym_test_operator, - ACTIONS(7139), 2, + ACTIONS(6506), 1, + sym__brace_start, + STATE(1968), 1, + aux_sym__literal_repeat1, + ACTIONS(6480), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6488), 2, sym_raw_string, sym_ansi_c_string, - STATE(1426), 9, + ACTIONS(6502), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(627), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1620), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157172,43 +157741,83 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118120] = 17, - ACTIONS(3), 1, + [115299] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(466), 1, + ACTIONS(1294), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1296), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(472), 1, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [115337] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5791), 1, + anon_sym_DOLLAR, + ACTIONS(5793), 1, + sym__special_character, + ACTIONS(5795), 1, anon_sym_DQUOTE, - ACTIONS(476), 1, + ACTIONS(5799), 1, aux_sym_number_token1, - ACTIONS(478), 1, + ACTIONS(5801), 1, aux_sym_number_token2, - ACTIONS(480), 1, + ACTIONS(5803), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(482), 1, + ACTIONS(5805), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(484), 1, + ACTIONS(5807), 1, anon_sym_BQUOTE, - ACTIONS(486), 1, + ACTIONS(5809), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(496), 1, + ACTIONS(5819), 1, sym__brace_start, - ACTIONS(7231), 1, + ACTIONS(6400), 1, sym_word, - ACTIONS(7233), 1, - anon_sym_DOLLAR, - ACTIONS(7239), 1, - sym__comment_word, - ACTIONS(488), 2, + ACTIONS(6404), 1, + sym_test_operator, + STATE(1443), 1, + aux_sym__literal_repeat1, + ACTIONS(5787), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5811), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7235), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7237), 2, + ACTIONS(6402), 2, sym_raw_string, sym_ansi_c_string, - STATE(760), 9, + STATE(622), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1580), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157218,43 +157827,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118183] = 17, - ACTIONS(3), 1, + [115407] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(5625), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5631), 1, + ACTIONS(1043), 1, + anon_sym_DOLLAR, + ACTIONS(1047), 1, anon_sym_DQUOTE, - ACTIONS(5635), 1, + ACTIONS(1051), 1, aux_sym_number_token1, - ACTIONS(5637), 1, + ACTIONS(1053), 1, aux_sym_number_token2, - ACTIONS(5639), 1, + ACTIONS(1055), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5641), 1, + ACTIONS(1057), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5643), 1, + ACTIONS(1059), 1, anon_sym_BQUOTE, - ACTIONS(5645), 1, + ACTIONS(1061), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5655), 1, + ACTIONS(1069), 1, sym__brace_start, - ACTIONS(7115), 1, + ACTIONS(3218), 1, + sym__special_character, + ACTIONS(6508), 1, sym_word, - ACTIONS(7123), 1, - sym__comment_word, - ACTIONS(7241), 1, - anon_sym_DOLLAR, - ACTIONS(5647), 2, + ACTIONS(6512), 1, + sym_test_operator, + ACTIONS(6514), 1, + sym_regex, + STATE(1826), 1, + aux_sym__literal_repeat1, + STATE(2014), 1, + sym_concatenation, + ACTIONS(1033), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1063), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7119), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7121), 2, + ACTIONS(6510), 2, sym_raw_string, sym_ansi_c_string, - STATE(2783), 9, + STATE(1460), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157264,43 +157879,84 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118246] = 17, - ACTIONS(3), 1, + [115479] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(1298), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(1787), 1, aux_sym_number_token2, - ACTIONS(1791), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1805), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1300), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(5811), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5815), 1, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(5819), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(5821), 1, - anon_sym_BQUOTE, - ACTIONS(5823), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7105), 1, - sym_word, - ACTIONS(7113), 1, - sym__comment_word, - ACTIONS(7243), 1, - anon_sym_DOLLAR, - ACTIONS(5825), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7109), 2, + sym_test_operator, + [115517] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4826), 1, + anon_sym_DOLLAR, + ACTIONS(4832), 1, + aux_sym_number_token1, + ACTIONS(4834), 1, + aux_sym_number_token2, + ACTIONS(4838), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(5419), 1, sym__special_character, + ACTIONS(5421), 1, + anon_sym_DQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5427), 1, + anon_sym_BQUOTE, + ACTIONS(5429), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6516), 1, + sym_word, + ACTIONS(6520), 1, sym_test_operator, - ACTIONS(7111), 2, + ACTIONS(6522), 1, + sym_extglob_pattern, + STATE(4083), 1, + aux_sym__literal_repeat1, + STATE(4259), 1, + sym_concatenation, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5431), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6518), 2, sym_raw_string, sym_ansi_c_string, - STATE(1134), 9, + STATE(4025), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157310,43 +157966,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118309] = 17, - ACTIONS(3), 1, + [115589] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(466), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(472), 1, + ACTIONS(5711), 1, + anon_sym_DOLLAR, + ACTIONS(5713), 1, + sym__special_character, + ACTIONS(5715), 1, anon_sym_DQUOTE, - ACTIONS(476), 1, + ACTIONS(5719), 1, aux_sym_number_token1, - ACTIONS(478), 1, + ACTIONS(5721), 1, aux_sym_number_token2, - ACTIONS(480), 1, + ACTIONS(5723), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(482), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(484), 1, + ACTIONS(5727), 1, anon_sym_BQUOTE, - ACTIONS(486), 1, + ACTIONS(5729), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(496), 1, + ACTIONS(5739), 1, sym__brace_start, - ACTIONS(7231), 1, + ACTIONS(6472), 1, sym_word, - ACTIONS(7239), 1, - sym__comment_word, - ACTIONS(7245), 1, - anon_sym_DOLLAR, - ACTIONS(488), 2, + ACTIONS(6476), 1, + sym_test_operator, + STATE(1438), 1, + aux_sym__literal_repeat1, + ACTIONS(5707), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5731), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7235), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7237), 2, + ACTIONS(6474), 2, sym_raw_string, sym_ansi_c_string, - STATE(760), 9, + STATE(517), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157356,89 +158017,153 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118372] = 17, - ACTIONS(3), 1, + [115659] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(1302), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(2506), 1, aux_sym_number_token2, - ACTIONS(2510), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2522), 1, - sym__brace_start, - ACTIONS(7179), 1, + anon_sym_BQUOTE, sym_word, - ACTIONS(7181), 1, + ACTIONS(1304), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7187), 1, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(7191), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7193), 1, - anon_sym_BQUOTE, - ACTIONS(7195), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7199), 1, - sym__comment_word, - ACTIONS(7247), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [115697] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1310), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(7185), 2, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1312), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, - sym_test_operator, - ACTIONS(7189), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(7197), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1317), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [118435] = 17, - ACTIONS(3), 1, + sym_test_operator, + [115735] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(6382), 1, + ACTIONS(1314), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1316), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6384), 1, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [115773] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5911), 1, anon_sym_DOLLAR, - ACTIONS(6388), 1, + ACTIONS(5913), 1, + sym__special_character, + ACTIONS(5915), 1, anon_sym_DQUOTE, - ACTIONS(6392), 1, + ACTIONS(5919), 1, aux_sym_number_token1, - ACTIONS(6394), 1, + ACTIONS(5921), 1, aux_sym_number_token2, - ACTIONS(6396), 1, + ACTIONS(5923), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6398), 1, + ACTIONS(5925), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6400), 1, + ACTIONS(5927), 1, anon_sym_BQUOTE, - ACTIONS(6402), 1, + ACTIONS(5929), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6408), 1, + ACTIONS(5939), 1, sym__brace_start, - ACTIONS(7213), 1, + ACTIONS(6458), 1, sym_word, - ACTIONS(7221), 1, - sym__comment_word, - ACTIONS(6404), 2, + ACTIONS(6462), 1, + sym_test_operator, + STATE(1204), 1, + aux_sym__literal_repeat1, + ACTIONS(5907), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5931), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7217), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7219), 2, + ACTIONS(6460), 2, sym_raw_string, sym_ansi_c_string, - STATE(1702), 9, + STATE(500), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(942), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157448,43 +158173,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118498] = 17, - ACTIONS(3), 1, + [115843] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(326), 1, + ACTIONS(2470), 1, + sym_word, + ACTIONS(2474), 1, anon_sym_DOLLAR, - ACTIONS(332), 1, + ACTIONS(2480), 1, aux_sym_number_token1, - ACTIONS(334), 1, + ACTIONS(2482), 1, aux_sym_number_token2, - ACTIONS(338), 1, + ACTIONS(2486), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, + ACTIONS(2496), 1, sym__brace_start, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, + ACTIONS(6526), 1, + sym__special_character, + ACTIONS(6528), 1, anon_sym_DQUOTE, - ACTIONS(1167), 1, + ACTIONS(6532), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4799), 1, + ACTIONS(6534), 1, anon_sym_BQUOTE, - ACTIONS(7031), 1, - sym_word, - ACTIONS(7039), 1, - sym__comment_word, - ACTIONS(1171), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7035), 2, - sym__special_character, + ACTIONS(6536), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6540), 1, sym_test_operator, - ACTIONS(7037), 2, + STATE(1254), 1, + aux_sym__literal_repeat1, + ACTIONS(6524), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6530), 2, sym_raw_string, sym_ansi_c_string, - STATE(1343), 9, + ACTIONS(6538), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(507), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(913), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157494,43 +158224,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118561] = 17, - ACTIONS(3), 1, + [115913] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(2322), 1, + ACTIONS(5477), 1, + sym_word, + ACTIONS(5483), 1, anon_sym_DOLLAR, - ACTIONS(2328), 1, + ACTIONS(5489), 1, aux_sym_number_token1, - ACTIONS(2330), 1, + ACTIONS(5491), 1, aux_sym_number_token2, - ACTIONS(2334), 1, + ACTIONS(5495), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2346), 1, + ACTIONS(5505), 1, sym__brace_start, - ACTIONS(7249), 1, - sym_word, - ACTIONS(7251), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7255), 1, + ACTIONS(6544), 1, + sym__special_character, + ACTIONS(6546), 1, anon_sym_DQUOTE, - ACTIONS(7259), 1, + ACTIONS(6550), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7261), 1, + ACTIONS(6552), 1, anon_sym_BQUOTE, - ACTIONS(7263), 1, + ACTIONS(6554), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7267), 1, - sym__comment_word, - ACTIONS(7253), 2, - sym__special_character, + ACTIONS(6558), 1, sym_test_operator, - ACTIONS(7257), 2, + STATE(3090), 1, + aux_sym__literal_repeat1, + ACTIONS(6542), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6548), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7265), 2, + ACTIONS(6556), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1095), 9, + STATE(2233), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2811), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157540,43 +158275,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118624] = 17, - ACTIONS(3), 1, + [115983] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(2726), 1, + ACTIONS(2470), 1, + sym_word, + ACTIONS(2474), 1, + anon_sym_DOLLAR, + ACTIONS(2480), 1, aux_sym_number_token1, - ACTIONS(2728), 1, + ACTIONS(2482), 1, aux_sym_number_token2, - ACTIONS(2732), 1, + ACTIONS(2486), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2744), 1, + ACTIONS(2496), 1, sym__brace_start, - ACTIONS(6959), 1, - sym_word, - ACTIONS(6961), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6967), 1, + ACTIONS(6526), 1, + sym__special_character, + ACTIONS(6528), 1, anon_sym_DQUOTE, - ACTIONS(6971), 1, + ACTIONS(6532), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6973), 1, + ACTIONS(6534), 1, anon_sym_BQUOTE, - ACTIONS(6975), 1, + ACTIONS(6536), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6979), 1, - sym__comment_word, - ACTIONS(7269), 1, - anon_sym_DOLLAR, - ACTIONS(6965), 2, - sym__special_character, + ACTIONS(6540), 1, sym_test_operator, - ACTIONS(6969), 2, + STATE(1254), 1, + aux_sym__literal_repeat1, + ACTIONS(6524), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6530), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6977), 2, + ACTIONS(6538), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1235), 9, + STATE(510), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(913), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157586,89 +158326,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118687] = 17, - ACTIONS(3), 1, + [116053] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(3100), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3106), 1, - anon_sym_DQUOTE, - ACTIONS(3110), 1, + ACTIONS(2913), 1, + anon_sym_DOLLAR, + ACTIONS(2919), 1, aux_sym_number_token1, - ACTIONS(3112), 1, + ACTIONS(2921), 1, aux_sym_number_token2, - ACTIONS(3114), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3122), 1, + ACTIONS(2925), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3124), 1, - anon_sym_BQUOTE, - ACTIONS(3126), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3132), 1, + ACTIONS(2935), 1, sym__brace_start, - ACTIONS(7095), 1, + ACTIONS(3471), 1, sym_word, - ACTIONS(7103), 1, - sym__comment_word, - ACTIONS(7271), 1, - anon_sym_DOLLAR, - ACTIONS(3128), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7099), 2, + ACTIONS(6562), 1, sym__special_character, - sym_test_operator, - ACTIONS(7101), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2118), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [118750] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6382), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, + ACTIONS(6564), 1, anon_sym_DQUOTE, - ACTIONS(6392), 1, - aux_sym_number_token1, - ACTIONS(6394), 1, - aux_sym_number_token2, - ACTIONS(6396), 1, + ACTIONS(6568), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6398), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6400), 1, + ACTIONS(6570), 1, anon_sym_BQUOTE, - ACTIONS(6402), 1, + ACTIONS(6572), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6408), 1, - sym__brace_start, - ACTIONS(7213), 1, - sym_word, - ACTIONS(7221), 1, - sym__comment_word, - ACTIONS(7273), 1, - anon_sym_DOLLAR, - ACTIONS(6404), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7217), 2, - sym__special_character, + ACTIONS(6576), 1, sym_test_operator, - ACTIONS(7219), 2, + STATE(1519), 1, + aux_sym__literal_repeat1, + ACTIONS(6560), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6566), 2, sym_raw_string, sym_ansi_c_string, - STATE(1702), 9, + ACTIONS(6574), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(649), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1878), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157678,89 +158377,83 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118813] = 17, - ACTIONS(3), 1, + [116123] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(2470), 1, + ACTIONS(1258), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(2476), 1, aux_sym_number_token1, - ACTIONS(2478), 1, aux_sym_number_token2, - ACTIONS(2482), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2492), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1263), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(6496), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6500), 1, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(6504), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6506), 1, - anon_sym_BQUOTE, - ACTIONS(6508), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7275), 1, - sym_word, - ACTIONS(7281), 1, - sym__comment_word, - ACTIONS(6510), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7277), 2, - sym__special_character, sym_test_operator, - ACTIONS(7279), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1280), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [118876] = 17, - ACTIONS(3), 1, + [116161] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(1731), 1, + ACTIONS(2913), 1, + anon_sym_DOLLAR, + ACTIONS(2919), 1, aux_sym_number_token1, - ACTIONS(1733), 1, + ACTIONS(2921), 1, aux_sym_number_token2, - ACTIONS(1737), 1, + ACTIONS(2925), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1751), 1, + ACTIONS(2935), 1, sym__brace_start, - ACTIONS(5597), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5601), 1, + ACTIONS(3471), 1, + sym_word, + ACTIONS(6562), 1, + sym__special_character, + ACTIONS(6564), 1, anon_sym_DQUOTE, - ACTIONS(5605), 1, + ACTIONS(6568), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5607), 1, + ACTIONS(6570), 1, anon_sym_BQUOTE, - ACTIONS(5609), 1, + ACTIONS(6572), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7043), 1, - sym_word, - ACTIONS(7049), 1, - sym__comment_word, - ACTIONS(7283), 1, - anon_sym_DOLLAR, - ACTIONS(5611), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7045), 2, - sym__special_character, + ACTIONS(6576), 1, sym_test_operator, - ACTIONS(7047), 2, + STATE(1519), 1, + aux_sym__literal_repeat1, + ACTIONS(6560), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6566), 2, sym_raw_string, sym_ansi_c_string, - STATE(1040), 9, + ACTIONS(6574), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(647), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1878), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157770,43 +158463,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118939] = 17, - ACTIONS(3), 1, + [116231] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(6316), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6322), 1, + ACTIONS(6199), 1, + anon_sym_DOLLAR, + ACTIONS(6201), 1, + sym__special_character, + ACTIONS(6203), 1, anon_sym_DQUOTE, - ACTIONS(6326), 1, + ACTIONS(6207), 1, aux_sym_number_token1, - ACTIONS(6328), 1, + ACTIONS(6209), 1, aux_sym_number_token2, - ACTIONS(6330), 1, + ACTIONS(6211), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6332), 1, + ACTIONS(6213), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6334), 1, + ACTIONS(6215), 1, anon_sym_BQUOTE, - ACTIONS(6336), 1, + ACTIONS(6217), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6342), 1, + ACTIONS(6227), 1, sym__brace_start, - ACTIONS(7285), 1, + ACTIONS(6578), 1, sym_word, - ACTIONS(7287), 1, - anon_sym_DOLLAR, - ACTIONS(7293), 1, - sym__comment_word, - ACTIONS(6338), 2, + ACTIONS(6582), 1, + sym_test_operator, + STATE(1140), 1, + aux_sym__literal_repeat1, + ACTIONS(6195), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6219), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7289), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7291), 2, + ACTIONS(6580), 2, sym_raw_string, sym_ansi_c_string, - STATE(3986), 9, + STATE(469), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(784), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157816,43 +158514,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119002] = 17, - ACTIONS(3), 1, + [116301] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(6674), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6676), 1, + ACTIONS(5477), 1, + sym_word, + ACTIONS(5483), 1, anon_sym_DOLLAR, - ACTIONS(6680), 1, - anon_sym_DQUOTE, - ACTIONS(6684), 1, + ACTIONS(5489), 1, aux_sym_number_token1, - ACTIONS(6686), 1, + ACTIONS(5491), 1, aux_sym_number_token2, - ACTIONS(6688), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6690), 1, + ACTIONS(5495), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6692), 1, - anon_sym_BQUOTE, - ACTIONS(6694), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6700), 1, + ACTIONS(5505), 1, sym__brace_start, - ACTIONS(7295), 1, - sym_word, - ACTIONS(7301), 1, - sym__comment_word, - ACTIONS(6696), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7297), 2, + ACTIONS(6544), 1, sym__special_character, + ACTIONS(6546), 1, + anon_sym_DQUOTE, + ACTIONS(6550), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6552), 1, + anon_sym_BQUOTE, + ACTIONS(6554), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6558), 1, sym_test_operator, - ACTIONS(7299), 2, + STATE(3090), 1, + aux_sym__literal_repeat1, + ACTIONS(6542), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6548), 2, sym_raw_string, sym_ansi_c_string, - STATE(2852), 9, + ACTIONS(6556), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2222), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2811), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157862,43 +158565,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119065] = 17, - ACTIONS(3), 1, + [116371] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(6316), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6322), 1, + ACTIONS(6199), 1, + anon_sym_DOLLAR, + ACTIONS(6201), 1, + sym__special_character, + ACTIONS(6203), 1, anon_sym_DQUOTE, - ACTIONS(6326), 1, + ACTIONS(6207), 1, aux_sym_number_token1, - ACTIONS(6328), 1, + ACTIONS(6209), 1, aux_sym_number_token2, - ACTIONS(6330), 1, + ACTIONS(6211), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6332), 1, + ACTIONS(6213), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6334), 1, + ACTIONS(6215), 1, anon_sym_BQUOTE, - ACTIONS(6336), 1, + ACTIONS(6217), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6342), 1, + ACTIONS(6227), 1, sym__brace_start, - ACTIONS(7285), 1, + ACTIONS(6578), 1, sym_word, - ACTIONS(7293), 1, - sym__comment_word, - ACTIONS(7303), 1, - anon_sym_DOLLAR, - ACTIONS(6338), 2, + ACTIONS(6582), 1, + sym_test_operator, + STATE(1140), 1, + aux_sym__literal_repeat1, + ACTIONS(6195), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6219), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7289), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7291), 2, + ACTIONS(6580), 2, sym_raw_string, sym_ansi_c_string, - STATE(3986), 9, + STATE(468), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(784), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157908,135 +158616,84 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119128] = 17, - ACTIONS(3), 1, + [116441] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(3751), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3757), 1, - anon_sym_DQUOTE, - ACTIONS(3761), 1, + ACTIONS(1318), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(3763), 1, aux_sym_number_token2, - ACTIONS(3765), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3767), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3769), 1, anon_sym_BQUOTE, - ACTIONS(3771), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3777), 1, - sym__brace_start, - ACTIONS(7305), 1, sym_word, - ACTIONS(7307), 1, - anon_sym_DOLLAR, - ACTIONS(7313), 1, - sym__comment_word, - ACTIONS(3773), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7309), 2, + ACTIONS(1320), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, - sym_test_operator, - ACTIONS(7311), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2041), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [119191] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3751), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3757), 1, - anon_sym_DQUOTE, - ACTIONS(3761), 1, - aux_sym_number_token1, - ACTIONS(3763), 1, - aux_sym_number_token2, - ACTIONS(3765), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3767), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3769), 1, - anon_sym_BQUOTE, - ACTIONS(3771), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3777), 1, - sym__brace_start, - ACTIONS(7305), 1, - sym_word, - ACTIONS(7313), 1, - sym__comment_word, - ACTIONS(7315), 1, - anon_sym_DOLLAR, - ACTIONS(3773), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7309), 2, - sym__special_character, sym_test_operator, - ACTIONS(7311), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2041), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [119254] = 17, - ACTIONS(3), 1, + [116479] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(5510), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5512), 1, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(5516), 1, - anon_sym_DQUOTE, - ACTIONS(5520), 1, + ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(5522), 1, + ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(5524), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5526), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5528), 1, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(5419), 1, + sym__special_character, + ACTIONS(5421), 1, + anon_sym_DQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(5530), 1, + ACTIONS(5429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5540), 1, - sym__brace_start, - ACTIONS(7005), 1, + ACTIONS(6584), 1, sym_word, - ACTIONS(7013), 1, - sym__comment_word, - ACTIONS(5532), 2, + ACTIONS(6588), 1, + sym_test_operator, + ACTIONS(6590), 1, + sym_extglob_pattern, + STATE(4140), 1, + aux_sym__literal_repeat1, + STATE(4338), 1, + sym_concatenation, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7009), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7011), 2, + ACTIONS(6586), 2, sym_raw_string, sym_ansi_c_string, - STATE(2362), 9, + STATE(4062), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158046,43 +158703,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119317] = 17, - ACTIONS(3), 1, + [116551] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(3464), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3470), 1, + ACTIONS(3799), 1, + sym_word, + ACTIONS(3803), 1, + anon_sym_DOLLAR, + ACTIONS(3805), 1, + sym__special_character, + ACTIONS(3807), 1, anon_sym_DQUOTE, - ACTIONS(3474), 1, + ACTIONS(3811), 1, aux_sym_number_token1, - ACTIONS(3476), 1, + ACTIONS(3813), 1, aux_sym_number_token2, - ACTIONS(3478), 1, + ACTIONS(3815), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3480), 1, + ACTIONS(3817), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3482), 1, + ACTIONS(3819), 1, anon_sym_BQUOTE, - ACTIONS(3484), 1, + ACTIONS(3821), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3492), 1, - sym__brace_start, - ACTIONS(6985), 1, - sym_word, - ACTIONS(6991), 1, - sym__comment_word, - ACTIONS(7317), 1, - anon_sym_DOLLAR, - ACTIONS(3486), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6987), 2, - sym__special_character, + ACTIONS(3825), 1, sym_test_operator, - ACTIONS(6989), 2, + ACTIONS(3827), 1, + sym__brace_start, + STATE(2178), 1, + aux_sym__literal_repeat1, + ACTIONS(3801), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3809), 2, sym_raw_string, sym_ansi_c_string, - STATE(1867), 9, + ACTIONS(3823), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(746), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2020), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158092,10 +158754,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119380] = 3, + [116621] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4291), 8, + ACTIONS(1326), 9, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -158103,64 +158765,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4293), 19, + ACTIONS(1328), 21, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [119415] = 17, - ACTIONS(3), 1, + [116659] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(1731), 1, + ACTIONS(562), 1, + anon_sym_DOLLAR, + ACTIONS(566), 1, + anon_sym_DQUOTE, + ACTIONS(570), 1, aux_sym_number_token1, - ACTIONS(1733), 1, + ACTIONS(572), 1, aux_sym_number_token2, - ACTIONS(1737), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1751), 1, - sym__brace_start, - ACTIONS(5597), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5601), 1, - anon_sym_DQUOTE, - ACTIONS(5605), 1, + ACTIONS(574), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5607), 1, + ACTIONS(576), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(578), 1, anon_sym_BQUOTE, - ACTIONS(5609), 1, + ACTIONS(580), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7043), 1, + ACTIONS(590), 1, + sym__brace_start, + ACTIONS(4209), 1, + sym__special_character, + ACTIONS(6592), 1, sym_word, - ACTIONS(7049), 1, - sym__comment_word, - ACTIONS(7319), 1, - anon_sym_DOLLAR, - ACTIONS(5611), 2, + ACTIONS(6596), 1, + sym_test_operator, + ACTIONS(6598), 1, + sym_regex, + STATE(907), 1, + aux_sym__literal_repeat1, + STATE(1146), 1, + sym_concatenation, + ACTIONS(546), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(582), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7045), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7047), 2, + ACTIONS(6594), 2, sym_raw_string, sym_ansi_c_string, - STATE(1040), 9, + STATE(729), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158170,43 +158841,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119478] = 17, - ACTIONS(3), 1, + [116731] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(6634), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6640), 1, + ACTIONS(5791), 1, + anon_sym_DOLLAR, + ACTIONS(5795), 1, anon_sym_DQUOTE, - ACTIONS(6644), 1, + ACTIONS(5799), 1, aux_sym_number_token1, - ACTIONS(6646), 1, + ACTIONS(5801), 1, aux_sym_number_token2, - ACTIONS(6648), 1, + ACTIONS(5803), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6650), 1, + ACTIONS(5805), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6652), 1, + ACTIONS(5807), 1, anon_sym_BQUOTE, - ACTIONS(6654), 1, + ACTIONS(5809), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6660), 1, + ACTIONS(5819), 1, sym__brace_start, - ACTIONS(7321), 1, + ACTIONS(5891), 1, + sym__special_character, + ACTIONS(6600), 1, sym_word, - ACTIONS(7323), 1, - anon_sym_DOLLAR, - ACTIONS(7329), 1, - sym__comment_word, - ACTIONS(6656), 2, + ACTIONS(6604), 1, + sym_test_operator, + STATE(1443), 1, + aux_sym__literal_repeat1, + ACTIONS(5787), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5811), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7325), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7327), 2, + ACTIONS(6602), 2, sym_raw_string, sym_ansi_c_string, - STATE(3412), 9, + STATE(519), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1122), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158216,43 +158892,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119541] = 17, - ACTIONS(3), 1, + [116801] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(41), 1, + ACTIONS(3014), 1, + sym_word, + ACTIONS(3018), 1, anon_sym_DOLLAR, - ACTIONS(45), 1, - anon_sym_DQUOTE, - ACTIONS(49), 1, + ACTIONS(3024), 1, aux_sym_number_token1, - ACTIONS(51), 1, + ACTIONS(3026), 1, aux_sym_number_token2, - ACTIONS(53), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, + ACTIONS(3030), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(57), 1, - anon_sym_BQUOTE, - ACTIONS(59), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, + ACTIONS(3040), 1, sym__brace_start, - ACTIONS(6945), 1, - sym_word, - ACTIONS(6953), 1, - sym__comment_word, - ACTIONS(61), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6949), 2, + ACTIONS(6608), 1, sym__special_character, + ACTIONS(6610), 1, + anon_sym_DQUOTE, + ACTIONS(6614), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6616), 1, + anon_sym_BQUOTE, + ACTIONS(6618), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6622), 1, sym_test_operator, - ACTIONS(6951), 2, + STATE(1555), 1, + aux_sym__literal_repeat1, + ACTIONS(6606), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6612), 2, sym_raw_string, sym_ansi_c_string, - STATE(916), 9, + ACTIONS(6620), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(558), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1212), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158262,43 +158943,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119604] = 17, - ACTIONS(3), 1, + [116871] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(6634), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6640), 1, - anon_sym_DQUOTE, - ACTIONS(6644), 1, + ACTIONS(3014), 1, + sym_word, + ACTIONS(3018), 1, + anon_sym_DOLLAR, + ACTIONS(3024), 1, aux_sym_number_token1, - ACTIONS(6646), 1, + ACTIONS(3026), 1, aux_sym_number_token2, - ACTIONS(6648), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6650), 1, + ACTIONS(3030), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6652), 1, - anon_sym_BQUOTE, - ACTIONS(6654), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6660), 1, + ACTIONS(3040), 1, sym__brace_start, - ACTIONS(7321), 1, - sym_word, - ACTIONS(7329), 1, - sym__comment_word, - ACTIONS(7331), 1, - anon_sym_DOLLAR, - ACTIONS(6656), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7325), 2, + ACTIONS(6608), 1, sym__special_character, + ACTIONS(6610), 1, + anon_sym_DQUOTE, + ACTIONS(6614), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6616), 1, + anon_sym_BQUOTE, + ACTIONS(6618), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6622), 1, sym_test_operator, - ACTIONS(7327), 2, + STATE(1555), 1, + aux_sym__literal_repeat1, + ACTIONS(6606), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6612), 2, sym_raw_string, sym_ansi_c_string, - STATE(3412), 9, + ACTIONS(6620), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(568), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1212), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158308,43 +158994,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119667] = 17, - ACTIONS(3), 1, + [116941] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4093), 1, + ACTIONS(3799), 1, + sym_word, + ACTIONS(3803), 1, anon_sym_DOLLAR, - ACTIONS(4097), 1, + ACTIONS(3805), 1, + sym__special_character, + ACTIONS(3807), 1, anon_sym_DQUOTE, - ACTIONS(4101), 1, + ACTIONS(3811), 1, aux_sym_number_token1, - ACTIONS(4103), 1, + ACTIONS(3813), 1, aux_sym_number_token2, - ACTIONS(4105), 1, + ACTIONS(3815), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, + ACTIONS(3817), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, + ACTIONS(3819), 1, anon_sym_BQUOTE, - ACTIONS(4111), 1, + ACTIONS(3821), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4117), 1, - sym__brace_start, - ACTIONS(7203), 1, - sym_word, - ACTIONS(7211), 1, - sym__comment_word, - ACTIONS(4113), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7207), 2, - sym__special_character, + ACTIONS(3825), 1, sym_test_operator, - ACTIONS(7209), 2, + ACTIONS(3827), 1, + sym__brace_start, + STATE(2178), 1, + aux_sym__literal_repeat1, + ACTIONS(3801), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3809), 2, sym_raw_string, sym_ansi_c_string, - STATE(3144), 9, + ACTIONS(3823), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(740), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2020), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158354,43 +159045,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119730] = 17, - ACTIONS(3), 1, + [117011] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(4091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4097), 1, + ACTIONS(5791), 1, + anon_sym_DOLLAR, + ACTIONS(5795), 1, anon_sym_DQUOTE, - ACTIONS(4101), 1, + ACTIONS(5799), 1, aux_sym_number_token1, - ACTIONS(4103), 1, + ACTIONS(5801), 1, aux_sym_number_token2, - ACTIONS(4105), 1, + ACTIONS(5803), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4107), 1, + ACTIONS(5805), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4109), 1, + ACTIONS(5807), 1, anon_sym_BQUOTE, - ACTIONS(4111), 1, + ACTIONS(5809), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4117), 1, + ACTIONS(5819), 1, sym__brace_start, - ACTIONS(7203), 1, + ACTIONS(5891), 1, + sym__special_character, + ACTIONS(6600), 1, sym_word, - ACTIONS(7211), 1, - sym__comment_word, - ACTIONS(7333), 1, - anon_sym_DOLLAR, - ACTIONS(4113), 2, + ACTIONS(6604), 1, + sym_test_operator, + STATE(1443), 1, + aux_sym__literal_repeat1, + ACTIONS(5787), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5811), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7207), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7209), 2, + ACTIONS(6602), 2, sym_raw_string, sym_ansi_c_string, - STATE(3144), 9, + STATE(530), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1122), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158400,43 +159096,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119793] = 17, - ACTIONS(3), 1, + [117081] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(2946), 1, + ACTIONS(5483), 1, + anon_sym_DOLLAR, + ACTIONS(5489), 1, aux_sym_number_token1, - ACTIONS(2948), 1, + ACTIONS(5491), 1, aux_sym_number_token2, - ACTIONS(2952), 1, + ACTIONS(5495), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2962), 1, + ACTIONS(5505), 1, sym__brace_start, - ACTIONS(6424), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6428), 1, + ACTIONS(6387), 1, + sym_word, + ACTIONS(6546), 1, anon_sym_DQUOTE, - ACTIONS(6432), 1, + ACTIONS(6550), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6434), 1, + ACTIONS(6552), 1, anon_sym_BQUOTE, - ACTIONS(6436), 1, + ACTIONS(6554), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6869), 1, - sym_word, - ACTIONS(6875), 1, - sym__comment_word, - ACTIONS(7335), 1, - anon_sym_DOLLAR, - ACTIONS(6438), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6871), 2, + ACTIONS(6624), 1, sym__special_character, + ACTIONS(6628), 1, sym_test_operator, - ACTIONS(6873), 2, + STATE(3090), 1, + aux_sym__literal_repeat1, + ACTIONS(6542), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6556), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6626), 2, sym_raw_string, sym_ansi_c_string, - STATE(1371), 9, + STATE(2380), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3139), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158446,43 +159147,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119856] = 17, - ACTIONS(3), 1, + [117151] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(6814), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6820), 1, - anon_sym_DQUOTE, - ACTIONS(6824), 1, + ACTIONS(5483), 1, + anon_sym_DOLLAR, + ACTIONS(5489), 1, aux_sym_number_token1, - ACTIONS(6826), 1, + ACTIONS(5491), 1, aux_sym_number_token2, - ACTIONS(6828), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6830), 1, + ACTIONS(5495), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6832), 1, - anon_sym_BQUOTE, - ACTIONS(6834), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6840), 1, + ACTIONS(5505), 1, sym__brace_start, - ACTIONS(7337), 1, + ACTIONS(6387), 1, sym_word, - ACTIONS(7339), 1, - anon_sym_DOLLAR, - ACTIONS(7345), 1, - sym__comment_word, - ACTIONS(6836), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7341), 2, + ACTIONS(6546), 1, + anon_sym_DQUOTE, + ACTIONS(6550), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6552), 1, + anon_sym_BQUOTE, + ACTIONS(6554), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6624), 1, sym__special_character, + ACTIONS(6628), 1, sym_test_operator, - ACTIONS(7343), 2, + STATE(3090), 1, + aux_sym__literal_repeat1, + ACTIONS(6542), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6556), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6626), 2, sym_raw_string, sym_ansi_c_string, - STATE(3424), 9, + STATE(2378), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3139), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158492,43 +159198,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119919] = 17, - ACTIONS(3), 1, + [117221] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(5424), 1, + ACTIONS(5477), 1, + sym_word, + ACTIONS(5483), 1, + anon_sym_DOLLAR, + ACTIONS(5489), 1, aux_sym_number_token1, - ACTIONS(5426), 1, + ACTIONS(5491), 1, aux_sym_number_token2, - ACTIONS(5430), 1, + ACTIONS(5495), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5440), 1, + ACTIONS(5505), 1, sym__brace_start, - ACTIONS(6296), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6300), 1, + ACTIONS(6544), 1, + sym__special_character, + ACTIONS(6546), 1, anon_sym_DQUOTE, - ACTIONS(6304), 1, + ACTIONS(6550), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6306), 1, + ACTIONS(6552), 1, anon_sym_BQUOTE, - ACTIONS(6308), 1, + ACTIONS(6554), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7347), 1, - sym_word, - ACTIONS(7349), 1, - anon_sym_DOLLAR, - ACTIONS(7355), 1, - sym__comment_word, - ACTIONS(6310), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7351), 2, - sym__special_character, + ACTIONS(6558), 1, sym_test_operator, - ACTIONS(7353), 2, + STATE(3090), 1, + aux_sym__literal_repeat1, + ACTIONS(6542), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6548), 2, sym_raw_string, sym_ansi_c_string, - STATE(2863), 9, + ACTIONS(6556), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2192), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2811), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158538,89 +159249,84 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119982] = 17, - ACTIONS(3), 1, + [117291] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(6814), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6820), 1, - anon_sym_DQUOTE, - ACTIONS(6824), 1, + ACTIONS(1268), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(6826), 1, aux_sym_number_token2, - ACTIONS(6828), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6830), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6832), 1, anon_sym_BQUOTE, - ACTIONS(6834), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6840), 1, - sym__brace_start, - ACTIONS(7337), 1, sym_word, - ACTIONS(7345), 1, - sym__comment_word, - ACTIONS(7357), 1, - anon_sym_DOLLAR, - ACTIONS(6836), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7341), 2, + ACTIONS(1270), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, - sym_test_operator, - ACTIONS(7343), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(3424), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120045] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(165), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(171), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [117329] = 20, + ACTIONS(41), 1, + anon_sym_DOLLAR, + ACTIONS(45), 1, anon_sym_DQUOTE, - ACTIONS(175), 1, + ACTIONS(49), 1, aux_sym_number_token1, - ACTIONS(177), 1, + ACTIONS(51), 1, aux_sym_number_token2, - ACTIONS(179), 1, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(181), 1, + ACTIONS(55), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(183), 1, + ACTIONS(57), 1, anon_sym_BQUOTE, - ACTIONS(185), 1, + ACTIONS(59), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(191), 1, + ACTIONS(63), 1, + sym_comment, + ACTIONS(71), 1, sym__brace_start, - ACTIONS(7063), 1, + ACTIONS(4181), 1, + sym__special_character, + ACTIONS(6630), 1, sym_word, - ACTIONS(7071), 1, - sym__comment_word, - ACTIONS(7359), 1, - anon_sym_DOLLAR, - ACTIONS(187), 2, + ACTIONS(6634), 1, + sym_test_operator, + ACTIONS(6636), 1, + sym_regex, + STATE(1079), 1, + aux_sym__literal_repeat1, + STATE(1342), 1, + sym_concatenation, + ACTIONS(13), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(61), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7067), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7069), 2, + ACTIONS(6632), 2, sym_raw_string, sym_ansi_c_string, - STATE(402), 9, + STATE(790), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158630,164 +159336,83 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120108] = 6, - ACTIONS(3), 1, + [117401] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(7361), 1, - aux_sym_concatenation_token1, - ACTIONS(7363), 1, - sym__concat, - STATE(2637), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1272), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1270), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(1268), 9, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - [120149] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3221), 1, - anon_sym_LT_LT_LT, - ACTIONS(7131), 1, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1270), 21, sym_file_descriptor, - ACTIONS(7365), 1, - anon_sym_LF, - ACTIONS(3211), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(3213), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3215), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3219), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3217), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(2450), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7129), 8, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [120200] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3045), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3051), 1, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(3055), 1, - aux_sym_number_token1, - ACTIONS(3057), 1, - aux_sym_number_token2, - ACTIONS(3059), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(3061), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3063), 1, - anon_sym_BQUOTE, - ACTIONS(3065), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3075), 1, - sym__brace_start, - ACTIONS(7367), 1, - sym_word, - ACTIONS(7369), 1, - anon_sym_DOLLAR, - ACTIONS(7375), 1, - sym__comment_word, - ACTIONS(3067), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7371), 2, - sym__special_character, sym_test_operator, - ACTIONS(7373), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1762), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120263] = 17, - ACTIONS(3), 1, + [117439] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(3045), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3051), 1, - anon_sym_DQUOTE, - ACTIONS(3055), 1, + ACTIONS(2909), 1, + sym_word, + ACTIONS(2913), 1, + anon_sym_DOLLAR, + ACTIONS(2919), 1, aux_sym_number_token1, - ACTIONS(3057), 1, + ACTIONS(2921), 1, aux_sym_number_token2, - ACTIONS(3059), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3061), 1, + ACTIONS(2925), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3063), 1, + ACTIONS(2935), 1, + sym__brace_start, + ACTIONS(6564), 1, + anon_sym_DQUOTE, + ACTIONS(6568), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6570), 1, anon_sym_BQUOTE, - ACTIONS(3065), 1, + ACTIONS(6572), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3075), 1, - sym__brace_start, - ACTIONS(7367), 1, - sym_word, - ACTIONS(7375), 1, - sym__comment_word, - ACTIONS(7377), 1, - anon_sym_DOLLAR, - ACTIONS(3067), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7371), 2, + ACTIONS(6638), 1, sym__special_character, + ACTIONS(6642), 1, sym_test_operator, - ACTIONS(7373), 2, + STATE(1519), 1, + aux_sym__literal_repeat1, + ACTIONS(6560), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6574), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6640), 2, sym_raw_string, sym_ansi_c_string, - STATE(1762), 9, + STATE(567), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1339), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158797,43 +159422,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120326] = 17, - ACTIONS(3), 1, + [117509] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(2726), 1, + ACTIONS(2909), 1, + sym_word, + ACTIONS(2913), 1, + anon_sym_DOLLAR, + ACTIONS(2919), 1, aux_sym_number_token1, - ACTIONS(2728), 1, + ACTIONS(2921), 1, aux_sym_number_token2, - ACTIONS(2732), 1, + ACTIONS(2925), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2744), 1, + ACTIONS(2935), 1, sym__brace_start, - ACTIONS(6959), 1, - sym_word, - ACTIONS(6961), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6967), 1, + ACTIONS(6564), 1, anon_sym_DQUOTE, - ACTIONS(6971), 1, + ACTIONS(6568), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6973), 1, + ACTIONS(6570), 1, anon_sym_BQUOTE, - ACTIONS(6975), 1, + ACTIONS(6572), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6979), 1, - sym__comment_word, - ACTIONS(7379), 1, - anon_sym_DOLLAR, - ACTIONS(6965), 2, + ACTIONS(6638), 1, sym__special_character, + ACTIONS(6642), 1, sym_test_operator, - ACTIONS(6969), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6977), 2, + STATE(1519), 1, + aux_sym__literal_repeat1, + ACTIONS(6560), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6574), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1235), 9, + ACTIONS(6640), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(545), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1339), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158843,78 +159473,193 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120389] = 6, - ACTIONS(3), 1, + [117579] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(6808), 1, - aux_sym_concatenation_token1, - ACTIONS(7381), 1, - sym__concat, - STATE(2517), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 3, + ACTIONS(1338), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1340), 21, sym_file_descriptor, + sym__concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1264), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [117617] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1342), 9, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1344), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [120430] = 17, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [117655] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5418), 1, + ACTIONS(1217), 1, + sym__brace_start, + ACTIONS(6646), 1, + anon_sym_DQUOTE, + STATE(3183), 1, + sym_string, + ACTIONS(6648), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6644), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 16, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [117701] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1346), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(5424), 1, aux_sym_number_token1, - ACTIONS(5426), 1, aux_sym_number_token2, - ACTIONS(5430), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5440), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1348), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(6296), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6300), 1, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(6304), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6306), 1, - anon_sym_BQUOTE, - ACTIONS(6308), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7347), 1, - sym_word, - ACTIONS(7355), 1, - sym__comment_word, - ACTIONS(6310), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7351), 2, + sym_test_operator, + [117739] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(360), 1, + anon_sym_DOLLAR, + ACTIONS(364), 1, + anon_sym_DQUOTE, + ACTIONS(368), 1, + aux_sym_number_token1, + ACTIONS(370), 1, + aux_sym_number_token2, + ACTIONS(372), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(374), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(376), 1, + anon_sym_BQUOTE, + ACTIONS(378), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(388), 1, + sym__brace_start, + ACTIONS(4160), 1, sym__special_character, + ACTIONS(6418), 1, + sym_regex, + ACTIONS(6650), 1, + sym_word, + ACTIONS(6654), 1, sym_test_operator, - ACTIONS(7353), 2, + STATE(1139), 1, + aux_sym__literal_repeat1, + STATE(1278), 1, + sym_concatenation, + ACTIONS(340), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(380), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6652), 2, sym_raw_string, sym_ansi_c_string, - STATE(2863), 9, + STATE(800), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158924,113 +159669,83 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120493] = 6, - ACTIONS(3), 1, + [117811] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(6808), 1, - aux_sym_concatenation_token1, - ACTIONS(7383), 1, - sym__concat, - STATE(2517), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1258), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(1272), 9, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [120534] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7389), 1, - sym_variable_name, - STATE(4146), 1, - sym_subscript, - ACTIONS(7385), 2, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1274), 21, sym_file_descriptor, - anon_sym_LF, - STATE(2510), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7387), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [120575] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5958), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5964), 1, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(5968), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [117849] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(2913), 1, + anon_sym_DOLLAR, + ACTIONS(2919), 1, aux_sym_number_token1, - ACTIONS(5970), 1, + ACTIONS(2921), 1, aux_sym_number_token2, - ACTIONS(5972), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5974), 1, + ACTIONS(2925), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5976), 1, - anon_sym_BQUOTE, - ACTIONS(5978), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5988), 1, + ACTIONS(2935), 1, sym__brace_start, - ACTIONS(7392), 1, + ACTIONS(3068), 1, sym_word, - ACTIONS(7394), 1, - anon_sym_DOLLAR, - ACTIONS(7400), 1, - sym__comment_word, - ACTIONS(5980), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7396), 2, + ACTIONS(6564), 1, + anon_sym_DQUOTE, + ACTIONS(6568), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6570), 1, + anon_sym_BQUOTE, + ACTIONS(6572), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6656), 1, sym__special_character, + ACTIONS(6660), 1, sym_test_operator, - ACTIONS(7398), 2, + STATE(1519), 1, + aux_sym__literal_repeat1, + ACTIONS(6560), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6574), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6658), 2, sym_raw_string, sym_ansi_c_string, - STATE(877), 9, + STATE(600), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1375), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159040,43 +159755,87 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120638] = 17, + [117919] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3428), 1, + ACTIONS(1213), 1, + sym__brace_start, + ACTIONS(6646), 1, + anon_sym_DQUOTE, + STATE(3183), 1, + sym_string, + ACTIONS(6648), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6644), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 16, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3434), 1, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [117965] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5791), 1, + anon_sym_DOLLAR, + ACTIONS(5795), 1, anon_sym_DQUOTE, - ACTIONS(3438), 1, + ACTIONS(5799), 1, aux_sym_number_token1, - ACTIONS(3440), 1, + ACTIONS(5801), 1, aux_sym_number_token2, - ACTIONS(3442), 1, + ACTIONS(5803), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3444), 1, + ACTIONS(5805), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3446), 1, + ACTIONS(5807), 1, anon_sym_BQUOTE, - ACTIONS(3448), 1, + ACTIONS(5809), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3454), 1, + ACTIONS(5819), 1, sym__brace_start, - ACTIONS(7402), 1, + ACTIONS(6122), 1, + sym__special_character, + ACTIONS(6662), 1, sym_word, - ACTIONS(7404), 1, - anon_sym_DOLLAR, - ACTIONS(7410), 1, - sym__comment_word, - ACTIONS(3450), 2, + ACTIONS(6666), 1, + sym_test_operator, + STATE(1443), 1, + aux_sym__literal_repeat1, + ACTIONS(5787), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5811), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7406), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7408), 2, + ACTIONS(6664), 2, sym_raw_string, sym_ansi_c_string, - STATE(1854), 9, + STATE(550), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1287), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159086,43 +159845,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120701] = 17, - ACTIONS(3), 1, + [118035] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(5958), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5964), 1, + ACTIONS(5631), 1, + anon_sym_DOLLAR, + ACTIONS(5633), 1, + sym__special_character, + ACTIONS(5635), 1, anon_sym_DQUOTE, - ACTIONS(5968), 1, + ACTIONS(5639), 1, aux_sym_number_token1, - ACTIONS(5970), 1, + ACTIONS(5641), 1, aux_sym_number_token2, - ACTIONS(5972), 1, + ACTIONS(5643), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5974), 1, + ACTIONS(5645), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5976), 1, + ACTIONS(5647), 1, anon_sym_BQUOTE, - ACTIONS(5978), 1, + ACTIONS(5649), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5988), 1, + ACTIONS(5659), 1, sym__brace_start, - ACTIONS(7392), 1, + ACTIONS(6668), 1, sym_word, - ACTIONS(7400), 1, - sym__comment_word, - ACTIONS(7412), 1, - anon_sym_DOLLAR, - ACTIONS(5980), 2, + ACTIONS(6672), 1, + sym_test_operator, + STATE(2134), 1, + aux_sym__literal_repeat1, + ACTIONS(5627), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5651), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7396), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7398), 2, + ACTIONS(6670), 2, sym_raw_string, sym_ansi_c_string, - STATE(877), 9, + STATE(670), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1891), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159132,43 +159896,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120764] = 17, - ACTIONS(3), 1, + [118105] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(3464), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3470), 1, + ACTIONS(5791), 1, + anon_sym_DOLLAR, + ACTIONS(5795), 1, anon_sym_DQUOTE, - ACTIONS(3474), 1, + ACTIONS(5799), 1, aux_sym_number_token1, - ACTIONS(3476), 1, + ACTIONS(5801), 1, aux_sym_number_token2, - ACTIONS(3478), 1, + ACTIONS(5803), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3480), 1, + ACTIONS(5805), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3482), 1, + ACTIONS(5807), 1, anon_sym_BQUOTE, - ACTIONS(3484), 1, + ACTIONS(5809), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3492), 1, + ACTIONS(5819), 1, sym__brace_start, - ACTIONS(6985), 1, + ACTIONS(6122), 1, + sym__special_character, + ACTIONS(6662), 1, sym_word, - ACTIONS(6991), 1, - sym__comment_word, - ACTIONS(7414), 1, - anon_sym_DOLLAR, - ACTIONS(3486), 2, + ACTIONS(6666), 1, + sym_test_operator, + STATE(1443), 1, + aux_sym__literal_repeat1, + ACTIONS(5787), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5811), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6987), 2, - sym__special_character, - sym_test_operator, - ACTIONS(6989), 2, + ACTIONS(6664), 2, sym_raw_string, sym_ansi_c_string, - STATE(1867), 9, + STATE(542), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1287), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159178,124 +159947,259 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120827] = 17, - ACTIONS(3), 1, + [118175] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(210), 1, + ACTIONS(1334), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(216), 1, aux_sym_number_token1, - ACTIONS(218), 1, aux_sym_number_token2, - ACTIONS(222), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(236), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1336), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1109), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1115), 1, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1119), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4780), 1, - anon_sym_BQUOTE, - ACTIONS(6901), 1, - sym_word, - ACTIONS(6909), 1, - sym__comment_word, - ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6905), 2, - sym__special_character, sym_test_operator, - ACTIONS(6907), 2, + [118213] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1330), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1332), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(1538), 9, - sym_arithmetic_expansion, - sym_brace_expression, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [118251] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1217), 1, + sym_file_descriptor, + ACTIONS(5563), 1, + anon_sym_DQUOTE, + STATE(2901), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120890] = 17, + ACTIONS(5565), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5561), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + [118297] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6604), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6610), 1, + ACTIONS(1213), 1, + sym_file_descriptor, + ACTIONS(5563), 1, anon_sym_DQUOTE, - ACTIONS(6614), 1, + STATE(2901), 1, + sym_string, + ACTIONS(5565), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5561), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + [118343] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6676), 1, + anon_sym_DQUOTE, + STATE(3521), 1, + sym_string, + ACTIONS(1213), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(6678), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6674), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [118389] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1322), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(6616), 1, aux_sym_number_token2, - ACTIONS(6618), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6620), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6622), 1, anon_sym_BQUOTE, - ACTIONS(6624), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6630), 1, - sym__brace_start, - ACTIONS(6889), 1, sym_word, - ACTIONS(6897), 1, - sym__comment_word, - ACTIONS(7416), 1, - anon_sym_DOLLAR, - ACTIONS(6626), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6893), 2, + ACTIONS(1324), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, - sym_test_operator, - ACTIONS(6895), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2827), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120953] = 6, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [118427] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7418), 1, - aux_sym_concatenation_token1, - ACTIONS(7421), 1, - sym__concat, - STATE(2517), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1279), 3, + ACTIONS(6676), 1, + anon_sym_DQUOTE, + STATE(3521), 1, + sym_string, + ACTIONS(1217), 2, sym_file_descriptor, sym_variable_name, - anon_sym_LF, - ACTIONS(1274), 21, - anon_sym_SEMI, + ACTIONS(6678), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6674), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -159304,44 +160208,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - [120994] = 17, - ACTIONS(3), 1, + [118473] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(1473), 1, + ACTIONS(2913), 1, + anon_sym_DOLLAR, + ACTIONS(2919), 1, aux_sym_number_token1, - ACTIONS(1475), 1, + ACTIONS(2921), 1, aux_sym_number_token2, - ACTIONS(1479), 1, + ACTIONS(2925), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1495), 1, + ACTIONS(2935), 1, sym__brace_start, - ACTIONS(5873), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5877), 1, + ACTIONS(3068), 1, + sym_word, + ACTIONS(6564), 1, anon_sym_DQUOTE, - ACTIONS(5881), 1, + ACTIONS(6568), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5883), 1, + ACTIONS(6570), 1, anon_sym_BQUOTE, - ACTIONS(5885), 1, + ACTIONS(6572), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7424), 1, - sym_word, - ACTIONS(7426), 1, - anon_sym_DOLLAR, - ACTIONS(7432), 1, - sym__comment_word, - ACTIONS(5887), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7428), 2, + ACTIONS(6656), 1, sym__special_character, + ACTIONS(6660), 1, sym_test_operator, - ACTIONS(7430), 2, + STATE(1519), 1, + aux_sym__literal_repeat1, + ACTIONS(6560), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6574), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6658), 2, sym_raw_string, sym_ansi_c_string, - STATE(783), 9, + STATE(601), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1375), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159351,43 +160259,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121057] = 17, - ACTIONS(3), 1, + [118543] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(1473), 1, + ACTIONS(6680), 1, + sym_word, + ACTIONS(6684), 1, + anon_sym_DOLLAR, + ACTIONS(6686), 1, + sym__special_character, + ACTIONS(6688), 1, + anon_sym_DQUOTE, + ACTIONS(6692), 1, aux_sym_number_token1, - ACTIONS(1475), 1, + ACTIONS(6694), 1, aux_sym_number_token2, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1495), 1, - sym__brace_start, - ACTIONS(5873), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5877), 1, - anon_sym_DQUOTE, - ACTIONS(5881), 1, + ACTIONS(6696), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5883), 1, + ACTIONS(6698), 1, + anon_sym_RBRACE3, + ACTIONS(6700), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6702), 1, anon_sym_BQUOTE, - ACTIONS(5885), 1, + ACTIONS(6704), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7424), 1, - sym_word, - ACTIONS(7432), 1, - sym__comment_word, - ACTIONS(7434), 1, - anon_sym_DOLLAR, - ACTIONS(5887), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7428), 2, - sym__special_character, + ACTIONS(6708), 1, sym_test_operator, - ACTIONS(7430), 2, + ACTIONS(6710), 1, + sym__brace_start, + STATE(4107), 1, + aux_sym__literal_repeat1, + STATE(4327), 1, + sym_concatenation, + ACTIONS(6682), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6690), 2, sym_raw_string, sym_ansi_c_string, - STATE(783), 9, + ACTIONS(6706), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4053), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159397,43 +160311,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121120] = 17, - ACTIONS(3), 1, + [118615] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(3045), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3047), 1, + ACTIONS(5631), 1, anon_sym_DOLLAR, - ACTIONS(3051), 1, + ACTIONS(5633), 1, + sym__special_character, + ACTIONS(5635), 1, anon_sym_DQUOTE, - ACTIONS(3055), 1, + ACTIONS(5639), 1, aux_sym_number_token1, - ACTIONS(3057), 1, + ACTIONS(5641), 1, aux_sym_number_token2, - ACTIONS(3059), 1, + ACTIONS(5643), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3061), 1, + ACTIONS(5645), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3063), 1, + ACTIONS(5647), 1, anon_sym_BQUOTE, - ACTIONS(3065), 1, + ACTIONS(5649), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3075), 1, + ACTIONS(5659), 1, sym__brace_start, - ACTIONS(7367), 1, + ACTIONS(6668), 1, sym_word, - ACTIONS(7375), 1, - sym__comment_word, - ACTIONS(3067), 2, + ACTIONS(6672), 1, + sym_test_operator, + STATE(2134), 1, + aux_sym__literal_repeat1, + ACTIONS(5627), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5651), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7371), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7373), 2, + ACTIONS(6670), 2, sym_raw_string, sym_ansi_c_string, - STATE(1762), 9, + STATE(671), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1891), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159443,43 +160362,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121183] = 17, - ACTIONS(3), 1, + [118685] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(3428), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3434), 1, + ACTIONS(6684), 1, + anon_sym_DOLLAR, + ACTIONS(6686), 1, + sym__special_character, + ACTIONS(6688), 1, anon_sym_DQUOTE, - ACTIONS(3438), 1, + ACTIONS(6692), 1, aux_sym_number_token1, - ACTIONS(3440), 1, + ACTIONS(6694), 1, aux_sym_number_token2, - ACTIONS(3442), 1, + ACTIONS(6696), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3444), 1, + ACTIONS(6700), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3446), 1, + ACTIONS(6702), 1, anon_sym_BQUOTE, - ACTIONS(3448), 1, + ACTIONS(6704), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3454), 1, + ACTIONS(6710), 1, sym__brace_start, - ACTIONS(7402), 1, + ACTIONS(6712), 1, sym_word, - ACTIONS(7410), 1, - sym__comment_word, - ACTIONS(7436), 1, - anon_sym_DOLLAR, - ACTIONS(3450), 2, + ACTIONS(6716), 1, + anon_sym_RBRACE3, + ACTIONS(6718), 1, + sym_test_operator, + STATE(4119), 1, + aux_sym__literal_repeat1, + STATE(4322), 1, + sym_concatenation, + ACTIONS(6682), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6706), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7406), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7408), 2, + ACTIONS(6714), 2, sym_raw_string, sym_ansi_c_string, - STATE(1854), 9, + STATE(4061), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159489,43 +160414,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121246] = 17, - ACTIONS(3), 1, + [118757] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(2113), 1, - aux_sym_number_token1, - ACTIONS(2115), 1, - aux_sym_number_token2, - ACTIONS(2119), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2133), 1, - sym__brace_start, - ACTIONS(7438), 1, + ACTIONS(3687), 1, sym_word, - ACTIONS(7440), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7442), 1, + ACTIONS(3691), 1, anon_sym_DOLLAR, - ACTIONS(7446), 1, + ACTIONS(3695), 1, anon_sym_DQUOTE, - ACTIONS(7450), 1, + ACTIONS(3699), 1, + aux_sym_number_token1, + ACTIONS(3701), 1, + aux_sym_number_token2, + ACTIONS(3703), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7452), 1, + ACTIONS(3705), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3707), 1, anon_sym_BQUOTE, - ACTIONS(7454), 1, + ACTIONS(3709), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7458), 1, - sym__comment_word, - ACTIONS(7444), 2, - sym__special_character, + ACTIONS(3713), 1, sym_test_operator, - ACTIONS(7448), 2, + ACTIONS(3715), 1, + sym__brace_start, + ACTIONS(6720), 1, + sym__special_character, + STATE(2094), 1, + aux_sym__literal_repeat1, + ACTIONS(3689), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3697), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7456), 2, + ACTIONS(3711), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(910), 9, + STATE(685), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1763), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159535,43 +160465,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121309] = 17, - ACTIONS(3), 1, + [118827] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(2113), 1, - aux_sym_number_token1, - ACTIONS(2115), 1, - aux_sym_number_token2, - ACTIONS(2119), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2133), 1, - sym__brace_start, - ACTIONS(7438), 1, + ACTIONS(3687), 1, sym_word, - ACTIONS(7440), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7446), 1, + ACTIONS(3691), 1, + anon_sym_DOLLAR, + ACTIONS(3695), 1, anon_sym_DQUOTE, - ACTIONS(7450), 1, + ACTIONS(3699), 1, + aux_sym_number_token1, + ACTIONS(3701), 1, + aux_sym_number_token2, + ACTIONS(3703), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7452), 1, + ACTIONS(3705), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3707), 1, anon_sym_BQUOTE, - ACTIONS(7454), 1, + ACTIONS(3709), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7458), 1, - sym__comment_word, - ACTIONS(7460), 1, - anon_sym_DOLLAR, - ACTIONS(7444), 2, - sym__special_character, + ACTIONS(3713), 1, sym_test_operator, - ACTIONS(7448), 2, + ACTIONS(3715), 1, + sym__brace_start, + ACTIONS(6720), 1, + sym__special_character, + STATE(2094), 1, + aux_sym__literal_repeat1, + ACTIONS(3689), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3697), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7456), 2, + ACTIONS(3711), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(910), 9, + STATE(682), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1763), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159581,89 +160516,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121372] = 17, - ACTIONS(3), 1, + [118897] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(1779), 1, + ACTIONS(2913), 1, anon_sym_DOLLAR, - ACTIONS(1785), 1, + ACTIONS(2919), 1, aux_sym_number_token1, - ACTIONS(1787), 1, + ACTIONS(2921), 1, aux_sym_number_token2, - ACTIONS(1791), 1, + ACTIONS(2925), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1805), 1, + ACTIONS(2935), 1, sym__brace_start, - ACTIONS(5811), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5815), 1, + ACTIONS(3068), 1, + sym_word, + ACTIONS(6564), 1, anon_sym_DQUOTE, - ACTIONS(5819), 1, + ACTIONS(6568), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5821), 1, + ACTIONS(6570), 1, anon_sym_BQUOTE, - ACTIONS(5823), 1, + ACTIONS(6572), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7105), 1, - sym_word, - ACTIONS(7113), 1, - sym__comment_word, - ACTIONS(5825), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7109), 2, + ACTIONS(6656), 1, sym__special_character, + ACTIONS(6660), 1, sym_test_operator, - ACTIONS(7111), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1134), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [121435] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6604), 1, + STATE(1519), 1, + aux_sym__literal_repeat1, + ACTIONS(6560), 2, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6606), 1, - anon_sym_DOLLAR, - ACTIONS(6610), 1, - anon_sym_DQUOTE, - ACTIONS(6614), 1, - aux_sym_number_token1, - ACTIONS(6616), 1, - aux_sym_number_token2, - ACTIONS(6618), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6620), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6622), 1, - anon_sym_BQUOTE, - ACTIONS(6624), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6630), 1, - sym__brace_start, - ACTIONS(6889), 1, - sym_word, - ACTIONS(6897), 1, - sym__comment_word, - ACTIONS(6626), 2, + ACTIONS(6574), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6893), 2, - sym__special_character, - sym_test_operator, - ACTIONS(6895), 2, + ACTIONS(6658), 2, sym_raw_string, sym_ansi_c_string, - STATE(2827), 9, + STATE(594), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1375), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159673,43 +160567,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121498] = 17, - ACTIONS(3), 1, + [118967] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(332), 1, + ACTIONS(2913), 1, + anon_sym_DOLLAR, + ACTIONS(2919), 1, aux_sym_number_token1, - ACTIONS(334), 1, + ACTIONS(2921), 1, aux_sym_number_token2, - ACTIONS(338), 1, + ACTIONS(2925), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, + ACTIONS(2935), 1, sym__brace_start, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, + ACTIONS(3068), 1, + sym_word, + ACTIONS(6564), 1, anon_sym_DQUOTE, - ACTIONS(1167), 1, + ACTIONS(6568), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4799), 1, + ACTIONS(6570), 1, anon_sym_BQUOTE, - ACTIONS(7031), 1, - sym_word, - ACTIONS(7039), 1, - sym__comment_word, - ACTIONS(7462), 1, - anon_sym_DOLLAR, - ACTIONS(1171), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7035), 2, + ACTIONS(6572), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6656), 1, sym__special_character, + ACTIONS(6660), 1, sym_test_operator, - ACTIONS(7037), 2, + STATE(1519), 1, + aux_sym__literal_repeat1, + ACTIONS(6560), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6574), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6658), 2, sym_raw_string, sym_ansi_c_string, - STATE(1343), 9, + STATE(573), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1375), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159719,43 +160618,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121561] = 17, - ACTIONS(3), 1, + [119037] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(2358), 1, + ACTIONS(6722), 1, + sym_word, + ACTIONS(6726), 1, + anon_sym_DOLLAR, + ACTIONS(6728), 1, + sym__special_character, + ACTIONS(6730), 1, + anon_sym_DQUOTE, + ACTIONS(6734), 1, aux_sym_number_token1, - ACTIONS(2360), 1, + ACTIONS(6736), 1, aux_sym_number_token2, - ACTIONS(2364), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2374), 1, - sym__brace_start, - ACTIONS(6528), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6532), 1, - anon_sym_DQUOTE, - ACTIONS(6536), 1, + ACTIONS(6738), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6538), 1, + ACTIONS(6740), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6742), 1, anon_sym_BQUOTE, - ACTIONS(6540), 1, + ACTIONS(6744), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7464), 1, - sym_word, - ACTIONS(7466), 1, - anon_sym_DOLLAR, - ACTIONS(7472), 1, - sym__comment_word, - ACTIONS(6542), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7468), 2, - sym__special_character, + ACTIONS(6748), 1, sym_test_operator, - ACTIONS(7470), 2, + ACTIONS(6750), 1, + sym__brace_start, + STATE(2813), 1, + aux_sym__literal_repeat1, + STATE(3053), 1, + sym_concatenation, + ACTIONS(6724), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6732), 2, sym_raw_string, sym_ansi_c_string, - STATE(1112), 9, + ACTIONS(6746), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2971), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159765,43 +160668,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121624] = 17, - ACTIONS(3), 1, + [119106] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(2358), 1, + ACTIONS(6752), 1, + sym_word, + ACTIONS(6756), 1, + anon_sym_DOLLAR, + ACTIONS(6758), 1, + sym__special_character, + ACTIONS(6760), 1, + anon_sym_DQUOTE, + ACTIONS(6764), 1, aux_sym_number_token1, - ACTIONS(2360), 1, + ACTIONS(6766), 1, aux_sym_number_token2, - ACTIONS(2364), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2374), 1, - sym__brace_start, - ACTIONS(6528), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6532), 1, - anon_sym_DQUOTE, - ACTIONS(6536), 1, + ACTIONS(6768), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6538), 1, + ACTIONS(6770), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6772), 1, anon_sym_BQUOTE, - ACTIONS(6540), 1, + ACTIONS(6774), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7464), 1, - sym_word, - ACTIONS(7472), 1, - sym__comment_word, - ACTIONS(7474), 1, - anon_sym_DOLLAR, - ACTIONS(6542), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7468), 2, - sym__special_character, + ACTIONS(6778), 1, sym_test_operator, - ACTIONS(7470), 2, + ACTIONS(6780), 1, + sym__brace_start, + STATE(2864), 1, + aux_sym__literal_repeat1, + STATE(3012), 1, + sym_concatenation, + ACTIONS(6754), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6762), 2, sym_raw_string, sym_ansi_c_string, - STATE(1112), 9, + ACTIONS(6776), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2894), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159811,43 +160718,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121687] = 17, - ACTIONS(3), 1, + [119175] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(332), 1, + ACTIONS(6756), 1, + anon_sym_DOLLAR, + ACTIONS(6758), 1, + sym__special_character, + ACTIONS(6760), 1, + anon_sym_DQUOTE, + ACTIONS(6764), 1, aux_sym_number_token1, - ACTIONS(334), 1, + ACTIONS(6766), 1, aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, - sym__brace_start, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, + ACTIONS(6768), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4799), 1, + ACTIONS(6770), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6772), 1, anon_sym_BQUOTE, - ACTIONS(7031), 1, + ACTIONS(6774), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6780), 1, + sym__brace_start, + ACTIONS(6782), 1, sym_word, - ACTIONS(7039), 1, - sym__comment_word, - ACTIONS(7476), 1, - anon_sym_DOLLAR, - ACTIONS(1171), 2, + ACTIONS(6786), 1, + sym_test_operator, + STATE(2841), 1, + aux_sym__literal_repeat1, + STATE(3069), 1, + sym_concatenation, + ACTIONS(6754), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6776), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7035), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7037), 2, + ACTIONS(6784), 2, sym_raw_string, sym_ansi_c_string, - STATE(1343), 9, + STATE(2890), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159857,43 +160768,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121750] = 17, - ACTIONS(3), 1, + [119244] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(284), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(286), 1, + ACTIONS(6788), 1, + sym_word, + ACTIONS(6792), 1, anon_sym_DOLLAR, - ACTIONS(290), 1, + ACTIONS(6794), 1, + sym__special_character, + ACTIONS(6796), 1, anon_sym_DQUOTE, - ACTIONS(294), 1, + ACTIONS(6800), 1, aux_sym_number_token1, - ACTIONS(296), 1, + ACTIONS(6802), 1, aux_sym_number_token2, - ACTIONS(298), 1, + ACTIONS(6804), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(300), 1, + ACTIONS(6806), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(302), 1, + ACTIONS(6808), 1, anon_sym_BQUOTE, - ACTIONS(304), 1, + ACTIONS(6810), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(314), 1, - sym__brace_start, - ACTIONS(6995), 1, - sym_word, - ACTIONS(7003), 1, - sym__comment_word, - ACTIONS(306), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6999), 2, - sym__special_character, + ACTIONS(6814), 1, sym_test_operator, - ACTIONS(7001), 2, + ACTIONS(6816), 1, + sym__brace_start, + STATE(3969), 1, + aux_sym__literal_repeat1, + STATE(4081), 1, + sym_concatenation, + ACTIONS(6790), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6798), 2, sym_raw_string, sym_ansi_c_string, - STATE(431), 9, + ACTIONS(6812), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3956), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159903,89 +160818,96 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121813] = 17, + [119313] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(332), 1, + ACTIONS(6822), 1, + anon_sym_LPAREN, + ACTIONS(6824), 1, + aux_sym__c_word_token1, + ACTIONS(6826), 1, + anon_sym_LF, + ACTIONS(6828), 1, + anon_sym_DOLLAR, + ACTIONS(6830), 1, + anon_sym_DQUOTE, + ACTIONS(6832), 1, aux_sym_number_token1, - ACTIONS(334), 1, + ACTIONS(6834), 1, aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, - sym__brace_start, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, + ACTIONS(6836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4799), 1, + ACTIONS(6838), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6840), 1, anon_sym_BQUOTE, - ACTIONS(7031), 1, - sym_word, - ACTIONS(7039), 1, - sym__comment_word, - ACTIONS(7478), 1, - anon_sym_DOLLAR, - ACTIONS(1171), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7035), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7037), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1343), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(6842), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2645), 1, + sym__c_terminator, + STATE(4833), 1, + sym__for_body, + ACTIONS(6818), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(6820), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4037), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2269), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [121876] = 17, - ACTIONS(3), 1, + [119380] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(332), 1, + ACTIONS(6726), 1, + anon_sym_DOLLAR, + ACTIONS(6730), 1, + anon_sym_DQUOTE, + ACTIONS(6734), 1, aux_sym_number_token1, - ACTIONS(334), 1, + ACTIONS(6736), 1, aux_sym_number_token2, - ACTIONS(338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, - sym__brace_start, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, + ACTIONS(6738), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4799), 1, + ACTIONS(6740), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6742), 1, anon_sym_BQUOTE, - ACTIONS(7031), 1, + ACTIONS(6744), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6750), 1, + sym__brace_start, + ACTIONS(6844), 1, sym_word, - ACTIONS(7039), 1, - sym__comment_word, - ACTIONS(7480), 1, - anon_sym_DOLLAR, - ACTIONS(1171), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7035), 2, + ACTIONS(6846), 1, sym__special_character, + ACTIONS(6850), 1, sym_test_operator, - ACTIONS(7037), 2, + STATE(2813), 1, + aux_sym__literal_repeat1, + STATE(3053), 1, + sym_concatenation, + ACTIONS(6724), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6746), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6848), 2, sym_raw_string, sym_ansi_c_string, - STATE(1343), 9, + STATE(3059), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159995,43 +160917,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121939] = 17, - ACTIONS(3), 1, + [119449] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(111), 1, + ACTIONS(6726), 1, anon_sym_DOLLAR, - ACTIONS(115), 1, + ACTIONS(6730), 1, anon_sym_DQUOTE, - ACTIONS(119), 1, + ACTIONS(6734), 1, aux_sym_number_token1, - ACTIONS(121), 1, + ACTIONS(6736), 1, aux_sym_number_token2, - ACTIONS(123), 1, + ACTIONS(6738), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(125), 1, + ACTIONS(6740), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(127), 1, + ACTIONS(6742), 1, anon_sym_BQUOTE, - ACTIONS(129), 1, + ACTIONS(6744), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(139), 1, + ACTIONS(6750), 1, sym__brace_start, - ACTIONS(7482), 1, + ACTIONS(6852), 1, sym_word, - ACTIONS(7488), 1, - sym__comment_word, - ACTIONS(131), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7484), 2, + ACTIONS(6854), 1, sym__special_character, + ACTIONS(6858), 1, sym_test_operator, - ACTIONS(7486), 2, + STATE(2847), 1, + aux_sym__literal_repeat1, + STATE(3043), 1, + sym_concatenation, + ACTIONS(6724), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6746), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6856), 2, sym_raw_string, sym_ansi_c_string, - STATE(368), 9, + STATE(3294), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160041,77 +160967,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122002] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3219), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3519), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2450), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3228), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [122041] = 17, - ACTIONS(3), 1, + [119518] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(6554), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6560), 1, + ACTIONS(6726), 1, + anon_sym_DOLLAR, + ACTIONS(6730), 1, anon_sym_DQUOTE, - ACTIONS(6564), 1, + ACTIONS(6734), 1, aux_sym_number_token1, - ACTIONS(6566), 1, + ACTIONS(6736), 1, aux_sym_number_token2, - ACTIONS(6568), 1, + ACTIONS(6738), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, + ACTIONS(6740), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6572), 1, + ACTIONS(6742), 1, anon_sym_BQUOTE, - ACTIONS(6574), 1, + ACTIONS(6744), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6580), 1, + ACTIONS(6750), 1, sym__brace_start, - ACTIONS(7490), 1, + ACTIONS(6846), 1, + sym__special_character, + ACTIONS(6860), 1, sym_word, - ACTIONS(7492), 1, - anon_sym_DOLLAR, - ACTIONS(7498), 1, - sym__comment_word, - ACTIONS(6576), 2, + ACTIONS(6864), 1, + sym_test_operator, + STATE(2847), 1, + aux_sym__literal_repeat1, + STATE(3043), 1, + sym_concatenation, + ACTIONS(6724), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6746), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7494), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7496), 2, + ACTIONS(6862), 2, sym_raw_string, sym_ansi_c_string, - STATE(3820), 9, + STATE(2989), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160121,43 +161017,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122104] = 17, - ACTIONS(3), 1, + [119587] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(4754), 1, + ACTIONS(6726), 1, anon_sym_DOLLAR, - ACTIONS(4760), 1, + ACTIONS(6730), 1, + anon_sym_DQUOTE, + ACTIONS(6734), 1, aux_sym_number_token1, - ACTIONS(4762), 1, + ACTIONS(6736), 1, aux_sym_number_token2, - ACTIONS(4766), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4778), 1, - sym__brace_start, - ACTIONS(5332), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5336), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, + ACTIONS(6738), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5342), 1, + ACTIONS(6740), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6742), 1, anon_sym_BQUOTE, - ACTIONS(5344), 1, + ACTIONS(6744), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6911), 1, + ACTIONS(6750), 1, + sym__brace_start, + ACTIONS(6854), 1, + sym__special_character, + ACTIONS(6866), 1, sym_word, - ACTIONS(6919), 1, - sym__comment_word, - ACTIONS(5346), 2, + ACTIONS(6870), 1, + sym_test_operator, + STATE(2813), 1, + aux_sym__literal_repeat1, + STATE(3053), 1, + sym_concatenation, + ACTIONS(6724), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6746), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6915), 2, - sym__special_character, - sym_test_operator, - ACTIONS(6917), 2, + ACTIONS(6868), 2, sym_raw_string, sym_ansi_c_string, - STATE(3977), 9, + STATE(3371), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160167,43 +161067,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122167] = 17, + [119656] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6038), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6044), 1, + ACTIONS(611), 1, + anon_sym_DOLLAR, + ACTIONS(615), 1, anon_sym_DQUOTE, - ACTIONS(6048), 1, + ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(6050), 1, + ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(6052), 1, + ACTIONS(623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6054), 1, + ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6056), 1, - anon_sym_BQUOTE, - ACTIONS(6058), 1, + ACTIONS(629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6068), 1, + ACTIONS(635), 1, sym__brace_start, - ACTIONS(7500), 1, + ACTIONS(4757), 1, + anon_sym_BQUOTE, + ACTIONS(6872), 1, sym_word, - ACTIONS(7502), 1, - anon_sym_DOLLAR, - ACTIONS(7508), 1, - sym__comment_word, - ACTIONS(6060), 2, + ACTIONS(6874), 1, + anon_sym_RBRACK, + ACTIONS(6880), 1, + sym_test_operator, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7504), 2, + ACTIONS(6876), 2, sym__special_character, - sym_test_operator, - ACTIONS(7506), 2, + sym__comment_word, + ACTIONS(6878), 2, sym_raw_string, sym_ansi_c_string, - STATE(1986), 9, + STATE(1856), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160213,43 +161116,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122230] = 17, + [119723] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6038), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6044), 1, + ACTIONS(611), 1, + anon_sym_DOLLAR, + ACTIONS(615), 1, anon_sym_DQUOTE, - ACTIONS(6048), 1, + ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(6050), 1, + ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(6052), 1, + ACTIONS(623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6054), 1, + ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6056), 1, - anon_sym_BQUOTE, - ACTIONS(6058), 1, + ACTIONS(629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6068), 1, + ACTIONS(635), 1, sym__brace_start, - ACTIONS(7500), 1, + ACTIONS(4757), 1, + anon_sym_BQUOTE, + ACTIONS(6872), 1, sym_word, - ACTIONS(7508), 1, - sym__comment_word, - ACTIONS(7510), 1, - anon_sym_DOLLAR, - ACTIONS(6060), 2, + ACTIONS(6880), 1, + sym_test_operator, + ACTIONS(6882), 1, + anon_sym_RBRACK, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7504), 2, + ACTIONS(6876), 2, sym__special_character, - sym_test_operator, - ACTIONS(7506), 2, + sym__comment_word, + ACTIONS(6878), 2, sym_raw_string, sym_ansi_c_string, - STATE(1986), 9, + STATE(1856), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160259,21 +161165,29 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122293] = 6, + [119790] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6808), 1, - aux_sym_concatenation_token1, - ACTIONS(6810), 1, - sym__concat, - STATE(2613), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1272), 3, + ACTIONS(1217), 1, sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1270), 21, - anon_sym_SEMI, + ACTIONS(6886), 1, + anon_sym_DQUOTE, + STATE(3540), 1, + sym_string, + ACTIONS(6888), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6884), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1215), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -160281,9 +161195,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -160292,45 +161203,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - [122334] = 17, + [119835] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(586), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(588), 1, + ACTIONS(1213), 1, + sym_file_descriptor, + ACTIONS(6886), 1, + anon_sym_DQUOTE, + STATE(3540), 1, + sym_string, + ACTIONS(6888), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6884), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(1205), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [119880] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(6890), 1, + sym_word, + ACTIONS(6894), 1, anon_sym_DOLLAR, - ACTIONS(592), 1, + ACTIONS(6896), 1, + sym__special_character, + ACTIONS(6898), 1, anon_sym_DQUOTE, - ACTIONS(596), 1, + ACTIONS(6902), 1, aux_sym_number_token1, - ACTIONS(598), 1, + ACTIONS(6904), 1, aux_sym_number_token2, - ACTIONS(600), 1, + ACTIONS(6906), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(602), 1, + ACTIONS(6908), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(604), 1, + ACTIONS(6910), 1, anon_sym_BQUOTE, - ACTIONS(606), 1, + ACTIONS(6912), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(616), 1, - sym__brace_start, - ACTIONS(7512), 1, - sym_word, - ACTIONS(7518), 1, - sym__comment_word, - ACTIONS(608), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7514), 2, - sym__special_character, + ACTIONS(6916), 1, sym_test_operator, - ACTIONS(7516), 2, + ACTIONS(6918), 1, + sym__brace_start, + STATE(3516), 1, + aux_sym__literal_repeat1, + STATE(3581), 1, + sym_concatenation, + ACTIONS(6892), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6900), 2, sym_raw_string, sym_ansi_c_string, - STATE(843), 9, + ACTIONS(6914), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3382), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160340,89 +161291,83 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122397] = 17, - ACTIONS(3), 1, + [119949] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(6704), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6706), 1, + ACTIONS(6920), 1, + sym__special_character, + STATE(2502), 1, + aux_sym__literal_repeat1, + ACTIONS(3841), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(6710), 1, - anon_sym_DQUOTE, - ACTIONS(6714), 1, aux_sym_number_token1, - ACTIONS(6716), 1, aux_sym_number_token2, - ACTIONS(6718), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6720), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6722), 1, + sym_word, + ACTIONS(3843), 19, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(6724), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6730), 1, - sym__brace_start, - ACTIONS(7520), 1, - sym_word, - ACTIONS(7526), 1, - sym__comment_word, - ACTIONS(6726), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7522), 2, - sym__special_character, sym_test_operator, - ACTIONS(7524), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2741), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [122460] = 17, - ACTIONS(3), 1, + [119990] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(2946), 1, + ACTIONS(6756), 1, + anon_sym_DOLLAR, + ACTIONS(6760), 1, + anon_sym_DQUOTE, + ACTIONS(6764), 1, aux_sym_number_token1, - ACTIONS(2948), 1, + ACTIONS(6766), 1, aux_sym_number_token2, - ACTIONS(2952), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2962), 1, - sym__brace_start, - ACTIONS(6424), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6428), 1, - anon_sym_DQUOTE, - ACTIONS(6432), 1, + ACTIONS(6768), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6434), 1, + ACTIONS(6770), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6772), 1, anon_sym_BQUOTE, - ACTIONS(6436), 1, + ACTIONS(6774), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6869), 1, + ACTIONS(6780), 1, + sym__brace_start, + ACTIONS(6922), 1, sym_word, - ACTIONS(6875), 1, - sym__comment_word, - ACTIONS(7528), 1, - anon_sym_DOLLAR, - ACTIONS(6438), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6871), 2, + ACTIONS(6924), 1, sym__special_character, + ACTIONS(6928), 1, sym_test_operator, - ACTIONS(6873), 2, + STATE(2841), 1, + aux_sym__literal_repeat1, + STATE(3069), 1, + sym_concatenation, + ACTIONS(6754), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6776), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6926), 2, sym_raw_string, sym_ansi_c_string, - STATE(1371), 9, + STATE(2791), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160432,43 +161377,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122523] = 17, - ACTIONS(3), 1, + [120059] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(6704), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6710), 1, + ACTIONS(6756), 1, + anon_sym_DOLLAR, + ACTIONS(6760), 1, anon_sym_DQUOTE, - ACTIONS(6714), 1, + ACTIONS(6764), 1, aux_sym_number_token1, - ACTIONS(6716), 1, + ACTIONS(6766), 1, aux_sym_number_token2, - ACTIONS(6718), 1, + ACTIONS(6768), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6720), 1, + ACTIONS(6770), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6722), 1, + ACTIONS(6772), 1, anon_sym_BQUOTE, - ACTIONS(6724), 1, + ACTIONS(6774), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6730), 1, + ACTIONS(6780), 1, sym__brace_start, - ACTIONS(7520), 1, + ACTIONS(6924), 1, + sym__special_character, + ACTIONS(6930), 1, sym_word, - ACTIONS(7526), 1, - sym__comment_word, - ACTIONS(7530), 1, - anon_sym_DOLLAR, - ACTIONS(6726), 2, + ACTIONS(6934), 1, + sym_test_operator, + STATE(2864), 1, + aux_sym__literal_repeat1, + STATE(3012), 1, + sym_concatenation, + ACTIONS(6754), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6776), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7522), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7524), 2, + ACTIONS(6932), 2, sym_raw_string, sym_ansi_c_string, - STATE(2741), 9, + STATE(2765), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160478,43 +161427,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122586] = 17, - ACTIONS(3), 1, + [120128] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(6704), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6710), 1, + ACTIONS(6894), 1, + anon_sym_DOLLAR, + ACTIONS(6896), 1, + sym__special_character, + ACTIONS(6898), 1, anon_sym_DQUOTE, - ACTIONS(6714), 1, + ACTIONS(6902), 1, aux_sym_number_token1, - ACTIONS(6716), 1, + ACTIONS(6904), 1, aux_sym_number_token2, - ACTIONS(6718), 1, + ACTIONS(6906), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6720), 1, + ACTIONS(6908), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6722), 1, + ACTIONS(6910), 1, anon_sym_BQUOTE, - ACTIONS(6724), 1, + ACTIONS(6912), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6730), 1, + ACTIONS(6918), 1, sym__brace_start, - ACTIONS(7520), 1, + ACTIONS(6936), 1, sym_word, - ACTIONS(7526), 1, - sym__comment_word, - ACTIONS(7532), 1, - anon_sym_DOLLAR, - ACTIONS(6726), 2, + ACTIONS(6940), 1, + sym_test_operator, + STATE(3485), 1, + aux_sym__literal_repeat1, + STATE(3587), 1, + sym_concatenation, + ACTIONS(6892), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6914), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7522), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7524), 2, + ACTIONS(6938), 2, sym_raw_string, sym_ansi_c_string, - STATE(2741), 9, + STATE(3416), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160524,43 +161477,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122649] = 17, - ACTIONS(3), 1, + [120197] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(6674), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6680), 1, + ACTIONS(6792), 1, + anon_sym_DOLLAR, + ACTIONS(6794), 1, + sym__special_character, + ACTIONS(6796), 1, anon_sym_DQUOTE, - ACTIONS(6684), 1, + ACTIONS(6800), 1, aux_sym_number_token1, - ACTIONS(6686), 1, + ACTIONS(6802), 1, aux_sym_number_token2, - ACTIONS(6688), 1, + ACTIONS(6804), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6690), 1, + ACTIONS(6806), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6692), 1, + ACTIONS(6808), 1, anon_sym_BQUOTE, - ACTIONS(6694), 1, + ACTIONS(6810), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6700), 1, + ACTIONS(6816), 1, sym__brace_start, - ACTIONS(7295), 1, + ACTIONS(6942), 1, sym_word, - ACTIONS(7301), 1, - sym__comment_word, - ACTIONS(7534), 1, - anon_sym_DOLLAR, - ACTIONS(6696), 2, + ACTIONS(6946), 1, + sym_test_operator, + STATE(4014), 1, + aux_sym__literal_repeat1, + STATE(4086), 1, + sym_concatenation, + ACTIONS(6790), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6812), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7297), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7299), 2, + ACTIONS(6944), 2, sym_raw_string, sym_ansi_c_string, - STATE(2852), 9, + STATE(3942), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160570,89 +161527,96 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122712] = 17, + [120266] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6554), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6556), 1, + ACTIONS(6822), 1, + anon_sym_LPAREN, + ACTIONS(6824), 1, + aux_sym__c_word_token1, + ACTIONS(6826), 1, + anon_sym_LF, + ACTIONS(6828), 1, anon_sym_DOLLAR, - ACTIONS(6560), 1, + ACTIONS(6830), 1, anon_sym_DQUOTE, - ACTIONS(6564), 1, + ACTIONS(6832), 1, aux_sym_number_token1, - ACTIONS(6566), 1, + ACTIONS(6834), 1, aux_sym_number_token2, - ACTIONS(6568), 1, + ACTIONS(6836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, + ACTIONS(6838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6572), 1, + ACTIONS(6840), 1, anon_sym_BQUOTE, - ACTIONS(6574), 1, + ACTIONS(6842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6580), 1, - sym__brace_start, - ACTIONS(7490), 1, - sym_word, - ACTIONS(7498), 1, - sym__comment_word, - ACTIONS(6576), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7494), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7496), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3820), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(2645), 1, + sym__c_terminator, + STATE(4575), 1, + sym__for_body, + ACTIONS(6818), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(6820), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4037), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2269), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [122775] = 17, - ACTIONS(3), 1, + [120333] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(6038), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6040), 1, + ACTIONS(6726), 1, anon_sym_DOLLAR, - ACTIONS(6044), 1, + ACTIONS(6730), 1, anon_sym_DQUOTE, - ACTIONS(6048), 1, + ACTIONS(6734), 1, aux_sym_number_token1, - ACTIONS(6050), 1, + ACTIONS(6736), 1, aux_sym_number_token2, - ACTIONS(6052), 1, + ACTIONS(6738), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6054), 1, + ACTIONS(6740), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6056), 1, + ACTIONS(6742), 1, anon_sym_BQUOTE, - ACTIONS(6058), 1, + ACTIONS(6744), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6068), 1, + ACTIONS(6750), 1, sym__brace_start, - ACTIONS(7500), 1, + ACTIONS(6948), 1, sym_word, - ACTIONS(7508), 1, - sym__comment_word, - ACTIONS(6060), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7504), 2, + ACTIONS(6950), 1, sym__special_character, + ACTIONS(6954), 1, sym_test_operator, - ACTIONS(7506), 2, + STATE(2813), 1, + aux_sym__literal_repeat1, + STATE(3053), 1, + sym_concatenation, + ACTIONS(6724), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6746), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6952), 2, sym_raw_string, sym_ansi_c_string, - STATE(1986), 9, + STATE(2919), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160662,43 +161626,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122838] = 17, - ACTIONS(3), 1, + [120402] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(6604), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6610), 1, + ACTIONS(6726), 1, + anon_sym_DOLLAR, + ACTIONS(6730), 1, anon_sym_DQUOTE, - ACTIONS(6614), 1, + ACTIONS(6734), 1, aux_sym_number_token1, - ACTIONS(6616), 1, + ACTIONS(6736), 1, aux_sym_number_token2, - ACTIONS(6618), 1, + ACTIONS(6738), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6620), 1, + ACTIONS(6740), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6622), 1, + ACTIONS(6742), 1, anon_sym_BQUOTE, - ACTIONS(6624), 1, + ACTIONS(6744), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6630), 1, + ACTIONS(6750), 1, sym__brace_start, - ACTIONS(6889), 1, + ACTIONS(6956), 1, sym_word, - ACTIONS(6897), 1, - sym__comment_word, - ACTIONS(7536), 1, - anon_sym_DOLLAR, - ACTIONS(6626), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6893), 2, + ACTIONS(6958), 1, sym__special_character, + ACTIONS(6962), 1, sym_test_operator, - ACTIONS(6895), 2, + STATE(2847), 1, + aux_sym__literal_repeat1, + STATE(3043), 1, + sym_concatenation, + ACTIONS(6724), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6746), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6960), 2, sym_raw_string, sym_ansi_c_string, - STATE(2827), 9, + STATE(2924), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160708,43 +161676,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122901] = 17, - ACTIONS(3), 1, + [120471] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(2352), 1, + ACTIONS(6726), 1, anon_sym_DOLLAR, - ACTIONS(2358), 1, + ACTIONS(6730), 1, + anon_sym_DQUOTE, + ACTIONS(6734), 1, aux_sym_number_token1, - ACTIONS(2360), 1, + ACTIONS(6736), 1, aux_sym_number_token2, - ACTIONS(2364), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2374), 1, - sym__brace_start, - ACTIONS(6528), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6532), 1, - anon_sym_DQUOTE, - ACTIONS(6536), 1, + ACTIONS(6738), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6538), 1, + ACTIONS(6740), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6742), 1, anon_sym_BQUOTE, - ACTIONS(6540), 1, + ACTIONS(6744), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7464), 1, + ACTIONS(6750), 1, + sym__brace_start, + ACTIONS(6950), 1, + sym__special_character, + ACTIONS(6964), 1, sym_word, - ACTIONS(7472), 1, - sym__comment_word, - ACTIONS(6542), 2, + ACTIONS(6968), 1, + sym_test_operator, + STATE(2847), 1, + aux_sym__literal_repeat1, + STATE(3043), 1, + sym_concatenation, + ACTIONS(6724), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6746), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7468), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7470), 2, + ACTIONS(6966), 2, sym_raw_string, sym_ansi_c_string, - STATE(1112), 9, + STATE(2935), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160754,43 +161726,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122964] = 17, + [120540] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6674), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6680), 1, + ACTIONS(611), 1, + anon_sym_DOLLAR, + ACTIONS(615), 1, anon_sym_DQUOTE, - ACTIONS(6684), 1, + ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(6686), 1, + ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(6688), 1, + ACTIONS(623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6690), 1, + ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6692), 1, - anon_sym_BQUOTE, - ACTIONS(6694), 1, + ACTIONS(629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6700), 1, + ACTIONS(635), 1, sym__brace_start, - ACTIONS(7295), 1, + ACTIONS(4757), 1, + anon_sym_BQUOTE, + ACTIONS(6872), 1, sym_word, - ACTIONS(7301), 1, - sym__comment_word, - ACTIONS(7538), 1, - anon_sym_DOLLAR, - ACTIONS(6696), 2, + ACTIONS(6880), 1, + sym_test_operator, + ACTIONS(6970), 1, + anon_sym_RBRACK, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7297), 2, + ACTIONS(6876), 2, sym__special_character, - sym_test_operator, - ACTIONS(7299), 2, + sym__comment_word, + ACTIONS(6878), 2, sym_raw_string, sym_ansi_c_string, - STATE(2852), 9, + STATE(1856), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160800,43 +161775,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123027] = 17, + [120607] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5424), 1, + ACTIONS(611), 1, + anon_sym_DOLLAR, + ACTIONS(615), 1, + anon_sym_DQUOTE, + ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(5426), 1, + ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(5430), 1, + ACTIONS(623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5440), 1, + ACTIONS(629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(635), 1, sym__brace_start, - ACTIONS(6296), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6300), 1, - anon_sym_DQUOTE, - ACTIONS(6304), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6306), 1, + ACTIONS(4757), 1, anon_sym_BQUOTE, - ACTIONS(6308), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7347), 1, + ACTIONS(6872), 1, sym_word, - ACTIONS(7355), 1, - sym__comment_word, - ACTIONS(7540), 1, - anon_sym_DOLLAR, - ACTIONS(6310), 2, + ACTIONS(6880), 1, + sym_test_operator, + ACTIONS(6972), 1, + anon_sym_RBRACK, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7351), 2, + ACTIONS(6876), 2, sym__special_character, - sym_test_operator, - ACTIONS(7353), 2, + sym__comment_word, + ACTIONS(6878), 2, sym_raw_string, sym_ansi_c_string, - STATE(2863), 9, + STATE(1856), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160846,43 +161824,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123090] = 17, - ACTIONS(3), 1, + [120674] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(586), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(592), 1, + ACTIONS(6726), 1, + anon_sym_DOLLAR, + ACTIONS(6730), 1, anon_sym_DQUOTE, - ACTIONS(596), 1, + ACTIONS(6734), 1, aux_sym_number_token1, - ACTIONS(598), 1, + ACTIONS(6736), 1, aux_sym_number_token2, - ACTIONS(600), 1, + ACTIONS(6738), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(602), 1, + ACTIONS(6740), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(604), 1, + ACTIONS(6742), 1, anon_sym_BQUOTE, - ACTIONS(606), 1, + ACTIONS(6744), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(616), 1, + ACTIONS(6750), 1, sym__brace_start, - ACTIONS(7512), 1, + ACTIONS(6958), 1, + sym__special_character, + ACTIONS(6974), 1, sym_word, - ACTIONS(7518), 1, - sym__comment_word, - ACTIONS(7542), 1, - anon_sym_DOLLAR, - ACTIONS(608), 2, + ACTIONS(6978), 1, + sym_test_operator, + STATE(2813), 1, + aux_sym__literal_repeat1, + STATE(3053), 1, + sym_concatenation, + ACTIONS(6724), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6746), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7514), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7516), 2, + ACTIONS(6976), 2, sym_raw_string, sym_ansi_c_string, - STATE(843), 9, + STATE(2920), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160892,10 +161874,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123153] = 3, + [120743] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4295), 8, + ACTIONS(6920), 1, + sym__special_character, + STATE(2502), 1, + aux_sym__literal_repeat1, + ACTIONS(3989), 8, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -160904,17 +161890,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4297), 19, + ACTIONS(3991), 19, sym_file_descriptor, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -160924,43 +161910,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [123188] = 17, - ACTIONS(3), 1, + [120784] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(6604), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6610), 1, + ACTIONS(6792), 1, + anon_sym_DOLLAR, + ACTIONS(6794), 1, + sym__special_character, + ACTIONS(6796), 1, anon_sym_DQUOTE, - ACTIONS(6614), 1, + ACTIONS(6800), 1, aux_sym_number_token1, - ACTIONS(6616), 1, + ACTIONS(6802), 1, aux_sym_number_token2, - ACTIONS(6618), 1, + ACTIONS(6804), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6620), 1, + ACTIONS(6806), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6622), 1, + ACTIONS(6808), 1, anon_sym_BQUOTE, - ACTIONS(6624), 1, + ACTIONS(6810), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6630), 1, + ACTIONS(6816), 1, sym__brace_start, - ACTIONS(6889), 1, + ACTIONS(6980), 1, sym_word, - ACTIONS(6897), 1, - sym__comment_word, - ACTIONS(7544), 1, - anon_sym_DOLLAR, - ACTIONS(6626), 2, + ACTIONS(6984), 1, + sym_test_operator, + STATE(3995), 1, + aux_sym__literal_repeat1, + STATE(4059), 1, + sym_concatenation, + ACTIONS(6790), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6812), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6893), 2, - sym__special_character, - sym_test_operator, - ACTIONS(6895), 2, + ACTIONS(6982), 2, sym_raw_string, sym_ansi_c_string, - STATE(2827), 9, + STATE(3954), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160970,43 +161960,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123251] = 17, + [120853] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(586), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(592), 1, + ACTIONS(611), 1, + anon_sym_DOLLAR, + ACTIONS(615), 1, anon_sym_DQUOTE, - ACTIONS(596), 1, + ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(598), 1, + ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(600), 1, + ACTIONS(623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(602), 1, + ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(604), 1, - anon_sym_BQUOTE, - ACTIONS(606), 1, + ACTIONS(629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(616), 1, + ACTIONS(635), 1, sym__brace_start, - ACTIONS(7512), 1, + ACTIONS(4757), 1, + anon_sym_BQUOTE, + ACTIONS(6872), 1, sym_word, - ACTIONS(7518), 1, - sym__comment_word, - ACTIONS(7546), 1, - anon_sym_DOLLAR, - ACTIONS(608), 2, + ACTIONS(6880), 1, + sym_test_operator, + ACTIONS(6986), 1, + anon_sym_RBRACK, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7514), 2, + ACTIONS(6876), 2, sym__special_character, - sym_test_operator, - ACTIONS(7516), 2, + sym__comment_word, + ACTIONS(6878), 2, sym_raw_string, sym_ansi_c_string, - STATE(843), 9, + STATE(1856), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161016,43 +162009,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123314] = 17, - ACTIONS(3), 1, + [120920] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(2107), 1, + ACTIONS(6726), 1, anon_sym_DOLLAR, - ACTIONS(2113), 1, - aux_sym_number_token1, - ACTIONS(2115), 1, - aux_sym_number_token2, - ACTIONS(2119), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2133), 1, - sym__brace_start, - ACTIONS(7438), 1, - sym_word, - ACTIONS(7440), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7446), 1, + ACTIONS(6728), 1, + sym__special_character, + ACTIONS(6730), 1, anon_sym_DQUOTE, - ACTIONS(7450), 1, + ACTIONS(6734), 1, + aux_sym_number_token1, + ACTIONS(6736), 1, + aux_sym_number_token2, + ACTIONS(6738), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7452), 1, + ACTIONS(6740), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6742), 1, anon_sym_BQUOTE, - ACTIONS(7454), 1, + ACTIONS(6744), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7458), 1, - sym__comment_word, - ACTIONS(7444), 2, - sym__special_character, + ACTIONS(6750), 1, + sym__brace_start, + ACTIONS(6988), 1, + sym_word, + ACTIONS(6992), 1, sym_test_operator, - ACTIONS(7448), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7456), 2, + STATE(2847), 1, + aux_sym__literal_repeat1, + STATE(3043), 1, + sym_concatenation, + ACTIONS(6724), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6746), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(910), 9, + ACTIONS(6990), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2966), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161062,43 +162059,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123377] = 17, + [120989] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2498), 1, + ACTIONS(611), 1, anon_sym_DOLLAR, - ACTIONS(2504), 1, + ACTIONS(615), 1, + anon_sym_DQUOTE, + ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(2506), 1, + ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(2510), 1, + ACTIONS(623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2522), 1, + ACTIONS(629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(635), 1, sym__brace_start, - ACTIONS(7179), 1, + ACTIONS(4757), 1, + anon_sym_BQUOTE, + ACTIONS(6872), 1, sym_word, - ACTIONS(7181), 1, + ACTIONS(6880), 1, + sym_test_operator, + ACTIONS(6994), 1, + anon_sym_RBRACK, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7187), 1, - anon_sym_DQUOTE, - ACTIONS(7191), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7193), 1, - anon_sym_BQUOTE, - ACTIONS(7195), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7199), 1, - sym__comment_word, - ACTIONS(7185), 2, + ACTIONS(631), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6876), 2, sym__special_character, - sym_test_operator, - ACTIONS(7189), 2, + sym__comment_word, + ACTIONS(6878), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7197), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1317), 9, + STATE(1856), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161108,43 +162108,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123440] = 17, + [121056] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3428), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3430), 1, + ACTIONS(611), 1, anon_sym_DOLLAR, - ACTIONS(3434), 1, + ACTIONS(615), 1, anon_sym_DQUOTE, - ACTIONS(3438), 1, + ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(3440), 1, + ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(3442), 1, + ACTIONS(623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3444), 1, + ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3446), 1, - anon_sym_BQUOTE, - ACTIONS(3448), 1, + ACTIONS(629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3454), 1, + ACTIONS(635), 1, sym__brace_start, - ACTIONS(7402), 1, + ACTIONS(4757), 1, + anon_sym_BQUOTE, + ACTIONS(6872), 1, sym_word, - ACTIONS(7410), 1, - sym__comment_word, - ACTIONS(3450), 2, + ACTIONS(6880), 1, + sym_test_operator, + ACTIONS(6996), 1, + anon_sym_RBRACK, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7406), 2, + ACTIONS(6876), 2, sym__special_character, - sym_test_operator, - ACTIONS(7408), 2, + sym__comment_word, + ACTIONS(6878), 2, sym_raw_string, sym_ansi_c_string, - STATE(1854), 9, + STATE(1856), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161154,80 +162157,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123503] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7548), 1, - anon_sym_LF, - ACTIONS(7558), 1, - anon_sym_LT_LT_LT, - ACTIONS(7561), 1, - sym_file_descriptor, - ACTIONS(7552), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2559), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7555), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7550), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP, - [123548] = 17, + [121123] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 1, + ACTIONS(611), 1, anon_sym_DOLLAR, - ACTIONS(1473), 1, + ACTIONS(615), 1, + anon_sym_DQUOTE, + ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(1475), 1, + ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(1479), 1, + ACTIONS(623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1495), 1, + ACTIONS(629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(635), 1, sym__brace_start, - ACTIONS(5873), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5877), 1, - anon_sym_DQUOTE, - ACTIONS(5881), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5883), 1, + ACTIONS(4757), 1, anon_sym_BQUOTE, - ACTIONS(5885), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7424), 1, + ACTIONS(6872), 1, sym_word, - ACTIONS(7432), 1, - sym__comment_word, - ACTIONS(5887), 2, + ACTIONS(6880), 1, + sym_test_operator, + ACTIONS(6998), 1, + anon_sym_RBRACK, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7428), 2, + ACTIONS(6876), 2, sym__special_character, - sym_test_operator, - ACTIONS(7430), 2, + sym__comment_word, + ACTIONS(6878), 2, sym_raw_string, sym_ansi_c_string, - STATE(783), 9, + STATE(1856), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161237,89 +162206,83 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123611] = 17, - ACTIONS(3), 1, + [121190] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(6554), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6560), 1, - anon_sym_DQUOTE, - ACTIONS(6564), 1, + ACTIONS(7000), 1, + sym__special_character, + STATE(2502), 1, + aux_sym__literal_repeat1, + ACTIONS(1352), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(6566), 1, aux_sym_number_token2, - ACTIONS(6568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6572), 1, + sym_word, + ACTIONS(1357), 19, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(6574), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6580), 1, - sym__brace_start, - ACTIONS(7490), 1, - sym_word, - ACTIONS(7498), 1, - sym__comment_word, - ACTIONS(7564), 1, - anon_sym_DOLLAR, - ACTIONS(6576), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7494), 2, - sym__special_character, sym_test_operator, - ACTIONS(7496), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3820), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123674] = 17, - ACTIONS(3), 1, + [121231] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(5994), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6000), 1, + ACTIONS(7003), 1, + sym_word, + ACTIONS(7007), 1, + anon_sym_DOLLAR, + ACTIONS(7009), 1, + sym__special_character, + ACTIONS(7011), 1, anon_sym_DQUOTE, - ACTIONS(6004), 1, + ACTIONS(7015), 1, aux_sym_number_token1, - ACTIONS(6006), 1, + ACTIONS(7017), 1, aux_sym_number_token2, - ACTIONS(6008), 1, + ACTIONS(7019), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6010), 1, + ACTIONS(7021), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6012), 1, + ACTIONS(7023), 1, anon_sym_BQUOTE, - ACTIONS(6014), 1, + ACTIONS(7025), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6024), 1, - sym__brace_start, - ACTIONS(7147), 1, - sym_word, - ACTIONS(7153), 1, - sym__comment_word, - ACTIONS(7566), 1, - anon_sym_DOLLAR, - ACTIONS(6016), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7149), 2, - sym__special_character, + ACTIONS(7029), 1, sym_test_operator, - ACTIONS(7151), 2, + ACTIONS(7031), 1, + sym__brace_start, + STATE(3560), 1, + aux_sym__literal_repeat1, + STATE(3604), 1, + sym_concatenation, + ACTIONS(7005), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7013), 2, sym_raw_string, sym_ansi_c_string, - STATE(2623), 9, + ACTIONS(7027), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3492), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161329,89 +162292,96 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123737] = 17, + [121300] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5994), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6000), 1, + ACTIONS(6822), 1, + anon_sym_LPAREN, + ACTIONS(6824), 1, + aux_sym__c_word_token1, + ACTIONS(6826), 1, + anon_sym_LF, + ACTIONS(6828), 1, + anon_sym_DOLLAR, + ACTIONS(6830), 1, anon_sym_DQUOTE, - ACTIONS(6004), 1, + ACTIONS(6832), 1, aux_sym_number_token1, - ACTIONS(6006), 1, + ACTIONS(6834), 1, aux_sym_number_token2, - ACTIONS(6008), 1, + ACTIONS(6836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6010), 1, + ACTIONS(6838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6012), 1, + ACTIONS(6840), 1, anon_sym_BQUOTE, - ACTIONS(6014), 1, + ACTIONS(6842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6024), 1, - sym__brace_start, - ACTIONS(7147), 1, - sym_word, - ACTIONS(7153), 1, - sym__comment_word, - ACTIONS(7568), 1, - anon_sym_DOLLAR, - ACTIONS(6016), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7149), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7151), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2623), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(2645), 1, + sym__c_terminator, + STATE(4654), 1, + sym__for_body, + ACTIONS(6818), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(6820), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4037), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2269), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [123800] = 17, - ACTIONS(3), 1, + [121367] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(6634), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6636), 1, + ACTIONS(7007), 1, anon_sym_DOLLAR, - ACTIONS(6640), 1, + ACTIONS(7009), 1, + sym__special_character, + ACTIONS(7011), 1, anon_sym_DQUOTE, - ACTIONS(6644), 1, + ACTIONS(7015), 1, aux_sym_number_token1, - ACTIONS(6646), 1, + ACTIONS(7017), 1, aux_sym_number_token2, - ACTIONS(6648), 1, + ACTIONS(7019), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6650), 1, + ACTIONS(7021), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6652), 1, + ACTIONS(7023), 1, anon_sym_BQUOTE, - ACTIONS(6654), 1, + ACTIONS(7025), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6660), 1, + ACTIONS(7031), 1, sym__brace_start, - ACTIONS(7321), 1, + ACTIONS(7033), 1, sym_word, - ACTIONS(7329), 1, - sym__comment_word, - ACTIONS(6656), 2, + ACTIONS(7037), 1, + sym_test_operator, + STATE(3546), 1, + aux_sym__literal_repeat1, + STATE(3603), 1, + sym_concatenation, + ACTIONS(7005), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7027), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7325), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7327), 2, + ACTIONS(7035), 2, sym_raw_string, sym_ansi_c_string, - STATE(3412), 9, + STATE(3501), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161421,43 +162391,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123863] = 17, + [121436] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(115), 1, + ACTIONS(45), 1, anon_sym_DQUOTE, - ACTIONS(119), 1, + ACTIONS(49), 1, aux_sym_number_token1, - ACTIONS(121), 1, + ACTIONS(51), 1, aux_sym_number_token2, - ACTIONS(123), 1, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(125), 1, + ACTIONS(55), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(127), 1, + ACTIONS(57), 1, anon_sym_BQUOTE, - ACTIONS(129), 1, + ACTIONS(59), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(139), 1, + ACTIONS(71), 1, sym__brace_start, - ACTIONS(7482), 1, + ACTIONS(7039), 1, sym_word, - ACTIONS(7488), 1, - sym__comment_word, - ACTIONS(7570), 1, + ACTIONS(7041), 1, anon_sym_DOLLAR, - ACTIONS(131), 2, + ACTIONS(7047), 1, + sym__comment_word, + ACTIONS(13), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(61), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7484), 2, + ACTIONS(7043), 2, sym__special_character, sym_test_operator, - ACTIONS(7486), 2, + ACTIONS(7045), 2, sym_raw_string, sym_ansi_c_string, - STATE(368), 9, + STATE(1023), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161467,89 +162438,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123926] = 17, + [121500] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(332), 1, + ACTIONS(2538), 1, aux_sym_number_token1, - ACTIONS(334), 1, + ACTIONS(2540), 1, aux_sym_number_token2, - ACTIONS(338), 1, + ACTIONS(2544), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, + ACTIONS(2556), 1, sym__brace_start, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4799), 1, - anon_sym_BQUOTE, - ACTIONS(7031), 1, + ACTIONS(7049), 1, sym_word, - ACTIONS(7039), 1, - sym__comment_word, - ACTIONS(7572), 1, + ACTIONS(7053), 1, anon_sym_DOLLAR, - ACTIONS(1171), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7035), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7037), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1343), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123989] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5837), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5843), 1, + ACTIONS(7057), 1, anon_sym_DQUOTE, - ACTIONS(5847), 1, - aux_sym_number_token1, - ACTIONS(5849), 1, - aux_sym_number_token2, - ACTIONS(5851), 1, + ACTIONS(7061), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5853), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5855), 1, + ACTIONS(7063), 1, anon_sym_BQUOTE, - ACTIONS(5857), 1, + ACTIONS(7065), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5867), 1, - sym__brace_start, - ACTIONS(7165), 1, - sym_word, - ACTIONS(7171), 1, + ACTIONS(7069), 1, sym__comment_word, - ACTIONS(7574), 1, - anon_sym_DOLLAR, - ACTIONS(5859), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7167), 2, + ACTIONS(7051), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7055), 2, sym__special_character, sym_test_operator, - ACTIONS(7169), 2, + ACTIONS(7059), 2, sym_raw_string, sym_ansi_c_string, - STATE(1162), 9, + ACTIONS(7067), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1325), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161559,34 +162485,35 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124052] = 17, + [121564] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1077), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 1, + ACTIONS(6004), 1, anon_sym_DQUOTE, - ACTIONS(1087), 1, + ACTIONS(6008), 1, aux_sym_number_token1, - ACTIONS(1089), 1, + ACTIONS(6010), 1, aux_sym_number_token2, - ACTIONS(1091), 1, + ACTIONS(6012), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1093), 1, + ACTIONS(6014), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1095), 1, + ACTIONS(6016), 1, anon_sym_BQUOTE, - ACTIONS(1097), 1, + ACTIONS(6018), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1105), 1, + ACTIONS(6028), 1, sym__brace_start, - ACTIONS(7073), 1, + ACTIONS(7071), 1, sym_word, + ACTIONS(7073), 1, + anon_sym_DOLLAR, ACTIONS(7079), 1, sym__comment_word, - ACTIONS(7576), 1, - anon_sym_DOLLAR, - ACTIONS(1099), 2, + ACTIONS(5996), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6020), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(7075), 2, @@ -161595,7 +162522,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7077), 2, sym_raw_string, sym_ansi_c_string, - STATE(1586), 9, + STATE(2736), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161605,43 +162532,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124115] = 17, + [121628] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5837), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5843), 1, + ACTIONS(6726), 1, + anon_sym_DOLLAR, + ACTIONS(6730), 1, anon_sym_DQUOTE, - ACTIONS(5847), 1, + ACTIONS(6734), 1, aux_sym_number_token1, - ACTIONS(5849), 1, + ACTIONS(6736), 1, aux_sym_number_token2, - ACTIONS(5851), 1, + ACTIONS(6738), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5853), 1, + ACTIONS(6740), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5855), 1, + ACTIONS(6742), 1, anon_sym_BQUOTE, - ACTIONS(5857), 1, + ACTIONS(6744), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5867), 1, + ACTIONS(6750), 1, sym__brace_start, - ACTIONS(7165), 1, + ACTIONS(7081), 1, sym_word, - ACTIONS(7171), 1, + ACTIONS(7087), 1, sym__comment_word, - ACTIONS(7578), 1, - anon_sym_DOLLAR, - ACTIONS(5859), 2, + ACTIONS(6724), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6746), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7167), 2, + ACTIONS(7083), 2, sym__special_character, sym_test_operator, - ACTIONS(7169), 2, + ACTIONS(7085), 2, sym_raw_string, sym_ansi_c_string, - STATE(1162), 9, + STATE(2878), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161651,10 +162579,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124178] = 3, + [121692] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 8, + ACTIONS(1242), 8, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -161663,10 +162591,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1272), 19, + ACTIONS(1244), 20, sym_file_descriptor, sym_variable_name, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -161683,43 +162612,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [124213] = 17, + [121728] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6316), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6318), 1, + ACTIONS(4240), 1, anon_sym_DOLLAR, - ACTIONS(6322), 1, + ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(6326), 1, + ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(6328), 1, + ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(6330), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6332), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6334), 1, + ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(6336), 1, + ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6342), 1, + ACTIONS(4264), 1, sym__brace_start, - ACTIONS(7285), 1, + ACTIONS(7089), 1, sym_word, - ACTIONS(7293), 1, + ACTIONS(7095), 1, sym__comment_word, - ACTIONS(6338), 2, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4260), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7289), 2, + ACTIONS(7091), 2, sym__special_character, sym_test_operator, - ACTIONS(7291), 2, + ACTIONS(7093), 2, sym_raw_string, sym_ansi_c_string, - STATE(3986), 9, + STATE(3174), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161729,43 +162659,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124276] = 17, + [121792] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1541), 1, + ACTIONS(1931), 1, aux_sym_number_token1, - ACTIONS(1543), 1, + ACTIONS(1933), 1, aux_sym_number_token2, - ACTIONS(1547), 1, + ACTIONS(1937), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1561), 1, + ACTIONS(1951), 1, sym__brace_start, - ACTIONS(5699), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5857), 1, anon_sym_DQUOTE, - ACTIONS(5707), 1, + ACTIONS(5861), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5709), 1, + ACTIONS(5863), 1, anon_sym_BQUOTE, - ACTIONS(5711), 1, + ACTIONS(5865), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7223), 1, + ACTIONS(7097), 1, sym_word, - ACTIONS(7229), 1, - sym__comment_word, - ACTIONS(7580), 1, + ACTIONS(7099), 1, anon_sym_DOLLAR, - ACTIONS(5713), 2, + ACTIONS(7105), 1, + sym__comment_word, + ACTIONS(5851), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5867), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7225), 2, + ACTIONS(7101), 2, sym__special_character, sym_test_operator, - ACTIONS(7227), 2, + ACTIONS(7103), 2, sym_raw_string, sym_ansi_c_string, - STATE(954), 9, + STATE(1151), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161775,43 +162706,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124339] = 17, + [121856] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1541), 1, + ACTIONS(2919), 1, aux_sym_number_token1, - ACTIONS(1543), 1, + ACTIONS(2921), 1, aux_sym_number_token2, - ACTIONS(1547), 1, + ACTIONS(2925), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1561), 1, + ACTIONS(2935), 1, sym__brace_start, - ACTIONS(5699), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5703), 1, + ACTIONS(6564), 1, anon_sym_DQUOTE, - ACTIONS(5707), 1, + ACTIONS(6568), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5709), 1, + ACTIONS(6570), 1, anon_sym_BQUOTE, - ACTIONS(5711), 1, + ACTIONS(6572), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7223), 1, + ACTIONS(7107), 1, sym_word, - ACTIONS(7229), 1, - sym__comment_word, - ACTIONS(7582), 1, + ACTIONS(7109), 1, anon_sym_DOLLAR, - ACTIONS(5713), 2, + ACTIONS(7115), 1, + sym__comment_word, + ACTIONS(6560), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6574), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7225), 2, + ACTIONS(7111), 2, sym__special_character, sym_test_operator, - ACTIONS(7227), 2, + ACTIONS(7113), 2, sym_raw_string, sym_ansi_c_string, - STATE(954), 9, + STATE(1435), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161821,43 +162753,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124402] = 17, + [121920] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5625), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5627), 1, - anon_sym_DOLLAR, - ACTIONS(5631), 1, + ACTIONS(5915), 1, anon_sym_DQUOTE, - ACTIONS(5635), 1, + ACTIONS(5919), 1, aux_sym_number_token1, - ACTIONS(5637), 1, + ACTIONS(5921), 1, aux_sym_number_token2, - ACTIONS(5639), 1, + ACTIONS(5923), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5641), 1, + ACTIONS(5925), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5643), 1, + ACTIONS(5927), 1, anon_sym_BQUOTE, - ACTIONS(5645), 1, + ACTIONS(5929), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5655), 1, + ACTIONS(5939), 1, sym__brace_start, - ACTIONS(7115), 1, + ACTIONS(7117), 1, sym_word, - ACTIONS(7123), 1, + ACTIONS(7119), 1, + anon_sym_DOLLAR, + ACTIONS(7125), 1, sym__comment_word, - ACTIONS(5647), 2, + ACTIONS(5907), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5931), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7119), 2, + ACTIONS(7121), 2, sym__special_character, sym_test_operator, - ACTIONS(7121), 2, + ACTIONS(7123), 2, sym_raw_string, sym_ansi_c_string, - STATE(2783), 9, + STATE(1201), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161867,43 +162800,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124465] = 17, + [121984] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5667), 1, + ACTIONS(5915), 1, anon_sym_DQUOTE, - ACTIONS(5671), 1, + ACTIONS(5919), 1, aux_sym_number_token1, - ACTIONS(5673), 1, + ACTIONS(5921), 1, aux_sym_number_token2, - ACTIONS(5675), 1, + ACTIONS(5923), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5677), 1, + ACTIONS(5925), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5679), 1, + ACTIONS(5927), 1, anon_sym_BQUOTE, - ACTIONS(5681), 1, + ACTIONS(5929), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5691), 1, + ACTIONS(5939), 1, sym__brace_start, - ACTIONS(7015), 1, + ACTIONS(7117), 1, sym_word, - ACTIONS(7023), 1, + ACTIONS(7125), 1, sym__comment_word, - ACTIONS(7584), 1, + ACTIONS(7127), 1, anon_sym_DOLLAR, - ACTIONS(5683), 2, + ACTIONS(5907), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5931), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7019), 2, + ACTIONS(7121), 2, sym__special_character, sym_test_operator, - ACTIONS(7021), 2, + ACTIONS(7123), 2, sym_raw_string, sym_ansi_c_string, - STATE(1304), 9, + STATE(1201), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161913,89 +162847,91 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124528] = 17, + [122048] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(115), 1, + ACTIONS(6822), 1, + anon_sym_LPAREN, + ACTIONS(6824), 1, + aux_sym__c_word_token1, + ACTIONS(6828), 1, + anon_sym_DOLLAR, + ACTIONS(6830), 1, anon_sym_DQUOTE, - ACTIONS(119), 1, + ACTIONS(6832), 1, aux_sym_number_token1, - ACTIONS(121), 1, + ACTIONS(6834), 1, aux_sym_number_token2, - ACTIONS(123), 1, + ACTIONS(6836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(125), 1, + ACTIONS(6838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(127), 1, + ACTIONS(6840), 1, anon_sym_BQUOTE, - ACTIONS(129), 1, + ACTIONS(6842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(139), 1, - sym__brace_start, - ACTIONS(7482), 1, - sym_word, - ACTIONS(7488), 1, - sym__comment_word, - ACTIONS(7586), 1, - anon_sym_DOLLAR, - ACTIONS(131), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7484), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7486), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(368), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(7131), 1, + anon_sym_LF, + STATE(2859), 1, + sym__c_terminator, + ACTIONS(6820), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7129), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(4038), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2269), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [124591] = 17, + [122112] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2328), 1, + ACTIONS(5483), 1, + anon_sym_DOLLAR, + ACTIONS(5489), 1, aux_sym_number_token1, - ACTIONS(2330), 1, + ACTIONS(5491), 1, aux_sym_number_token2, - ACTIONS(2334), 1, + ACTIONS(5495), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2346), 1, + ACTIONS(5505), 1, sym__brace_start, - ACTIONS(7249), 1, - sym_word, - ACTIONS(7251), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7255), 1, + ACTIONS(6546), 1, anon_sym_DQUOTE, - ACTIONS(7259), 1, + ACTIONS(6550), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7261), 1, + ACTIONS(6552), 1, anon_sym_BQUOTE, - ACTIONS(7263), 1, + ACTIONS(6554), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7267), 1, + ACTIONS(7133), 1, + sym_word, + ACTIONS(7139), 1, sym__comment_word, - ACTIONS(7588), 1, - anon_sym_DOLLAR, - ACTIONS(7253), 2, + ACTIONS(6542), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6556), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7135), 2, sym__special_character, sym_test_operator, - ACTIONS(7257), 2, + ACTIONS(7137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7265), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1095), 9, + STATE(2929), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162005,43 +162941,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124654] = 17, + [122176] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5667), 1, - anon_sym_DQUOTE, - ACTIONS(5671), 1, + ACTIONS(1565), 1, aux_sym_number_token1, - ACTIONS(5673), 1, + ACTIONS(1567), 1, aux_sym_number_token2, - ACTIONS(5675), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5677), 1, + ACTIONS(1571), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5679), 1, + ACTIONS(1585), 1, + sym__brace_start, + ACTIONS(5829), 1, + anon_sym_DQUOTE, + ACTIONS(5833), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5835), 1, anon_sym_BQUOTE, - ACTIONS(5681), 1, + ACTIONS(5837), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5691), 1, - sym__brace_start, - ACTIONS(7015), 1, + ACTIONS(7141), 1, sym_word, - ACTIONS(7023), 1, - sym__comment_word, - ACTIONS(7590), 1, + ACTIONS(7143), 1, anon_sym_DOLLAR, - ACTIONS(5683), 2, + ACTIONS(7149), 1, + sym__comment_word, + ACTIONS(5823), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5839), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7019), 2, + ACTIONS(7145), 2, sym__special_character, sym_test_operator, - ACTIONS(7021), 2, + ACTIONS(7147), 2, sym_raw_string, sym_ansi_c_string, - STATE(1304), 9, + STATE(967), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162051,43 +162988,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124717] = 17, + [122240] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2328), 1, + ACTIONS(1565), 1, aux_sym_number_token1, - ACTIONS(2330), 1, + ACTIONS(1567), 1, aux_sym_number_token2, - ACTIONS(2334), 1, + ACTIONS(1571), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2346), 1, + ACTIONS(1585), 1, sym__brace_start, - ACTIONS(7249), 1, - sym_word, - ACTIONS(7251), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7255), 1, + ACTIONS(5829), 1, anon_sym_DQUOTE, - ACTIONS(7259), 1, + ACTIONS(5833), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7261), 1, + ACTIONS(5835), 1, anon_sym_BQUOTE, - ACTIONS(7263), 1, + ACTIONS(5837), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7267), 1, + ACTIONS(7141), 1, + sym_word, + ACTIONS(7149), 1, sym__comment_word, - ACTIONS(7592), 1, + ACTIONS(7151), 1, anon_sym_DOLLAR, - ACTIONS(7253), 2, + ACTIONS(5823), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5839), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7145), 2, sym__special_character, sym_test_operator, - ACTIONS(7257), 2, + ACTIONS(7147), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7265), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1095), 9, + STATE(967), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162097,43 +163035,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124780] = 17, + [122304] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5765), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5767), 1, - anon_sym_DOLLAR, - ACTIONS(5771), 1, + ACTIONS(3695), 1, anon_sym_DQUOTE, - ACTIONS(5775), 1, + ACTIONS(3699), 1, aux_sym_number_token1, - ACTIONS(5777), 1, + ACTIONS(3701), 1, aux_sym_number_token2, - ACTIONS(5779), 1, + ACTIONS(3703), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5781), 1, + ACTIONS(3705), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5783), 1, + ACTIONS(3707), 1, anon_sym_BQUOTE, - ACTIONS(5785), 1, + ACTIONS(3709), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5795), 1, + ACTIONS(3715), 1, sym__brace_start, - ACTIONS(6877), 1, + ACTIONS(7153), 1, sym_word, - ACTIONS(6885), 1, + ACTIONS(7155), 1, + anon_sym_DOLLAR, + ACTIONS(7161), 1, sym__comment_word, - ACTIONS(5787), 2, + ACTIONS(3689), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3711), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6881), 2, + ACTIONS(7157), 2, sym__special_character, sym_test_operator, - ACTIONS(6883), 2, + ACTIONS(7159), 2, sym_raw_string, sym_ansi_c_string, - STATE(2641), 9, + STATE(1998), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162143,43 +163082,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124843] = 17, + [122368] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, + ACTIONS(5679), 1, + anon_sym_DQUOTE, + ACTIONS(5683), 1, aux_sym_number_token1, - ACTIONS(2478), 1, + ACTIONS(5685), 1, aux_sym_number_token2, - ACTIONS(2482), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2492), 1, - sym__brace_start, - ACTIONS(6496), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6500), 1, - anon_sym_DQUOTE, - ACTIONS(6504), 1, + ACTIONS(5687), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6506), 1, + ACTIONS(5689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5691), 1, anon_sym_BQUOTE, - ACTIONS(6508), 1, + ACTIONS(5693), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7275), 1, + ACTIONS(5703), 1, + sym__brace_start, + ACTIONS(7163), 1, sym_word, - ACTIONS(7281), 1, - sym__comment_word, - ACTIONS(7594), 1, + ACTIONS(7165), 1, anon_sym_DOLLAR, - ACTIONS(6510), 2, + ACTIONS(7171), 1, + sym__comment_word, + ACTIONS(5671), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7277), 2, + ACTIONS(7167), 2, sym__special_character, sym_test_operator, - ACTIONS(7279), 2, + ACTIONS(7169), 2, sym_raw_string, sym_ansi_c_string, - STATE(1280), 9, + STATE(2793), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162189,43 +163129,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124906] = 17, + [122432] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, + ACTIONS(5679), 1, + anon_sym_DQUOTE, + ACTIONS(5683), 1, aux_sym_number_token1, - ACTIONS(2478), 1, + ACTIONS(5685), 1, aux_sym_number_token2, - ACTIONS(2482), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2492), 1, - sym__brace_start, - ACTIONS(6496), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6500), 1, - anon_sym_DQUOTE, - ACTIONS(6504), 1, + ACTIONS(5687), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6506), 1, + ACTIONS(5689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5691), 1, anon_sym_BQUOTE, - ACTIONS(6508), 1, + ACTIONS(5693), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7275), 1, + ACTIONS(5703), 1, + sym__brace_start, + ACTIONS(7163), 1, sym_word, - ACTIONS(7281), 1, + ACTIONS(7171), 1, sym__comment_word, - ACTIONS(7596), 1, + ACTIONS(7173), 1, anon_sym_DOLLAR, - ACTIONS(6510), 2, + ACTIONS(5671), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7277), 2, + ACTIONS(7167), 2, sym__special_character, sym_test_operator, - ACTIONS(7279), 2, + ACTIONS(7169), 2, sym_raw_string, sym_ansi_c_string, - STATE(1280), 9, + STATE(2793), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162235,43 +163176,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124969] = 17, + [122496] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5922), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5924), 1, - anon_sym_DOLLAR, - ACTIONS(5928), 1, + ACTIONS(3695), 1, anon_sym_DQUOTE, - ACTIONS(5932), 1, + ACTIONS(3699), 1, aux_sym_number_token1, - ACTIONS(5934), 1, + ACTIONS(3701), 1, aux_sym_number_token2, - ACTIONS(5936), 1, + ACTIONS(3703), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5938), 1, + ACTIONS(3705), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5940), 1, + ACTIONS(3707), 1, anon_sym_BQUOTE, - ACTIONS(5942), 1, + ACTIONS(3709), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5952), 1, + ACTIONS(3715), 1, sym__brace_start, - ACTIONS(7081), 1, + ACTIONS(7153), 1, sym_word, - ACTIONS(7089), 1, + ACTIONS(7161), 1, sym__comment_word, - ACTIONS(5944), 2, + ACTIONS(7175), 1, + anon_sym_DOLLAR, + ACTIONS(3689), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3711), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7085), 2, + ACTIONS(7157), 2, sym__special_character, sym_test_operator, - ACTIONS(7087), 2, + ACTIONS(7159), 2, sym_raw_string, sym_ansi_c_string, - STATE(3309), 9, + STATE(1998), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162281,43 +163223,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125032] = 17, + [122560] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6704), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6710), 1, - anon_sym_DQUOTE, - ACTIONS(6714), 1, + ACTIONS(2919), 1, aux_sym_number_token1, - ACTIONS(6716), 1, + ACTIONS(2921), 1, aux_sym_number_token2, - ACTIONS(6718), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6720), 1, + ACTIONS(2925), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6722), 1, + ACTIONS(2935), 1, + sym__brace_start, + ACTIONS(6564), 1, + anon_sym_DQUOTE, + ACTIONS(6568), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6570), 1, anon_sym_BQUOTE, - ACTIONS(6724), 1, + ACTIONS(6572), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6730), 1, - sym__brace_start, - ACTIONS(7520), 1, + ACTIONS(7107), 1, sym_word, - ACTIONS(7526), 1, + ACTIONS(7115), 1, sym__comment_word, - ACTIONS(7598), 1, + ACTIONS(7177), 1, anon_sym_DOLLAR, - ACTIONS(6726), 2, + ACTIONS(6560), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6574), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7522), 2, + ACTIONS(7111), 2, sym__special_character, sym_test_operator, - ACTIONS(7524), 2, + ACTIONS(7113), 2, sym_raw_string, sym_ansi_c_string, - STATE(2741), 9, + STATE(1435), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162327,43 +163270,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125095] = 17, + [122624] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6704), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6710), 1, - anon_sym_DQUOTE, - ACTIONS(6714), 1, + ACTIONS(3018), 1, + anon_sym_DOLLAR, + ACTIONS(3024), 1, aux_sym_number_token1, - ACTIONS(6716), 1, + ACTIONS(3026), 1, aux_sym_number_token2, - ACTIONS(6718), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6720), 1, + ACTIONS(3030), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6722), 1, + ACTIONS(3040), 1, + sym__brace_start, + ACTIONS(6610), 1, + anon_sym_DQUOTE, + ACTIONS(6614), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6616), 1, anon_sym_BQUOTE, - ACTIONS(6724), 1, + ACTIONS(6618), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6730), 1, - sym__brace_start, - ACTIONS(7520), 1, + ACTIONS(7179), 1, sym_word, - ACTIONS(7526), 1, + ACTIONS(7185), 1, sym__comment_word, - ACTIONS(7600), 1, - anon_sym_DOLLAR, - ACTIONS(6726), 2, + ACTIONS(6606), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6620), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7522), 2, + ACTIONS(7181), 2, sym__special_character, sym_test_operator, - ACTIONS(7524), 2, + ACTIONS(7183), 2, sym_raw_string, sym_ansi_c_string, - STATE(2741), 9, + STATE(1399), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162373,43 +163317,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125158] = 17, + [122688] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(466), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(468), 1, + ACTIONS(156), 1, anon_sym_DOLLAR, - ACTIONS(472), 1, - anon_sym_DQUOTE, - ACTIONS(476), 1, + ACTIONS(162), 1, aux_sym_number_token1, - ACTIONS(478), 1, + ACTIONS(164), 1, aux_sym_number_token2, - ACTIONS(480), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(482), 1, + ACTIONS(168), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(484), 1, - anon_sym_BQUOTE, - ACTIONS(486), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(496), 1, + ACTIONS(182), 1, sym__brace_start, - ACTIONS(7231), 1, + ACTIONS(1101), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1107), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4900), 1, + anon_sym_BQUOTE, + ACTIONS(7187), 1, sym_word, - ACTIONS(7239), 1, + ACTIONS(7193), 1, sym__comment_word, - ACTIONS(488), 2, + ACTIONS(1095), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7235), 2, + ACTIONS(7189), 2, sym__special_character, sym_test_operator, - ACTIONS(7237), 2, + ACTIONS(7191), 2, sym_raw_string, sym_ansi_c_string, - STATE(760), 9, + STATE(1611), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162419,43 +163364,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125221] = 17, + [122752] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5994), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6000), 1, - anon_sym_DQUOTE, - ACTIONS(6004), 1, + ACTIONS(2385), 1, aux_sym_number_token1, - ACTIONS(6006), 1, + ACTIONS(2387), 1, aux_sym_number_token2, - ACTIONS(6008), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6010), 1, + ACTIONS(2391), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6012), 1, - anon_sym_BQUOTE, - ACTIONS(6014), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6024), 1, + ACTIONS(2403), 1, sym__brace_start, - ACTIONS(7147), 1, + ACTIONS(7195), 1, sym_word, - ACTIONS(7153), 1, - sym__comment_word, - ACTIONS(7602), 1, + ACTIONS(7199), 1, anon_sym_DOLLAR, - ACTIONS(6016), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7149), 2, + ACTIONS(7203), 1, + anon_sym_DQUOTE, + ACTIONS(7207), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7209), 1, + anon_sym_BQUOTE, + ACTIONS(7211), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7215), 1, + sym__comment_word, + ACTIONS(7197), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7201), 2, sym__special_character, sym_test_operator, - ACTIONS(7151), 2, + ACTIONS(7205), 2, sym_raw_string, sym_ansi_c_string, - STATE(2623), 9, + ACTIONS(7213), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1097), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162465,43 +163411,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125284] = 17, + [122816] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1077), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 1, - anon_sym_DQUOTE, - ACTIONS(1087), 1, + ACTIONS(5489), 1, aux_sym_number_token1, - ACTIONS(1089), 1, + ACTIONS(5491), 1, aux_sym_number_token2, - ACTIONS(1091), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1093), 1, + ACTIONS(5495), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1095), 1, + ACTIONS(5505), 1, + sym__brace_start, + ACTIONS(6546), 1, + anon_sym_DQUOTE, + ACTIONS(6550), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6552), 1, anon_sym_BQUOTE, - ACTIONS(1097), 1, + ACTIONS(6554), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1105), 1, - sym__brace_start, - ACTIONS(7073), 1, + ACTIONS(7133), 1, sym_word, - ACTIONS(7079), 1, + ACTIONS(7139), 1, sym__comment_word, - ACTIONS(7604), 1, + ACTIONS(7217), 1, anon_sym_DOLLAR, - ACTIONS(1099), 2, + ACTIONS(6542), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6556), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7075), 2, + ACTIONS(7135), 2, sym__special_character, sym_test_operator, - ACTIONS(7077), 2, + ACTIONS(7137), 2, sym_raw_string, sym_ansi_c_string, - STATE(1586), 9, + STATE(2929), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162511,43 +163458,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125347] = 17, + [122880] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(380), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(382), 1, - anon_sym_DOLLAR, - ACTIONS(386), 1, - anon_sym_DQUOTE, - ACTIONS(390), 1, + ACTIONS(3024), 1, aux_sym_number_token1, - ACTIONS(392), 1, + ACTIONS(3026), 1, aux_sym_number_token2, - ACTIONS(394), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(396), 1, + ACTIONS(3030), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(398), 1, + ACTIONS(3040), 1, + sym__brace_start, + ACTIONS(6610), 1, + anon_sym_DQUOTE, + ACTIONS(6614), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6616), 1, anon_sym_BQUOTE, - ACTIONS(400), 1, + ACTIONS(6618), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(410), 1, - sym__brace_start, - ACTIONS(6921), 1, + ACTIONS(7179), 1, sym_word, - ACTIONS(6929), 1, + ACTIONS(7185), 1, sym__comment_word, - ACTIONS(402), 2, + ACTIONS(7219), 1, + anon_sym_DOLLAR, + ACTIONS(6606), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6620), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6925), 2, + ACTIONS(7181), 2, sym__special_character, sym_test_operator, - ACTIONS(6927), 2, + ACTIONS(7183), 2, sym_raw_string, sym_ansi_c_string, - STATE(921), 9, + STATE(1399), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162557,43 +163505,77 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125410] = 17, - ACTIONS(3), 1, + [122944] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(5994), 1, + ACTIONS(3837), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3839), 20, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6000), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(6004), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [122980] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5489), 1, aux_sym_number_token1, - ACTIONS(6006), 1, + ACTIONS(5491), 1, aux_sym_number_token2, - ACTIONS(6008), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6010), 1, + ACTIONS(5495), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6012), 1, + ACTIONS(5505), 1, + sym__brace_start, + ACTIONS(6546), 1, + anon_sym_DQUOTE, + ACTIONS(6550), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6552), 1, anon_sym_BQUOTE, - ACTIONS(6014), 1, + ACTIONS(6554), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6024), 1, - sym__brace_start, - ACTIONS(7147), 1, + ACTIONS(7133), 1, sym_word, - ACTIONS(7153), 1, + ACTIONS(7139), 1, sym__comment_word, - ACTIONS(7606), 1, + ACTIONS(7221), 1, anon_sym_DOLLAR, - ACTIONS(6016), 2, + ACTIONS(6542), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6556), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7149), 2, + ACTIONS(7135), 2, sym__special_character, sym_test_operator, - ACTIONS(7151), 2, + ACTIONS(7137), 2, sym_raw_string, sym_ansi_c_string, - STATE(2623), 9, + STATE(2929), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162603,43 +163585,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125473] = 17, + [123044] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3751), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3753), 1, - anon_sym_DOLLAR, - ACTIONS(3757), 1, + ACTIONS(6730), 1, anon_sym_DQUOTE, - ACTIONS(3761), 1, + ACTIONS(6734), 1, aux_sym_number_token1, - ACTIONS(3763), 1, + ACTIONS(6736), 1, aux_sym_number_token2, - ACTIONS(3765), 1, + ACTIONS(6738), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3767), 1, + ACTIONS(6740), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3769), 1, + ACTIONS(6742), 1, anon_sym_BQUOTE, - ACTIONS(3771), 1, + ACTIONS(6744), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3777), 1, + ACTIONS(6750), 1, sym__brace_start, - ACTIONS(7305), 1, + ACTIONS(7081), 1, sym_word, - ACTIONS(7313), 1, + ACTIONS(7087), 1, sym__comment_word, - ACTIONS(3773), 2, + ACTIONS(7223), 1, + anon_sym_DOLLAR, + ACTIONS(6724), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6746), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7309), 2, + ACTIONS(7083), 2, sym__special_character, sym_test_operator, - ACTIONS(7311), 2, + ACTIONS(7085), 2, sym_raw_string, sym_ansi_c_string, - STATE(2041), 9, + STATE(2878), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162649,43 +163632,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125536] = 17, + [123108] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6604), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6610), 1, + ACTIONS(6730), 1, anon_sym_DQUOTE, - ACTIONS(6614), 1, + ACTIONS(6734), 1, aux_sym_number_token1, - ACTIONS(6616), 1, + ACTIONS(6736), 1, aux_sym_number_token2, - ACTIONS(6618), 1, + ACTIONS(6738), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6620), 1, + ACTIONS(6740), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6622), 1, + ACTIONS(6742), 1, anon_sym_BQUOTE, - ACTIONS(6624), 1, + ACTIONS(6744), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6630), 1, + ACTIONS(6750), 1, sym__brace_start, - ACTIONS(6889), 1, + ACTIONS(7081), 1, sym_word, - ACTIONS(6897), 1, + ACTIONS(7087), 1, sym__comment_word, - ACTIONS(7608), 1, + ACTIONS(7225), 1, anon_sym_DOLLAR, - ACTIONS(6626), 2, + ACTIONS(6724), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6746), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6893), 2, + ACTIONS(7083), 2, sym__special_character, sym_test_operator, - ACTIONS(6895), 2, + ACTIONS(7085), 2, sym_raw_string, sym_ansi_c_string, - STATE(2827), 9, + STATE(2878), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162695,43 +163679,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125599] = 17, + [123172] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5958), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5960), 1, + ACTIONS(1559), 1, anon_sym_DOLLAR, - ACTIONS(5964), 1, - anon_sym_DQUOTE, - ACTIONS(5968), 1, + ACTIONS(1565), 1, aux_sym_number_token1, - ACTIONS(5970), 1, + ACTIONS(1567), 1, aux_sym_number_token2, - ACTIONS(5972), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5974), 1, + ACTIONS(1571), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5976), 1, + ACTIONS(1585), 1, + sym__brace_start, + ACTIONS(5829), 1, + anon_sym_DQUOTE, + ACTIONS(5833), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5835), 1, anon_sym_BQUOTE, - ACTIONS(5978), 1, + ACTIONS(5837), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5988), 1, - sym__brace_start, - ACTIONS(7392), 1, + ACTIONS(7141), 1, sym_word, - ACTIONS(7400), 1, + ACTIONS(7149), 1, sym__comment_word, - ACTIONS(5980), 2, + ACTIONS(5823), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5839), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7396), 2, + ACTIONS(7145), 2, sym__special_character, sym_test_operator, - ACTIONS(7398), 2, + ACTIONS(7147), 2, sym_raw_string, sym_ansi_c_string, - STATE(877), 9, + STATE(967), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162741,43 +163726,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125662] = 17, + [123236] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(284), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(290), 1, - anon_sym_DQUOTE, - ACTIONS(294), 1, + ACTIONS(2385), 1, aux_sym_number_token1, - ACTIONS(296), 1, + ACTIONS(2387), 1, aux_sym_number_token2, - ACTIONS(298), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(300), 1, + ACTIONS(2391), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(302), 1, - anon_sym_BQUOTE, - ACTIONS(304), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(314), 1, + ACTIONS(2403), 1, sym__brace_start, - ACTIONS(6995), 1, + ACTIONS(7195), 1, sym_word, - ACTIONS(7003), 1, + ACTIONS(7203), 1, + anon_sym_DQUOTE, + ACTIONS(7207), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7209), 1, + anon_sym_BQUOTE, + ACTIONS(7211), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7215), 1, sym__comment_word, - ACTIONS(7610), 1, + ACTIONS(7227), 1, anon_sym_DOLLAR, - ACTIONS(306), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6999), 2, + ACTIONS(7197), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7201), 2, sym__special_character, sym_test_operator, - ACTIONS(7001), 2, + ACTIONS(7205), 2, sym_raw_string, sym_ansi_c_string, - STATE(431), 9, + ACTIONS(7213), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1097), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162787,43 +163773,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125725] = 17, + [123300] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6814), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6816), 1, + ACTIONS(2913), 1, anon_sym_DOLLAR, - ACTIONS(6820), 1, - anon_sym_DQUOTE, - ACTIONS(6824), 1, + ACTIONS(2919), 1, aux_sym_number_token1, - ACTIONS(6826), 1, + ACTIONS(2921), 1, aux_sym_number_token2, - ACTIONS(6828), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6830), 1, + ACTIONS(2925), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6832), 1, + ACTIONS(2935), 1, + sym__brace_start, + ACTIONS(6564), 1, + anon_sym_DQUOTE, + ACTIONS(6568), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6570), 1, anon_sym_BQUOTE, - ACTIONS(6834), 1, + ACTIONS(6572), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6840), 1, - sym__brace_start, - ACTIONS(7337), 1, + ACTIONS(7107), 1, sym_word, - ACTIONS(7345), 1, + ACTIONS(7115), 1, sym__comment_word, - ACTIONS(6836), 2, + ACTIONS(6560), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6574), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7341), 2, + ACTIONS(7111), 2, sym__special_character, sym_test_operator, - ACTIONS(7343), 2, + ACTIONS(7113), 2, sym_raw_string, sym_ansi_c_string, - STATE(3424), 9, + STATE(1435), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162833,43 +163820,138 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125788] = 17, + [123364] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(332), 1, + ACTIONS(2707), 1, aux_sym_number_token1, - ACTIONS(334), 1, + ACTIONS(2709), 1, aux_sym_number_token2, - ACTIONS(338), 1, + ACTIONS(2713), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(350), 1, + ACTIONS(2723), 1, sym__brace_start, - ACTIONS(1157), 1, + ACTIONS(6436), 1, + anon_sym_DQUOTE, + ACTIONS(6440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6442), 1, + anon_sym_BQUOTE, + ACTIONS(6444), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7229), 1, + sym_word, + ACTIONS(7231), 1, + anon_sym_DOLLAR, + ACTIONS(7237), 1, + sym__comment_word, + ACTIONS(6432), 2, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 1, + ACTIONS(6446), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7233), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7235), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1279), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123428] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1931), 1, + aux_sym_number_token1, + ACTIONS(1933), 1, + aux_sym_number_token2, + ACTIONS(1937), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1951), 1, + sym__brace_start, + ACTIONS(5857), 1, anon_sym_DQUOTE, - ACTIONS(1167), 1, + ACTIONS(5861), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1169), 1, + ACTIONS(5863), 1, + anon_sym_BQUOTE, + ACTIONS(5865), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4799), 1, + ACTIONS(7097), 1, + sym_word, + ACTIONS(7105), 1, + sym__comment_word, + ACTIONS(7239), 1, + anon_sym_DOLLAR, + ACTIONS(5851), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5867), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7101), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7103), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1151), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123492] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2707), 1, + aux_sym_number_token1, + ACTIONS(2709), 1, + aux_sym_number_token2, + ACTIONS(2713), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2723), 1, + sym__brace_start, + ACTIONS(6436), 1, + anon_sym_DQUOTE, + ACTIONS(6440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6442), 1, anon_sym_BQUOTE, - ACTIONS(7031), 1, + ACTIONS(6444), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7229), 1, sym_word, - ACTIONS(7039), 1, + ACTIONS(7237), 1, sym__comment_word, - ACTIONS(7612), 1, + ACTIONS(7241), 1, anon_sym_DOLLAR, - ACTIONS(1171), 2, + ACTIONS(6432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6446), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7035), 2, + ACTIONS(7233), 2, sym__special_character, sym_test_operator, - ACTIONS(7037), 2, + ACTIONS(7235), 2, sym_raw_string, sym_ansi_c_string, - STATE(1343), 9, + STATE(1279), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162879,520 +163961,8402 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125851] = 6, + [123556] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6808), 1, - aux_sym_concatenation_token1, - ACTIONS(6810), 1, - sym__concat, - STATE(2615), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3785), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(3783), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [125891] = 6, + ACTIONS(2508), 1, + aux_sym_number_token1, + ACTIONS(2510), 1, + aux_sym_number_token2, + ACTIONS(2514), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2526), 1, + sym__brace_start, + ACTIONS(7243), 1, + sym_word, + ACTIONS(7247), 1, + anon_sym_DOLLAR, + ACTIONS(7251), 1, + anon_sym_DQUOTE, + ACTIONS(7255), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7257), 1, + anon_sym_BQUOTE, + ACTIONS(7259), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7263), 1, + sym__comment_word, + ACTIONS(7245), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7249), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7253), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7261), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1232), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123620] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - aux_sym_concatenation_token1, - ACTIONS(7363), 1, - sym__concat, - STATE(2636), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7614), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7616), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [125931] = 5, + ACTIONS(2508), 1, + aux_sym_number_token1, + ACTIONS(2510), 1, + aux_sym_number_token2, + ACTIONS(2514), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2526), 1, + sym__brace_start, + ACTIONS(7243), 1, + sym_word, + ACTIONS(7251), 1, + anon_sym_DQUOTE, + ACTIONS(7255), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7257), 1, + anon_sym_BQUOTE, + ACTIONS(7259), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7263), 1, + sym__comment_word, + ACTIONS(7265), 1, + anon_sym_DOLLAR, + ACTIONS(7245), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7249), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7253), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7261), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1232), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123684] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3313), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3519), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2603), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3228), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [125969] = 3, + ACTIONS(3024), 1, + aux_sym_number_token1, + ACTIONS(3026), 1, + aux_sym_number_token2, + ACTIONS(3030), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3040), 1, + sym__brace_start, + ACTIONS(6610), 1, + anon_sym_DQUOTE, + ACTIONS(6614), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6616), 1, + anon_sym_BQUOTE, + ACTIONS(6618), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7179), 1, + sym_word, + ACTIONS(7185), 1, + sym__comment_word, + ACTIONS(7267), 1, + anon_sym_DOLLAR, + ACTIONS(6606), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6620), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7181), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1399), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123748] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1288), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [126003] = 3, + ACTIONS(5795), 1, + anon_sym_DQUOTE, + ACTIONS(5799), 1, + aux_sym_number_token1, + ACTIONS(5801), 1, + aux_sym_number_token2, + ACTIONS(5803), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5805), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5807), 1, + anon_sym_BQUOTE, + ACTIONS(5809), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5819), 1, + sym__brace_start, + ACTIONS(7269), 1, + sym_word, + ACTIONS(7271), 1, + anon_sym_DOLLAR, + ACTIONS(7277), 1, + sym__comment_word, + ACTIONS(5787), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5811), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7273), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7275), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1296), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123812] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(6822), 1, + anon_sym_LPAREN, + ACTIONS(6824), 1, + aux_sym__c_word_token1, + ACTIONS(6828), 1, + anon_sym_DOLLAR, + ACTIONS(6830), 1, + anon_sym_DQUOTE, + ACTIONS(6832), 1, + aux_sym_number_token1, + ACTIONS(6834), 1, + aux_sym_number_token2, + ACTIONS(6836), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6838), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6840), 1, + anon_sym_BQUOTE, + ACTIONS(6842), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7281), 1, anon_sym_LF, - ACTIONS(1328), 22, + STATE(2829), 1, + sym__c_terminator, + ACTIONS(6820), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7279), 2, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [126037] = 6, + STATE(4041), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2269), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [123876] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - aux_sym_concatenation_token1, - ACTIONS(7363), 1, - sym__concat, - STATE(2637), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7618), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7620), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [126077] = 8, + ACTIONS(5795), 1, + anon_sym_DQUOTE, + ACTIONS(5799), 1, + aux_sym_number_token1, + ACTIONS(5801), 1, + aux_sym_number_token2, + ACTIONS(5803), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5805), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5807), 1, + anon_sym_BQUOTE, + ACTIONS(5809), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5819), 1, + sym__brace_start, + ACTIONS(7269), 1, + sym_word, + ACTIONS(7277), 1, + sym__comment_word, + ACTIONS(7283), 1, + anon_sym_DOLLAR, + ACTIONS(5787), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5811), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7273), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7275), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1296), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123940] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 1, - anon_sym_LT_LT_LT, - ACTIONS(7125), 1, - anon_sym_LF, - ACTIONS(7624), 1, - sym_file_descriptor, - ACTIONS(3215), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2604), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7622), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7127), 9, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP, - [126121] = 8, + ACTIONS(5795), 1, + anon_sym_DQUOTE, + ACTIONS(5799), 1, + aux_sym_number_token1, + ACTIONS(5801), 1, + aux_sym_number_token2, + ACTIONS(5803), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5805), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5807), 1, + anon_sym_BQUOTE, + ACTIONS(5809), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5819), 1, + sym__brace_start, + ACTIONS(7269), 1, + sym_word, + ACTIONS(7277), 1, + sym__comment_word, + ACTIONS(7285), 1, + anon_sym_DOLLAR, + ACTIONS(5787), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5811), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7273), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7275), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1296), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124004] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7548), 1, - anon_sym_LF, - ACTIONS(7629), 1, - anon_sym_LT_LT_LT, - ACTIONS(7632), 1, - sym_file_descriptor, - ACTIONS(7552), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2604), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7626), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7550), 9, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP, - [126165] = 5, + ACTIONS(2701), 1, + anon_sym_DOLLAR, + ACTIONS(2707), 1, + aux_sym_number_token1, + ACTIONS(2709), 1, + aux_sym_number_token2, + ACTIONS(2713), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2723), 1, + sym__brace_start, + ACTIONS(6436), 1, + anon_sym_DQUOTE, + ACTIONS(6440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6442), 1, + anon_sym_BQUOTE, + ACTIONS(6444), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7229), 1, + sym_word, + ACTIONS(7237), 1, + sym__comment_word, + ACTIONS(6432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6446), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7233), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7235), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1279), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124068] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7635), 1, + ACTIONS(615), 1, + anon_sym_DQUOTE, + ACTIONS(619), 1, + aux_sym_number_token1, + ACTIONS(621), 1, + aux_sym_number_token2, + ACTIONS(623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(635), 1, + sym__brace_start, + ACTIONS(4757), 1, + anon_sym_BQUOTE, + ACTIONS(6872), 1, + sym_word, + ACTIONS(6876), 1, + sym__comment_word, + ACTIONS(7287), 1, + anon_sym_DOLLAR, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(631), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6878), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6880), 2, sym__special_character, - STATE(2605), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1358), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [126203] = 3, + sym_test_operator, + STATE(1856), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124132] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1316), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [126237] = 3, + ACTIONS(4826), 1, + anon_sym_DOLLAR, + ACTIONS(4832), 1, + aux_sym_number_token1, + ACTIONS(4834), 1, + aux_sym_number_token2, + ACTIONS(4838), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(5421), 1, + anon_sym_DQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5427), 1, + anon_sym_BQUOTE, + ACTIONS(5429), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7289), 1, + sym_word, + ACTIONS(7295), 1, + sym__comment_word, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5431), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7291), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7293), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4137), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124196] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1354), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [126271] = 6, + ACTIONS(615), 1, + anon_sym_DQUOTE, + ACTIONS(619), 1, + aux_sym_number_token1, + ACTIONS(621), 1, + aux_sym_number_token2, + ACTIONS(623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(635), 1, + sym__brace_start, + ACTIONS(4757), 1, + anon_sym_BQUOTE, + ACTIONS(6872), 1, + sym_word, + ACTIONS(6876), 1, + sym__comment_word, + ACTIONS(7297), 1, + anon_sym_DOLLAR, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(631), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6878), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6880), 2, + sym__special_character, + sym_test_operator, + STATE(1856), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124260] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - aux_sym_concatenation_token1, - ACTIONS(7363), 1, - sym__concat, - STATE(2637), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7638), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7640), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [126311] = 6, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + ACTIONS(7299), 1, + sym_word, + ACTIONS(7301), 1, + anon_sym_DOLLAR, + ACTIONS(7307), 1, + sym__comment_word, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7303), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7305), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1488), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124324] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - aux_sym_concatenation_token1, - ACTIONS(7363), 1, - sym__concat, - STATE(2636), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7642), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7644), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [126351] = 11, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + ACTIONS(7299), 1, + sym_word, + ACTIONS(7307), 1, + sym__comment_word, + ACTIONS(7309), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7303), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7305), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1488), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124388] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 1, - anon_sym_LT_LT_LT, - ACTIONS(7624), 1, - sym_file_descriptor, - ACTIONS(7646), 1, - anon_sym_LF, - ACTIONS(3215), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3309), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(3311), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3313), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2189), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(2603), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7622), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [126401] = 6, + ACTIONS(6760), 1, + anon_sym_DQUOTE, + ACTIONS(6764), 1, + aux_sym_number_token1, + ACTIONS(6766), 1, + aux_sym_number_token2, + ACTIONS(6768), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6770), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6772), 1, + anon_sym_BQUOTE, + ACTIONS(6774), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6780), 1, + sym__brace_start, + ACTIONS(7311), 1, + sym_word, + ACTIONS(7313), 1, + anon_sym_DOLLAR, + ACTIONS(7319), 1, + sym__comment_word, + ACTIONS(6754), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6776), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7315), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7317), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2875), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124452] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - aux_sym_concatenation_token1, - ACTIONS(7363), 1, - sym__concat, - STATE(2739), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1272), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1270), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, + ACTIONS(364), 1, + anon_sym_DQUOTE, + ACTIONS(368), 1, + aux_sym_number_token1, + ACTIONS(370), 1, + aux_sym_number_token2, + ACTIONS(372), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(374), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(376), 1, + anon_sym_BQUOTE, + ACTIONS(378), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(388), 1, + sym__brace_start, + ACTIONS(7321), 1, + sym_word, + ACTIONS(7323), 1, + anon_sym_DOLLAR, + ACTIONS(7329), 1, + sym__comment_word, + ACTIONS(340), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(380), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7325), 2, sym__special_character, - [126441] = 3, + sym_test_operator, + ACTIONS(7327), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(969), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124516] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 4, - sym_file_descriptor, + ACTIONS(566), 1, + anon_sym_DQUOTE, + ACTIONS(570), 1, + aux_sym_number_token1, + ACTIONS(572), 1, + aux_sym_number_token2, + ACTIONS(574), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(576), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(578), 1, + anon_sym_BQUOTE, + ACTIONS(580), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(590), 1, + sym__brace_start, + ACTIONS(7331), 1, + sym_word, + ACTIONS(7333), 1, + anon_sym_DOLLAR, + ACTIONS(7339), 1, + sym__comment_word, + ACTIONS(546), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(582), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7335), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7337), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(822), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124580] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(364), 1, + anon_sym_DQUOTE, + ACTIONS(368), 1, + aux_sym_number_token1, + ACTIONS(370), 1, + aux_sym_number_token2, + ACTIONS(372), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(374), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(376), 1, + anon_sym_BQUOTE, + ACTIONS(378), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(388), 1, + sym__brace_start, + ACTIONS(7321), 1, + sym_word, + ACTIONS(7329), 1, + sym__comment_word, + ACTIONS(7341), 1, + anon_sym_DOLLAR, + ACTIONS(340), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(380), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7325), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7327), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(969), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124644] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6792), 1, + anon_sym_DOLLAR, + ACTIONS(6796), 1, + anon_sym_DQUOTE, + ACTIONS(6800), 1, + aux_sym_number_token1, + ACTIONS(6802), 1, + aux_sym_number_token2, + ACTIONS(6804), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6806), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6808), 1, + anon_sym_BQUOTE, + ACTIONS(6810), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6816), 1, + sym__brace_start, + ACTIONS(7343), 1, + sym_word, + ACTIONS(7349), 1, + sym__comment_word, + ACTIONS(6790), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6812), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7345), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7347), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3998), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124708] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(360), 1, + anon_sym_DOLLAR, + ACTIONS(364), 1, + anon_sym_DQUOTE, + ACTIONS(368), 1, + aux_sym_number_token1, + ACTIONS(370), 1, + aux_sym_number_token2, + ACTIONS(372), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(374), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(376), 1, + anon_sym_BQUOTE, + ACTIONS(378), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(388), 1, + sym__brace_start, + ACTIONS(7321), 1, + sym_word, + ACTIONS(7329), 1, + sym__comment_word, + ACTIONS(340), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(380), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7325), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7327), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(969), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124772] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(566), 1, + anon_sym_DQUOTE, + ACTIONS(570), 1, + aux_sym_number_token1, + ACTIONS(572), 1, + aux_sym_number_token2, + ACTIONS(574), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(576), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(578), 1, + anon_sym_BQUOTE, + ACTIONS(580), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(590), 1, + sym__brace_start, + ACTIONS(7331), 1, + sym_word, + ACTIONS(7339), 1, + sym__comment_word, + ACTIONS(7351), 1, + anon_sym_DOLLAR, + ACTIONS(546), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(582), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7335), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7337), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(822), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124836] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(364), 1, + anon_sym_DQUOTE, + ACTIONS(368), 1, + aux_sym_number_token1, + ACTIONS(370), 1, + aux_sym_number_token2, + ACTIONS(372), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(374), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(376), 1, + anon_sym_BQUOTE, + ACTIONS(378), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(388), 1, + sym__brace_start, + ACTIONS(7321), 1, + sym_word, + ACTIONS(7329), 1, + sym__comment_word, + ACTIONS(7353), 1, + anon_sym_DOLLAR, + ACTIONS(340), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(380), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7325), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7327), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(969), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124900] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(364), 1, + anon_sym_DQUOTE, + ACTIONS(368), 1, + aux_sym_number_token1, + ACTIONS(370), 1, + aux_sym_number_token2, + ACTIONS(372), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(374), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(376), 1, + anon_sym_BQUOTE, + ACTIONS(378), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(388), 1, + sym__brace_start, + ACTIONS(7321), 1, + sym_word, + ACTIONS(7329), 1, + sym__comment_word, + ACTIONS(7355), 1, + anon_sym_DOLLAR, + ACTIONS(340), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(380), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7325), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7327), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(969), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124964] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1400), 1, + anon_sym_DOLLAR, + ACTIONS(1404), 1, + anon_sym_DQUOTE, + ACTIONS(1408), 1, + aux_sym_number_token1, + ACTIONS(1410), 1, + aux_sym_number_token2, + ACTIONS(1412), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1428), 1, + anon_sym_BQUOTE, + ACTIONS(1430), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1436), 1, + sym__brace_start, + ACTIONS(7357), 1, + sym_word, + ACTIONS(7363), 1, + sym__comment_word, + ACTIONS(1380), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1432), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7359), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7361), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2240), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125028] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + ACTIONS(7299), 1, + sym_word, + ACTIONS(7307), 1, + sym__comment_word, + ACTIONS(7365), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7303), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7305), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1488), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125092] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + ACTIONS(7299), 1, + sym_word, + ACTIONS(7307), 1, + sym__comment_word, + ACTIONS(7367), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7303), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7305), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1488), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125156] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5795), 1, + anon_sym_DQUOTE, + ACTIONS(5799), 1, + aux_sym_number_token1, + ACTIONS(5801), 1, + aux_sym_number_token2, + ACTIONS(5803), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5805), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5807), 1, + anon_sym_BQUOTE, + ACTIONS(5809), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5819), 1, + sym__brace_start, + ACTIONS(7269), 1, + sym_word, + ACTIONS(7277), 1, + sym__comment_word, + ACTIONS(7369), 1, + anon_sym_DOLLAR, + ACTIONS(5787), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5811), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7273), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7275), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1296), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125220] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5795), 1, + anon_sym_DQUOTE, + ACTIONS(5799), 1, + aux_sym_number_token1, + ACTIONS(5801), 1, + aux_sym_number_token2, + ACTIONS(5803), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5805), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5807), 1, + anon_sym_BQUOTE, + ACTIONS(5809), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5819), 1, + sym__brace_start, + ACTIONS(7269), 1, + sym_word, + ACTIONS(7277), 1, + sym__comment_word, + ACTIONS(7371), 1, + anon_sym_DOLLAR, + ACTIONS(5787), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5811), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7273), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7275), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1296), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125284] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6730), 1, + anon_sym_DQUOTE, + ACTIONS(6734), 1, + aux_sym_number_token1, + ACTIONS(6736), 1, + aux_sym_number_token2, + ACTIONS(6738), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6740), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6742), 1, + anon_sym_BQUOTE, + ACTIONS(6744), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6750), 1, + sym__brace_start, + ACTIONS(7081), 1, + sym_word, + ACTIONS(7087), 1, + sym__comment_word, + ACTIONS(7373), 1, + anon_sym_DOLLAR, + ACTIONS(6724), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6746), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7083), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7085), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2878), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125348] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2919), 1, + aux_sym_number_token1, + ACTIONS(2921), 1, + aux_sym_number_token2, + ACTIONS(2925), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2935), 1, + sym__brace_start, + ACTIONS(6564), 1, + anon_sym_DQUOTE, + ACTIONS(6568), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6570), 1, + anon_sym_BQUOTE, + ACTIONS(6572), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7107), 1, + sym_word, + ACTIONS(7115), 1, + sym__comment_word, + ACTIONS(7375), 1, + anon_sym_DOLLAR, + ACTIONS(6560), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6574), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7111), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7113), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1435), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125412] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6730), 1, + anon_sym_DQUOTE, + ACTIONS(6734), 1, + aux_sym_number_token1, + ACTIONS(6736), 1, + aux_sym_number_token2, + ACTIONS(6738), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6740), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6742), 1, + anon_sym_BQUOTE, + ACTIONS(6744), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6750), 1, + sym__brace_start, + ACTIONS(7081), 1, + sym_word, + ACTIONS(7087), 1, + sym__comment_word, + ACTIONS(7377), 1, + anon_sym_DOLLAR, + ACTIONS(6724), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6746), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7083), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7085), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2878), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125476] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6760), 1, + anon_sym_DQUOTE, + ACTIONS(6764), 1, + aux_sym_number_token1, + ACTIONS(6766), 1, + aux_sym_number_token2, + ACTIONS(6768), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6770), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6772), 1, + anon_sym_BQUOTE, + ACTIONS(6774), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6780), 1, + sym__brace_start, + ACTIONS(7311), 1, + sym_word, + ACTIONS(7319), 1, + sym__comment_word, + ACTIONS(7379), 1, + anon_sym_DOLLAR, + ACTIONS(6754), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6776), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7315), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7317), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2875), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125540] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6898), 1, + anon_sym_DQUOTE, + ACTIONS(6902), 1, + aux_sym_number_token1, + ACTIONS(6904), 1, + aux_sym_number_token2, + ACTIONS(6906), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6908), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6910), 1, + anon_sym_BQUOTE, + ACTIONS(6912), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6918), 1, + sym__brace_start, + ACTIONS(7381), 1, + sym_word, + ACTIONS(7383), 1, + anon_sym_DOLLAR, + ACTIONS(7389), 1, + sym__comment_word, + ACTIONS(6892), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6914), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7385), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7387), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3508), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125604] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(364), 1, + anon_sym_DQUOTE, + ACTIONS(368), 1, + aux_sym_number_token1, + ACTIONS(370), 1, + aux_sym_number_token2, + ACTIONS(372), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(374), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(376), 1, + anon_sym_BQUOTE, + ACTIONS(378), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(388), 1, + sym__brace_start, + ACTIONS(7321), 1, + sym_word, + ACTIONS(7329), 1, + sym__comment_word, + ACTIONS(7391), 1, + anon_sym_DOLLAR, + ACTIONS(340), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(380), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7325), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7327), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(969), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125668] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(364), 1, + anon_sym_DQUOTE, + ACTIONS(368), 1, + aux_sym_number_token1, + ACTIONS(370), 1, + aux_sym_number_token2, + ACTIONS(372), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(374), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(376), 1, + anon_sym_BQUOTE, + ACTIONS(378), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(388), 1, + sym__brace_start, + ACTIONS(7321), 1, + sym_word, + ACTIONS(7329), 1, + sym__comment_word, + ACTIONS(7393), 1, + anon_sym_DOLLAR, + ACTIONS(340), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(380), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7325), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7327), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(969), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125732] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2919), 1, + aux_sym_number_token1, + ACTIONS(2921), 1, + aux_sym_number_token2, + ACTIONS(2925), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2935), 1, + sym__brace_start, + ACTIONS(6564), 1, + anon_sym_DQUOTE, + ACTIONS(6568), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6570), 1, + anon_sym_BQUOTE, + ACTIONS(6572), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7107), 1, + sym_word, + ACTIONS(7115), 1, + sym__comment_word, + ACTIONS(7395), 1, + anon_sym_DOLLAR, + ACTIONS(6560), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6574), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7111), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7113), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1435), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125796] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(615), 1, + anon_sym_DQUOTE, + ACTIONS(619), 1, + aux_sym_number_token1, + ACTIONS(621), 1, + aux_sym_number_token2, + ACTIONS(623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(635), 1, + sym__brace_start, + ACTIONS(4757), 1, + anon_sym_BQUOTE, + ACTIONS(6872), 1, + sym_word, + ACTIONS(6876), 1, + sym__comment_word, + ACTIONS(7397), 1, + anon_sym_DOLLAR, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(631), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6878), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6880), 2, + sym__special_character, + sym_test_operator, + STATE(1856), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125860] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5631), 1, + anon_sym_DOLLAR, + ACTIONS(5635), 1, + anon_sym_DQUOTE, + ACTIONS(5639), 1, + aux_sym_number_token1, + ACTIONS(5641), 1, + aux_sym_number_token2, + ACTIONS(5643), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5645), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5647), 1, + anon_sym_BQUOTE, + ACTIONS(5649), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5659), 1, + sym__brace_start, + ACTIONS(7399), 1, + sym_word, + ACTIONS(7405), 1, + sym__comment_word, + ACTIONS(5627), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5651), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7401), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7403), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2015), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125924] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6004), 1, + anon_sym_DQUOTE, + ACTIONS(6008), 1, + aux_sym_number_token1, + ACTIONS(6010), 1, + aux_sym_number_token2, + ACTIONS(6012), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6014), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6016), 1, + anon_sym_BQUOTE, + ACTIONS(6018), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6028), 1, + sym__brace_start, + ACTIONS(7071), 1, + sym_word, + ACTIONS(7079), 1, + sym__comment_word, + ACTIONS(7407), 1, + anon_sym_DOLLAR, + ACTIONS(5996), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6020), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7075), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7077), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2736), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125988] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + aux_sym_number_token1, + ACTIONS(51), 1, + aux_sym_number_token2, + ACTIONS(53), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(55), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(57), 1, + anon_sym_BQUOTE, + ACTIONS(59), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(71), 1, + sym__brace_start, + ACTIONS(7039), 1, + sym_word, + ACTIONS(7047), 1, + sym__comment_word, + ACTIONS(7409), 1, + anon_sym_DOLLAR, + ACTIONS(13), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(61), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7043), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7045), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1023), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126052] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6898), 1, + anon_sym_DQUOTE, + ACTIONS(6902), 1, + aux_sym_number_token1, + ACTIONS(6904), 1, + aux_sym_number_token2, + ACTIONS(6906), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6908), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6910), 1, + anon_sym_BQUOTE, + ACTIONS(6912), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6918), 1, + sym__brace_start, + ACTIONS(7381), 1, + sym_word, + ACTIONS(7389), 1, + sym__comment_word, + ACTIONS(7411), 1, + anon_sym_DOLLAR, + ACTIONS(6892), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6914), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7385), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7387), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3508), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126116] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6004), 1, + anon_sym_DQUOTE, + ACTIONS(6008), 1, + aux_sym_number_token1, + ACTIONS(6010), 1, + aux_sym_number_token2, + ACTIONS(6012), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6014), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6016), 1, + anon_sym_BQUOTE, + ACTIONS(6018), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6028), 1, + sym__brace_start, + ACTIONS(7071), 1, + sym_word, + ACTIONS(7079), 1, + sym__comment_word, + ACTIONS(7413), 1, + anon_sym_DOLLAR, + ACTIONS(5996), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6020), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7075), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7077), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2736), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126180] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2508), 1, + aux_sym_number_token1, + ACTIONS(2510), 1, + aux_sym_number_token2, + ACTIONS(2514), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2526), 1, + sym__brace_start, + ACTIONS(7243), 1, + sym_word, + ACTIONS(7251), 1, + anon_sym_DQUOTE, + ACTIONS(7255), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7257), 1, + anon_sym_BQUOTE, + ACTIONS(7259), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7263), 1, + sym__comment_word, + ACTIONS(7415), 1, + anon_sym_DOLLAR, + ACTIONS(7245), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7249), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7253), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7261), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1232), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126244] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(615), 1, + anon_sym_DQUOTE, + ACTIONS(619), 1, + aux_sym_number_token1, + ACTIONS(621), 1, + aux_sym_number_token2, + ACTIONS(623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(635), 1, + sym__brace_start, + ACTIONS(4757), 1, + anon_sym_BQUOTE, + ACTIONS(6872), 1, + sym_word, + ACTIONS(6876), 1, + sym__comment_word, + ACTIONS(7417), 1, + anon_sym_DOLLAR, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(631), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6878), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6880), 2, + sym__special_character, + sym_test_operator, + STATE(1856), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126308] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1931), 1, + aux_sym_number_token1, + ACTIONS(1933), 1, + aux_sym_number_token2, + ACTIONS(1937), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1951), 1, + sym__brace_start, + ACTIONS(5857), 1, + anon_sym_DQUOTE, + ACTIONS(5861), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5863), 1, + anon_sym_BQUOTE, + ACTIONS(5865), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7097), 1, + sym_word, + ACTIONS(7105), 1, + sym__comment_word, + ACTIONS(7419), 1, + anon_sym_DOLLAR, + ACTIONS(5851), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5867), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7101), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7103), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1151), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126372] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3691), 1, + anon_sym_DOLLAR, + ACTIONS(3695), 1, + anon_sym_DQUOTE, + ACTIONS(3699), 1, + aux_sym_number_token1, + ACTIONS(3701), 1, + aux_sym_number_token2, + ACTIONS(3703), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3705), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3707), 1, + anon_sym_BQUOTE, + ACTIONS(3709), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3715), 1, + sym__brace_start, + ACTIONS(7153), 1, + sym_word, + ACTIONS(7161), 1, + sym__comment_word, + ACTIONS(3689), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3711), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7157), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7159), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1998), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126436] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6894), 1, + anon_sym_DOLLAR, + ACTIONS(6898), 1, + anon_sym_DQUOTE, + ACTIONS(6902), 1, + aux_sym_number_token1, + ACTIONS(6904), 1, + aux_sym_number_token2, + ACTIONS(6906), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6908), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6910), 1, + anon_sym_BQUOTE, + ACTIONS(6912), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6918), 1, + sym__brace_start, + ACTIONS(7381), 1, + sym_word, + ACTIONS(7389), 1, + sym__comment_word, + ACTIONS(6892), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6914), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7385), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7387), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3508), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126500] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7011), 1, + anon_sym_DQUOTE, + ACTIONS(7015), 1, + aux_sym_number_token1, + ACTIONS(7017), 1, + aux_sym_number_token2, + ACTIONS(7019), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7021), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7023), 1, + anon_sym_BQUOTE, + ACTIONS(7025), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7031), 1, + sym__brace_start, + ACTIONS(7421), 1, + sym_word, + ACTIONS(7423), 1, + anon_sym_DOLLAR, + ACTIONS(7429), 1, + sym__comment_word, + ACTIONS(7005), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7027), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7425), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7427), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3565), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126564] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6004), 1, + anon_sym_DQUOTE, + ACTIONS(6008), 1, + aux_sym_number_token1, + ACTIONS(6010), 1, + aux_sym_number_token2, + ACTIONS(6012), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6014), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6016), 1, + anon_sym_BQUOTE, + ACTIONS(6018), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6028), 1, + sym__brace_start, + ACTIONS(7071), 1, + sym_word, + ACTIONS(7079), 1, + sym__comment_word, + ACTIONS(7431), 1, + anon_sym_DOLLAR, + ACTIONS(5996), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6020), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7075), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7077), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2736), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126628] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6760), 1, + anon_sym_DQUOTE, + ACTIONS(6764), 1, + aux_sym_number_token1, + ACTIONS(6766), 1, + aux_sym_number_token2, + ACTIONS(6768), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6770), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6772), 1, + anon_sym_BQUOTE, + ACTIONS(6774), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6780), 1, + sym__brace_start, + ACTIONS(7311), 1, + sym_word, + ACTIONS(7319), 1, + sym__comment_word, + ACTIONS(7433), 1, + anon_sym_DOLLAR, + ACTIONS(6754), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6776), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7315), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7317), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2875), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126692] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6760), 1, + anon_sym_DQUOTE, + ACTIONS(6764), 1, + aux_sym_number_token1, + ACTIONS(6766), 1, + aux_sym_number_token2, + ACTIONS(6768), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6770), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6772), 1, + anon_sym_BQUOTE, + ACTIONS(6774), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6780), 1, + sym__brace_start, + ACTIONS(7311), 1, + sym_word, + ACTIONS(7319), 1, + sym__comment_word, + ACTIONS(7435), 1, + anon_sym_DOLLAR, + ACTIONS(6754), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6776), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7315), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7317), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2875), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126756] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1043), 1, + anon_sym_DOLLAR, + ACTIONS(1047), 1, + anon_sym_DQUOTE, + ACTIONS(1051), 1, + aux_sym_number_token1, + ACTIONS(1053), 1, + aux_sym_number_token2, + ACTIONS(1055), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1057), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1059), 1, + anon_sym_BQUOTE, + ACTIONS(1061), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1069), 1, + sym__brace_start, + ACTIONS(7437), 1, + sym_word, + ACTIONS(7443), 1, + sym__comment_word, + ACTIONS(1033), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1063), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7439), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7441), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1679), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126820] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1931), 1, + aux_sym_number_token1, + ACTIONS(1933), 1, + aux_sym_number_token2, + ACTIONS(1937), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1951), 1, + sym__brace_start, + ACTIONS(5857), 1, + anon_sym_DQUOTE, + ACTIONS(5861), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5863), 1, + anon_sym_BQUOTE, + ACTIONS(5865), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7097), 1, + sym_word, + ACTIONS(7105), 1, + sym__comment_word, + ACTIONS(7445), 1, + anon_sym_DOLLAR, + ACTIONS(5851), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5867), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7101), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7103), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1151), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126884] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3952), 1, + anon_sym_DOLLAR, + ACTIONS(3956), 1, + anon_sym_DQUOTE, + ACTIONS(3960), 1, + aux_sym_number_token1, + ACTIONS(3962), 1, + aux_sym_number_token2, + ACTIONS(3964), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3969), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3971), 1, + anon_sym_BQUOTE, + ACTIONS(3973), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3979), 1, + sym__brace_start, + ACTIONS(7447), 1, + sym_word, + ACTIONS(7453), 1, + sym__comment_word, + ACTIONS(3944), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3975), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7449), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7451), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3118), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126948] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5911), 1, + anon_sym_DOLLAR, + ACTIONS(5915), 1, + anon_sym_DQUOTE, + ACTIONS(5919), 1, + aux_sym_number_token1, + ACTIONS(5921), 1, + aux_sym_number_token2, + ACTIONS(5923), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5925), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5927), 1, + anon_sym_BQUOTE, + ACTIONS(5929), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5939), 1, + sym__brace_start, + ACTIONS(7117), 1, + sym_word, + ACTIONS(7125), 1, + sym__comment_word, + ACTIONS(5907), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5931), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7121), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7123), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1201), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127012] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2508), 1, + aux_sym_number_token1, + ACTIONS(2510), 1, + aux_sym_number_token2, + ACTIONS(2514), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2526), 1, + sym__brace_start, + ACTIONS(7243), 1, + sym_word, + ACTIONS(7251), 1, + anon_sym_DQUOTE, + ACTIONS(7255), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7257), 1, + anon_sym_BQUOTE, + ACTIONS(7259), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7263), 1, + sym__comment_word, + ACTIONS(7455), 1, + anon_sym_DOLLAR, + ACTIONS(7245), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7249), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7253), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7261), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1232), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127076] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6040), 1, + anon_sym_DOLLAR, + ACTIONS(6044), 1, + anon_sym_DQUOTE, + ACTIONS(6048), 1, + aux_sym_number_token1, + ACTIONS(6050), 1, + aux_sym_number_token2, + ACTIONS(6052), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6054), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6056), 1, + anon_sym_BQUOTE, + ACTIONS(6058), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6068), 1, + sym__brace_start, + ACTIONS(7457), 1, + sym_word, + ACTIONS(7463), 1, + sym__comment_word, + ACTIONS(6036), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6060), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7459), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7461), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2420), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127140] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7011), 1, + anon_sym_DQUOTE, + ACTIONS(7015), 1, + aux_sym_number_token1, + ACTIONS(7017), 1, + aux_sym_number_token2, + ACTIONS(7019), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7021), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7023), 1, + anon_sym_BQUOTE, + ACTIONS(7025), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7031), 1, + sym__brace_start, + ACTIONS(7421), 1, + sym_word, + ACTIONS(7429), 1, + sym__comment_word, + ACTIONS(7465), 1, + anon_sym_DOLLAR, + ACTIONS(7005), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7027), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7425), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7427), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3565), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127204] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3807), 1, + anon_sym_DQUOTE, + ACTIONS(3811), 1, + aux_sym_number_token1, + ACTIONS(3813), 1, + aux_sym_number_token2, + ACTIONS(3815), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3817), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3819), 1, + anon_sym_BQUOTE, + ACTIONS(3821), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3827), 1, + sym__brace_start, + ACTIONS(7467), 1, + sym_word, + ACTIONS(7469), 1, + anon_sym_DOLLAR, + ACTIONS(7475), 1, + sym__comment_word, + ACTIONS(3801), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3823), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7471), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7473), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2043), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127268] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6688), 1, + anon_sym_DQUOTE, + ACTIONS(6692), 1, + aux_sym_number_token1, + ACTIONS(6694), 1, + aux_sym_number_token2, + ACTIONS(6696), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6700), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6702), 1, + anon_sym_BQUOTE, + ACTIONS(6704), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6710), 1, + sym__brace_start, + ACTIONS(7477), 1, + sym_word, + ACTIONS(7479), 1, + anon_sym_DOLLAR, + ACTIONS(7485), 1, + sym__comment_word, + ACTIONS(6682), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6706), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7481), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7483), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4105), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127332] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6796), 1, + anon_sym_DQUOTE, + ACTIONS(6800), 1, + aux_sym_number_token1, + ACTIONS(6802), 1, + aux_sym_number_token2, + ACTIONS(6804), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6806), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6808), 1, + anon_sym_BQUOTE, + ACTIONS(6810), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6816), 1, + sym__brace_start, + ACTIONS(7343), 1, + sym_word, + ACTIONS(7349), 1, + sym__comment_word, + ACTIONS(7487), 1, + anon_sym_DOLLAR, + ACTIONS(6790), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6812), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7345), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7347), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3998), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127396] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(304), 1, + anon_sym_DOLLAR, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(312), 1, + aux_sym_number_token1, + ACTIONS(314), 1, + aux_sym_number_token2, + ACTIONS(316), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(318), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(320), 1, + anon_sym_BQUOTE, + ACTIONS(322), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(332), 1, + sym__brace_start, + ACTIONS(7489), 1, + sym_word, + ACTIONS(7495), 1, + sym__comment_word, + ACTIONS(272), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(324), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7491), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7493), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(423), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127460] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5675), 1, + anon_sym_DOLLAR, + ACTIONS(5679), 1, + anon_sym_DQUOTE, + ACTIONS(5683), 1, + aux_sym_number_token1, + ACTIONS(5685), 1, + aux_sym_number_token2, + ACTIONS(5687), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5691), 1, + anon_sym_BQUOTE, + ACTIONS(5693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5703), 1, + sym__brace_start, + ACTIONS(7163), 1, + sym_word, + ACTIONS(7171), 1, + sym__comment_word, + ACTIONS(5671), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7167), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7169), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2793), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127524] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(162), 1, + aux_sym_number_token1, + ACTIONS(164), 1, + aux_sym_number_token2, + ACTIONS(168), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(182), 1, + sym__brace_start, + ACTIONS(1101), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1107), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4900), 1, + anon_sym_BQUOTE, + ACTIONS(7187), 1, + sym_word, + ACTIONS(7193), 1, + sym__comment_word, + ACTIONS(7497), 1, + anon_sym_DOLLAR, + ACTIONS(1095), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7189), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7191), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1611), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127588] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7499), 1, + aux_sym_concatenation_token1, + ACTIONS(7501), 1, + sym__concat, + STATE(2725), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1242), 22, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + sym__special_character, + [127630] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(162), 1, + aux_sym_number_token1, + ACTIONS(164), 1, + aux_sym_number_token2, + ACTIONS(168), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(182), 1, + sym__brace_start, + ACTIONS(1101), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1107), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4900), 1, + anon_sym_BQUOTE, + ACTIONS(7187), 1, + sym_word, + ACTIONS(7193), 1, + sym__comment_word, + ACTIONS(7503), 1, + anon_sym_DOLLAR, + ACTIONS(1095), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7189), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7191), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1611), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127694] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4374), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4376), 20, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [127730] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6163), 1, + anon_sym_DOLLAR, + ACTIONS(6167), 1, + anon_sym_DQUOTE, + ACTIONS(6171), 1, + aux_sym_number_token1, + ACTIONS(6173), 1, + aux_sym_number_token2, + ACTIONS(6175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6177), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6179), 1, + anon_sym_BQUOTE, + ACTIONS(6181), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6191), 1, + sym__brace_start, + ACTIONS(7505), 1, + sym_word, + ACTIONS(7511), 1, + sym__comment_word, + ACTIONS(6159), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6183), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7507), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7509), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3505), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127794] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + ACTIONS(7299), 1, + sym_word, + ACTIONS(7307), 1, + sym__comment_word, + ACTIONS(7513), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7303), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7305), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1488), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127858] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2480), 1, + aux_sym_number_token1, + ACTIONS(2482), 1, + aux_sym_number_token2, + ACTIONS(2486), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2496), 1, + sym__brace_start, + ACTIONS(6528), 1, + anon_sym_DQUOTE, + ACTIONS(6532), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6534), 1, + anon_sym_BQUOTE, + ACTIONS(6536), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7515), 1, + sym_word, + ACTIONS(7517), 1, + anon_sym_DOLLAR, + ACTIONS(7523), 1, + sym__comment_word, + ACTIONS(6524), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6538), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7519), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7521), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1094), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127922] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2480), 1, + aux_sym_number_token1, + ACTIONS(2482), 1, + aux_sym_number_token2, + ACTIONS(2486), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2496), 1, + sym__brace_start, + ACTIONS(6528), 1, + anon_sym_DQUOTE, + ACTIONS(6532), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6534), 1, + anon_sym_BQUOTE, + ACTIONS(6536), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7515), 1, + sym_word, + ACTIONS(7523), 1, + sym__comment_word, + ACTIONS(7525), 1, + anon_sym_DOLLAR, + ACTIONS(6524), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6538), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7519), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7521), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1094), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127986] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3443), 1, + anon_sym_DOLLAR, + ACTIONS(3447), 1, + anon_sym_DQUOTE, + ACTIONS(3451), 1, + aux_sym_number_token1, + ACTIONS(3453), 1, + aux_sym_number_token2, + ACTIONS(3455), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3457), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3459), 1, + anon_sym_BQUOTE, + ACTIONS(3461), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3469), 1, + sym__brace_start, + ACTIONS(7527), 1, + sym_word, + ACTIONS(7533), 1, + sym__comment_word, + ACTIONS(3441), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3463), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7529), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7531), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2010), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128050] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(442), 1, + anon_sym_DOLLAR, + ACTIONS(446), 1, + anon_sym_DQUOTE, + ACTIONS(450), 1, + aux_sym_number_token1, + ACTIONS(452), 1, + aux_sym_number_token2, + ACTIONS(454), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(456), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(458), 1, + anon_sym_BQUOTE, + ACTIONS(460), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(470), 1, + sym__brace_start, + ACTIONS(7535), 1, + sym_word, + ACTIONS(7541), 1, + sym__comment_word, + ACTIONS(406), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(462), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7537), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7539), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(694), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128114] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4370), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4372), 20, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [128150] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + ACTIONS(7299), 1, + sym_word, + ACTIONS(7307), 1, + sym__comment_word, + ACTIONS(7543), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7303), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7305), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1488), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128214] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6730), 1, + anon_sym_DQUOTE, + ACTIONS(6734), 1, + aux_sym_number_token1, + ACTIONS(6736), 1, + aux_sym_number_token2, + ACTIONS(6738), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6740), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6742), 1, + anon_sym_BQUOTE, + ACTIONS(6744), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6750), 1, + sym__brace_start, + ACTIONS(7081), 1, + sym_word, + ACTIONS(7087), 1, + sym__comment_word, + ACTIONS(7545), 1, + anon_sym_DOLLAR, + ACTIONS(6724), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6746), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7083), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7085), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2878), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128278] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2379), 1, + anon_sym_DOLLAR, + ACTIONS(2385), 1, + aux_sym_number_token1, + ACTIONS(2387), 1, + aux_sym_number_token2, + ACTIONS(2391), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2403), 1, + sym__brace_start, + ACTIONS(7195), 1, + sym_word, + ACTIONS(7203), 1, + anon_sym_DQUOTE, + ACTIONS(7207), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7209), 1, + anon_sym_BQUOTE, + ACTIONS(7211), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7215), 1, + sym__comment_word, + ACTIONS(7197), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7201), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7205), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7213), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1097), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128342] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6730), 1, + anon_sym_DQUOTE, + ACTIONS(6734), 1, + aux_sym_number_token1, + ACTIONS(6736), 1, + aux_sym_number_token2, + ACTIONS(6738), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6740), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6742), 1, + anon_sym_BQUOTE, + ACTIONS(6744), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6750), 1, + sym__brace_start, + ACTIONS(7081), 1, + sym_word, + ACTIONS(7087), 1, + sym__comment_word, + ACTIONS(7547), 1, + anon_sym_DOLLAR, + ACTIONS(6724), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6746), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7083), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7085), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2878), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128406] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3956), 1, + anon_sym_DQUOTE, + ACTIONS(3960), 1, + aux_sym_number_token1, + ACTIONS(3962), 1, + aux_sym_number_token2, + ACTIONS(3964), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3969), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3971), 1, + anon_sym_BQUOTE, + ACTIONS(3973), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3979), 1, + sym__brace_start, + ACTIONS(7447), 1, + sym_word, + ACTIONS(7453), 1, + sym__comment_word, + ACTIONS(7549), 1, + anon_sym_DOLLAR, + ACTIONS(3944), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3975), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7449), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7451), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3118), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128470] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3956), 1, + anon_sym_DQUOTE, + ACTIONS(3960), 1, + aux_sym_number_token1, + ACTIONS(3962), 1, + aux_sym_number_token2, + ACTIONS(3964), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3969), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3971), 1, + anon_sym_BQUOTE, + ACTIONS(3973), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3979), 1, + sym__brace_start, + ACTIONS(7447), 1, + sym_word, + ACTIONS(7453), 1, + sym__comment_word, + ACTIONS(7551), 1, + anon_sym_DOLLAR, + ACTIONS(3944), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3975), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7449), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7451), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3118), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128534] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3803), 1, + anon_sym_DOLLAR, + ACTIONS(3807), 1, + anon_sym_DQUOTE, + ACTIONS(3811), 1, + aux_sym_number_token1, + ACTIONS(3813), 1, + aux_sym_number_token2, + ACTIONS(3815), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3817), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3819), 1, + anon_sym_BQUOTE, + ACTIONS(3821), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3827), 1, + sym__brace_start, + ACTIONS(7467), 1, + sym_word, + ACTIONS(7475), 1, + sym__comment_word, + ACTIONS(3801), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3823), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7471), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7473), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2043), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128598] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2538), 1, + aux_sym_number_token1, + ACTIONS(2540), 1, + aux_sym_number_token2, + ACTIONS(2544), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2556), 1, + sym__brace_start, + ACTIONS(7049), 1, + sym_word, + ACTIONS(7057), 1, + anon_sym_DQUOTE, + ACTIONS(7061), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7063), 1, + anon_sym_BQUOTE, + ACTIONS(7065), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7069), 1, + sym__comment_word, + ACTIONS(7553), 1, + anon_sym_DOLLAR, + ACTIONS(7051), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7055), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7059), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7067), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1325), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128662] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7007), 1, + anon_sym_DOLLAR, + ACTIONS(7011), 1, + anon_sym_DQUOTE, + ACTIONS(7015), 1, + aux_sym_number_token1, + ACTIONS(7017), 1, + aux_sym_number_token2, + ACTIONS(7019), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7021), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7023), 1, + anon_sym_BQUOTE, + ACTIONS(7025), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7031), 1, + sym__brace_start, + ACTIONS(7421), 1, + sym_word, + ACTIONS(7429), 1, + sym__comment_word, + ACTIONS(7005), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7027), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7425), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7427), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3565), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128726] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6796), 1, + anon_sym_DQUOTE, + ACTIONS(6800), 1, + aux_sym_number_token1, + ACTIONS(6802), 1, + aux_sym_number_token2, + ACTIONS(6804), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6806), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6808), 1, + anon_sym_BQUOTE, + ACTIONS(6810), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6816), 1, + sym__brace_start, + ACTIONS(7343), 1, + sym_word, + ACTIONS(7349), 1, + sym__comment_word, + ACTIONS(7555), 1, + anon_sym_DOLLAR, + ACTIONS(6790), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6812), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7345), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7347), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3998), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128790] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1997), 1, + aux_sym_number_token1, + ACTIONS(1999), 1, + aux_sym_number_token2, + ACTIONS(2003), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2017), 1, + sym__brace_start, + ACTIONS(7557), 1, + sym_word, + ACTIONS(7561), 1, + anon_sym_DOLLAR, + ACTIONS(7565), 1, + anon_sym_DQUOTE, + ACTIONS(7569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7571), 1, + anon_sym_BQUOTE, + ACTIONS(7573), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7577), 1, + sym__comment_word, + ACTIONS(7559), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7563), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7567), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7575), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(881), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128854] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1997), 1, + aux_sym_number_token1, + ACTIONS(1999), 1, + aux_sym_number_token2, + ACTIONS(2003), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2017), 1, + sym__brace_start, + ACTIONS(7557), 1, + sym_word, + ACTIONS(7565), 1, + anon_sym_DQUOTE, + ACTIONS(7569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7571), 1, + anon_sym_BQUOTE, + ACTIONS(7573), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7577), 1, + sym__comment_word, + ACTIONS(7579), 1, + anon_sym_DOLLAR, + ACTIONS(7559), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7563), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7567), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7575), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(881), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128918] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3092), 1, + anon_sym_DOLLAR, + ACTIONS(3096), 1, + anon_sym_DQUOTE, + ACTIONS(3100), 1, + aux_sym_number_token1, + ACTIONS(3102), 1, + aux_sym_number_token2, + ACTIONS(3104), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3106), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3108), 1, + anon_sym_BQUOTE, + ACTIONS(3110), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3120), 1, + sym__brace_start, + ACTIONS(7581), 1, + sym_word, + ACTIONS(7587), 1, + sym__comment_word, + ACTIONS(3090), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3112), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7583), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7585), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1767), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128982] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3807), 1, + anon_sym_DQUOTE, + ACTIONS(3811), 1, + aux_sym_number_token1, + ACTIONS(3813), 1, + aux_sym_number_token2, + ACTIONS(3815), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3817), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3819), 1, + anon_sym_BQUOTE, + ACTIONS(3821), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3827), 1, + sym__brace_start, + ACTIONS(7467), 1, + sym_word, + ACTIONS(7475), 1, + sym__comment_word, + ACTIONS(7589), 1, + anon_sym_DOLLAR, + ACTIONS(3801), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3823), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7471), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7473), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2043), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129046] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2502), 1, + anon_sym_DOLLAR, + ACTIONS(2508), 1, + aux_sym_number_token1, + ACTIONS(2510), 1, + aux_sym_number_token2, + ACTIONS(2514), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2526), 1, + sym__brace_start, + ACTIONS(7243), 1, + sym_word, + ACTIONS(7251), 1, + anon_sym_DQUOTE, + ACTIONS(7255), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7257), 1, + anon_sym_BQUOTE, + ACTIONS(7259), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7263), 1, + sym__comment_word, + ACTIONS(7245), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7249), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7253), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7261), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1232), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129110] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6684), 1, + anon_sym_DOLLAR, + ACTIONS(6688), 1, + anon_sym_DQUOTE, + ACTIONS(6692), 1, + aux_sym_number_token1, + ACTIONS(6694), 1, + aux_sym_number_token2, + ACTIONS(6696), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6700), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6702), 1, + anon_sym_BQUOTE, + ACTIONS(6704), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6710), 1, + sym__brace_start, + ACTIONS(7477), 1, + sym_word, + ACTIONS(7485), 1, + sym__comment_word, + ACTIONS(6682), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6706), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7481), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7483), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4105), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129174] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, + aux_sym_number_token1, + ACTIONS(1901), 1, + aux_sym_number_token2, + ACTIONS(1905), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1919), 1, + sym__brace_start, + ACTIONS(5765), 1, + anon_sym_DQUOTE, + ACTIONS(5769), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5771), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7591), 1, + sym_word, + ACTIONS(7593), 1, + anon_sym_DOLLAR, + ACTIONS(7599), 1, + sym__comment_word, + ACTIONS(5759), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5775), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7595), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7597), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1060), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129238] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(240), 1, + anon_sym_DOLLAR, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + ACTIONS(7299), 1, + sym_word, + ACTIONS(7307), 1, + sym__comment_word, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7303), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7305), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1488), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129302] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5489), 1, + aux_sym_number_token1, + ACTIONS(5491), 1, + aux_sym_number_token2, + ACTIONS(5495), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5505), 1, + sym__brace_start, + ACTIONS(6546), 1, + anon_sym_DQUOTE, + ACTIONS(6550), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6552), 1, + anon_sym_BQUOTE, + ACTIONS(6554), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7133), 1, + sym_word, + ACTIONS(7139), 1, + sym__comment_word, + ACTIONS(7601), 1, + anon_sym_DOLLAR, + ACTIONS(6542), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6556), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7135), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7137), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2929), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129366] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6044), 1, + anon_sym_DQUOTE, + ACTIONS(6048), 1, + aux_sym_number_token1, + ACTIONS(6050), 1, + aux_sym_number_token2, + ACTIONS(6052), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6054), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6056), 1, + anon_sym_BQUOTE, + ACTIONS(6058), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6068), 1, + sym__brace_start, + ACTIONS(7457), 1, + sym_word, + ACTIONS(7463), 1, + sym__comment_word, + ACTIONS(7603), 1, + anon_sym_DOLLAR, + ACTIONS(6036), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6060), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7459), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7461), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2420), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129430] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6730), 1, + anon_sym_DQUOTE, + ACTIONS(6734), 1, + aux_sym_number_token1, + ACTIONS(6736), 1, + aux_sym_number_token2, + ACTIONS(6738), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6740), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6742), 1, + anon_sym_BQUOTE, + ACTIONS(6744), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6750), 1, + sym__brace_start, + ACTIONS(7081), 1, + sym_word, + ACTIONS(7087), 1, + sym__comment_word, + ACTIONS(7605), 1, + anon_sym_DOLLAR, + ACTIONS(6724), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6746), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7083), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7085), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2878), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129494] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6730), 1, + anon_sym_DQUOTE, + ACTIONS(6734), 1, + aux_sym_number_token1, + ACTIONS(6736), 1, + aux_sym_number_token2, + ACTIONS(6738), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6740), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6742), 1, + anon_sym_BQUOTE, + ACTIONS(6744), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6750), 1, + sym__brace_start, + ACTIONS(7081), 1, + sym_word, + ACTIONS(7087), 1, + sym__comment_word, + ACTIONS(7607), 1, + anon_sym_DOLLAR, + ACTIONS(6724), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6746), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7083), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7085), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2878), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129558] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5489), 1, + aux_sym_number_token1, + ACTIONS(5491), 1, + aux_sym_number_token2, + ACTIONS(5495), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5505), 1, + sym__brace_start, + ACTIONS(6546), 1, + anon_sym_DQUOTE, + ACTIONS(6550), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6552), 1, + anon_sym_BQUOTE, + ACTIONS(6554), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7133), 1, + sym_word, + ACTIONS(7139), 1, + sym__comment_word, + ACTIONS(7609), 1, + anon_sym_DOLLAR, + ACTIONS(6542), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6556), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7135), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7137), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2929), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129622] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6199), 1, + anon_sym_DOLLAR, + ACTIONS(6203), 1, + anon_sym_DQUOTE, + ACTIONS(6207), 1, + aux_sym_number_token1, + ACTIONS(6209), 1, + aux_sym_number_token2, + ACTIONS(6211), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6213), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6215), 1, + anon_sym_BQUOTE, + ACTIONS(6217), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6227), 1, + sym__brace_start, + ACTIONS(7611), 1, + sym_word, + ACTIONS(7617), 1, + sym__comment_word, + ACTIONS(6195), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6219), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7613), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7615), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(875), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129686] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6044), 1, + anon_sym_DQUOTE, + ACTIONS(6048), 1, + aux_sym_number_token1, + ACTIONS(6050), 1, + aux_sym_number_token2, + ACTIONS(6052), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6054), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6056), 1, + anon_sym_BQUOTE, + ACTIONS(6058), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6068), 1, + sym__brace_start, + ACTIONS(7457), 1, + sym_word, + ACTIONS(7463), 1, + sym__comment_word, + ACTIONS(7619), 1, + anon_sym_DOLLAR, + ACTIONS(6036), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6060), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7459), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7461), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2420), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129750] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + ACTIONS(7299), 1, + sym_word, + ACTIONS(7307), 1, + sym__comment_word, + ACTIONS(7621), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7303), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7305), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1488), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129814] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5679), 1, + anon_sym_DQUOTE, + ACTIONS(5683), 1, + aux_sym_number_token1, + ACTIONS(5685), 1, + aux_sym_number_token2, + ACTIONS(5687), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5691), 1, + anon_sym_BQUOTE, + ACTIONS(5693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5703), 1, + sym__brace_start, + ACTIONS(7163), 1, + sym_word, + ACTIONS(7171), 1, + sym__comment_word, + ACTIONS(7623), 1, + anon_sym_DOLLAR, + ACTIONS(5671), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7167), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7169), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2793), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129878] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5795), 1, + anon_sym_DQUOTE, + ACTIONS(5799), 1, + aux_sym_number_token1, + ACTIONS(5801), 1, + aux_sym_number_token2, + ACTIONS(5803), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5805), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5807), 1, + anon_sym_BQUOTE, + ACTIONS(5809), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5819), 1, + sym__brace_start, + ACTIONS(7269), 1, + sym_word, + ACTIONS(7277), 1, + sym__comment_word, + ACTIONS(7625), 1, + anon_sym_DOLLAR, + ACTIONS(5787), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5811), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7273), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7275), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1296), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129942] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, + aux_sym_number_token1, + ACTIONS(1901), 1, + aux_sym_number_token2, + ACTIONS(1905), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1919), 1, + sym__brace_start, + ACTIONS(5765), 1, + anon_sym_DQUOTE, + ACTIONS(5769), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5771), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7591), 1, + sym_word, + ACTIONS(7599), 1, + sym__comment_word, + ACTIONS(7627), 1, + anon_sym_DOLLAR, + ACTIONS(5759), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5775), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7595), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7597), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1060), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130006] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5679), 1, + anon_sym_DQUOTE, + ACTIONS(5683), 1, + aux_sym_number_token1, + ACTIONS(5685), 1, + aux_sym_number_token2, + ACTIONS(5687), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5691), 1, + anon_sym_BQUOTE, + ACTIONS(5693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5703), 1, + sym__brace_start, + ACTIONS(7163), 1, + sym_word, + ACTIONS(7171), 1, + sym__comment_word, + ACTIONS(7629), 1, + anon_sym_DOLLAR, + ACTIONS(5671), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7167), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7169), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2793), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130070] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1519), 1, + anon_sym_DOLLAR, + ACTIONS(1525), 1, + aux_sym_number_token1, + ACTIONS(1527), 1, + aux_sym_number_token2, + ACTIONS(1531), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1547), 1, + sym__brace_start, + ACTIONS(6086), 1, + anon_sym_DQUOTE, + ACTIONS(6090), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6092), 1, + anon_sym_BQUOTE, + ACTIONS(6094), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7631), 1, + sym_word, + ACTIONS(7637), 1, + sym__comment_word, + ACTIONS(6080), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6096), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7633), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7635), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(804), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130134] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2508), 1, + aux_sym_number_token1, + ACTIONS(2510), 1, + aux_sym_number_token2, + ACTIONS(2514), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2526), 1, + sym__brace_start, + ACTIONS(7243), 1, + sym_word, + ACTIONS(7251), 1, + anon_sym_DQUOTE, + ACTIONS(7255), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7257), 1, + anon_sym_BQUOTE, + ACTIONS(7259), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7263), 1, + sym__comment_word, + ACTIONS(7639), 1, + anon_sym_DOLLAR, + ACTIONS(7245), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7249), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7253), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7261), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1232), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130198] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6822), 1, + anon_sym_LPAREN, + ACTIONS(6824), 1, + aux_sym__c_word_token1, + ACTIONS(6828), 1, + anon_sym_DOLLAR, + ACTIONS(6830), 1, + anon_sym_DQUOTE, + ACTIONS(6832), 1, + aux_sym_number_token1, + ACTIONS(6834), 1, + aux_sym_number_token2, + ACTIONS(6836), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6838), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6840), 1, + anon_sym_BQUOTE, + ACTIONS(6842), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7643), 1, + anon_sym_LF, + STATE(2803), 1, + sym__c_terminator, + ACTIONS(6820), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7641), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(4029), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2269), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [130262] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1525), 1, + aux_sym_number_token1, + ACTIONS(1527), 1, + aux_sym_number_token2, + ACTIONS(1531), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1547), 1, + sym__brace_start, + ACTIONS(6086), 1, + anon_sym_DQUOTE, + ACTIONS(6090), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6092), 1, + anon_sym_BQUOTE, + ACTIONS(6094), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7631), 1, + sym_word, + ACTIONS(7637), 1, + sym__comment_word, + ACTIONS(7645), 1, + anon_sym_DOLLAR, + ACTIONS(6080), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6096), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7633), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7635), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(804), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130326] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + anon_sym_DOLLAR, + ACTIONS(1899), 1, + aux_sym_number_token1, + ACTIONS(1901), 1, + aux_sym_number_token2, + ACTIONS(1905), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1919), 1, + sym__brace_start, + ACTIONS(5765), 1, + anon_sym_DQUOTE, + ACTIONS(5769), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5771), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7591), 1, + sym_word, + ACTIONS(7599), 1, + sym__comment_word, + ACTIONS(5759), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5775), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7595), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7597), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1060), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130390] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(162), 1, + aux_sym_number_token1, + ACTIONS(164), 1, + aux_sym_number_token2, + ACTIONS(168), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(182), 1, + sym__brace_start, + ACTIONS(1101), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1107), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4900), 1, + anon_sym_BQUOTE, + ACTIONS(7187), 1, + sym_word, + ACTIONS(7193), 1, + sym__comment_word, + ACTIONS(7647), 1, + anon_sym_DOLLAR, + ACTIONS(1095), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7189), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7191), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1611), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130454] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(162), 1, + aux_sym_number_token1, + ACTIONS(164), 1, + aux_sym_number_token2, + ACTIONS(168), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(182), 1, + sym__brace_start, + ACTIONS(1101), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1107), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4900), 1, + anon_sym_BQUOTE, + ACTIONS(7187), 1, + sym_word, + ACTIONS(7193), 1, + sym__comment_word, + ACTIONS(7649), 1, + anon_sym_DOLLAR, + ACTIONS(1095), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7189), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7191), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1611), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130518] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5635), 1, + anon_sym_DQUOTE, + ACTIONS(5639), 1, + aux_sym_number_token1, + ACTIONS(5641), 1, + aux_sym_number_token2, + ACTIONS(5643), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5645), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5647), 1, + anon_sym_BQUOTE, + ACTIONS(5649), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5659), 1, + sym__brace_start, + ACTIONS(7399), 1, + sym_word, + ACTIONS(7405), 1, + sym__comment_word, + ACTIONS(7651), 1, + anon_sym_DOLLAR, + ACTIONS(5627), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5651), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7401), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7403), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2015), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130582] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_DQUOTE, + ACTIONS(103), 1, + aux_sym_number_token1, + ACTIONS(105), 1, + aux_sym_number_token2, + ACTIONS(107), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(109), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(111), 1, + anon_sym_BQUOTE, + ACTIONS(113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(123), 1, + sym__brace_start, + ACTIONS(7653), 1, + sym_word, + ACTIONS(7655), 1, + anon_sym_DOLLAR, + ACTIONS(7661), 1, + sym__comment_word, + ACTIONS(75), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(115), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7657), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7659), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(351), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130646] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6688), 1, + anon_sym_DQUOTE, + ACTIONS(6692), 1, + aux_sym_number_token1, + ACTIONS(6694), 1, + aux_sym_number_token2, + ACTIONS(6696), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6700), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6702), 1, + anon_sym_BQUOTE, + ACTIONS(6704), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6710), 1, + sym__brace_start, + ACTIONS(7477), 1, + sym_word, + ACTIONS(7485), 1, + sym__comment_word, + ACTIONS(7663), 1, + anon_sym_DOLLAR, + ACTIONS(6682), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6706), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7481), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7483), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4105), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130710] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_DOLLAR, + ACTIONS(45), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + aux_sym_number_token1, + ACTIONS(51), 1, + aux_sym_number_token2, + ACTIONS(53), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(55), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(57), 1, + anon_sym_BQUOTE, + ACTIONS(59), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(71), 1, + sym__brace_start, + ACTIONS(7039), 1, + sym_word, + ACTIONS(7047), 1, + sym__comment_word, + ACTIONS(13), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(61), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7043), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7045), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1023), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130774] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1525), 1, + aux_sym_number_token1, + ACTIONS(1527), 1, + aux_sym_number_token2, + ACTIONS(1531), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1547), 1, + sym__brace_start, + ACTIONS(6086), 1, + anon_sym_DQUOTE, + ACTIONS(6090), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6092), 1, + anon_sym_BQUOTE, + ACTIONS(6094), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7631), 1, + sym_word, + ACTIONS(7637), 1, + sym__comment_word, + ACTIONS(7665), 1, + anon_sym_DOLLAR, + ACTIONS(6080), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6096), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7633), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7635), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(804), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130838] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5635), 1, + anon_sym_DQUOTE, + ACTIONS(5639), 1, + aux_sym_number_token1, + ACTIONS(5641), 1, + aux_sym_number_token2, + ACTIONS(5643), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5645), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5647), 1, + anon_sym_BQUOTE, + ACTIONS(5649), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5659), 1, + sym__brace_start, + ACTIONS(7399), 1, + sym_word, + ACTIONS(7405), 1, + sym__comment_word, + ACTIONS(7667), 1, + anon_sym_DOLLAR, + ACTIONS(5627), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5651), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7401), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7403), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2015), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130902] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2532), 1, + anon_sym_DOLLAR, + ACTIONS(2538), 1, + aux_sym_number_token1, + ACTIONS(2540), 1, + aux_sym_number_token2, + ACTIONS(2544), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2556), 1, + sym__brace_start, + ACTIONS(7049), 1, + sym_word, + ACTIONS(7057), 1, + anon_sym_DQUOTE, + ACTIONS(7061), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7063), 1, + anon_sym_BQUOTE, + ACTIONS(7065), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7069), 1, + sym__comment_word, + ACTIONS(7051), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7055), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7059), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7067), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1325), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130966] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5679), 1, + anon_sym_DQUOTE, + ACTIONS(5683), 1, + aux_sym_number_token1, + ACTIONS(5685), 1, + aux_sym_number_token2, + ACTIONS(5687), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5691), 1, + anon_sym_BQUOTE, + ACTIONS(5693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5703), 1, + sym__brace_start, + ACTIONS(7163), 1, + sym_word, + ACTIONS(7171), 1, + sym__comment_word, + ACTIONS(7669), 1, + anon_sym_DOLLAR, + ACTIONS(5671), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7167), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7169), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2793), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [131030] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4832), 1, + aux_sym_number_token1, + ACTIONS(4834), 1, + aux_sym_number_token2, + ACTIONS(4838), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(5421), 1, + anon_sym_DQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5427), 1, + anon_sym_BQUOTE, + ACTIONS(5429), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7289), 1, + sym_word, + ACTIONS(7295), 1, + sym__comment_word, + ACTIONS(7671), 1, + anon_sym_DOLLAR, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5431), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7291), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7293), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4137), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [131094] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(194), 1, + anon_sym_DOLLAR, + ACTIONS(198), 1, + anon_sym_DQUOTE, + ACTIONS(202), 1, + aux_sym_number_token1, + ACTIONS(204), 1, + aux_sym_number_token2, + ACTIONS(206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(208), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(210), 1, + anon_sym_BQUOTE, + ACTIONS(212), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(218), 1, + sym__brace_start, + ACTIONS(7673), 1, + sym_word, + ACTIONS(7679), 1, + sym__comment_word, + ACTIONS(186), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7675), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7677), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(387), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [131158] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5679), 1, + anon_sym_DQUOTE, + ACTIONS(5683), 1, + aux_sym_number_token1, + ACTIONS(5685), 1, + aux_sym_number_token2, + ACTIONS(5687), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5691), 1, + anon_sym_BQUOTE, + ACTIONS(5693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5703), 1, + sym__brace_start, + ACTIONS(7163), 1, + sym_word, + ACTIONS(7171), 1, + sym__comment_word, + ACTIONS(7681), 1, + anon_sym_DOLLAR, + ACTIONS(5671), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7167), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7169), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2793), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [131222] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2919), 1, + aux_sym_number_token1, + ACTIONS(2921), 1, + aux_sym_number_token2, + ACTIONS(2925), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2935), 1, + sym__brace_start, + ACTIONS(6564), 1, + anon_sym_DQUOTE, + ACTIONS(6568), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6570), 1, + anon_sym_BQUOTE, + ACTIONS(6572), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7107), 1, + sym_word, + ACTIONS(7115), 1, + sym__comment_word, + ACTIONS(7683), 1, + anon_sym_DOLLAR, + ACTIONS(6560), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6574), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7111), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7113), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1435), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [131286] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2919), 1, + aux_sym_number_token1, + ACTIONS(2921), 1, + aux_sym_number_token2, + ACTIONS(2925), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2935), 1, + sym__brace_start, + ACTIONS(6564), 1, + anon_sym_DQUOTE, + ACTIONS(6568), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6570), 1, + anon_sym_BQUOTE, + ACTIONS(6572), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7107), 1, + sym_word, + ACTIONS(7115), 1, + sym__comment_word, + ACTIONS(7685), 1, + anon_sym_DOLLAR, + ACTIONS(6560), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6574), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7111), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7113), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1435), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [131350] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(246), 1, + aux_sym_number_token1, + ACTIONS(248), 1, + aux_sym_number_token2, + ACTIONS(252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(264), 1, + sym__brace_start, + ACTIONS(1159), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + ACTIONS(7299), 1, + sym_word, + ACTIONS(7307), 1, + sym__comment_word, + ACTIONS(7687), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1167), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7303), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7305), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1488), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [131414] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4832), 1, + aux_sym_number_token1, + ACTIONS(4834), 1, + aux_sym_number_token2, + ACTIONS(4838), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4850), 1, + sym__brace_start, + ACTIONS(5421), 1, + anon_sym_DQUOTE, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5427), 1, + anon_sym_BQUOTE, + ACTIONS(5429), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7289), 1, + sym_word, + ACTIONS(7295), 1, + sym__comment_word, + ACTIONS(7689), 1, + anon_sym_DOLLAR, + ACTIONS(5415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5431), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7291), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7293), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4137), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [131478] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6486), 1, + anon_sym_DQUOTE, + ACTIONS(6490), 1, + aux_sym_number_token1, + ACTIONS(6492), 1, + aux_sym_number_token2, + ACTIONS(6494), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6496), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6498), 1, + anon_sym_BQUOTE, + ACTIONS(6500), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6506), 1, + sym__brace_start, + ACTIONS(7691), 1, + sym_word, + ACTIONS(7693), 1, + anon_sym_DOLLAR, + ACTIONS(7699), 1, + sym__comment_word, + ACTIONS(6480), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6502), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7695), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7697), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1721), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [131542] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_DQUOTE, + ACTIONS(103), 1, + aux_sym_number_token1, + ACTIONS(105), 1, + aux_sym_number_token2, + ACTIONS(107), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(109), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(111), 1, + anon_sym_BQUOTE, + ACTIONS(113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(123), 1, + sym__brace_start, + ACTIONS(7653), 1, + sym_word, + ACTIONS(7661), 1, + sym__comment_word, + ACTIONS(7701), 1, + anon_sym_DOLLAR, + ACTIONS(75), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(115), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7657), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7659), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(351), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [131606] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5715), 1, + anon_sym_DQUOTE, + ACTIONS(5719), 1, + aux_sym_number_token1, + ACTIONS(5721), 1, + aux_sym_number_token2, + ACTIONS(5723), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5725), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5727), 1, + anon_sym_BQUOTE, + ACTIONS(5729), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5739), 1, + sym__brace_start, + ACTIONS(7703), 1, + sym_word, + ACTIONS(7705), 1, + anon_sym_DOLLAR, + ACTIONS(7711), 1, + sym__comment_word, + ACTIONS(5707), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5731), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7707), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7709), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1205), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [131670] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5715), 1, + anon_sym_DQUOTE, + ACTIONS(5719), 1, + aux_sym_number_token1, + ACTIONS(5721), 1, + aux_sym_number_token2, + ACTIONS(5723), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5725), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5727), 1, + anon_sym_BQUOTE, + ACTIONS(5729), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5739), 1, + sym__brace_start, + ACTIONS(7703), 1, + sym_word, + ACTIONS(7711), 1, + sym__comment_word, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(5707), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5731), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7707), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7709), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1205), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [131734] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4244), 1, + anon_sym_DQUOTE, + ACTIONS(4248), 1, + aux_sym_number_token1, + ACTIONS(4250), 1, + aux_sym_number_token2, + ACTIONS(4252), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4254), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4256), 1, + anon_sym_BQUOTE, + ACTIONS(4258), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4264), 1, + sym__brace_start, + ACTIONS(7089), 1, + sym_word, + ACTIONS(7095), 1, + sym__comment_word, + ACTIONS(7715), 1, + anon_sym_DOLLAR, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7091), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7093), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3174), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [131798] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1991), 1, + anon_sym_DOLLAR, + ACTIONS(1997), 1, + aux_sym_number_token1, + ACTIONS(1999), 1, + aux_sym_number_token2, + ACTIONS(2003), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2017), 1, + sym__brace_start, + ACTIONS(7557), 1, + sym_word, + ACTIONS(7565), 1, + anon_sym_DQUOTE, + ACTIONS(7569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7571), 1, + anon_sym_BQUOTE, + ACTIONS(7573), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7577), 1, + sym__comment_word, + ACTIONS(7559), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7563), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7567), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7575), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(881), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [131862] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4244), 1, + anon_sym_DQUOTE, + ACTIONS(4248), 1, + aux_sym_number_token1, + ACTIONS(4250), 1, + aux_sym_number_token2, + ACTIONS(4252), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4254), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4256), 1, + anon_sym_BQUOTE, + ACTIONS(4258), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4264), 1, + sym__brace_start, + ACTIONS(7089), 1, + sym_word, + ACTIONS(7095), 1, + sym__comment_word, + ACTIONS(7717), 1, + anon_sym_DOLLAR, + ACTIONS(4236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7091), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7093), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3174), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [131926] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(611), 1, + anon_sym_DOLLAR, + ACTIONS(615), 1, + anon_sym_DQUOTE, + ACTIONS(619), 1, + aux_sym_number_token1, + ACTIONS(621), 1, + aux_sym_number_token2, + ACTIONS(623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(635), 1, + sym__brace_start, + ACTIONS(4757), 1, + anon_sym_BQUOTE, + ACTIONS(6872), 1, + sym_word, + ACTIONS(6876), 1, + sym__comment_word, + ACTIONS(598), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(631), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6878), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6880), 2, + sym__special_character, + sym_test_operator, + STATE(1856), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [131990] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5679), 1, + anon_sym_DQUOTE, + ACTIONS(5683), 1, + aux_sym_number_token1, + ACTIONS(5685), 1, + aux_sym_number_token2, + ACTIONS(5687), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5691), 1, + anon_sym_BQUOTE, + ACTIONS(5693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5703), 1, + sym__brace_start, + ACTIONS(7163), 1, + sym_word, + ACTIONS(7171), 1, + sym__comment_word, + ACTIONS(7719), 1, + anon_sym_DOLLAR, + ACTIONS(5671), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7167), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7169), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2793), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [132054] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5679), 1, + anon_sym_DQUOTE, + ACTIONS(5683), 1, + aux_sym_number_token1, + ACTIONS(5685), 1, + aux_sym_number_token2, + ACTIONS(5687), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5691), 1, + anon_sym_BQUOTE, + ACTIONS(5693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5703), 1, + sym__brace_start, + ACTIONS(7163), 1, + sym_word, + ACTIONS(7171), 1, + sym__comment_word, + ACTIONS(7721), 1, + anon_sym_DOLLAR, + ACTIONS(5671), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7167), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7169), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2793), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [132118] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + anon_sym_DQUOTE, + ACTIONS(202), 1, + aux_sym_number_token1, + ACTIONS(204), 1, + aux_sym_number_token2, + ACTIONS(206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(208), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(210), 1, + anon_sym_BQUOTE, + ACTIONS(212), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(218), 1, + sym__brace_start, + ACTIONS(7673), 1, + sym_word, + ACTIONS(7679), 1, + sym__comment_word, + ACTIONS(7723), 1, + anon_sym_DOLLAR, + ACTIONS(186), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7675), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7677), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(387), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [132182] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + anon_sym_DQUOTE, + ACTIONS(202), 1, + aux_sym_number_token1, + ACTIONS(204), 1, + aux_sym_number_token2, + ACTIONS(206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(208), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(210), 1, + anon_sym_BQUOTE, + ACTIONS(212), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(218), 1, + sym__brace_start, + ACTIONS(7673), 1, + sym_word, + ACTIONS(7679), 1, + sym__comment_word, + ACTIONS(7725), 1, + anon_sym_DOLLAR, + ACTIONS(186), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7675), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7677), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(387), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [132246] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5791), 1, + anon_sym_DOLLAR, + ACTIONS(5795), 1, + anon_sym_DQUOTE, + ACTIONS(5799), 1, + aux_sym_number_token1, + ACTIONS(5801), 1, + aux_sym_number_token2, + ACTIONS(5803), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5805), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5807), 1, + anon_sym_BQUOTE, + ACTIONS(5809), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5819), 1, + sym__brace_start, + ACTIONS(7269), 1, + sym_word, + ACTIONS(7277), 1, + sym__comment_word, + ACTIONS(5787), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5811), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7273), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7275), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1296), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [132310] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2474), 1, + anon_sym_DOLLAR, + ACTIONS(2480), 1, + aux_sym_number_token1, + ACTIONS(2482), 1, + aux_sym_number_token2, + ACTIONS(2486), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2496), 1, + sym__brace_start, + ACTIONS(6528), 1, + anon_sym_DQUOTE, + ACTIONS(6532), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6534), 1, + anon_sym_BQUOTE, + ACTIONS(6536), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7515), 1, + sym_word, + ACTIONS(7523), 1, + sym__comment_word, + ACTIONS(6524), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6538), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7519), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7521), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1094), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [132374] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6167), 1, + anon_sym_DQUOTE, + ACTIONS(6171), 1, + aux_sym_number_token1, + ACTIONS(6173), 1, + aux_sym_number_token2, + ACTIONS(6175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6177), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6179), 1, + anon_sym_BQUOTE, + ACTIONS(6181), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6191), 1, + sym__brace_start, + ACTIONS(7505), 1, + sym_word, + ACTIONS(7511), 1, + sym__comment_word, + ACTIONS(7727), 1, + anon_sym_DOLLAR, + ACTIONS(6159), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6183), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7507), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7509), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3505), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [132438] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1931), 1, + aux_sym_number_token1, + ACTIONS(1933), 1, + aux_sym_number_token2, + ACTIONS(1937), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1951), 1, + sym__brace_start, + ACTIONS(5857), 1, + anon_sym_DQUOTE, + ACTIONS(5861), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5863), 1, + anon_sym_BQUOTE, + ACTIONS(5865), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7097), 1, + sym_word, + ACTIONS(7105), 1, + sym__comment_word, + ACTIONS(7729), 1, + anon_sym_DOLLAR, + ACTIONS(5851), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5867), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7101), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7103), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1151), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [132502] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6167), 1, + anon_sym_DQUOTE, + ACTIONS(6171), 1, + aux_sym_number_token1, + ACTIONS(6173), 1, + aux_sym_number_token2, + ACTIONS(6175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6177), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6179), 1, + anon_sym_BQUOTE, + ACTIONS(6181), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6191), 1, + sym__brace_start, + ACTIONS(7505), 1, + sym_word, + ACTIONS(7511), 1, + sym__comment_word, + ACTIONS(7731), 1, + anon_sym_DOLLAR, + ACTIONS(6159), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6183), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7507), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7509), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3505), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [132566] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3096), 1, + anon_sym_DQUOTE, + ACTIONS(3100), 1, + aux_sym_number_token1, + ACTIONS(3102), 1, + aux_sym_number_token2, + ACTIONS(3104), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3106), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3108), 1, + anon_sym_BQUOTE, + ACTIONS(3110), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3120), 1, + sym__brace_start, + ACTIONS(7581), 1, + sym_word, + ACTIONS(7587), 1, + sym__comment_word, + ACTIONS(7733), 1, + anon_sym_DOLLAR, + ACTIONS(3090), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3112), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7583), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7585), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1767), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [132630] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6203), 1, + anon_sym_DQUOTE, + ACTIONS(6207), 1, + aux_sym_number_token1, + ACTIONS(6209), 1, + aux_sym_number_token2, + ACTIONS(6211), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6213), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6215), 1, + anon_sym_BQUOTE, + ACTIONS(6217), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6227), 1, + sym__brace_start, + ACTIONS(7611), 1, + sym_word, + ACTIONS(7617), 1, + sym__comment_word, + ACTIONS(7735), 1, + anon_sym_DOLLAR, + ACTIONS(6195), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6219), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7613), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7615), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(875), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [132694] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6203), 1, + anon_sym_DQUOTE, + ACTIONS(6207), 1, + aux_sym_number_token1, + ACTIONS(6209), 1, + aux_sym_number_token2, + ACTIONS(6211), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6213), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6215), 1, + anon_sym_BQUOTE, + ACTIONS(6217), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6227), 1, + sym__brace_start, + ACTIONS(7611), 1, + sym_word, + ACTIONS(7617), 1, + sym__comment_word, + ACTIONS(7737), 1, + anon_sym_DOLLAR, + ACTIONS(6195), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6219), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7613), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7615), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(875), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [132758] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6482), 1, + anon_sym_DOLLAR, + ACTIONS(6486), 1, + anon_sym_DQUOTE, + ACTIONS(6490), 1, + aux_sym_number_token1, + ACTIONS(6492), 1, + aux_sym_number_token2, + ACTIONS(6494), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6496), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6498), 1, + anon_sym_BQUOTE, + ACTIONS(6500), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6506), 1, + sym__brace_start, + ACTIONS(7691), 1, + sym_word, + ACTIONS(7699), 1, + sym__comment_word, + ACTIONS(6480), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6502), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7695), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7697), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1721), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [132822] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(312), 1, + aux_sym_number_token1, + ACTIONS(314), 1, + aux_sym_number_token2, + ACTIONS(316), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(318), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(320), 1, + anon_sym_BQUOTE, + ACTIONS(322), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(332), 1, + sym__brace_start, + ACTIONS(7489), 1, + sym_word, + ACTIONS(7495), 1, + sym__comment_word, + ACTIONS(7739), 1, + anon_sym_DOLLAR, + ACTIONS(272), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(324), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7491), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7493), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(423), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [132886] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6730), 1, + anon_sym_DQUOTE, + ACTIONS(6734), 1, + aux_sym_number_token1, + ACTIONS(6736), 1, + aux_sym_number_token2, + ACTIONS(6738), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6740), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6742), 1, + anon_sym_BQUOTE, + ACTIONS(6744), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6750), 1, + sym__brace_start, + ACTIONS(7081), 1, + sym_word, + ACTIONS(7087), 1, + sym__comment_word, + ACTIONS(7741), 1, + anon_sym_DOLLAR, + ACTIONS(6724), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6746), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7083), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7085), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2878), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [132950] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3096), 1, + anon_sym_DQUOTE, + ACTIONS(3100), 1, + aux_sym_number_token1, + ACTIONS(3102), 1, + aux_sym_number_token2, + ACTIONS(3104), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3106), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3108), 1, + anon_sym_BQUOTE, + ACTIONS(3110), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3120), 1, + sym__brace_start, + ACTIONS(7581), 1, + sym_word, + ACTIONS(7587), 1, + sym__comment_word, + ACTIONS(7743), 1, + anon_sym_DOLLAR, + ACTIONS(3090), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3112), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7583), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7585), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1767), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [133014] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6756), 1, + anon_sym_DOLLAR, + ACTIONS(6760), 1, + anon_sym_DQUOTE, + ACTIONS(6764), 1, + aux_sym_number_token1, + ACTIONS(6766), 1, + aux_sym_number_token2, + ACTIONS(6768), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6770), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6772), 1, + anon_sym_BQUOTE, + ACTIONS(6774), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6780), 1, + sym__brace_start, + ACTIONS(7311), 1, + sym_word, + ACTIONS(7319), 1, + sym__comment_word, + ACTIONS(6754), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6776), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7315), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7317), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2875), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [133078] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(312), 1, + aux_sym_number_token1, + ACTIONS(314), 1, + aux_sym_number_token2, + ACTIONS(316), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(318), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(320), 1, + anon_sym_BQUOTE, + ACTIONS(322), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(332), 1, + sym__brace_start, + ACTIONS(7489), 1, + sym_word, + ACTIONS(7495), 1, + sym__comment_word, + ACTIONS(7745), 1, + anon_sym_DOLLAR, + ACTIONS(272), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(324), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7491), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7493), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(423), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [133142] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3447), 1, + anon_sym_DQUOTE, + ACTIONS(3451), 1, + aux_sym_number_token1, + ACTIONS(3453), 1, + aux_sym_number_token2, + ACTIONS(3455), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3457), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3459), 1, + anon_sym_BQUOTE, + ACTIONS(3461), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3469), 1, + sym__brace_start, + ACTIONS(7527), 1, + sym_word, + ACTIONS(7533), 1, + sym__comment_word, + ACTIONS(7747), 1, + anon_sym_DOLLAR, + ACTIONS(3441), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3463), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7529), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7531), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2010), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [133206] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3447), 1, + anon_sym_DQUOTE, + ACTIONS(3451), 1, + aux_sym_number_token1, + ACTIONS(3453), 1, + aux_sym_number_token2, + ACTIONS(3455), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3457), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3459), 1, + anon_sym_BQUOTE, + ACTIONS(3461), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3469), 1, + sym__brace_start, + ACTIONS(7527), 1, + sym_word, + ACTIONS(7533), 1, + sym__comment_word, + ACTIONS(7749), 1, + anon_sym_DOLLAR, + ACTIONS(3441), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3463), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7529), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7531), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2010), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [133270] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_DOLLAR, + ACTIONS(99), 1, + anon_sym_DQUOTE, + ACTIONS(103), 1, + aux_sym_number_token1, + ACTIONS(105), 1, + aux_sym_number_token2, + ACTIONS(107), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(109), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(111), 1, + anon_sym_BQUOTE, + ACTIONS(113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(123), 1, + sym__brace_start, + ACTIONS(7653), 1, + sym_word, + ACTIONS(7661), 1, + sym__comment_word, + ACTIONS(75), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(115), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7657), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7659), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(351), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [133334] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5679), 1, + anon_sym_DQUOTE, + ACTIONS(5683), 1, + aux_sym_number_token1, + ACTIONS(5685), 1, + aux_sym_number_token2, + ACTIONS(5687), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5691), 1, + anon_sym_BQUOTE, + ACTIONS(5693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5703), 1, + sym__brace_start, + ACTIONS(7163), 1, + sym_word, + ACTIONS(7171), 1, + sym__comment_word, + ACTIONS(7751), 1, + anon_sym_DOLLAR, + ACTIONS(5671), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7167), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7169), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2793), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [133398] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6730), 1, + anon_sym_DQUOTE, + ACTIONS(6734), 1, + aux_sym_number_token1, + ACTIONS(6736), 1, + aux_sym_number_token2, + ACTIONS(6738), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6740), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6742), 1, + anon_sym_BQUOTE, + ACTIONS(6744), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6750), 1, + sym__brace_start, + ACTIONS(7081), 1, + sym_word, + ACTIONS(7087), 1, + sym__comment_word, + ACTIONS(7753), 1, + anon_sym_DOLLAR, + ACTIONS(6724), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6746), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7083), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7085), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2878), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [133462] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5679), 1, + anon_sym_DQUOTE, + ACTIONS(5683), 1, + aux_sym_number_token1, + ACTIONS(5685), 1, + aux_sym_number_token2, + ACTIONS(5687), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5691), 1, + anon_sym_BQUOTE, + ACTIONS(5693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5703), 1, + sym__brace_start, + ACTIONS(7163), 1, + sym_word, + ACTIONS(7171), 1, + sym__comment_word, + ACTIONS(7755), 1, + anon_sym_DOLLAR, + ACTIONS(5671), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7167), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7169), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2793), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [133526] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1931), 1, + aux_sym_number_token1, + ACTIONS(1933), 1, + aux_sym_number_token2, + ACTIONS(1937), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1951), 1, + sym__brace_start, + ACTIONS(5857), 1, + anon_sym_DQUOTE, + ACTIONS(5861), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5863), 1, + anon_sym_BQUOTE, + ACTIONS(5865), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7097), 1, + sym_word, + ACTIONS(7105), 1, + sym__comment_word, + ACTIONS(7757), 1, + anon_sym_DOLLAR, + ACTIONS(5851), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5867), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7101), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7103), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1151), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [133590] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1404), 1, + anon_sym_DQUOTE, + ACTIONS(1408), 1, + aux_sym_number_token1, + ACTIONS(1410), 1, + aux_sym_number_token2, + ACTIONS(1412), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1428), 1, + anon_sym_BQUOTE, + ACTIONS(1430), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1436), 1, + sym__brace_start, + ACTIONS(7357), 1, + sym_word, + ACTIONS(7363), 1, + sym__comment_word, + ACTIONS(7759), 1, + anon_sym_DOLLAR, + ACTIONS(1380), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1432), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7359), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7361), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2240), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [133654] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5711), 1, + anon_sym_DOLLAR, + ACTIONS(5715), 1, + anon_sym_DQUOTE, + ACTIONS(5719), 1, + aux_sym_number_token1, + ACTIONS(5721), 1, + aux_sym_number_token2, + ACTIONS(5723), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5725), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5727), 1, + anon_sym_BQUOTE, + ACTIONS(5729), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5739), 1, + sym__brace_start, + ACTIONS(7703), 1, + sym_word, + ACTIONS(7711), 1, + sym__comment_word, + ACTIONS(5707), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5731), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7707), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7709), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1205), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [133718] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1047), 1, + anon_sym_DQUOTE, + ACTIONS(1051), 1, + aux_sym_number_token1, + ACTIONS(1053), 1, + aux_sym_number_token2, + ACTIONS(1055), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1057), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1059), 1, + anon_sym_BQUOTE, + ACTIONS(1061), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1069), 1, + sym__brace_start, + ACTIONS(7437), 1, + sym_word, + ACTIONS(7443), 1, + sym__comment_word, + ACTIONS(7761), 1, + anon_sym_DOLLAR, + ACTIONS(1033), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1063), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7439), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7441), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1679), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [133782] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1047), 1, + anon_sym_DQUOTE, + ACTIONS(1051), 1, + aux_sym_number_token1, + ACTIONS(1053), 1, + aux_sym_number_token2, + ACTIONS(1055), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1057), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1059), 1, + anon_sym_BQUOTE, + ACTIONS(1061), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1069), 1, + sym__brace_start, + ACTIONS(7437), 1, + sym_word, + ACTIONS(7443), 1, + sym__comment_word, + ACTIONS(7763), 1, + anon_sym_DOLLAR, + ACTIONS(1033), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1063), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7439), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7441), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1679), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [133846] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(562), 1, + anon_sym_DOLLAR, + ACTIONS(566), 1, + anon_sym_DQUOTE, + ACTIONS(570), 1, + aux_sym_number_token1, + ACTIONS(572), 1, + aux_sym_number_token2, + ACTIONS(574), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(576), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(578), 1, + anon_sym_BQUOTE, + ACTIONS(580), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(590), 1, + sym__brace_start, + ACTIONS(7331), 1, + sym_word, + ACTIONS(7339), 1, + sym__comment_word, + ACTIONS(546), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(582), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7335), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7337), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(822), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [133910] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6486), 1, + anon_sym_DQUOTE, + ACTIONS(6490), 1, + aux_sym_number_token1, + ACTIONS(6492), 1, + aux_sym_number_token2, + ACTIONS(6494), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6496), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6498), 1, + anon_sym_BQUOTE, + ACTIONS(6500), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6506), 1, + sym__brace_start, + ACTIONS(7691), 1, + sym_word, + ACTIONS(7699), 1, + sym__comment_word, + ACTIONS(7765), 1, + anon_sym_DOLLAR, + ACTIONS(6480), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6502), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7695), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7697), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1721), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [133974] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1925), 1, + anon_sym_DOLLAR, + ACTIONS(1931), 1, + aux_sym_number_token1, + ACTIONS(1933), 1, + aux_sym_number_token2, + ACTIONS(1937), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1951), 1, + sym__brace_start, + ACTIONS(5857), 1, + anon_sym_DQUOTE, + ACTIONS(5861), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5863), 1, + anon_sym_BQUOTE, + ACTIONS(5865), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7097), 1, + sym_word, + ACTIONS(7105), 1, + sym__comment_word, + ACTIONS(5851), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5867), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7101), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7103), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1151), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [134038] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6000), 1, + anon_sym_DOLLAR, + ACTIONS(6004), 1, + anon_sym_DQUOTE, + ACTIONS(6008), 1, + aux_sym_number_token1, + ACTIONS(6010), 1, + aux_sym_number_token2, + ACTIONS(6012), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6014), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6016), 1, + anon_sym_BQUOTE, + ACTIONS(6018), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6028), 1, + sym__brace_start, + ACTIONS(7071), 1, + sym_word, + ACTIONS(7079), 1, + sym__comment_word, + ACTIONS(5996), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6020), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7075), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7077), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2736), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [134102] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(446), 1, + anon_sym_DQUOTE, + ACTIONS(450), 1, + aux_sym_number_token1, + ACTIONS(452), 1, + aux_sym_number_token2, + ACTIONS(454), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(456), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(458), 1, + anon_sym_BQUOTE, + ACTIONS(460), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(470), 1, + sym__brace_start, + ACTIONS(7535), 1, + sym_word, + ACTIONS(7541), 1, + sym__comment_word, + ACTIONS(7767), 1, + anon_sym_DOLLAR, + ACTIONS(406), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(462), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7537), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7539), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(694), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [134166] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(446), 1, + anon_sym_DQUOTE, + ACTIONS(450), 1, + aux_sym_number_token1, + ACTIONS(452), 1, + aux_sym_number_token2, + ACTIONS(454), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(456), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(458), 1, + anon_sym_BQUOTE, + ACTIONS(460), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(470), 1, + sym__brace_start, + ACTIONS(7535), 1, + sym_word, + ACTIONS(7541), 1, + sym__comment_word, + ACTIONS(7769), 1, + anon_sym_DOLLAR, + ACTIONS(406), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(462), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7537), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7539), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(694), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [134230] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2508), 1, + aux_sym_number_token1, + ACTIONS(2510), 1, + aux_sym_number_token2, + ACTIONS(2514), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2526), 1, + sym__brace_start, + ACTIONS(7243), 1, + sym_word, + ACTIONS(7251), 1, + anon_sym_DQUOTE, + ACTIONS(7255), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7257), 1, + anon_sym_BQUOTE, + ACTIONS(7259), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7263), 1, + sym__comment_word, + ACTIONS(7771), 1, + anon_sym_DOLLAR, + ACTIONS(7245), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7249), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7253), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7261), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1232), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [134294] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1404), 1, + anon_sym_DQUOTE, + ACTIONS(1408), 1, + aux_sym_number_token1, + ACTIONS(1410), 1, + aux_sym_number_token2, + ACTIONS(1412), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1428), 1, + anon_sym_BQUOTE, + ACTIONS(1430), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1436), 1, + sym__brace_start, + ACTIONS(7357), 1, + sym_word, + ACTIONS(7363), 1, + sym__comment_word, + ACTIONS(7773), 1, + anon_sym_DOLLAR, + ACTIONS(1380), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1432), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7359), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7361), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2240), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [134358] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3244), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3477), 2, + sym_file_descriptor, + anon_sym_LF, + STATE(2720), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3312), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [134397] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3246), 1, + anon_sym_LT_LT_LT, + ACTIONS(7777), 1, + anon_sym_LF, + ACTIONS(7779), 1, + sym_file_descriptor, + ACTIONS(3240), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3242), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3244), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3308), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(3310), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(2720), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7775), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [134448] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(7784), 1, + sym__concat, + STATE(2712), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1258), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [134489] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7499), 1, + aux_sym_concatenation_token1, + ACTIONS(7501), 1, + sym__concat, + STATE(2790), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1242), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + sym__special_character, + [134530] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7791), 1, + sym_variable_name, + STATE(4363), 1, + sym_subscript, + ACTIONS(7789), 2, + sym_file_descriptor, + anon_sym_LF, + STATE(2714), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7787), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [134571] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7802), 1, + anon_sym_LF, + ACTIONS(7804), 1, + anon_sym_LT_LT_LT, + ACTIONS(7807), 1, + sym_file_descriptor, + ACTIONS(7796), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2715), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7799), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(7794), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP, + [134616] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3246), 1, + anon_sym_LT_LT_LT, + ACTIONS(7779), 1, + sym_file_descriptor, + ACTIONS(7810), 1, + anon_sym_LF, + ACTIONS(3238), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(3240), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3242), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3244), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2857), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(2720), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7775), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [134667] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7499), 1, + aux_sym_concatenation_token1, + ACTIONS(7501), 1, + sym__concat, + STATE(2724), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3839), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(3837), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [134708] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7499), 1, + aux_sym_concatenation_token1, + ACTIONS(7501), 1, + sym__concat, + STATE(2725), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3843), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(3841), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [134749] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3306), 2, + sym_file_descriptor, + anon_sym_LF, + STATE(2720), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3304), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [134786] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3246), 1, + anon_sym_LT_LT_LT, + ACTIONS(7779), 1, + sym_file_descriptor, + ACTIONS(7814), 1, + anon_sym_LF, + ACTIONS(3242), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2715), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7775), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(7812), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP, + [134831] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7816), 1, + aux_sym_concatenation_token1, + ACTIONS(7818), 1, sym__concat, + STATE(2777), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1242), 22, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + sym__special_character, + [134872] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7824), 1, sym_variable_name, + STATE(4363), 1, + sym_subscript, + ACTIONS(7822), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(1320), 22, + STATE(2714), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7820), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163414,21 +172378,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [126475] = 6, + [134913] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6808), 1, + ACTIONS(7826), 1, aux_sym_concatenation_token1, - ACTIONS(7648), 1, + ACTIONS(7829), 1, sym__concat, - STATE(2517), 1, + STATE(2723), 1, aux_sym_concatenation_repeat1, - ACTIONS(1266), 3, + ACTIONS(1263), 3, sym_file_descriptor, sym_variable_name, anon_sym_LF, - ACTIONS(1264), 20, + ACTIONS(1258), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163436,6 +172399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -163449,15 +172413,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [126515] = 3, + [134954] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 4, - sym_file_descriptor, + ACTIONS(7499), 1, + aux_sym_concatenation_token1, + ACTIONS(7832), 1, sym__concat, + STATE(2723), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 3, + sym_file_descriptor, sym_variable_name, anon_sym_LF, - ACTIONS(1350), 22, + ACTIONS(1252), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163479,21 +172448,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [126549] = 6, + [134995] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6808), 1, + ACTIONS(7499), 1, aux_sym_concatenation_token1, - ACTIONS(7650), 1, + ACTIONS(7834), 1, sym__concat, - STATE(2517), 1, + STATE(2723), 1, aux_sym_concatenation_repeat1, - ACTIONS(1260), 3, + ACTIONS(1248), 3, sym_file_descriptor, sym_variable_name, anon_sym_LF, - ACTIONS(1258), 20, + ACTIONS(1246), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163501,6 +172469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -163514,20 +172483,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [126589] = 6, + [135036] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7652), 1, + ACTIONS(7836), 1, aux_sym_concatenation_token1, - ACTIONS(7655), 1, + ACTIONS(7839), 1, sym__concat, - STATE(2616), 1, + STATE(2726), 1, aux_sym_concatenation_repeat1, - ACTIONS(1279), 3, + ACTIONS(1263), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1274), 20, + ACTIONS(1258), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163548,20 +172517,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [126629] = 6, + [135076] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7658), 1, - sym_variable_name, - STATE(4142), 1, - sym_subscript, - ACTIONS(7157), 2, + ACTIONS(3323), 1, + anon_sym_LT_LT_LT, + ACTIONS(7844), 1, + anon_sym_LF, + ACTIONS(7846), 1, sym_file_descriptor, + ACTIONS(3242), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3319), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3321), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3339), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(2857), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(2780), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7842), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [135126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1296), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - STATE(2629), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7159), 20, + ACTIONS(1294), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163569,10 +172573,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -163582,15 +172585,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [126669] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [135160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, + ACTIONS(1282), 5, sym_file_descriptor, sym__concat, sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1334), 22, + ACTIONS(1280), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163598,11 +172604,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -163613,15 +172617,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [126703] = 3, + anon_sym_BQUOTE, + [135194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 4, + ACTIONS(1286), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1324), 22, + ACTIONS(1284), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163644,15 +172649,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [126737] = 3, + [135228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(1340), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1312), 22, + ACTIONS(1338), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163675,15 +172680,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [126771] = 3, + [135262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1274), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1308), 22, + ACTIONS(1272), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163706,15 +172711,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [126805] = 3, + [135296] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, + ACTIONS(7848), 1, + aux_sym_concatenation_token1, + ACTIONS(7850), 1, + sym__concat, + STATE(2816), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1242), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + sym__special_character, + [135336] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1336), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1338), 22, + ACTIONS(1334), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163737,15 +172776,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [126839] = 3, + [135370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 4, + ACTIONS(1332), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1274), 22, + ACTIONS(1330), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163768,15 +172807,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [126873] = 3, + [135404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 4, + ACTIONS(1263), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1302), 22, + ACTIONS(1258), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163799,60 +172838,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [126907] = 11, + [135438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 1, - anon_sym_LT_LT_LT, - ACTIONS(7624), 1, + ACTIONS(1278), 4, sym_file_descriptor, - ACTIONS(7660), 1, + sym__concat, + sym_variable_name, anon_sym_LF, - ACTIONS(3215), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3311), 2, + ACTIONS(1276), 22, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3313), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3322), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(3217), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - STATE(2603), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7622), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [126957] = 6, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + aux_sym_concatenation_token1, + [135472] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7662), 1, - aux_sym_concatenation_token1, - ACTIONS(7664), 1, - sym__concat, - STATE(2701), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1272), 4, + ACTIONS(7852), 1, + sym__special_character, + STATE(2738), 1, + aux_sym__literal_repeat1, + ACTIONS(1357), 4, sym_file_descriptor, sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1270), 19, + ACTIONS(1352), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163860,6 +172889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -163871,16 +172901,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - [126997] = 3, + anon_sym_BQUOTE, + [135510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, + ACTIONS(1324), 5, sym_file_descriptor, sym__concat, sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1298), 22, + ACTIONS(1322), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163888,11 +172919,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -163903,18 +172932,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [127031] = 5, + anon_sym_BQUOTE, + [135544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7666), 1, - sym__special_character, - STATE(2605), 1, - aux_sym__literal_repeat1, - ACTIONS(3789), 3, + ACTIONS(1332), 5, sym_file_descriptor, + sym__concat, sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3787), 21, + ACTIONS(1330), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163922,11 +172950,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -163936,20 +172962,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [127069] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [135578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7668), 1, - sym_variable_name, - STATE(4142), 1, - sym_subscript, - ACTIONS(7385), 2, + ACTIONS(1324), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_LF, - STATE(2629), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7387), 20, + ACTIONS(1322), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163957,6 +172980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -163970,18 +172994,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [127109] = 4, + aux_sym_concatenation_token1, + [135612] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3299), 2, + ACTIONS(7848), 1, + aux_sym_concatenation_token1, + ACTIONS(7850), 1, + sym__concat, + STATE(2857), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 3, sym_file_descriptor, + sym_variable_name, anon_sym_LF, - STATE(2603), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3297), 20, + ACTIONS(1242), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163991,8 +173018,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -164002,20 +173027,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [127145] = 6, + sym__special_character, + anon_sym_BQUOTE, + [135652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6808), 1, - aux_sym_concatenation_token1, - ACTIONS(6810), 1, - sym__concat, - STATE(2613), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3789), 3, + ACTIONS(1304), 5, sym_file_descriptor, + sym__concat, sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3787), 20, + ACTIONS(1302), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164023,10 +173046,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -164036,19 +173058,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [127185] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [135686] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7671), 1, + ACTIONS(7816), 1, aux_sym_concatenation_token1, - ACTIONS(7674), 1, + ACTIONS(7855), 1, sym__concat, - STATE(2632), 1, + STATE(2762), 1, aux_sym_concatenation_repeat1, - ACTIONS(1279), 2, + ACTIONS(1254), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(1274), 21, + ACTIONS(1252), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164070,15 +173094,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [127225] = 3, + [135726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1282), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1284), 22, + ACTIONS(1280), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164101,15 +173125,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [127259] = 3, + [135760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1320), 5, sym_file_descriptor, sym__concat, sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1284), 22, + ACTIONS(1318), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164117,11 +173142,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -164132,20 +173155,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [127293] = 6, + anon_sym_BQUOTE, + [135794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7677), 1, - aux_sym_concatenation_token1, - ACTIONS(7679), 1, - sym__concat, - STATE(2700), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1272), 3, + ACTIONS(1348), 4, sym_file_descriptor, + sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1270), 20, + ACTIONS(1346), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164153,9 +173172,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -164165,54 +173186,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - [127333] = 6, + aux_sym_concatenation_token1, + [135828] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - aux_sym_concatenation_token1, - ACTIONS(7681), 1, - sym__concat, - STATE(2632), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 2, + ACTIONS(3323), 1, + anon_sym_LT_LT_LT, + ACTIONS(7846), 1, sym_file_descriptor, + ACTIONS(7857), 1, anon_sym_LF, - ACTIONS(1258), 21, + ACTIONS(3242), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3317), 2, anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(3319), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, + ACTIONS(3321), 2, anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3310), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + STATE(2780), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7842), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [127373] = 6, + [135878] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - aux_sym_concatenation_token1, - ACTIONS(7683), 1, - sym__concat, - STATE(2632), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 2, + ACTIONS(7859), 1, + sym_variable_name, + STATE(4358), 1, + sym_subscript, + ACTIONS(7822), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(1264), 21, + STATE(2752), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7820), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164220,7 +173247,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -164234,20 +173260,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [127413] = 6, + [135918] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7677), 1, - aux_sym_concatenation_token1, - ACTIONS(7679), 1, - sym__concat, - STATE(2648), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1272), 3, + ACTIONS(3306), 2, sym_file_descriptor, - sym_variable_name, anon_sym_LF, - ACTIONS(1270), 20, + STATE(2780), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3304), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164257,6 +173281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -164266,17 +173292,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - anon_sym_BQUOTE, - [127453] = 3, + [135954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 4, + ACTIONS(1344), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1346), 22, + ACTIONS(1342), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164299,15 +173323,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [127487] = 3, + [135988] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, - sym_file_descriptor, - sym__concat, + ACTIONS(7861), 1, sym_variable_name, + STATE(4358), 1, + sym_subscript, + ACTIONS(7789), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(1342), 22, + STATE(2752), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7787), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164315,7 +173344,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -164329,16 +173357,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [127521] = 3, + [136028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 4, + ACTIONS(1336), 5, sym_file_descriptor, sym__concat, sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1274), 21, + ACTIONS(1334), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164360,62 +173388,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [127554] = 15, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7685), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7689), 1, - anon_sym_LPAREN, - ACTIONS(7691), 1, - aux_sym__c_word_token1, - ACTIONS(7693), 1, - anon_sym_DOLLAR, - ACTIONS(7695), 1, - anon_sym_DQUOTE, - ACTIONS(7697), 1, - aux_sym_number_token1, - ACTIONS(7699), 1, - aux_sym_number_token2, - ACTIONS(7701), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7703), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7705), 1, - anon_sym_BQUOTE, - ACTIONS(7707), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7687), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4009), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2219), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [127611] = 6, + [136062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7677), 1, - aux_sym_concatenation_token1, - ACTIONS(7709), 1, - sym__concat, - STATE(2616), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 3, + ACTIONS(1300), 4, sym_file_descriptor, + sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1258), 19, + ACTIONS(1298), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164423,8 +173404,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -164434,21 +173418,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [127650] = 6, + aux_sym_concatenation_token1, + [136096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7711), 1, - sym_variable_name, - STATE(4154), 1, - sym_subscript, - ACTIONS(7157), 2, + ACTIONS(1274), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - STATE(2686), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7159), 19, + ACTIONS(1272), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164456,6 +173436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -164467,16 +173448,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [127689] = 3, + [136130] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 4, + ACTIONS(7864), 1, + sym__special_character, + STATE(2758), 1, + aux_sym__literal_repeat1, + ACTIONS(3843), 3, sym_file_descriptor, - sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1316), 21, + ACTIONS(3841), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164484,9 +173469,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -164496,16 +173483,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [127722] = 3, + [136168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 3, + ACTIONS(1312), 4, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_LF, - ACTIONS(1334), 22, + ACTIONS(1310), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164528,55 +173514,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [127755] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3407), 1, - anon_sym_LT_LT_LT, - ACTIONS(7715), 1, - sym_file_descriptor, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(7125), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(2691), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7127), 7, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP, - ACTIONS(7713), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [127798] = 6, + [136202] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7677), 1, - aux_sym_concatenation_token1, - ACTIONS(7717), 1, - sym__concat, - STATE(2616), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 3, + ACTIONS(7866), 1, + sym__special_character, + STATE(2758), 1, + aux_sym__literal_repeat1, + ACTIONS(1357), 3, sym_file_descriptor, sym_variable_name, anon_sym_LF, - ACTIONS(1264), 19, + ACTIONS(1352), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164584,8 +173533,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -164595,96 +173547,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [127837] = 15, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7689), 1, - anon_sym_LPAREN, - ACTIONS(7691), 1, - aux_sym__c_word_token1, - ACTIONS(7693), 1, - anon_sym_DOLLAR, - ACTIONS(7695), 1, - anon_sym_DQUOTE, - ACTIONS(7697), 1, - aux_sym_number_token1, - ACTIONS(7699), 1, - aux_sym_number_token2, - ACTIONS(7701), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7703), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7705), 1, - anon_sym_BQUOTE, - ACTIONS(7707), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7719), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7687), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4017), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2219), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [127894] = 11, + [136240] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3217), 1, - anon_sym_BQUOTE, - ACTIONS(3816), 1, - anon_sym_LT_LT_LT, - ACTIONS(7721), 1, - anon_sym_LF, - ACTIONS(7725), 1, - sym_file_descriptor, - ACTIONS(3510), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3797), 2, + ACTIONS(3321), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3814), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3866), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2709), 4, + ACTIONS(3477), 2, + sym_file_descriptor, + anon_sym_LF, + STATE(2780), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(7723), 8, + ACTIONS(3312), 18, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [127943] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [136278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 4, + ACTIONS(1270), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1320), 21, + ACTIONS(1268), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164692,9 +173596,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -164705,15 +173611,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [127976] = 3, + [136312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 3, + ACTIONS(1270), 4, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_LF, - ACTIONS(1320), 22, + ACTIONS(1268), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164736,21 +173642,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [128009] = 6, + [136346] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7727), 1, + ACTIONS(7869), 1, aux_sym_concatenation_token1, - ACTIONS(7730), 1, + ACTIONS(7872), 1, sym__concat, - STATE(2653), 1, + STATE(2762), 1, aux_sym_concatenation_repeat1, - ACTIONS(1279), 4, + ACTIONS(1263), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1274), 18, + ACTIONS(1258), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164758,8 +173662,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -164769,52 +173676,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [128048] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2189), 1, - anon_sym_BQUOTE, - ACTIONS(3816), 1, - anon_sym_LT_LT_LT, - ACTIONS(7725), 1, - sym_file_descriptor, - ACTIONS(7733), 1, - anon_sym_LF, - ACTIONS(3510), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3797), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3814), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3812), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2709), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7723), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [128097] = 3, + [136386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(1278), 5, sym_file_descriptor, sym__concat, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1308), 22, + ACTIONS(1276), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164822,11 +173693,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -164837,18 +173706,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [128130] = 5, + anon_sym_BQUOTE, + [136420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7735), 1, - sym__special_character, - STATE(2656), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 3, + ACTIONS(1300), 5, sym_file_descriptor, + sym__concat, sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1358), 20, + ACTIONS(1298), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164868,15 +173736,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [128167] = 3, + [136454] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 3, - sym_file_descriptor, + ACTIONS(7816), 1, + aux_sym_concatenation_token1, + ACTIONS(7818), 1, sym__concat, + STATE(2744), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7877), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(1298), 22, + ACTIONS(7875), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164898,20 +173772,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [128200] = 6, + [136494] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, + ACTIONS(7816), 1, aux_sym_concatenation_token1, - ACTIONS(7363), 1, + ACTIONS(7818), 1, sym__concat, - STATE(2739), 1, + STATE(2777), 1, aux_sym_concatenation_repeat1, - ACTIONS(7638), 2, + ACTIONS(7881), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(7640), 20, + ACTIONS(7879), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164919,6 +173792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -164932,53 +173806,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [128239] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2189), 1, - anon_sym_RPAREN, - ACTIONS(3514), 1, - anon_sym_LT_LT_LT, - ACTIONS(7738), 1, - anon_sym_LF, - ACTIONS(7742), 1, - sym_file_descriptor, - ACTIONS(3508), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3510), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3512), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3309), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2668), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7740), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [128288] = 3, + [136534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 4, + ACTIONS(1328), 5, sym_file_descriptor, sym__concat, sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1328), 21, + ACTIONS(1326), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165000,22 +173837,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [128321] = 5, + [136568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3405), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3519), 3, + ACTIONS(1296), 4, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, + sym_variable_name, anon_sym_LF, - STATE(2647), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3228), 16, + ACTIONS(1294), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165023,7 +173853,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165032,15 +173867,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [128358] = 3, + aux_sym_concatenation_token1, + [136602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 4, + ACTIONS(1328), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1302), 21, + ACTIONS(1326), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165048,9 +173884,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -165061,21 +173899,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [128391] = 6, + [136636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7744), 1, - sym_variable_name, - STATE(4164), 1, - sym_subscript, - ACTIONS(7157), 2, + ACTIONS(1316), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - STATE(2707), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7159), 19, + ACTIONS(1314), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165095,14 +173928,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [128430] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [136670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, + ACTIONS(1304), 4, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_LF, - ACTIONS(1312), 22, + ACTIONS(1302), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165125,14 +173961,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [128463] = 3, + [136704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 3, + ACTIONS(1348), 5, sym_file_descriptor, sym__concat, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1338), 22, + ACTIONS(1346), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165140,11 +173978,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -165155,19 +173991,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [128496] = 6, + anon_sym_BQUOTE, + [136738] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, + ACTIONS(7816), 1, aux_sym_concatenation_token1, - ACTIONS(7363), 1, + ACTIONS(7818), 1, sym__concat, - STATE(2740), 1, + STATE(2835), 1, aux_sym_concatenation_repeat1, - ACTIONS(7642), 2, + ACTIONS(1244), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(7644), 20, + ACTIONS(1242), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165188,19 +174025,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [128535] = 4, + sym__special_character, + [136778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3299), 3, + ACTIONS(1312), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - STATE(2647), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3297), 18, + ACTIONS(1310), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165208,6 +174043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -165219,49 +174055,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [128570] = 8, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [136812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, - anon_sym_LT_LT_LT, - ACTIONS(7125), 1, - anon_sym_LF, - ACTIONS(7742), 1, + ACTIONS(1344), 5, sym_file_descriptor, - ACTIONS(3510), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2706), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7127), 8, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1342), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP, - ACTIONS(7740), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [128613] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [136846] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 3, - sym_file_descriptor, + ACTIONS(7848), 1, + aux_sym_concatenation_token1, + ACTIONS(7850), 1, sym__concat, + STATE(2831), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 3, + sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(1302), 22, + ACTIONS(1242), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165269,11 +174109,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -165283,58 +174121,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [128646] = 11, + sym__special_character, + [136886] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2191), 1, - ts_builtin_sym_end, - ACTIONS(3407), 1, - anon_sym_LT_LT_LT, - ACTIONS(7715), 1, + ACTIONS(7816), 1, + aux_sym_concatenation_token1, + ACTIONS(7883), 1, + sym__concat, + STATE(2762), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 2, sym_file_descriptor, - ACTIONS(7746), 1, anon_sym_LF, - ACTIONS(3401), 2, + ACTIONS(1246), 21, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3403), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3405), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3669), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2647), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7713), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [128695] = 6, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [136926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - aux_sym_concatenation_token1, - ACTIONS(7363), 1, - sym__concat, - STATE(2740), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7614), 2, + ACTIONS(1320), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_LF, - ACTIONS(7616), 20, + ACTIONS(1318), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165342,6 +174172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -165355,19 +174186,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [128734] = 6, + aux_sym_concatenation_token1, + [136960] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7748), 1, + ACTIONS(7816), 1, aux_sym_concatenation_token1, - ACTIONS(7750), 1, + ACTIONS(7818), 1, sym__concat, - STATE(2810), 1, + STATE(2777), 1, aux_sym_concatenation_repeat1, - ACTIONS(1272), 2, + ACTIONS(7887), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(1270), 20, + ACTIONS(7885), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165375,8 +174207,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -165386,47 +174221,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - anon_sym_BQUOTE, - [128773] = 3, + [137000] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(3323), 1, + anon_sym_LT_LT_LT, + ACTIONS(7814), 1, anon_sym_LF, - ACTIONS(1342), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(7846), 1, + sym_file_descriptor, + ACTIONS(3242), 2, anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2783), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7842), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(7812), 9, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP, - aux_sym_concatenation_token1, - [128806] = 3, + [137044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, + ACTIONS(1286), 5, sym_file_descriptor, sym__concat, sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1288), 21, + ACTIONS(1284), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165448,14 +174288,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [128839] = 3, + [137078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 3, + ACTIONS(1270), 5, sym_file_descriptor, sym__concat, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1346), 22, + ACTIONS(1268), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165463,11 +174305,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -165478,46 +174318,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [128872] = 5, + anon_sym_BQUOTE, + [137112] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7752), 1, - sym__special_character, - STATE(2718), 1, - aux_sym__literal_repeat1, - ACTIONS(7618), 2, - sym_file_descriptor, + ACTIONS(7802), 1, anon_sym_LF, - ACTIONS(7620), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(7892), 1, + anon_sym_LT_LT_LT, + ACTIONS(7895), 1, + sym_file_descriptor, + ACTIONS(7796), 2, anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2783), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7889), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(7794), 9, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP, - [128909] = 3, + [137156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 3, + ACTIONS(1316), 4, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_LF, - ACTIONS(1324), 22, + ACTIONS(1314), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165540,56 +174386,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [128942] = 15, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7689), 1, - anon_sym_LPAREN, - ACTIONS(7691), 1, - aux_sym__c_word_token1, - ACTIONS(7693), 1, - anon_sym_DOLLAR, - ACTIONS(7695), 1, - anon_sym_DQUOTE, - ACTIONS(7697), 1, - aux_sym_number_token1, - ACTIONS(7699), 1, - aux_sym_number_token2, - ACTIONS(7701), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7703), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7705), 1, - anon_sym_BQUOTE, - ACTIONS(7707), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7754), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7687), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4037), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2219), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [128999] = 3, + [137190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(1270), 5, sym_file_descriptor, sym__concat, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1284), 22, + ACTIONS(1268), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165597,11 +174403,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -165612,19 +174416,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [129032] = 6, + anon_sym_BQUOTE, + [137224] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7756), 1, + ACTIONS(7499), 1, aux_sym_concatenation_token1, - ACTIONS(7759), 1, + ACTIONS(7501), 1, sym__concat, - STATE(2680), 1, + STATE(2792), 1, aux_sym_concatenation_repeat1, - ACTIONS(1279), 2, + ACTIONS(3839), 3, sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(1274), 20, + ACTIONS(3837), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165632,9 +174438,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -165644,15 +174451,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [129071] = 3, + [137264] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, - sym_file_descriptor, + ACTIONS(7499), 1, + aux_sym_concatenation_token1, + ACTIONS(7501), 1, sym__concat, + STATE(2790), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3843), 3, + sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(1284), 22, + ACTIONS(3841), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165660,7 +174472,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -165674,54 +174485,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [129104] = 11, + [137304] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3395), 1, - ts_builtin_sym_end, - ACTIONS(3407), 1, - anon_sym_LT_LT_LT, - ACTIONS(7715), 1, + ACTIONS(7898), 1, + sym__special_character, + STATE(2738), 1, + aux_sym__literal_repeat1, + ACTIONS(3843), 4, sym_file_descriptor, - ACTIONS(7762), 1, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3401), 2, + ACTIONS(3841), 20, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3403), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3405), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3399), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2647), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7713), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [129153] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [137342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, + ACTIONS(1340), 5, sym_file_descriptor, sym__concat, sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1334), 21, + ACTIONS(1338), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165743,21 +174549,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [129186] = 5, + [137376] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 2, + ACTIONS(7499), 1, + aux_sym_concatenation_token1, + ACTIONS(7900), 1, + sym__concat, + STATE(2723), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 3, sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(3797), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2709), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3228), 17, + ACTIONS(1246), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165765,7 +174570,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165774,22 +174583,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [129223] = 5, + [137416] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3512), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3519), 2, + ACTIONS(7816), 1, + aux_sym_concatenation_token1, + ACTIONS(7818), 1, + sym__concat, + STATE(2744), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7904), 2, sym_file_descriptor, anon_sym_LF, - STATE(2668), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3228), 17, + ACTIONS(7902), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165797,8 +174603,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165807,20 +174617,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [129260] = 6, + [137456] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7764), 1, - sym_variable_name, - STATE(4154), 1, - sym_subscript, - ACTIONS(7385), 2, + ACTIONS(7499), 1, + aux_sym_concatenation_token1, + ACTIONS(7906), 1, + sym__concat, + STATE(2723), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 3, sym_file_descriptor, + sym_variable_name, anon_sym_LF, - STATE(2686), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7387), 19, + ACTIONS(1252), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165830,6 +174640,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -165839,16 +174651,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [129299] = 3, + [137496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1263), 5, sym_file_descriptor, sym__concat, sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1308), 21, + ACTIONS(1258), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165870,18 +174682,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [129332] = 4, + [137530] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3299), 2, + ACTIONS(7848), 1, + aux_sym_concatenation_token1, + ACTIONS(7850), 1, + sym__concat, + STATE(2820), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3839), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - STATE(2668), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3297), 19, + ACTIONS(3837), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165889,7 +174704,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -165901,15 +174715,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [129367] = 3, + [137569] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, - sym_file_descriptor, + ACTIONS(7908), 1, + aux_sym_concatenation_token1, + ACTIONS(7910), 1, sym__concat, - sym_variable_name, + STATE(2930), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(1312), 21, + ACTIONS(1242), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165917,7 +174735,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -165929,17 +174746,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_BQUOTE, - [129400] = 3, + [137608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, + ACTIONS(3306), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_LF, - ACTIONS(1338), 21, + STATE(2854), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3304), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165959,35 +174779,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [129433] = 8, + [137643] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7773), 1, + ACTIONS(7802), 1, + anon_sym_LF, + ACTIONS(7918), 1, anon_sym_LT_LT_LT, - ACTIONS(7776), 1, + ACTIONS(7921), 1, sym_file_descriptor, - ACTIONS(7548), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(7767), 2, + ACTIONS(7912), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - STATE(2691), 4, + STATE(2797), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(7550), 7, + ACTIONS(7794), 8, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP, - ACTIONS(7770), 8, + ACTIONS(7915), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -165996,17 +174814,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [129476] = 6, + [137686] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7779), 1, + ACTIONS(2857), 1, + anon_sym_RPAREN, + ACTIONS(3434), 1, + anon_sym_LT_LT_LT, + ACTIONS(7844), 1, + anon_sym_LF, + ACTIONS(7926), 1, + sym_file_descriptor, + ACTIONS(3428), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3432), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3339), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2854), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7924), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [137735] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7930), 1, anon_sym_LF, - ACTIONS(7786), 1, + ACTIONS(7932), 1, sym_file_descriptor, - STATE(2692), 2, + STATE(2886), 2, sym_file_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(7783), 8, + ACTIONS(7775), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -166015,7 +174871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7781), 13, + ACTIONS(7928), 13, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166029,19 +174885,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [129515] = 6, + [137774] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3552), 1, + anon_sym_LT_LT_LT, + ACTIONS(7936), 1, + sym_file_descriptor, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(7814), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(2809), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7812), 7, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP, + ACTIONS(7934), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [137817] = 15, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7938), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7942), 1, + anon_sym_LPAREN, + ACTIONS(7944), 1, + aux_sym__c_word_token1, + ACTIONS(7946), 1, + anon_sym_DOLLAR, + ACTIONS(7948), 1, + anon_sym_DQUOTE, + ACTIONS(7950), 1, + aux_sym_number_token1, + ACTIONS(7952), 1, + aux_sym_number_token2, + ACTIONS(7954), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7956), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7958), 1, + anon_sym_BQUOTE, + ACTIONS(7960), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7940), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4160), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2371), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [137874] = 15, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7942), 1, + anon_sym_LPAREN, + ACTIONS(7944), 1, + aux_sym__c_word_token1, + ACTIONS(7946), 1, + anon_sym_DOLLAR, + ACTIONS(7948), 1, + anon_sym_DQUOTE, + ACTIONS(7950), 1, + aux_sym_number_token1, + ACTIONS(7952), 1, + aux_sym_number_token2, + ACTIONS(7954), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7956), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7958), 1, + anon_sym_BQUOTE, + ACTIONS(7960), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7962), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7940), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4251), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2371), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [137931] = 15, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7942), 1, + anon_sym_LPAREN, + ACTIONS(7944), 1, + aux_sym__c_word_token1, + ACTIONS(7946), 1, + anon_sym_DOLLAR, + ACTIONS(7948), 1, + anon_sym_DQUOTE, + ACTIONS(7950), 1, + aux_sym_number_token1, + ACTIONS(7952), 1, + aux_sym_number_token2, + ACTIONS(7954), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7956), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7958), 1, + anon_sym_BQUOTE, + ACTIONS(7960), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7964), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7940), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4214), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2371), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [137988] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7748), 1, + ACTIONS(7848), 1, aux_sym_concatenation_token1, - ACTIONS(7750), 1, + ACTIONS(7850), 1, sym__concat, - STATE(2788), 1, + STATE(2831), 1, aux_sym_concatenation_repeat1, - ACTIONS(1272), 2, + ACTIONS(3843), 3, sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(1270), 20, + ACTIONS(3841), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166061,20 +175079,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - [129554] = 6, + [138027] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, + ACTIONS(7848), 1, aux_sym_concatenation_token1, - ACTIONS(7363), 1, + ACTIONS(7850), 1, sym__concat, - STATE(2739), 1, + STATE(2816), 1, aux_sym_concatenation_repeat1, - ACTIONS(7618), 2, + ACTIONS(3843), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7620), 20, + ACTIONS(3841), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166084,8 +175103,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -166095,21 +175112,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [129593] = 6, + [138066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7662), 1, - aux_sym_concatenation_token1, - ACTIONS(7789), 1, - sym__concat, - STATE(2653), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 4, + ACTIONS(1320), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1258), 18, + ACTIONS(1318), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166117,6 +175128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -166128,21 +175140,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [129632] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [138099] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7662), 1, - aux_sym_concatenation_token1, - ACTIONS(7664), 1, - sym__concat, - STATE(2701), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3789), 4, + ACTIONS(3310), 1, + anon_sym_BQUOTE, + ACTIONS(3833), 1, + anon_sym_LT_LT_LT, + ACTIONS(7968), 1, + anon_sym_LF, + ACTIONS(7970), 1, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3740), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3831), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3829), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2902), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7966), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [138148] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1328), 3, + sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(3787), 18, + ACTIONS(1326), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166150,8 +175195,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -166161,56 +175209,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [129671] = 8, + aux_sym_concatenation_token1, + [138181] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7548), 1, - anon_sym_LF, - ACTIONS(7797), 1, + ACTIONS(7975), 1, anon_sym_LT_LT_LT, - ACTIONS(7800), 1, + ACTIONS(7978), 1, sym_file_descriptor, - ACTIONS(7791), 2, + ACTIONS(7802), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7912), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - STATE(2697), 4, + STATE(2809), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(7550), 8, + ACTIONS(7794), 7, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP, + ACTIONS(7972), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [138224] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1328), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1326), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [138257] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3987), 1, + sym__brace_start, + ACTIONS(7981), 1, + aux_sym_concatenation_token1, + ACTIONS(7983), 1, + sym__concat, + STATE(2891), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3985), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [138296] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3991), 1, + sym__brace_start, + ACTIONS(7981), 1, + aux_sym_concatenation_token1, + ACTIONS(7983), 1, + sym__concat, + STATE(2860), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3989), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(7794), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [129714] = 6, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [138335] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7803), 1, - sym_variable_name, - STATE(4171), 1, - sym_subscript, - STATE(2732), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7157), 3, + ACTIONS(7985), 1, + sym__special_character, + STATE(2895), 1, + aux_sym__literal_repeat1, + ACTIONS(7881), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7159), 18, + ACTIONS(7879), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166218,6 +175360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -166229,18 +175372,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [129753] = 4, + anon_sym_BQUOTE, + [138372] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3299), 2, + ACTIONS(3306), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - STATE(2709), 4, + STATE(2800), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3297), 19, + ACTIONS(3304), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166259,21 +175404,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [129788] = 6, + [138407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7677), 1, - aux_sym_concatenation_token1, - ACTIONS(7805), 1, - sym__concat, - STATE(2616), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 3, + ACTIONS(1300), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1264), 19, + ACTIONS(1298), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166293,21 +175432,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [129827] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [138440] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7662), 1, + ACTIONS(7848), 1, aux_sym_concatenation_token1, - ACTIONS(7807), 1, + ACTIONS(7987), 1, sym__concat, - STATE(2653), 1, + STATE(2712), 1, aux_sym_concatenation_repeat1, - ACTIONS(1266), 4, + ACTIONS(1248), 4, sym_file_descriptor, sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1264), 18, + ACTIONS(1246), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166326,20 +175467,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [129866] = 6, + [138479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7809), 1, - aux_sym_concatenation_token1, - ACTIONS(7811), 1, - sym__concat, - STATE(2826), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1272), 3, + ACTIONS(1270), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1270), 19, + ACTIONS(1268), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166347,6 +175483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -166358,16 +175495,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - [129905] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [138512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, + ACTIONS(1244), 4, sym_file_descriptor, - sym__concat, sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1342), 21, + ACTIONS(1242), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166387,17 +175525,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_BQUOTE, - [129938] = 3, + [138545] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 4, - sym_file_descriptor, - sym__concat, + ACTIONS(7989), 1, sym_variable_name, + STATE(4295), 1, + sym_subscript, + STATE(2861), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7822), 3, + sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1346), 21, + ACTIONS(7820), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166405,7 +175549,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -166417,17 +175560,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [129971] = 3, + [138584] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, + ACTIONS(7848), 1, + aux_sym_concatenation_token1, + ACTIONS(7991), 1, sym__concat, + STATE(2712), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 4, + sym_file_descriptor, sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1298), 21, + ACTIONS(1252), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166435,7 +175582,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -166447,35 +175593,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [130004] = 8, + [138623] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7548), 1, - anon_sym_LF, - ACTIONS(7816), 1, + ACTIONS(2855), 1, + ts_builtin_sym_end, + ACTIONS(3552), 1, anon_sym_LT_LT_LT, - ACTIONS(7819), 1, + ACTIONS(7936), 1, sym_file_descriptor, - ACTIONS(7791), 2, + ACTIONS(7993), 1, + anon_sym_LF, + ACTIONS(3430), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - STATE(2706), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7550), 8, - anon_sym_SEMI, + ACTIONS(3479), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3550), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(3667), 3, + anon_sym_SEMI, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP, - ACTIONS(7813), 8, + STATE(2800), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7934), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -166484,20 +175631,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [130047] = 6, + [138672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7822), 1, - sym_variable_name, - STATE(4164), 1, - sym_subscript, - ACTIONS(7385), 2, + ACTIONS(1300), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - STATE(2707), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7387), 19, + ACTIONS(1298), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166505,9 +175646,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -166517,15 +175660,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [130086] = 3, + aux_sym_concatenation_token1, + [138705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1270), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1284), 21, + ACTIONS(1268), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166547,50 +175691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [130119] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3816), 1, - anon_sym_LT_LT_LT, - ACTIONS(7125), 1, - anon_sym_LF, - ACTIONS(7725), 1, - sym_file_descriptor, - ACTIONS(3510), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2697), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7127), 8, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP, - anon_sym_BQUOTE, - ACTIONS(7723), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [130162] = 3, + [138738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1312), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1284), 21, + ACTIONS(1310), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166612,18 +175721,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [130195] = 5, + [138771] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7825), 1, - sym__special_character, - STATE(2656), 1, - aux_sym__literal_repeat1, - ACTIONS(3789), 3, + ACTIONS(3479), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3477), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3787), 20, + STATE(2800), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3312), 16, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166631,10 +175744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166643,63 +175753,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [130232] = 15, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7689), 1, - anon_sym_LPAREN, - ACTIONS(7691), 1, - aux_sym__c_word_token1, - ACTIONS(7693), 1, - anon_sym_DOLLAR, - ACTIONS(7695), 1, - anon_sym_DQUOTE, - ACTIONS(7697), 1, - aux_sym_number_token1, - ACTIONS(7699), 1, - aux_sym_number_token2, - ACTIONS(7701), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7703), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7705), 1, - anon_sym_BQUOTE, - ACTIONS(7707), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7827), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7687), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4038), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2219), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [130289] = 6, + [138808] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7677), 1, + ACTIONS(7908), 1, aux_sym_concatenation_token1, - ACTIONS(7679), 1, + ACTIONS(7910), 1, sym__concat, - STATE(2700), 1, + STATE(2965), 1, aux_sym_concatenation_repeat1, - ACTIONS(3789), 3, + ACTIONS(1244), 2, sym_file_descriptor, - sym_variable_name, anon_sym_LF, - ACTIONS(3787), 19, + ACTIONS(1242), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166719,58 +175785,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [130328] = 11, + sym__special_character, + [138847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3217), 1, - anon_sym_RPAREN, - ACTIONS(3514), 1, - anon_sym_LT_LT_LT, - ACTIONS(7742), 1, + ACTIONS(1348), 3, sym_file_descriptor, - ACTIONS(7829), 1, + sym__concat, anon_sym_LF, - ACTIONS(3508), 2, + ACTIONS(1346), 22, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3510), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3512), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3322), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2668), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7740), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [130377] = 6, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + aux_sym_concatenation_token1, + [138880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7677), 1, - aux_sym_concatenation_token1, - ACTIONS(7679), 1, - sym__concat, - STATE(2643), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3785), 3, + ACTIONS(1344), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, anon_sym_LF, - ACTIONS(3783), 19, + ACTIONS(1342), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166778,8 +175831,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -166789,15 +175845,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + aux_sym_concatenation_token1, + [138913] = 15, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7942), 1, + anon_sym_LPAREN, + ACTIONS(7944), 1, + aux_sym__c_word_token1, + ACTIONS(7946), 1, + anon_sym_DOLLAR, + ACTIONS(7948), 1, + anon_sym_DQUOTE, + ACTIONS(7950), 1, + aux_sym_number_token1, + ACTIONS(7952), 1, + aux_sym_number_token2, + ACTIONS(7954), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7956), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7958), 1, + anon_sym_BQUOTE, + ACTIONS(7960), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7995), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7940), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4267), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2371), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [138970] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1244), 1, + sym__brace_start, + ACTIONS(7981), 1, + aux_sym_concatenation_token1, + ACTIONS(7983), 1, + sym__concat, + STATE(2860), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1242), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [130416] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [139009] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 3, - sym_file_descriptor, + ACTIONS(7848), 1, + aux_sym_concatenation_token1, + ACTIONS(7997), 1, sym__concat, + STATE(2712), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 3, + sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(1316), 22, + ACTIONS(1246), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166805,11 +175942,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -166819,21 +175954,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [130449] = 6, + [139048] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7677), 1, + ACTIONS(7848), 1, aux_sym_concatenation_token1, - ACTIONS(7679), 1, + ACTIONS(7999), 1, sym__concat, - STATE(2724), 1, + STATE(2712), 1, aux_sym_concatenation_repeat1, - ACTIONS(3785), 3, + ACTIONS(1254), 3, sym_file_descriptor, sym_variable_name, anon_sym_LF, - ACTIONS(3783), 19, + ACTIONS(1252), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166853,70 +175987,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [130488] = 5, + [139087] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7831), 1, - sym__special_character, - STATE(2718), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 2, - sym_file_descriptor, + ACTIONS(3310), 1, + anon_sym_RPAREN, + ACTIONS(3434), 1, + anon_sym_LT_LT_LT, + ACTIONS(7857), 1, anon_sym_LF, - ACTIONS(1358), 21, - anon_sym_SEMI, + ACTIONS(7926), 1, + sym_file_descriptor, + ACTIONS(3428), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(3430), 2, anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3432), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3317), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2854), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7924), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [130525] = 15, + [139136] = 15, ACTIONS(63), 1, sym_comment, - ACTIONS(7689), 1, + ACTIONS(7942), 1, anon_sym_LPAREN, - ACTIONS(7691), 1, + ACTIONS(7944), 1, aux_sym__c_word_token1, - ACTIONS(7693), 1, + ACTIONS(7946), 1, anon_sym_DOLLAR, - ACTIONS(7695), 1, + ACTIONS(7948), 1, anon_sym_DQUOTE, - ACTIONS(7697), 1, + ACTIONS(7950), 1, aux_sym_number_token1, - ACTIONS(7699), 1, + ACTIONS(7952), 1, aux_sym_number_token2, - ACTIONS(7701), 1, + ACTIONS(7954), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7703), 1, + ACTIONS(7956), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7705), 1, + ACTIONS(7958), 1, anon_sym_BQUOTE, - ACTIONS(7707), 1, + ACTIONS(7960), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7834), 1, + ACTIONS(8001), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(7687), 2, + ACTIONS(7940), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3997), 2, + STATE(4279), 2, sym__c_expression, sym__c_variable_assignment, - STATE(2219), 10, + STATE(2371), 10, sym__c_expression_not_assignment, sym__c_unary_expression, sym__c_binary_expression, @@ -166927,14 +176067,19 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [130582] = 3, + [139193] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 3, - sym_file_descriptor, + ACTIONS(7816), 1, + aux_sym_concatenation_token1, + ACTIONS(8003), 1, sym__concat, + STATE(2762), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(1328), 22, + ACTIONS(1246), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166942,7 +176087,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -166956,16 +176100,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [130615] = 3, + [139232] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 4, - sym_file_descriptor, + ACTIONS(7816), 1, + aux_sym_concatenation_token1, + ACTIONS(8005), 1, sym__concat, - sym_variable_name, + STATE(2762), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(1354), 21, + ACTIONS(1252), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166973,9 +176120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -166985,22 +176133,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [130648] = 6, + [139271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7677), 1, - aux_sym_concatenation_token1, - ACTIONS(7679), 1, - sym__concat, - STATE(2648), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3789), 3, + ACTIONS(1316), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3787), 19, + ACTIONS(1314), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167008,6 +176149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -167019,15 +176161,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [130687] = 3, + [139304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 3, + ACTIONS(1296), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1270), 22, + ACTIONS(1294), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167035,11 +176179,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -167049,21 +176191,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - [130720] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [139337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7677), 1, - aux_sym_concatenation_token1, - ACTIONS(7836), 1, - sym__concat, - STATE(2616), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 3, + ACTIONS(1344), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1258), 19, + ACTIONS(1342), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167083,14 +176221,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [130759] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [139370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 3, + ACTIONS(1270), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1350), 22, + ACTIONS(1268), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167113,17 +176253,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [130792] = 5, + [139403] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7752), 1, + ACTIONS(8007), 1, sym__special_character, - STATE(2718), 1, + STATE(2876), 1, aux_sym__literal_repeat1, - ACTIONS(7638), 2, + ACTIONS(7887), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(7640), 21, + ACTIONS(7885), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167145,21 +176285,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [130829] = 6, + [139440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7662), 1, - aux_sym_concatenation_token1, - ACTIONS(7664), 1, - sym__concat, - STATE(2695), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3785), 4, + ACTIONS(1270), 3, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, + sym__concat, anon_sym_LF, - ACTIONS(3783), 18, + ACTIONS(1268), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167167,8 +176300,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -167178,14 +176314,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [130868] = 3, + aux_sym_concatenation_token1, + [139473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 3, + ACTIONS(1348), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1354), 22, + ACTIONS(1346), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167193,11 +176331,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -167208,89 +176344,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [130901] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7838), 1, - anon_sym_LF, - ACTIONS(7842), 1, - sym_file_descriptor, - STATE(2692), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7129), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7840), 13, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [130940] = 15, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7689), 1, - anon_sym_LPAREN, - ACTIONS(7691), 1, - aux_sym__c_word_token1, - ACTIONS(7693), 1, - anon_sym_DOLLAR, - ACTIONS(7695), 1, - anon_sym_DQUOTE, - ACTIONS(7697), 1, - aux_sym_number_token1, - ACTIONS(7699), 1, - aux_sym_number_token2, - ACTIONS(7701), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7703), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7705), 1, anon_sym_BQUOTE, - ACTIONS(7707), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7844), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7687), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4027), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2219), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [130997] = 3, + [139506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 3, + ACTIONS(1340), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1288), 22, + ACTIONS(1338), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167313,21 +176375,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [131030] = 6, + [139539] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7846), 1, - sym_variable_name, - STATE(4171), 1, - sym_subscript, - STATE(2732), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7385), 3, + ACTIONS(3432), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3477), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7387), 18, + STATE(2854), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3312), 17, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167335,9 +176397,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -167346,15 +176407,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [131069] = 3, + [139576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 4, + ACTIONS(1282), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1350), 21, + ACTIONS(1280), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167376,15 +176437,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [131102] = 3, + [139609] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 4, + ACTIONS(7985), 1, + sym__special_character, + STATE(2895), 1, + aux_sym__literal_repeat1, + ACTIONS(7887), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1324), 21, + ACTIONS(7885), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167404,148 +176468,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [131135] = 15, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7689), 1, - anon_sym_LPAREN, - ACTIONS(7691), 1, - aux_sym__c_word_token1, - ACTIONS(7693), 1, - anon_sym_DOLLAR, - ACTIONS(7695), 1, - anon_sym_DQUOTE, - ACTIONS(7697), 1, - aux_sym_number_token1, - ACTIONS(7699), 1, - aux_sym_number_token2, - ACTIONS(7701), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7703), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7705), 1, - anon_sym_BQUOTE, - ACTIONS(7707), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7849), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7687), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4064), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2219), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [131192] = 15, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7689), 1, - anon_sym_LPAREN, - ACTIONS(7691), 1, - aux_sym__c_word_token1, - ACTIONS(7693), 1, - anon_sym_DOLLAR, - ACTIONS(7695), 1, - anon_sym_DQUOTE, - ACTIONS(7697), 1, - aux_sym_number_token1, - ACTIONS(7699), 1, - aux_sym_number_token2, - ACTIONS(7701), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7703), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7705), 1, - anon_sym_BQUOTE, - ACTIONS(7707), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7851), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7687), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4062), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2219), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [131249] = 15, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7689), 1, - anon_sym_LPAREN, - ACTIONS(7691), 1, - aux_sym__c_word_token1, - ACTIONS(7693), 1, - anon_sym_DOLLAR, - ACTIONS(7695), 1, - anon_sym_DQUOTE, - ACTIONS(7697), 1, - aux_sym_number_token1, - ACTIONS(7699), 1, - aux_sym_number_token2, - ACTIONS(7701), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7703), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7705), 1, anon_sym_BQUOTE, - ACTIONS(7707), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7853), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7687), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4067), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2219), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [131306] = 6, + [139646] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7677), 1, + ACTIONS(7908), 1, aux_sym_concatenation_token1, - ACTIONS(7679), 1, + ACTIONS(7910), 1, sym__concat, - STATE(2749), 1, + STATE(2915), 1, aux_sym_concatenation_repeat1, - ACTIONS(1272), 3, + ACTIONS(1244), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1270), 19, + ACTIONS(1242), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167565,52 +176502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, sym__special_character, - [131345] = 6, + [139685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - aux_sym_concatenation_token1, - ACTIONS(7855), 1, - sym__concat, - STATE(2632), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 2, + ACTIONS(1304), 4, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1264), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [131384] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7361), 1, - aux_sym_concatenation_token1, - ACTIONS(7857), 1, sym__concat, - STATE(2632), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 2, - sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1258), 20, + ACTIONS(1302), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167618,10 +176518,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -167631,14 +176530,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [131423] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [139718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 3, + ACTIONS(1312), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1274), 22, + ACTIONS(1310), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167661,48 +176562,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [131456] = 3, + [139751] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(3546), 1, + ts_builtin_sym_end, + ACTIONS(3552), 1, + anon_sym_LT_LT_LT, + ACTIONS(7936), 1, sym_file_descriptor, - sym__concat, + ACTIONS(8009), 1, anon_sym_LF, - ACTIONS(1284), 21, - anon_sym_SEMI, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3479), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3550), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3548), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2800), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7934), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [131488] = 6, + [139800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7748), 1, - aux_sym_concatenation_token1, - ACTIONS(7750), 1, - sym__concat, - STATE(2788), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7638), 2, + ACTIONS(1278), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7640), 19, + ACTIONS(1276), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167722,16 +176628,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [131526] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [139833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 5, + ACTIONS(1274), 4, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1338), 19, + ACTIONS(1272), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167739,6 +176646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -167751,34 +176659,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [131558] = 10, + anon_sym_BQUOTE, + [139866] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3683), 1, + ACTIONS(3434), 1, anon_sym_LT_LT_LT, - ACTIONS(7859), 1, + ACTIONS(7814), 1, anon_sym_LF, - ACTIONS(7863), 1, + ACTIONS(7926), 1, sym_file_descriptor, - ACTIONS(3510), 2, + ACTIONS(3430), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(3679), 2, + STATE(2797), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7812), 8, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3681), 2, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3802), 3, - anon_sym_SEMI, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP, - STATE(2789), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7861), 8, + ACTIONS(7924), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -167787,48 +176695,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [131604] = 3, + [139909] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 5, + ACTIONS(2857), 1, + anon_sym_BQUOTE, + ACTIONS(3833), 1, + anon_sym_LT_LT_LT, + ACTIONS(7970), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, + ACTIONS(8011), 1, anon_sym_LF, - ACTIONS(1334), 19, - anon_sym_SEMI, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3740), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3831), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3835), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2902), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7966), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [131636] = 6, + [139958] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7748), 1, + ACTIONS(7848), 1, aux_sym_concatenation_token1, - ACTIONS(7750), 1, + ACTIONS(8013), 1, sym__concat, - STATE(2793), 1, + STATE(2712), 1, aux_sym_concatenation_repeat1, - ACTIONS(7614), 2, + ACTIONS(1254), 3, sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(7616), 19, + ACTIONS(1252), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167836,7 +176754,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -167848,20 +176765,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [131674] = 6, + anon_sym_BQUOTE, + [139997] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7677), 1, + ACTIONS(7848), 1, aux_sym_concatenation_token1, - ACTIONS(7865), 1, + ACTIONS(8015), 1, sym__concat, - STATE(2616), 1, + STATE(2712), 1, aux_sym_concatenation_repeat1, - ACTIONS(1260), 3, + ACTIONS(1248), 3, sym_file_descriptor, sym_variable_name, anon_sym_LF, - ACTIONS(1258), 18, + ACTIONS(1246), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167880,20 +176798,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [131712] = 6, + anon_sym_BQUOTE, + [140036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7677), 1, - aux_sym_concatenation_token1, - ACTIONS(7867), 1, - sym__concat, - STATE(2616), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 3, + ACTIONS(1320), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, anon_sym_LF, - ACTIONS(1264), 18, + ACTIONS(1318), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167901,8 +176814,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -167912,21 +176828,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [131750] = 6, + aux_sym_concatenation_token1, + [140069] = 15, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7942), 1, + anon_sym_LPAREN, + ACTIONS(7944), 1, + aux_sym__c_word_token1, + ACTIONS(7946), 1, + anon_sym_DOLLAR, + ACTIONS(7948), 1, + anon_sym_DQUOTE, + ACTIONS(7950), 1, + aux_sym_number_token1, + ACTIONS(7952), 1, + aux_sym_number_token2, + ACTIONS(7954), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7956), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7958), 1, + anon_sym_BQUOTE, + ACTIONS(7960), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8017), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7940), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4207), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2371), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [140126] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4051), 1, + ACTIONS(1248), 1, sym__brace_start, - ACTIONS(7869), 1, + ACTIONS(7981), 1, aux_sym_concatenation_token1, - ACTIONS(7871), 1, + ACTIONS(8019), 1, sym__concat, - STATE(2801), 1, + STATE(2866), 1, aux_sym_concatenation_repeat1, - ACTIONS(4049), 20, - anon_sym_LF, + ACTIONS(1246), 21, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_SEMI_SEMI, + anon_sym_LF, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -167944,14 +176904,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [131788] = 3, + [140165] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 3, + ACTIONS(8021), 1, + sym_variable_name, + STATE(4295), 1, + sym_subscript, + STATE(2861), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7789), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1298), 21, + ACTIONS(7787), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167959,7 +176926,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -167971,18 +176937,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [131820] = 3, + [140204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 5, + ACTIONS(1274), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1320), 19, + ACTIONS(1272), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167990,8 +176952,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168002,19 +176967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [131852] = 6, + [140237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7748), 1, - aux_sym_concatenation_token1, - ACTIONS(7750), 1, - sym__concat, - STATE(2866), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1272), 2, + ACTIONS(1336), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1270), 19, + ACTIONS(1334), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168022,6 +176983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -168033,15 +176995,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - [131890] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [140270] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 3, + ACTIONS(8007), 1, + sym__special_character, + STATE(2876), 1, + aux_sym__literal_repeat1, + ACTIONS(7881), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(1346), 21, + ACTIONS(7879), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168049,9 +177015,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168061,38 +177029,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [131922] = 14, + [140307] = 15, ACTIONS(63), 1, sym_comment, - ACTIONS(7875), 1, + ACTIONS(7942), 1, anon_sym_LPAREN, - ACTIONS(7877), 1, + ACTIONS(7944), 1, aux_sym__c_word_token1, - ACTIONS(7879), 1, + ACTIONS(7946), 1, anon_sym_DOLLAR, - ACTIONS(7881), 1, + ACTIONS(7948), 1, anon_sym_DQUOTE, - ACTIONS(7883), 1, + ACTIONS(7950), 1, aux_sym_number_token1, - ACTIONS(7885), 1, + ACTIONS(7952), 1, aux_sym_number_token2, - ACTIONS(7887), 1, + ACTIONS(7954), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7889), 1, + ACTIONS(7956), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7891), 1, + ACTIONS(7958), 1, anon_sym_BQUOTE, - ACTIONS(7893), 1, + ACTIONS(7960), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7873), 2, + ACTIONS(8024), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7940), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(4000), 2, + STATE(4247), 2, sym__c_expression, sym__c_variable_assignment, - STATE(2240), 10, + STATE(2371), 10, sym__c_expression_not_assignment, sym__c_unary_expression, sym__c_binary_expression, @@ -168103,20 +177071,48 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [131976] = 6, + [140364] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7677), 1, + ACTIONS(1263), 1, + sym__brace_start, + ACTIONS(8026), 1, aux_sym_concatenation_token1, - ACTIONS(7679), 1, + ACTIONS(8029), 1, sym__concat, - STATE(2749), 1, + STATE(2866), 1, aux_sym_concatenation_repeat1, - ACTIONS(3789), 3, + ACTIONS(1258), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [140403] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1332), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3787), 18, + ACTIONS(1330), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168124,6 +177120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -168135,52 +177132,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [132014] = 10, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [140436] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3683), 1, - anon_sym_LT_LT_LT, - ACTIONS(7863), 1, + ACTIONS(8032), 1, + sym_variable_name, + STATE(4391), 1, + sym_subscript, + ACTIONS(7789), 2, sym_file_descriptor, - ACTIONS(7895), 1, anon_sym_LF, - ACTIONS(3510), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3679), 2, + STATE(2868), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7787), 19, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3681), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3884), 3, - anon_sym_SEMI, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - STATE(2789), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7861), 8, + [140475] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7848), 1, + aux_sym_concatenation_token1, + ACTIONS(7850), 1, + sym__concat, + STATE(2857), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3843), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(3841), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [132060] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [140514] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 5, - sym_file_descriptor, + ACTIONS(7848), 1, + aux_sym_concatenation_token1, + ACTIONS(7850), 1, sym__concat, + STATE(2856), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3839), 3, + sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1342), 19, + ACTIONS(3837), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168199,37 +177232,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [132092] = 14, + anon_sym_BQUOTE, + [140553] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3477), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3740), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2902), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3312), 17, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_SEMI_SEMI, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [140590] = 15, ACTIONS(63), 1, sym_comment, - ACTIONS(7875), 1, + ACTIONS(7942), 1, anon_sym_LPAREN, - ACTIONS(7877), 1, + ACTIONS(7944), 1, aux_sym__c_word_token1, - ACTIONS(7879), 1, + ACTIONS(7946), 1, anon_sym_DOLLAR, - ACTIONS(7881), 1, + ACTIONS(7948), 1, anon_sym_DQUOTE, - ACTIONS(7883), 1, + ACTIONS(7950), 1, aux_sym_number_token1, - ACTIONS(7885), 1, + ACTIONS(7952), 1, aux_sym_number_token2, - ACTIONS(7887), 1, + ACTIONS(7954), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7889), 1, + ACTIONS(7956), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7891), 1, + ACTIONS(7958), 1, anon_sym_BQUOTE, - ACTIONS(7893), 1, + ACTIONS(7960), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7873), 2, + ACTIONS(8035), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7940), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(4025), 2, + STATE(4202), 2, sym__c_expression, sym__c_variable_assignment, - STATE(2240), 10, + STATE(2371), 10, sym__c_expression_not_assignment, sym__c_unary_expression, sym__c_binary_expression, @@ -168240,14 +177307,80 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [132146] = 3, + [140647] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7802), 1, + anon_sym_LF, + ACTIONS(8040), 1, + anon_sym_LT_LT_LT, + ACTIONS(8043), 1, + sym_file_descriptor, + ACTIONS(7912), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2873), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7794), 8, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP, + anon_sym_BQUOTE, + ACTIONS(8037), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [140690] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3306), 2, + sym_file_descriptor, + anon_sym_LF, + STATE(2902), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3304), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [140725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, + ACTIONS(1263), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1312), 21, + ACTIONS(1258), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168255,9 +177388,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168268,17 +177403,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [132178] = 3, + [140758] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(8046), 1, + sym__special_character, + STATE(2876), 1, + aux_sym__literal_repeat1, + ACTIONS(1357), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1312), 19, + ACTIONS(1352), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168286,8 +177421,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168297,17 +177435,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [132210] = 3, + [140795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 5, + ACTIONS(1336), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1346), 19, + ACTIONS(1334), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168315,8 +177450,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168327,96 +177465,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [132242] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7875), 1, - anon_sym_LPAREN, - ACTIONS(7877), 1, - aux_sym__c_word_token1, - ACTIONS(7879), 1, - anon_sym_DOLLAR, - ACTIONS(7881), 1, - anon_sym_DQUOTE, - ACTIONS(7883), 1, - aux_sym_number_token1, - ACTIONS(7885), 1, - aux_sym_number_token2, - ACTIONS(7887), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7889), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7891), 1, - anon_sym_BQUOTE, - ACTIONS(7893), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7873), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4103), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2240), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [132296] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7875), 1, - anon_sym_LPAREN, - ACTIONS(7877), 1, - aux_sym__c_word_token1, - ACTIONS(7879), 1, - anon_sym_DOLLAR, - ACTIONS(7881), 1, - anon_sym_DQUOTE, - ACTIONS(7883), 1, - aux_sym_number_token1, - ACTIONS(7885), 1, - aux_sym_number_token2, - ACTIONS(7887), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7889), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7891), 1, - anon_sym_BQUOTE, - ACTIONS(7893), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7873), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4107), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2240), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [132350] = 3, + [140828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 5, + ACTIONS(1263), 4, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1328), 19, + ACTIONS(1258), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168424,6 +177481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -168436,20 +177494,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [132382] = 6, + anon_sym_BQUOTE, + [140861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7677), 1, - aux_sym_concatenation_token1, - ACTIONS(7679), 1, - sym__concat, - STATE(2748), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3785), 3, + ACTIONS(1324), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3783), 18, + ACTIONS(1322), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168457,6 +177511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -168468,13 +177523,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [132420] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [140894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 2, + ACTIONS(1332), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(1270), 22, + ACTIONS(1330), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168496,15 +177554,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - [132452] = 3, + aux_sym_concatenation_token1, + [140927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 3, + ACTIONS(1244), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, anon_sym_LF, - ACTIONS(1342), 21, + ACTIONS(1242), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168512,9 +177570,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168524,18 +177584,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, + sym__special_character, + [140960] = 15, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7942), 1, + anon_sym_LPAREN, + ACTIONS(7944), 1, + aux_sym__c_word_token1, + ACTIONS(7946), 1, + anon_sym_DOLLAR, + ACTIONS(7948), 1, + anon_sym_DQUOTE, + ACTIONS(7950), 1, + aux_sym_number_token1, + ACTIONS(7952), 1, + aux_sym_number_token2, + ACTIONS(7954), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7956), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7958), 1, anon_sym_BQUOTE, - [132484] = 3, + ACTIONS(7960), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8049), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7940), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4225), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2371), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [141017] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, + ACTIONS(7848), 1, + aux_sym_concatenation_token1, + ACTIONS(7850), 1, sym__concat, + STATE(2832), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3839), 3, + sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1308), 19, + ACTIONS(3837), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168543,6 +177648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -168554,50 +177660,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [132516] = 6, + [141056] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7779), 1, - anon_sym_LF, - ACTIONS(7900), 1, + ACTIONS(7816), 1, + aux_sym_concatenation_token1, + ACTIONS(7818), 1, + sym__concat, + STATE(2835), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7887), 2, sym_file_descriptor, - STATE(2770), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7897), 8, + anon_sym_LF, + ACTIONS(7885), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7781), 12, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [141095] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8051), 1, + sym_variable_name, + STATE(4376), 1, + sym_subscript, + ACTIONS(7789), 2, + sym_file_descriptor, + anon_sym_LF, + STATE(2885), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7787), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [132554] = 6, + anon_sym_BQUOTE, + [141134] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7838), 1, + ACTIONS(8059), 1, anon_sym_LF, - ACTIONS(7903), 1, + ACTIONS(8061), 1, sym_file_descriptor, - STATE(2770), 2, + STATE(2886), 2, sym_file_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(7622), 8, + ACTIONS(8056), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -168606,11 +177745,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7840), 12, + ACTIONS(8054), 13, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -168619,16 +177759,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [132592] = 3, + [141173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(1316), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1288), 19, + ACTIONS(1314), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168636,8 +177774,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168648,16 +177789,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [132624] = 3, + [141206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1340), 4, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1284), 19, + ACTIONS(1338), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168665,6 +177805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -168677,16 +177818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [132656] = 3, + anon_sym_BQUOTE, + [141239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1286), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1284), 19, + ACTIONS(1284), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168694,8 +177834,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168706,20 +177849,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [132688] = 6, + [141272] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7905), 1, - sym_variable_name, - STATE(4160), 1, - sym_subscript, - ACTIONS(7157), 2, + ACTIONS(7816), 1, + aux_sym_concatenation_token1, + ACTIONS(7818), 1, + sym__concat, + STATE(2836), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7904), 2, sym_file_descriptor, anon_sym_LF, - STATE(2809), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7159), 18, + ACTIONS(7902), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168729,6 +177871,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168738,14 +177882,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [132726] = 3, + [141311] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, - sym_file_descriptor, + ACTIONS(1254), 1, + sym__brace_start, + ACTIONS(7981), 1, + aux_sym_concatenation_token1, + ACTIONS(8064), 1, sym__concat, + STATE(2866), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1252), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [141350] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8066), 1, + sym_variable_name, + STATE(4391), 1, + sym_subscript, + ACTIONS(7822), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(1308), 21, + STATE(2868), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7820), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168765,50 +177948,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [132758] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7548), 1, - anon_sym_LF, - ACTIONS(7910), 1, - anon_sym_LT_LT_LT, - ACTIONS(7913), 1, - sym_file_descriptor, - ACTIONS(7791), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2777), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7550), 7, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP, - ACTIONS(7907), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [132800] = 3, + [141389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 3, + ACTIONS(1282), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1288), 21, + ACTIONS(1280), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168816,9 +177963,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168829,60 +177978,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [132832] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6274), 1, - anon_sym_DOLLAR, - ACTIONS(6280), 1, - aux_sym_number_token2, - ACTIONS(7918), 1, - anon_sym_LPAREN, - ACTIONS(7920), 1, - aux_sym__c_word_token1, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7930), 1, - anon_sym_BQUOTE, - ACTIONS(7932), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7916), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3978), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2149), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [132886] = 6, + [141422] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7748), 1, + ACTIONS(7816), 1, aux_sym_concatenation_token1, - ACTIONS(7750), 1, + ACTIONS(7818), 1, sym__concat, - STATE(2810), 1, + STATE(2836), 1, aux_sym_concatenation_repeat1, - ACTIONS(7618), 2, + ACTIONS(7877), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(7620), 19, + ACTIONS(7875), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168892,6 +178000,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168901,52 +178011,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [132924] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7842), 1, - sym_file_descriptor, - ACTIONS(7934), 1, - anon_sym_LF, - STATE(2896), 1, - sym_file_redirect, - ACTIONS(7129), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7936), 13, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [132962] = 6, + [141461] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7748), 1, - aux_sym_concatenation_token1, - ACTIONS(7750), 1, - sym__concat, - STATE(2816), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7614), 2, + ACTIONS(8068), 1, + sym__special_character, + STATE(2895), 1, + aux_sym__literal_repeat1, + ACTIONS(1357), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7616), 19, + ACTIONS(1352), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168954,6 +178030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -168966,16 +178043,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [133000] = 3, + [141498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 5, + ACTIONS(1296), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1274), 19, + ACTIONS(1294), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168983,8 +178058,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168995,16 +178073,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [133032] = 3, + [141531] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 5, - sym_file_descriptor, + ACTIONS(7848), 1, + aux_sym_concatenation_token1, + ACTIONS(7850), 1, sym__concat, + STATE(2916), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 3, + sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1316), 19, + ACTIONS(1242), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169023,19 +178105,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [133064] = 4, + sym__special_character, + [141570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3299), 2, + ACTIONS(1324), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - STATE(2789), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3297), 18, + ACTIONS(1322), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169043,8 +178121,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -169054,57 +178135,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [133098] = 10, + aux_sym_concatenation_token1, + [141603] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3683), 1, - anon_sym_LT_LT_LT, - ACTIONS(7863), 1, + ACTIONS(7816), 1, + aux_sym_concatenation_token1, + ACTIONS(7818), 1, + sym__concat, + STATE(2835), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7881), 2, sym_file_descriptor, - ACTIONS(7938), 1, anon_sym_LF, - ACTIONS(3510), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3679), 2, + ACTIONS(7879), 20, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3681), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3830), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2789), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7861), 8, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [133144] = 5, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [141642] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 2, + ACTIONS(8071), 1, + sym_variable_name, + STATE(4376), 1, + sym_subscript, + ACTIONS(7822), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(3681), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2789), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3228), 16, + STATE(2885), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7820), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169112,7 +178190,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -169121,19 +178201,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [133180] = 6, + anon_sym_BQUOTE, + [141681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7748), 1, - aux_sym_concatenation_token1, - ACTIONS(7940), 1, - sym__concat, - STATE(2680), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 2, + ACTIONS(1286), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1264), 19, + ACTIONS(1284), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169153,24 +178230,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [133218] = 8, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [141714] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3683), 1, + ACTIONS(3833), 1, anon_sym_LT_LT_LT, - ACTIONS(7125), 1, + ACTIONS(7814), 1, anon_sym_LF, - ACTIONS(7863), 1, + ACTIONS(7970), 1, sym_file_descriptor, - ACTIONS(3510), 2, + ACTIONS(3430), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - STATE(2777), 4, + STATE(2873), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(7127), 7, + ACTIONS(7812), 8, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169178,7 +178257,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP, - ACTIONS(7861), 8, + anon_sym_BQUOTE, + ACTIONS(7966), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -169187,17 +178267,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [133260] = 5, + [141757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7942), 1, - sym__special_character, - STATE(2841), 1, - aux_sym__literal_repeat1, - ACTIONS(7638), 2, + ACTIONS(1278), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(7640), 20, + ACTIONS(1276), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169205,9 +178282,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -169217,15 +178296,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [133296] = 3, + aux_sym_concatenation_token1, + [141790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 3, + ACTIONS(1304), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1338), 21, + ACTIONS(1302), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169233,9 +178312,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -169246,60 +178327,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [133328] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6274), 1, - anon_sym_DOLLAR, - ACTIONS(6280), 1, - aux_sym_number_token2, - ACTIONS(7918), 1, - anon_sym_LPAREN, - ACTIONS(7920), 1, - aux_sym__c_word_token1, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7930), 1, - anon_sym_BQUOTE, - ACTIONS(7932), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7916), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3949), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2149), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [133382] = 6, + [141823] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7748), 1, - aux_sym_concatenation_token1, - ACTIONS(7944), 1, - sym__concat, - STATE(2680), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 2, + ACTIONS(3306), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(1258), 19, + STATE(2953), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3304), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169307,7 +178346,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -169319,16 +178357,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [133420] = 3, + [141857] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 5, - sym_file_descriptor, + ACTIONS(7908), 1, + aux_sym_concatenation_token1, + ACTIONS(8073), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(2726), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(1302), 19, + ACTIONS(1252), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169347,15 +178388,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [133452] = 3, + anon_sym_BQUOTE, + [141895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(1244), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1284), 21, + ACTIONS(1242), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169375,25 +178416,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_BQUOTE, - [133484] = 6, + [141927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3892), 1, - sym__brace_start, - ACTIONS(7869), 1, - aux_sym_concatenation_token1, - ACTIONS(7871), 1, + ACTIONS(1320), 2, sym__concat, - STATE(2813), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3888), 20, - anon_sym_LF, + sym__brace_start, + ACTIONS(1318), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_SEMI_SEMI, + anon_sym_LF, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -169409,95 +178447,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [133522] = 3, + [141959] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1316), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, + ACTIONS(3762), 1, anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [133554] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7748), 1, - aux_sym_concatenation_token1, - ACTIONS(7750), 1, - sym__concat, - STATE(2793), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7642), 2, - sym_file_descriptor, + ACTIONS(8077), 1, anon_sym_LF, - ACTIONS(7644), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [133592] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3683), 1, - anon_sym_LT_LT_LT, - ACTIONS(7863), 1, + ACTIONS(8079), 1, sym_file_descriptor, - ACTIONS(7946), 1, - anon_sym_LF, - ACTIONS(3510), 2, + ACTIONS(3430), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(3679), 2, + ACTIONS(3758), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3681), 2, + ACTIONS(3760), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3781), 3, + ACTIONS(3916), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(2789), 4, + STATE(2953), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(7861), 8, + ACTIONS(8075), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -169506,59 +178483,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [133638] = 10, + [142005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3683), 1, - anon_sym_LT_LT_LT, - ACTIONS(7863), 1, + ACTIONS(4376), 4, sym_file_descriptor, - ACTIONS(7948), 1, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3510), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3679), 2, + ACTIONS(4374), 20, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3681), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3818), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2789), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7861), 8, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [133684] = 6, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [142037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 1, - sym__brace_start, - ACTIONS(7869), 1, - aux_sym_concatenation_token1, - ACTIONS(7950), 1, + ACTIONS(1328), 2, sym__concat, - STATE(2834), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1264), 20, - anon_sym_LF, + sym__brace_start, + ACTIONS(1326), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_SEMI_SEMI, + anon_sym_LF, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -169574,161 +178541,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [133722] = 3, + [142069] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4293), 3, + ACTIONS(3762), 1, + anon_sym_LT_LT_LT, + ACTIONS(8079), 1, sym_file_descriptor, - sym_variable_name, + ACTIONS(8081), 1, anon_sym_LF, - ACTIONS(4291), 21, - anon_sym_SEMI, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3758), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, + ACTIONS(3760), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [133754] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7689), 1, - anon_sym_LPAREN, - ACTIONS(7691), 1, - aux_sym__c_word_token1, - ACTIONS(7693), 1, - anon_sym_DOLLAR, - ACTIONS(7695), 1, - anon_sym_DQUOTE, - ACTIONS(7697), 1, - aux_sym_number_token1, - ACTIONS(7699), 1, - aux_sym_number_token2, - ACTIONS(7701), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7703), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7705), 1, - anon_sym_BQUOTE, - ACTIONS(7707), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7687), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4151), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2219), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [133808] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7689), 1, - anon_sym_LPAREN, - ACTIONS(7691), 1, - aux_sym__c_word_token1, - ACTIONS(7693), 1, - anon_sym_DOLLAR, - ACTIONS(7695), 1, - anon_sym_DQUOTE, - ACTIONS(7697), 1, - aux_sym_number_token1, - ACTIONS(7699), 1, - aux_sym_number_token2, - ACTIONS(7701), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7703), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7705), 1, - anon_sym_BQUOTE, - ACTIONS(7707), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7687), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4166), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2219), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [133862] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7809), 1, - aux_sym_concatenation_token1, - ACTIONS(7811), 1, - sym__concat, - STATE(2844), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7614), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(7616), 18, + ACTIONS(3920), 3, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2953), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8075), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [133900] = 6, + [142115] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7809), 1, + ACTIONS(7848), 1, aux_sym_concatenation_token1, - ACTIONS(7811), 1, + ACTIONS(8083), 1, sym__concat, - STATE(2826), 1, + STATE(2712), 1, aux_sym_concatenation_repeat1, - ACTIONS(7618), 3, + ACTIONS(1254), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, anon_sym_LF, - ACTIONS(7620), 18, + ACTIONS(1252), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169747,34 +178609,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [133938] = 10, + [142153] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3683), 1, + ACTIONS(3762), 1, anon_sym_LT_LT_LT, - ACTIONS(7863), 1, + ACTIONS(8079), 1, sym_file_descriptor, - ACTIONS(7952), 1, + ACTIONS(8085), 1, anon_sym_LF, - ACTIONS(3510), 2, + ACTIONS(3430), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(3679), 2, + ACTIONS(3758), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3681), 2, + ACTIONS(3760), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3747), 3, + ACTIONS(3918), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(2789), 4, + STATE(2953), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(7861), 8, + ACTIONS(8075), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -169783,14 +178645,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [133984] = 3, + [142199] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 3, - sym_file_descriptor, + ACTIONS(7908), 1, + aux_sym_concatenation_token1, + ACTIONS(8087), 1, sym__concat, + STATE(2726), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 3, + sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1324), 21, + ACTIONS(1246), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169798,7 +178666,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -169810,22 +178677,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [134016] = 6, + [142237] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7954), 1, - sym_variable_name, - STATE(4160), 1, - sym_subscript, - ACTIONS(7385), 2, + ACTIONS(7848), 1, + aux_sym_concatenation_token1, + ACTIONS(8089), 1, + sym__concat, + STATE(2712), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 3, sym_file_descriptor, + sym_variable_name, anon_sym_LF, - STATE(2809), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7387), 18, + ACTIONS(1246), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169844,19 +178709,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [134054] = 6, + [142275] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7748), 1, + ACTIONS(7908), 1, aux_sym_concatenation_token1, - ACTIONS(7957), 1, + ACTIONS(7910), 1, sym__concat, - STATE(2680), 1, + STATE(3016), 1, aux_sym_concatenation_repeat1, - ACTIONS(1266), 2, + ACTIONS(1244), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(1264), 19, + ACTIONS(1242), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169875,55 +178740,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [134092] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7875), 1, - anon_sym_LPAREN, - ACTIONS(7877), 1, - aux_sym__c_word_token1, - ACTIONS(7879), 1, - anon_sym_DOLLAR, - ACTIONS(7881), 1, - anon_sym_DQUOTE, - ACTIONS(7883), 1, - aux_sym_number_token1, - ACTIONS(7885), 1, - aux_sym_number_token2, - ACTIONS(7887), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7889), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7891), 1, - anon_sym_BQUOTE, - ACTIONS(7893), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7873), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3987), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2240), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [134146] = 3, + sym__special_character, + [142313] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 3, - sym_file_descriptor, + ACTIONS(7908), 1, + aux_sym_concatenation_token1, + ACTIONS(8091), 1, sym__concat, + STATE(2726), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 3, + sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1334), 21, + ACTIONS(1252), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169931,7 +178762,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -169943,84 +178773,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [134178] = 6, + [142351] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1260), 1, - sym__brace_start, - ACTIONS(7869), 1, + ACTIONS(7908), 1, aux_sym_concatenation_token1, - ACTIONS(7959), 1, + ACTIONS(7910), 1, sym__concat, - STATE(2834), 1, + STATE(2960), 1, aux_sym_concatenation_repeat1, - ACTIONS(1258), 20, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [134216] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3683), 1, - anon_sym_LT_LT_LT, - ACTIONS(7863), 1, + ACTIONS(7877), 2, sym_file_descriptor, - ACTIONS(7961), 1, anon_sym_LF, - ACTIONS(3510), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3679), 2, + ACTIONS(7875), 19, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3681), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3677), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2789), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7861), 8, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [134262] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [142389] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 3, + ACTIONS(7908), 1, + aux_sym_concatenation_token1, + ACTIONS(7910), 1, + sym__concat, + STATE(2906), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7877), 2, sym_file_descriptor, - sym_variable_name, anon_sym_LF, - ACTIONS(4295), 21, + ACTIONS(7875), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170028,11 +178825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -170042,19 +178836,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [134294] = 6, + anon_sym_BQUOTE, + [142427] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7748), 1, + ACTIONS(7908), 1, aux_sym_concatenation_token1, - ACTIONS(7963), 1, + ACTIONS(7910), 1, sym__concat, - STATE(2680), 1, + STATE(2930), 1, aux_sym_concatenation_repeat1, - ACTIONS(1260), 2, + ACTIONS(7881), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(1258), 19, + ACTIONS(7879), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170074,46 +178869,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [134332] = 6, + [142465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7842), 1, - sym_file_descriptor, - ACTIONS(7965), 1, + ACTIONS(1270), 2, + sym__concat, + sym__brace_start, + ACTIONS(1268), 22, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, anon_sym_LF, - STATE(2877), 1, - sym_file_redirect, - ACTIONS(7129), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7967), 13, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [142497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1270), 2, + sym__concat, + sym__brace_start, + ACTIONS(1268), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_LF, anon_sym_AMP, - [134370] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [142529] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 3, - sym_file_descriptor, + ACTIONS(7908), 1, + aux_sym_concatenation_token1, + ACTIONS(7910), 1, sym__concat, + STATE(2906), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7904), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(1328), 21, + ACTIONS(7902), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170121,7 +178947,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -170133,22 +178958,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, anon_sym_BQUOTE, - [134402] = 6, + [142567] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7809), 1, - aux_sym_concatenation_token1, - ACTIONS(7811), 1, - sym__concat, - STATE(2826), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7638), 3, + ACTIONS(8093), 1, + sym_variable_name, + STATE(4383), 1, + sym_subscript, + ACTIONS(7789), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7640), 18, + STATE(2925), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7787), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170167,23 +178991,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [134440] = 6, + [142605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 1, - sym__brace_start, - ACTIONS(7869), 1, - aux_sym_concatenation_token1, - ACTIONS(7871), 1, + ACTIONS(1316), 2, sym__concat, - STATE(2801), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1270), 20, - anon_sym_LF, + sym__brace_start, + ACTIONS(1314), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_SEMI_SEMI, + anon_sym_LF, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -170199,20 +179020,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [134478] = 6, + [142637] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7969), 1, + ACTIONS(7908), 1, aux_sym_concatenation_token1, - ACTIONS(7972), 1, + ACTIONS(7910), 1, sym__concat, - STATE(2821), 1, + STATE(2930), 1, aux_sym_concatenation_repeat1, - ACTIONS(1279), 3, + ACTIONS(7887), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1274), 18, + ACTIONS(7885), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170231,51 +179051,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [134516] = 5, + anon_sym_BQUOTE, + [142675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7975), 1, - sym__special_character, - STATE(2822), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, + ACTIONS(1340), 2, + sym__concat, + sym__brace_start, + ACTIONS(1338), 22, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, anon_sym_LF, - ACTIONS(1358), 18, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [142707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 2, + sym__concat, + sym__brace_start, + ACTIONS(1258), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_LF, anon_sym_AMP, - [134552] = 6, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [142739] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7809), 1, + ACTIONS(7908), 1, aux_sym_concatenation_token1, - ACTIONS(7811), 1, + ACTIONS(8096), 1, sym__concat, - STATE(2844), 1, + STATE(2726), 1, aux_sym_concatenation_repeat1, - ACTIONS(7642), 3, + ACTIONS(1248), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7644), 18, + ACTIONS(1246), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170294,16 +179141,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [134590] = 3, + anon_sym_BQUOTE, + [142777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 5, + ACTIONS(1244), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1298), 19, + ACTIONS(1242), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170311,8 +179156,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -170322,20 +179170,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [134622] = 6, + sym__special_character, + [142809] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7748), 1, + ACTIONS(7908), 1, aux_sym_concatenation_token1, - ACTIONS(7750), 1, + ACTIONS(7910), 1, sym__concat, - STATE(2810), 1, + STATE(2965), 1, aux_sym_concatenation_repeat1, - ACTIONS(7638), 2, + ACTIONS(7881), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(7640), 19, + ACTIONS(7879), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170343,6 +179191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -170354,47 +179203,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [134660] = 6, + [142847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7809), 1, - aux_sym_concatenation_token1, - ACTIONS(7978), 1, + ACTIONS(1304), 2, sym__concat, - STATE(2821), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 3, + sym__brace_start, + ACTIONS(1302), 22, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [142879] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3762), 1, + anon_sym_LT_LT_LT, + ACTIONS(8079), 1, sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(8098), 1, anon_sym_LF, - ACTIONS(1264), 18, - anon_sym_SEMI, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3758), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3900), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2953), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8075), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [134698] = 3, + [142925] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 3, - sym_file_descriptor, + ACTIONS(7908), 1, + aux_sym_concatenation_token1, + ACTIONS(7910), 1, sym__concat, + STATE(2960), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7904), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(1274), 21, + ACTIONS(7902), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170414,18 +179300,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [134730] = 6, + [142963] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7842), 1, + ACTIONS(3762), 1, + anon_sym_LT_LT_LT, + ACTIONS(8079), 1, sym_file_descriptor, - ACTIONS(7980), 1, + ACTIONS(8100), 1, anon_sym_LF, - STATE(2942), 1, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3758), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3760), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3791), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2953), 4, sym_file_redirect, - ACTIONS(7129), 8, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8075), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -170434,61 +179336,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7982), 13, + [143009] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8104), 1, + anon_sym_LPAREN, + ACTIONS(8106), 1, + aux_sym__c_word_token1, + ACTIONS(8108), 1, + anon_sym_DOLLAR, + ACTIONS(8110), 1, + anon_sym_DQUOTE, + ACTIONS(8112), 1, + aux_sym_number_token1, + ACTIONS(8114), 1, + aux_sym_number_token2, + ACTIONS(8116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8118), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8120), 1, + anon_sym_BQUOTE, + ACTIONS(8122), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8102), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4278), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2303), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [143063] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1344), 2, + sym__concat, + sym__brace_start, + ACTIONS(1342), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_LF, anon_sym_AMP, - [134768] = 5, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [143095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7942), 1, - sym__special_character, - STATE(2841), 1, - aux_sym__literal_repeat1, - ACTIONS(7618), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7620), 20, + ACTIONS(1348), 2, + sym__concat, + sym__brace_start, + ACTIONS(1346), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_LF, anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [134804] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [143127] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, - sym_file_descriptor, + ACTIONS(7908), 1, + aux_sym_concatenation_token1, + ACTIONS(7910), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(2965), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7887), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(1324), 19, + ACTIONS(7885), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170496,6 +179454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -170507,35 +179466,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [134836] = 10, + [143165] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3683), 1, + ACTIONS(7802), 1, + anon_sym_LF, + ACTIONS(8127), 1, anon_sym_LT_LT_LT, - ACTIONS(7863), 1, + ACTIONS(8130), 1, sym_file_descriptor, - ACTIONS(7984), 1, - anon_sym_LF, - ACTIONS(3510), 2, + ACTIONS(7912), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(3679), 2, + STATE(2941), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7794), 7, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3681), 2, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3872), 3, - anon_sym_SEMI, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP, - STATE(2789), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7861), 8, + ACTIONS(8124), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -170544,43 +179500,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [134882] = 3, + [143207] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 3, + ACTIONS(7932), 1, sym_file_descriptor, - sym__concat, + ACTIONS(8135), 1, anon_sym_LF, - ACTIONS(1350), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + STATE(3064), 1, + sym_file_redirect, + ACTIONS(7775), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(8133), 13, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, + [143245] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8104), 1, + anon_sym_LPAREN, + ACTIONS(8106), 1, + aux_sym__c_word_token1, + ACTIONS(8108), 1, + anon_sym_DOLLAR, + ACTIONS(8110), 1, + anon_sym_DQUOTE, + ACTIONS(8112), 1, + aux_sym_number_token1, + ACTIONS(8114), 1, + aux_sym_number_token2, + ACTIONS(8116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8118), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8120), 1, + anon_sym_BQUOTE, + ACTIONS(8122), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8102), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4340), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2303), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [143299] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8104), 1, + anon_sym_LPAREN, + ACTIONS(8106), 1, + aux_sym__c_word_token1, + ACTIONS(8108), 1, + anon_sym_DOLLAR, + ACTIONS(8110), 1, + anon_sym_DQUOTE, + ACTIONS(8112), 1, + aux_sym_number_token1, + ACTIONS(8114), 1, + aux_sym_number_token2, + ACTIONS(8116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8118), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8120), 1, anon_sym_BQUOTE, - [134914] = 3, + ACTIONS(8122), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8102), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4333), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2303), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [143353] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 3, + ACTIONS(3477), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(1354), 21, + ACTIONS(3760), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2953), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3312), 16, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170588,10 +179634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -170600,25 +179643,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [134946] = 6, + [143389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 1, - sym__brace_start, - ACTIONS(7986), 1, - aux_sym_concatenation_token1, - ACTIONS(7989), 1, + ACTIONS(1296), 2, sym__concat, - STATE(2834), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 20, - anon_sym_LF, + sym__brace_start, + ACTIONS(1294), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_SEMI_SEMI, + anon_sym_LF, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -170634,45 +179672,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [134984] = 5, + [143421] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7992), 1, - sym__special_character, - STATE(2822), 1, - aux_sym__literal_repeat1, - ACTIONS(3789), 4, + ACTIONS(7932), 1, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, + ACTIONS(8139), 1, anon_sym_LF, - ACTIONS(3787), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + STATE(3086), 1, + sym_file_redirect, + ACTIONS(7775), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(8137), 13, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135020] = 3, + [143459] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8104), 1, + anon_sym_LPAREN, + ACTIONS(8106), 1, + aux_sym__c_word_token1, + ACTIONS(8108), 1, + anon_sym_DOLLAR, + ACTIONS(8110), 1, + anon_sym_DQUOTE, + ACTIONS(8112), 1, + aux_sym_number_token1, + ACTIONS(8114), 1, + aux_sym_number_token2, + ACTIONS(8116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8118), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8120), 1, + anon_sym_BQUOTE, + ACTIONS(8122), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8102), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4174), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2303), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [143513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 3, + ACTIONS(4376), 3, sym_file_descriptor, sym_variable_name, anon_sym_LF, - ACTIONS(3783), 21, + ACTIONS(4374), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170694,34 +179773,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135052] = 10, + [143545] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3683), 1, - anon_sym_LT_LT_LT, - ACTIONS(7863), 1, + ACTIONS(7932), 1, sym_file_descriptor, - ACTIONS(7994), 1, + ACTIONS(8143), 1, anon_sym_LF, - ACTIONS(3510), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3679), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3681), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3692), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2789), 4, + STATE(3031), 1, sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7861), 8, + ACTIONS(7775), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -170730,46 +179791,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [135098] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7748), 1, - aux_sym_concatenation_token1, - ACTIONS(7750), 1, - sym__concat, - STATE(2816), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7642), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7644), 19, + ACTIONS(8141), 13, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [135136] = 3, + [143583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 3, + ACTIONS(3839), 3, sym_file_descriptor, sym_variable_name, anon_sym_LF, - ACTIONS(1270), 21, + ACTIONS(3837), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170777,9 +179820,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -170789,81 +179834,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + [143615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 2, + sym__concat, + sym__brace_start, + ACTIONS(1284), 22, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [135168] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [143647] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(3762), 1, + anon_sym_LT_LT_LT, + ACTIONS(7814), 1, anon_sym_LF, - ACTIONS(1320), 21, + ACTIONS(8079), 1, + sym_file_descriptor, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2941), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7812), 7, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP, + ACTIONS(8075), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [135200] = 5, + [143689] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7996), 1, - sym__special_character, - STATE(2841), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 2, + ACTIONS(3762), 1, + anon_sym_LT_LT_LT, + ACTIONS(8079), 1, sym_file_descriptor, + ACTIONS(8145), 1, anon_sym_LF, - ACTIONS(1358), 20, - anon_sym_SEMI, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3758), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3756), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2953), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8075), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [135236] = 6, + [143735] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7748), 1, + ACTIONS(7848), 1, aux_sym_concatenation_token1, - ACTIONS(7750), 1, + ACTIONS(7850), 1, sym__concat, - STATE(2788), 1, + STATE(2913), 1, aux_sym_concatenation_repeat1, - ACTIONS(7618), 2, + ACTIONS(3839), 3, sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(7620), 19, + ACTIONS(3837), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170871,7 +179954,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -170883,106 +179965,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135274] = 3, + [143773] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 3, + ACTIONS(3762), 1, + anon_sym_LT_LT_LT, + ACTIONS(8079), 1, sym_file_descriptor, - sym__concat, + ACTIONS(8147), 1, anon_sym_LF, - ACTIONS(1302), 21, - anon_sym_SEMI, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3758), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3898), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2953), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8075), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, + [143819] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7942), 1, + anon_sym_LPAREN, + ACTIONS(7944), 1, + aux_sym__c_word_token1, + ACTIONS(7946), 1, + anon_sym_DOLLAR, + ACTIONS(7948), 1, + anon_sym_DQUOTE, + ACTIONS(7950), 1, + aux_sym_number_token1, + ACTIONS(7952), 1, + aux_sym_number_token2, + ACTIONS(7954), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7956), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7958), 1, anon_sym_BQUOTE, - [135306] = 6, + ACTIONS(7960), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7940), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4348), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2371), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [143873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7809), 1, - aux_sym_concatenation_token1, - ACTIONS(7999), 1, + ACTIONS(1274), 2, sym__concat, - STATE(2821), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1258), 18, + sym__brace_start, + ACTIONS(1272), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_LF, anon_sym_AMP, - [135344] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [143905] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 5, + ACTIONS(3762), 1, + anon_sym_LT_LT_LT, + ACTIONS(8079), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, + ACTIONS(8149), 1, anon_sym_LF, - ACTIONS(1350), 19, - anon_sym_SEMI, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3758), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3896), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2953), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8075), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [135376] = 3, + [143951] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 5, - sym_file_descriptor, + ACTIONS(7908), 1, + aux_sym_concatenation_token1, + ACTIONS(8151), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(2726), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(1354), 19, + ACTIONS(1252), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170990,6 +180126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -171001,14 +180138,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [135408] = 3, + [143989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8001), 2, + ACTIONS(4372), 3, sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(8003), 21, + ACTIONS(4370), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171030,16 +180167,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135439] = 3, + [144021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 2, + ACTIONS(1312), 2, sym__concat, sym__brace_start, - ACTIONS(1354), 21, - anon_sym_LF, + ACTIONS(1310), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_SEMI_SEMI, + anon_sym_LF, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, @@ -171058,72 +180196,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [135470] = 3, + [144053] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7942), 1, + anon_sym_LPAREN, + ACTIONS(7944), 1, + aux_sym__c_word_token1, + ACTIONS(7946), 1, + anon_sym_DOLLAR, + ACTIONS(7948), 1, + anon_sym_DQUOTE, + ACTIONS(7950), 1, + aux_sym_number_token1, + ACTIONS(7952), 1, + aux_sym_number_token2, + ACTIONS(7954), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7956), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7958), 1, + anon_sym_BQUOTE, + ACTIONS(7960), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7940), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4349), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2371), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [144107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8005), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8007), 21, + ACTIONS(1324), 2, + sym__concat, + sym__brace_start, + ACTIONS(1322), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_LF, anon_sym_AMP, - [135501] = 6, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [144139] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7748), 1, + ACTIONS(7908), 1, aux_sym_concatenation_token1, - ACTIONS(7750), 1, + ACTIONS(8153), 1, sym__concat, - STATE(2934), 1, + STATE(2726), 1, aux_sym_concatenation_repeat1, - ACTIONS(7614), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7616), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [135538] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8009), 2, + ACTIONS(1248), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8011), 21, + ACTIONS(1246), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171131,11 +180285,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -171145,15 +180297,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135569] = 3, + [144177] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 4, - sym_file_descriptor, + ACTIONS(7908), 1, + aux_sym_concatenation_token1, + ACTIONS(7910), 1, sym__concat, + STATE(2918), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7904), 3, + sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1274), 19, + ACTIONS(7902), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171172,16 +180329,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [135600] = 3, + [144215] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8104), 1, + anon_sym_LPAREN, + ACTIONS(8106), 1, + aux_sym__c_word_token1, + ACTIONS(8108), 1, + anon_sym_DOLLAR, + ACTIONS(8110), 1, + anon_sym_DQUOTE, + ACTIONS(8112), 1, + aux_sym_number_token1, + ACTIONS(8114), 1, + aux_sym_number_token2, + ACTIONS(8116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8118), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8120), 1, + anon_sym_BQUOTE, + ACTIONS(8122), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8102), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4155), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2303), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [144269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 4, + ACTIONS(4372), 4, sym_file_descriptor, - sym__concat, + sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1302), 19, + ACTIONS(4370), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171189,6 +180385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -171200,17 +180397,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [135631] = 3, + anon_sym_BQUOTE, + [144301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 2, + ACTIONS(1300), 2, sym__concat, sym__brace_start, - ACTIONS(1338), 21, - anon_sym_LF, + ACTIONS(1298), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_SEMI_SEMI, + anon_sym_LF, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, @@ -171229,17 +180427,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [135662] = 6, + [144333] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7779), 1, + ACTIONS(8059), 1, anon_sym_LF, - ACTIONS(8016), 1, + ACTIONS(8158), 1, sym_file_descriptor, - STATE(2855), 2, + STATE(2970), 2, sym_file_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(8013), 8, + ACTIONS(8155), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -171248,27 +180446,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7781), 11, + ACTIONS(8054), 12, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135699] = 3, + [144371] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 4, - sym_file_descriptor, + ACTIONS(7908), 1, + aux_sym_concatenation_token1, + ACTIONS(7910), 1, sym__concat, + STATE(2918), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7877), 3, + sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1346), 19, + ACTIONS(7875), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171287,14 +180491,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [135730] = 3, + [144409] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 2, + ACTIONS(7908), 1, + aux_sym_concatenation_token1, + ACTIONS(7910), 1, + sym__concat, + STATE(2915), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7881), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1270), 21, + ACTIONS(7879), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171302,7 +180512,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -171314,15 +180523,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - anon_sym_BQUOTE, - [135761] = 3, + [144447] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4348), 2, + ACTIONS(7848), 1, + aux_sym_concatenation_token1, + ACTIONS(7850), 1, + sym__concat, + STATE(2916), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3843), 3, sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(4346), 21, + ACTIONS(3841), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171330,11 +180544,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -171344,69 +180555,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135792] = 3, + [144485] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, + ACTIONS(7930), 1, anon_sym_LF, - ACTIONS(1342), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(8161), 1, + sym_file_descriptor, + STATE(2970), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7842), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [135823] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1270), 19, + ACTIONS(7928), 12, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - [135854] = 3, + [144523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8019), 2, + ACTIONS(3839), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8021), 21, + ACTIONS(3837), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171414,11 +180603,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -171428,13 +180615,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135885] = 3, + anon_sym_BQUOTE, + [144555] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(6828), 1, + anon_sym_DOLLAR, + ACTIONS(6834), 1, + aux_sym_number_token2, + ACTIONS(8165), 1, + anon_sym_LPAREN, + ACTIONS(8167), 1, + aux_sym__c_word_token1, + ACTIONS(8169), 1, + anon_sym_DQUOTE, + ACTIONS(8171), 1, + aux_sym_number_token1, + ACTIONS(8173), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8175), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8177), 1, + anon_sym_BQUOTE, + ACTIONS(8179), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8163), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4134), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2269), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [144609] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8023), 2, + ACTIONS(8181), 1, + sym_variable_name, + STATE(4383), 1, + sym_subscript, + ACTIONS(7822), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8025), 21, + STATE(2925), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7820), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171442,11 +180677,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -171456,16 +180688,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135916] = 3, + [144647] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(6828), 1, + anon_sym_DOLLAR, + ACTIONS(6834), 1, + aux_sym_number_token2, + ACTIONS(8165), 1, + anon_sym_LPAREN, + ACTIONS(8167), 1, + aux_sym__c_word_token1, + ACTIONS(8169), 1, + anon_sym_DQUOTE, + ACTIONS(8171), 1, + aux_sym_number_token1, + ACTIONS(8173), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8175), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8177), 1, + anon_sym_BQUOTE, + ACTIONS(8179), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8163), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4126), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2269), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [144701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 2, + ACTIONS(1282), 2, sym__concat, sym__brace_start, - ACTIONS(1274), 21, - anon_sym_LF, + ACTIONS(1280), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_SEMI_SEMI, + anon_sym_LF, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, @@ -171484,47 +180757,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [135947] = 6, + [144733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7748), 1, - aux_sym_concatenation_token1, - ACTIONS(7750), 1, + ACTIONS(1278), 2, sym__concat, - STATE(2934), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7642), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7644), 18, + sym__brace_start, + ACTIONS(1276), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_LF, anon_sym_AMP, - [135984] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [144765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 2, + ACTIONS(1332), 2, sym__concat, sym__brace_start, - ACTIONS(1308), 21, - anon_sym_LF, + ACTIONS(1330), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_SEMI_SEMI, + anon_sym_LF, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, @@ -171543,44 +180815,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [136015] = 6, + [144797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7748), 1, - aux_sym_concatenation_token1, - ACTIONS(8027), 1, + ACTIONS(1336), 2, sym__concat, - STATE(2680), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1264), 18, + sym__brace_start, + ACTIONS(1334), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_LF, anon_sym_AMP, - [136052] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [144829] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8029), 2, + ACTIONS(7908), 1, + aux_sym_concatenation_token1, + ACTIONS(7910), 1, + sym__concat, + STATE(2915), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7887), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8031), 21, + ACTIONS(7885), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171588,11 +180865,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -171602,18 +180876,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136083] = 5, + [144867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8033), 1, - sym__special_character, - STATE(2894), 1, - aux_sym__literal_repeat1, - ACTIONS(7618), 3, + ACTIONS(8183), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7620), 18, + ACTIONS(8185), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171621,6 +180891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -171632,41 +180903,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136118] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1318), 2, - sym__concat, - sym__brace_start, - ACTIONS(1316), 21, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [136149] = 3, + [144898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8035), 2, + ACTIONS(8189), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8037), 21, + ACTIONS(8187), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171688,15 +180932,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136180] = 3, + [144929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, + ACTIONS(8191), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1338), 19, + ACTIONS(8193), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171704,6 +180947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -171715,14 +180959,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + anon_sym_BQUOTE, + [144960] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3020), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8195), 2, + sym__concat, aux_sym_concatenation_token1, - [136211] = 3, + ACTIONS(1242), 8, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1244), 12, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [144995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4348), 2, + ACTIONS(8197), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4346), 21, + ACTIONS(8199), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171730,11 +181005,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -171744,15 +181017,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136242] = 3, + anon_sym_BQUOTE, + [145026] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, + ACTIONS(7908), 1, + aux_sym_concatenation_token1, + ACTIONS(7910), 1, sym__concat, - ts_builtin_sym_end, + STATE(3017), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7904), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(1298), 19, + ACTIONS(7902), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171771,14 +181049,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [136273] = 3, + [145063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8039), 2, + ACTIONS(8203), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8041), 21, + ACTIONS(8201), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171800,13 +181077,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136304] = 3, + [145094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8043), 2, + ACTIONS(8207), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8045), 21, + ACTIONS(8205), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171828,15 +181105,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136335] = 3, + [145125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 4, + ACTIONS(8209), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1354), 19, + ACTIONS(8211), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171844,6 +181120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -171855,14 +181132,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [136366] = 3, + anon_sym_BQUOTE, + [145156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8047), 2, + ACTIONS(8213), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8049), 21, + ACTIONS(8215), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171870,11 +181148,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -171884,41 +181160,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136397] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1330), 2, - sym__concat, - sym__brace_start, - ACTIONS(1328), 21, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [136428] = 3, + [145187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8051), 2, + ACTIONS(8189), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8053), 21, + ACTIONS(8187), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171926,11 +181176,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -171940,15 +181188,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136459] = 3, + anon_sym_BQUOTE, + [145218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(8217), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1308), 19, + ACTIONS(8219), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171956,6 +181204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -171967,14 +181216,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [136490] = 3, + anon_sym_BQUOTE, + [145249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8055), 2, + ACTIONS(8223), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8057), 21, + ACTIONS(8221), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171996,19 +181245,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136521] = 6, + [145280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7748), 1, - aux_sym_concatenation_token1, - ACTIONS(7750), 1, - sym__concat, - STATE(2866), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7618), 2, + ACTIONS(8225), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7620), 18, + ACTIONS(8227), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172016,6 +181260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -172027,69 +181272,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136558] = 3, + anon_sym_BQUOTE, + [145311] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8059), 2, + ACTIONS(8229), 1, sym_file_descriptor, + ACTIONS(7930), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8061), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + STATE(3032), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7934), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(7928), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136589] = 3, - ACTIONS(3), 1, + [145348] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(1344), 2, + STATE(3020), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8195), 2, sym__concat, - sym__brace_start, - ACTIONS(1342), 21, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + ACTIONS(8231), 8, + anon_sym_LPAREN, anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + sym_word, + ACTIONS(8233), 12, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [136620] = 3, + [145383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8063), 2, + ACTIONS(8191), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8065), 21, + ACTIONS(8193), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172111,15 +181362,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136651] = 3, + [145414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(8209), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1284), 19, + ACTIONS(8211), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172127,8 +181376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -172138,16 +181390,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [136682] = 3, + [145445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(8207), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1284), 19, + ACTIONS(8205), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172155,8 +181404,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -172166,14 +181418,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [136713] = 3, + [145476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8067), 2, + ACTIONS(8237), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8069), 21, + ACTIONS(8235), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172195,74 +181446,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136744] = 3, + [145507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 2, - sym__concat, - sym__brace_start, - ACTIONS(1302), 21, + ACTIONS(8239), 3, + sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, + ACTIONS(8241), 20, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_BQUOTE, + [145538] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3024), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8195), 2, + sym__concat, aux_sym_concatenation_token1, + ACTIONS(8243), 8, + anon_sym_LPAREN, anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + sym_word, + ACTIONS(8245), 12, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [136775] = 3, + [145573] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 3, - sym_file_descriptor, - sym_variable_name, + ACTIONS(8139), 1, anon_sym_LF, - ACTIONS(3783), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(8161), 1, + sym_file_descriptor, + STATE(3086), 1, + sym_file_redirect, + ACTIONS(7842), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(8137), 12, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [136806] = 6, + [145610] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8074), 1, - sym_file_descriptor, - ACTIONS(7779), 2, - ts_builtin_sym_end, + ACTIONS(8143), 1, anon_sym_LF, - STATE(2891), 2, + ACTIONS(8161), 1, + sym_file_descriptor, + STATE(3031), 1, sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(8071), 8, + ACTIONS(7842), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -172271,24 +181553,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7781), 10, + ACTIONS(8141), 12, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136843] = 3, + [145647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8077), 2, + ACTIONS(8213), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8079), 21, + ACTIONS(8215), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172310,15 +181594,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136874] = 3, + [145678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 4, + ACTIONS(8249), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1350), 19, + ACTIONS(8247), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172326,8 +181608,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -172337,19 +181622,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [136905] = 5, + [145709] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8081), 1, - sym__special_character, - STATE(2894), 1, - aux_sym__literal_repeat1, - ACTIONS(1363), 3, + ACTIONS(8135), 1, + anon_sym_LF, + ACTIONS(8161), 1, + sym_file_descriptor, + STATE(3064), 1, + sym_file_redirect, + ACTIONS(7842), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8133), 12, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [145746] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8251), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1358), 18, + ACTIONS(8253), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172357,6 +181668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -172368,13 +181680,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136940] = 3, + anon_sym_BQUOTE, + [145777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7614), 2, + ACTIONS(7877), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(7616), 21, + ACTIONS(7875), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172396,13 +181709,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136971] = 3, + [145808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8084), 2, + ACTIONS(8257), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8086), 21, + ACTIONS(8255), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172424,13 +181737,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137002] = 3, + [145839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8088), 2, + ACTIONS(8259), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8090), 21, + ACTIONS(8261), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172438,11 +181752,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -172452,13 +181764,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137033] = 3, + anon_sym_BQUOTE, + [145870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8067), 2, + ACTIONS(8265), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8069), 21, + ACTIONS(8263), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172480,13 +181793,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137064] = 3, + [145901] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8092), 2, + ACTIONS(7908), 1, + aux_sym_concatenation_token1, + ACTIONS(8267), 1, + sym__concat, + STATE(2726), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8094), 21, + ACTIONS(1246), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172494,11 +181813,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -172508,41 +181824,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137095] = 3, + [145938] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 2, - sym__concat, - sym__brace_start, - ACTIONS(1350), 21, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7908), 1, aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [137126] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8096), 2, + ACTIONS(8269), 1, + sym__concat, + STATE(2726), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8098), 21, + ACTIONS(1252), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172550,11 +181844,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -172564,46 +181855,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137157] = 3, + [145975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 2, - sym__concat, - sym__brace_start, - ACTIONS(1334), 21, + ACTIONS(8265), 3, + sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, + ACTIONS(8263), 20, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [137188] = 5, + [146006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8033), 1, - sym__special_character, - STATE(2894), 1, - aux_sym__literal_repeat1, - ACTIONS(7638), 3, + ACTIONS(8271), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7640), 18, + ACTIONS(8273), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172611,6 +181898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -172622,42 +181910,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137223] = 3, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [146037] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(1348), 2, - sym__concat, - sym__brace_start, - ACTIONS(1346), 21, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8195), 1, aux_sym_concatenation_token1, + ACTIONS(8275), 1, + sym__concat, + STATE(3093), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1246), 8, + anon_sym_LPAREN, anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + sym_word, + ACTIONS(1248), 12, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [137254] = 3, + [146074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4293), 3, + ACTIONS(8237), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4291), 20, + ACTIONS(8235), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172678,15 +181970,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [137285] = 3, + [146105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(8279), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1312), 19, + ACTIONS(8277), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172694,8 +181984,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -172705,14 +181998,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [137316] = 3, + [146136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8100), 2, + ACTIONS(8283), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8102), 21, + ACTIONS(8281), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172734,41 +182026,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137347] = 3, - ACTIONS(3), 1, + [146167] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(1326), 2, - sym__concat, - sym__brace_start, - ACTIONS(1324), 21, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8195), 1, aux_sym_concatenation_token1, + ACTIONS(8285), 1, + sym__concat, + STATE(3093), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1252), 8, + anon_sym_LPAREN, anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + sym_word, + ACTIONS(1254), 12, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [137378] = 3, + [146204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8104), 2, + ACTIONS(8289), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8106), 21, + ACTIONS(8287), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172790,15 +182085,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137409] = 3, + [146235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, + ACTIONS(8291), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1334), 19, + ACTIONS(8293), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172806,6 +182100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -172817,44 +182112,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [137440] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 2, - sym__concat, - sym__brace_start, - ACTIONS(1298), 21, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [137471] = 3, + [146266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, + ACTIONS(4392), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1288), 19, + ACTIONS(4390), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172862,6 +182128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -172873,138 +182140,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [137502] = 6, + anon_sym_BQUOTE, + [146297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, + ACTIONS(8203), 3, sym_file_descriptor, - ACTIONS(7980), 1, + ts_builtin_sym_end, anon_sym_LF, - STATE(2942), 1, - sym_file_redirect, - ACTIONS(7622), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7982), 12, + ACTIONS(8201), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [137539] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7779), 1, - anon_sym_LF, - ACTIONS(8111), 1, - sym_file_descriptor, - STATE(2914), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(8108), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7781), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [137576] = 6, + [146328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, + ACTIONS(8295), 3, sym_file_descriptor, - ACTIONS(7934), 1, + ts_builtin_sym_end, anon_sym_LF, - STATE(2896), 1, - sym_file_redirect, - ACTIONS(7622), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7936), 12, + ACTIONS(8297), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [137613] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7903), 1, - sym_file_descriptor, - ACTIONS(7965), 1, - anon_sym_LF, - STATE(2877), 1, - sym_file_redirect, - ACTIONS(7622), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7967), 12, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137650] = 3, + anon_sym_BQUOTE, + [146359] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8114), 2, + ACTIONS(7908), 1, + aux_sym_concatenation_token1, + ACTIONS(7910), 1, + sym__concat, + STATE(3016), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7881), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8116), 21, + ACTIONS(7879), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173012,11 +182217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -173026,13 +182228,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137681] = 3, + [146396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8118), 2, + ACTIONS(8301), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8120), 21, + ACTIONS(8299), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173054,17 +182256,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137712] = 6, + [146427] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7838), 1, - anon_sym_LF, - ACTIONS(8122), 1, + ACTIONS(8306), 1, sym_file_descriptor, - STATE(2855), 2, + ACTIONS(8059), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(3032), 2, sym_file_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(7740), 8, + ACTIONS(8303), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -173073,82 +182276,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7840), 11, + ACTIONS(8054), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137749] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 2, - sym__concat, - sym__brace_start, - ACTIONS(1284), 21, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [137780] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 2, - sym__concat, - sym__brace_start, - ACTIONS(1288), 21, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [137811] = 3, + [146464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 3, + ACTIONS(4392), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4295), 20, + ACTIONS(4390), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173169,45 +182315,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [137842] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 2, - sym__concat, - sym__brace_start, - ACTIONS(1284), 21, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [137873] = 6, + [146495] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7838), 1, + ACTIONS(8059), 1, anon_sym_LF, - ACTIONS(8124), 1, + ACTIONS(8312), 1, sym_file_descriptor, - STATE(2914), 2, + STATE(3034), 2, sym_file_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(7723), 8, + ACTIONS(8309), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -173216,25 +182334,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7840), 11, + ACTIONS(8054), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [137910] = 3, + [146532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7642), 2, + ACTIONS(8279), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7644), 21, + ACTIONS(8277), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173242,11 +182361,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -173256,13 +182373,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137941] = 3, + anon_sym_BQUOTE, + [146563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8092), 2, + ACTIONS(8289), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8094), 21, + ACTIONS(8287), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173270,11 +182389,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -173284,15 +182401,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137972] = 3, + anon_sym_BQUOTE, + [146594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 4, + ACTIONS(8207), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1328), 19, + ACTIONS(8205), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173300,6 +182417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -173311,16 +182429,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [138003] = 3, + anon_sym_BQUOTE, + [146625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 4, + ACTIONS(8315), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1320), 19, + ACTIONS(8317), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173328,6 +182445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -173339,16 +182457,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [138034] = 3, + anon_sym_BQUOTE, + [146656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 4, + ACTIONS(8321), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1316), 19, + ACTIONS(8319), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173356,8 +182472,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -173367,45 +182486,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [138065] = 6, + [146687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8126), 1, + ACTIONS(8323), 3, sym_file_descriptor, - ACTIONS(7838), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2891), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7713), 8, + ACTIONS(8325), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7840), 10, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [146718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8225), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(8227), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138102] = 3, + anon_sym_BQUOTE, + [146749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8128), 2, + ACTIONS(8329), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8130), 21, + ACTIONS(8327), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173427,13 +182570,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138133] = 3, + [146780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8132), 2, + ACTIONS(7904), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8134), 21, + ACTIONS(7902), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173441,11 +182585,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -173455,47 +182597,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138164] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1314), 2, - sym__concat, - sym__brace_start, - ACTIONS(1312), 21, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [138195] = 6, + [146811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7748), 1, - aux_sym_concatenation_token1, - ACTIONS(8136), 1, - sym__concat, - STATE(2680), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1260), 2, + ACTIONS(8333), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(1258), 18, + ACTIONS(8331), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173503,8 +182612,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -173514,41 +182626,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138232] = 3, + [146842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 2, - sym__concat, - sym__brace_start, - ACTIONS(1320), 21, + ACTIONS(8225), 2, + sym_file_descriptor, anon_sym_LF, + ACTIONS(8227), 21, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [138263] = 3, + [146873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8138), 2, + ACTIONS(8225), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8140), 21, + ACTIONS(8227), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173570,13 +182682,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138294] = 3, + [146904] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8142), 2, + ACTIONS(8339), 1, + anon_sym_SLASH, + ACTIONS(8343), 1, + anon_sym_LBRACK, + ACTIONS(8345), 1, + anon_sym_COLON, + ACTIONS(8353), 1, + anon_sym_AT, + ACTIONS(8335), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8341), 2, + anon_sym_PERCENT, + anon_sym_POUND, + ACTIONS(8347), 2, + anon_sym_POUND_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8351), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8349), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8337), 8, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_COLON_EQ, + anon_sym_COLON_DASH, + anon_sym_COLON_PLUS, + anon_sym_COLON_QMARK, + [146951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8355), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8144), 21, + ACTIONS(8357), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173584,11 +182733,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -173598,44 +182745,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138325] = 6, + anon_sym_BQUOTE, + [146982] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7748), 1, - aux_sym_concatenation_token1, - ACTIONS(7750), 1, - sym__concat, - STATE(2866), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7638), 2, - sym_file_descriptor, + ACTIONS(7930), 1, anon_sym_LF, - ACTIONS(7640), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(8359), 1, + sym_file_descriptor, + STATE(3034), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7924), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(7928), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138362] = 3, + [147019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8146), 2, + ACTIONS(8361), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8148), 21, + ACTIONS(8363), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173643,11 +182792,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -173657,13 +182804,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138393] = 3, + anon_sym_BQUOTE, + [147050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8150), 2, + ACTIONS(8257), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8152), 21, + ACTIONS(8255), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173671,11 +182820,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -173685,15 +182832,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138424] = 3, + anon_sym_BQUOTE, + [147081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 4, + ACTIONS(8321), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1324), 19, + ACTIONS(8319), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173701,6 +182848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -173712,14 +182860,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [138455] = 3, + anon_sym_BQUOTE, + [147112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8154), 2, + ACTIONS(7877), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8156), 21, + ACTIONS(7875), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173727,11 +182876,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -173741,13 +182888,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138486] = 3, + anon_sym_BQUOTE, + [147143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8158), 2, + ACTIONS(8217), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8160), 21, + ACTIONS(8219), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173769,13 +182917,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138517] = 3, + [147174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8162), 2, + ACTIONS(8259), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8164), 21, + ACTIONS(8261), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173797,13 +182945,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138548] = 3, + [147205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8154), 2, + ACTIONS(8365), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8156), 20, + ACTIONS(8367), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173824,13 +182973,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [138578] = 3, + [147236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8096), 2, + ACTIONS(8239), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8098), 20, + ACTIONS(8241), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173838,9 +182987,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -173850,16 +183001,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [138608] = 3, + [147267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 4, + ACTIONS(8333), 3, sym_file_descriptor, - sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3783), 18, + ACTIONS(8331), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173867,6 +183016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -173878,13 +183028,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138638] = 3, + anon_sym_BQUOTE, + [147298] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8019), 2, + ACTIONS(7908), 1, + aux_sym_concatenation_token1, + ACTIONS(7910), 1, + sym__concat, + STATE(3017), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7877), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8021), 20, + ACTIONS(7875), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173892,7 +183049,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -173904,16 +183060,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [138668] = 3, + [147335] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4293), 4, + ACTIONS(7908), 1, + aux_sym_concatenation_token1, + ACTIONS(7910), 1, + sym__concat, + STATE(3016), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7887), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4291), 18, + ACTIONS(7885), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173932,13 +183091,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138698] = 3, + [147372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8029), 2, + ACTIONS(8251), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8031), 20, + ACTIONS(8253), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173946,9 +183105,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -173958,14 +183119,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [138728] = 3, + [147403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8035), 2, + ACTIONS(8323), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8037), 20, + ACTIONS(8325), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173973,9 +183133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -173985,14 +183147,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [138758] = 3, + [147434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8001), 2, + ACTIONS(8207), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8003), 20, + ACTIONS(8205), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174013,13 +183175,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [138788] = 3, + [147465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8043), 2, + ACTIONS(8197), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8045), 20, + ACTIONS(8199), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174027,9 +183189,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -174039,14 +183203,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [138818] = 3, + [147496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8104), 2, + ACTIONS(8371), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8106), 20, + ACTIONS(8369), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174054,9 +183217,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -174066,14 +183231,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [138848] = 3, + [147527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8005), 2, + ACTIONS(8375), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8007), 20, + ACTIONS(8373), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174081,9 +183245,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -174093,80 +183259,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [138878] = 13, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7875), 1, - anon_sym_LPAREN, - ACTIONS(7879), 1, - anon_sym_DOLLAR, - ACTIONS(7881), 1, - anon_sym_DQUOTE, - ACTIONS(7883), 1, - aux_sym_number_token1, - ACTIONS(7885), 1, - aux_sym_number_token2, - ACTIONS(7887), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7889), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7891), 1, - anon_sym_BQUOTE, - ACTIONS(7893), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8166), 1, - aux_sym__c_word_token1, - ACTIONS(7873), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2246), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [138928] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4051), 1, - sym__brace_start, - ACTIONS(8168), 1, - sym__special_character, - STATE(2998), 1, - aux_sym__literal_repeat1, - ACTIONS(4049), 19, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [138962] = 3, + [147558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8162), 2, + ACTIONS(4392), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8164), 20, + ACTIONS(4390), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174174,9 +183273,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -174186,14 +183287,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [138992] = 3, + [147589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8132), 2, + ACTIONS(8271), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8134), 20, + ACTIONS(8273), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174201,9 +183301,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -174213,44 +183315,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [139022] = 6, + [147620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8126), 1, + ACTIONS(7904), 2, sym_file_descriptor, - STATE(3047), 1, - sym_file_redirect, - ACTIONS(7965), 2, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7713), 8, + ACTIONS(7902), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7967), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [139058] = 3, + [147651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8142), 2, + ACTIONS(8249), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8144), 20, + ACTIONS(8247), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174271,50 +183371,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [139088] = 13, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6274), 1, - anon_sym_DOLLAR, - ACTIONS(6280), 1, - aux_sym_number_token2, - ACTIONS(7918), 1, - anon_sym_LPAREN, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7930), 1, - anon_sym_BQUOTE, - ACTIONS(7932), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8170), 1, - aux_sym__c_word_token1, - ACTIONS(7916), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2122), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [139138] = 3, + [147682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8051), 2, + ACTIONS(8301), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8053), 20, + ACTIONS(8299), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174335,15 +183399,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [139168] = 3, + [147713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 4, + ACTIONS(4392), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4295), 18, + ACTIONS(4390), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174351,8 +183413,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -174362,13 +183427,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [139198] = 3, + [147744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8088), 2, + ACTIONS(8223), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8090), 20, + ACTIONS(8221), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174389,147 +183455,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [139228] = 13, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6274), 1, - anon_sym_DOLLAR, - ACTIONS(6280), 1, - aux_sym_number_token2, - ACTIONS(7918), 1, - anon_sym_LPAREN, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7924), 1, - aux_sym_number_token1, - ACTIONS(7926), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7928), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7930), 1, - anon_sym_BQUOTE, - ACTIONS(7932), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8172), 1, - aux_sym__c_word_token1, - ACTIONS(7916), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2155), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [139278] = 13, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7875), 1, - anon_sym_LPAREN, - ACTIONS(7879), 1, - anon_sym_DOLLAR, - ACTIONS(7881), 1, - anon_sym_DQUOTE, - ACTIONS(7883), 1, - aux_sym_number_token1, - ACTIONS(7885), 1, - aux_sym_number_token2, - ACTIONS(7887), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7889), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7891), 1, - anon_sym_BQUOTE, - ACTIONS(7893), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8174), 1, - aux_sym__c_word_token1, - ACTIONS(7873), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2227), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [139328] = 6, + [147775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7965), 1, - anon_sym_LF, - ACTIONS(8122), 1, + ACTIONS(8183), 2, sym_file_descriptor, - STATE(2991), 1, - sym_file_redirect, - ACTIONS(7740), 8, + anon_sym_LF, + ACTIONS(8185), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7967), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [139364] = 6, + [147806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8126), 1, + ACTIONS(8315), 2, sym_file_descriptor, - STATE(3081), 1, - sym_file_redirect, - ACTIONS(7980), 2, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7713), 8, + ACTIONS(8317), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7982), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [139400] = 3, + [147837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8055), 2, + ACTIONS(8355), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8057), 20, + ACTIONS(8357), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174537,9 +183525,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -174549,14 +183539,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + [147868] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1357), 1, + sym__brace_start, + ACTIONS(8377), 1, + sym__special_character, + STATE(3077), 1, + aux_sym__literal_repeat1, + ACTIONS(1352), 20, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [139430] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [147903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8092), 2, + ACTIONS(8380), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8094), 20, + ACTIONS(8382), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174577,50 +183597,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [139460] = 13, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7689), 1, - anon_sym_LPAREN, - ACTIONS(7693), 1, - anon_sym_DOLLAR, - ACTIONS(7695), 1, - anon_sym_DQUOTE, - ACTIONS(7697), 1, - aux_sym_number_token1, - ACTIONS(7699), 1, - aux_sym_number_token2, - ACTIONS(7701), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7703), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7705), 1, - anon_sym_BQUOTE, - ACTIONS(7707), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8176), 1, - aux_sym__c_word_token1, - ACTIONS(7687), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2244), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [139510] = 3, + [147934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8128), 2, + ACTIONS(8329), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8130), 20, + ACTIONS(8327), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174641,43 +183625,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [139540] = 6, + [147965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7779), 1, - anon_sym_LF, - ACTIONS(8181), 1, + ACTIONS(8384), 3, sym_file_descriptor, - STATE(2974), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(8178), 8, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(8386), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7781), 10, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [147996] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8361), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(8363), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [139576] = 3, + [148027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8150), 2, + ACTIONS(8375), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8152), 20, + ACTIONS(8373), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174698,17 +183709,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [139606] = 6, + [148058] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7838), 1, + ACTIONS(7930), 1, anon_sym_LF, - ACTIONS(8184), 1, + ACTIONS(8388), 1, sym_file_descriptor, - STATE(2974), 2, + STATE(3091), 2, sym_file_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(7861), 8, + ACTIONS(7966), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -174717,7 +183728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7840), 10, + ACTIONS(7928), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174728,13 +183739,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [139642] = 3, + anon_sym_BQUOTE, + [148095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4348), 2, + ACTIONS(8365), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4346), 20, + ACTIONS(8367), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174742,9 +183754,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -174754,14 +183768,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [139672] = 3, + [148126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4348), 2, + ACTIONS(8283), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4346), 20, + ACTIONS(8281), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174782,43 +183796,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [139702] = 6, + [148157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7980), 1, - anon_sym_LF, - ACTIONS(8124), 1, + ACTIONS(8384), 2, sym_file_descriptor, - STATE(2945), 1, - sym_file_redirect, - ACTIONS(7723), 8, + anon_sym_LF, + ACTIONS(8386), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7982), 11, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [148188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8291), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(8293), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [139738] = 3, + [148219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7642), 2, + ACTIONS(8371), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7644), 20, + ACTIONS(8369), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174839,13 +183880,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [139768] = 3, + [148250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8092), 2, + ACTIONS(8380), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8094), 20, + ACTIONS(8382), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174853,9 +183894,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -174865,14 +183908,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + [148281] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3991), 1, + sym__brace_start, + ACTIONS(8390), 1, + sym__special_character, + STATE(3077), 1, + aux_sym__literal_repeat1, + ACTIONS(3989), 20, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [148316] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8059), 1, + anon_sym_LF, + ACTIONS(8395), 1, + sym_file_descriptor, + STATE(3091), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(8392), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8054), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_BQUOTE, - [139798] = 3, + [148353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8158), 2, + ACTIONS(8295), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8160), 20, + ACTIONS(8297), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174880,9 +183983,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -174892,61 +183997,472 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + [148384] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3093), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8398), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1258), 8, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [139828] = 3, + sym_word, + ACTIONS(1263), 12, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [148419] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8009), 2, - sym_file_descriptor, + ACTIONS(1254), 1, + sym__brace_start, + ACTIONS(7981), 1, + aux_sym_concatenation_token1, + ACTIONS(8401), 1, + sym__concat, + STATE(2866), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1252), 18, + anon_sym_LPAREN_LPAREN, + anon_sym_LF, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [148455] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1276), 8, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1278), 14, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [148485] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8403), 1, + aux_sym_concatenation_token1, + ACTIONS(8405), 1, + sym__concat, + STATE(3114), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1246), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1248), 13, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [148521] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3096), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8403), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1242), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1244), 13, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [148555] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3096), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8403), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3989), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3991), 13, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [148589] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8059), 1, anon_sym_LF, - ACTIONS(8011), 20, + ACTIONS(8410), 1, + sym_file_descriptor, + STATE(3099), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(8407), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8054), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [148625] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1294), 8, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1296), 14, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [148655] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7930), 1, + anon_sym_LF, + ACTIONS(8413), 1, + sym_file_descriptor, + STATE(3099), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(8075), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(7928), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + [148691] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3103), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8403), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3985), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3987), 13, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [148725] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8403), 1, + aux_sym_concatenation_token1, + ACTIONS(8415), 1, + sym__concat, + STATE(3114), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1252), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [139858] = 13, + sym_word, + ACTIONS(1254), 13, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [148761] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7689), 1, + ACTIONS(1326), 8, anon_sym_LPAREN, - ACTIONS(7693), 1, anon_sym_DOLLAR, - ACTIONS(7695), 1, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1328), 14, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [148791] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1244), 1, + sym__brace_start, + ACTIONS(1242), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(7697), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(7699), 1, aux_sym_number_token2, - ACTIONS(7701), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7703), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7705), 1, anon_sym_BQUOTE, - ACTIONS(7707), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8186), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [148821] = 13, + ACTIONS(63), 1, + sym_comment, + ACTIONS(6828), 1, + anon_sym_DOLLAR, + ACTIONS(6834), 1, + aux_sym_number_token2, + ACTIONS(8165), 1, + anon_sym_LPAREN, + ACTIONS(8169), 1, + anon_sym_DQUOTE, + ACTIONS(8171), 1, + aux_sym_number_token1, + ACTIONS(8173), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8175), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8177), 1, + anon_sym_BQUOTE, + ACTIONS(8179), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8417), 1, + aux_sym__c_word_token1, + ACTIONS(8163), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2244), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [148871] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1322), 8, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1324), 14, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [148901] = 13, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8104), 1, + anon_sym_LPAREN, + ACTIONS(8108), 1, + anon_sym_DOLLAR, + ACTIONS(8110), 1, + anon_sym_DQUOTE, + ACTIONS(8112), 1, + aux_sym_number_token1, + ACTIONS(8114), 1, + aux_sym_number_token2, + ACTIONS(8116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8118), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8120), 1, + anon_sym_BQUOTE, + ACTIONS(8122), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8419), 1, aux_sym__c_word_token1, - ACTIONS(7687), 2, + ACTIONS(8102), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2232), 10, + STATE(2340), 10, sym__c_expression_not_assignment, sym__c_unary_expression, sym__c_binary_expression, @@ -174957,71 +184473,412 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [139908] = 3, + [148951] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1338), 8, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1340), 14, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [148981] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8100), 2, - sym_file_descriptor, + ACTIONS(8143), 1, anon_sym_LF, - ACTIONS(8102), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(8388), 1, + sym_file_descriptor, + STATE(3071), 1, + sym_file_redirect, + ACTIONS(7966), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(8141), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [139938] = 3, + [149017] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8138), 2, - sym_file_descriptor, + ACTIONS(8135), 1, anon_sym_LF, - ACTIONS(8140), 20, + ACTIONS(8388), 1, + sym_file_descriptor, + STATE(2988), 1, + sym_file_redirect, + ACTIONS(7966), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8133), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [149053] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1268), 8, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1270), 14, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [149083] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1268), 8, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1270), 14, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [149113] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3114), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8421), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1258), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1263), 13, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [149147] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1330), 8, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1332), 14, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [149177] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1244), 1, + sym__brace_start, + ACTIONS(7981), 1, + aux_sym_concatenation_token1, + ACTIONS(7983), 1, + sym__concat, + STATE(3120), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1242), 18, + anon_sym_LPAREN_LPAREN, + anon_sym_LF, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [149213] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1334), 8, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1336), 14, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [149243] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1258), 8, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1263), 14, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [149273] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8139), 1, + anon_sym_LF, + ACTIONS(8388), 1, + sym_file_descriptor, + STATE(3080), 1, + sym_file_redirect, + ACTIONS(7966), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(8137), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [139968] = 6, + [149309] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1248), 1, + sym__brace_start, + ACTIONS(7981), 1, + aux_sym_concatenation_token1, + ACTIONS(8424), 1, + sym__concat, + STATE(2866), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1246), 18, + anon_sym_LPAREN_LPAREN, + anon_sym_LF, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [149345] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1298), 8, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1300), 14, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [149375] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1318), 8, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1320), 14, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [149405] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8126), 1, + ACTIONS(8229), 1, sym_file_descriptor, - STATE(3026), 1, + STATE(3080), 1, sym_file_redirect, - ACTIONS(7934), 2, + ACTIONS(8139), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7713), 8, + ACTIONS(7934), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -175030,7 +184887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7936), 10, + ACTIONS(8137), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175041,43 +184898,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [140004] = 3, + [149441] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 3, + ACTIONS(8229), 1, sym_file_descriptor, + STATE(3071), 1, + sym_file_redirect, + ACTIONS(8143), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1270), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(7934), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(8141), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + [149477] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1284), 8, + anon_sym_LPAREN, + anon_sym_DOLLAR, sym__special_character, - [140034] = 6, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1286), 14, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [149507] = 13, + ACTIONS(63), 1, + sym_comment, + ACTIONS(6828), 1, + anon_sym_DOLLAR, + ACTIONS(6834), 1, + aux_sym_number_token2, + ACTIONS(8165), 1, + anon_sym_LPAREN, + ACTIONS(8169), 1, + anon_sym_DQUOTE, + ACTIONS(8171), 1, + aux_sym_number_token1, + ACTIONS(8173), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8175), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8177), 1, + anon_sym_BQUOTE, + ACTIONS(8179), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8426), 1, + aux_sym__c_word_token1, + ACTIONS(8163), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2260), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [149557] = 13, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7942), 1, + anon_sym_LPAREN, + ACTIONS(7946), 1, + anon_sym_DOLLAR, + ACTIONS(7948), 1, + anon_sym_DQUOTE, + ACTIONS(7950), 1, + aux_sym_number_token1, + ACTIONS(7952), 1, + aux_sym_number_token2, + ACTIONS(7954), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7956), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7958), 1, + anon_sym_BQUOTE, + ACTIONS(7960), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8428), 1, + aux_sym__c_word_token1, + ACTIONS(7940), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2301), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [149607] = 13, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7942), 1, + anon_sym_LPAREN, + ACTIONS(7946), 1, + anon_sym_DOLLAR, + ACTIONS(7948), 1, + anon_sym_DQUOTE, + ACTIONS(7950), 1, + aux_sym_number_token1, + ACTIONS(7952), 1, + aux_sym_number_token2, + ACTIONS(7954), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7956), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7958), 1, + anon_sym_BQUOTE, + ACTIONS(7960), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8430), 1, + aux_sym__c_word_token1, + ACTIONS(7940), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2319), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [149657] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7934), 1, - anon_sym_LF, - ACTIONS(8124), 1, + ACTIONS(8229), 1, sym_file_descriptor, - STATE(3004), 1, + STATE(2988), 1, sym_file_redirect, - ACTIONS(7723), 8, + ACTIONS(8135), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7934), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -175086,7 +185085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7936), 11, + ACTIONS(8133), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175097,71 +185096,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + [149693] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1280), 8, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1282), 14, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [149723] = 13, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8104), 1, + anon_sym_LPAREN, + ACTIONS(8108), 1, + anon_sym_DOLLAR, + ACTIONS(8110), 1, + anon_sym_DQUOTE, + ACTIONS(8112), 1, + aux_sym_number_token1, + ACTIONS(8114), 1, + aux_sym_number_token2, + ACTIONS(8116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8118), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8120), 1, + anon_sym_BQUOTE, + ACTIONS(8122), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8432), 1, + aux_sym__c_word_token1, + ACTIONS(8102), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2385), 10, + sym__c_expression_not_assignment, + sym__c_unary_expression, + sym__c_binary_expression, + sym__c_postfix_expression, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [149773] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1314), 8, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1316), 14, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [149803] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1272), 8, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [140070] = 3, + sym_word, + ACTIONS(1274), 14, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [149833] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8118), 2, - sym_file_descriptor, + ACTIONS(8135), 1, anon_sym_LF, - ACTIONS(8120), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(8359), 1, + sym_file_descriptor, + STATE(2988), 1, + sym_file_redirect, + ACTIONS(7924), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [140100] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8047), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8049), 20, + ACTIONS(8133), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [140130] = 6, + [149869] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7965), 1, + ACTIONS(8143), 1, anon_sym_LF, - ACTIONS(8124), 1, + ACTIONS(8359), 1, sym_file_descriptor, - STATE(2991), 1, + STATE(3071), 1, sym_file_redirect, - ACTIONS(7723), 8, + ACTIONS(7924), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -175170,35 +185262,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7967), 11, + ACTIONS(8141), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [140166] = 3, + [149905] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8146), 2, + ACTIONS(7848), 1, + aux_sym_concatenation_token1, + ACTIONS(7850), 1, + sym__concat, + STATE(3234), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 3, sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(8148), 20, - anon_sym_SEMI, + ACTIONS(1242), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -175207,79 +185303,460 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, + sym__special_character, + [149941] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1302), 8, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1304), 14, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [149971] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3991), 1, + sym__brace_start, + ACTIONS(7981), 1, + aux_sym_concatenation_token1, + ACTIONS(7983), 1, + sym__concat, + STATE(3120), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3989), 18, + anon_sym_LPAREN_LPAREN, + anon_sym_LF, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [140196] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [150007] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8067), 2, - sym_file_descriptor, + ACTIONS(3987), 1, + sym__brace_start, + ACTIONS(7981), 1, + aux_sym_concatenation_token1, + ACTIONS(7983), 1, + sym__concat, + STATE(3094), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3985), 18, + anon_sym_LPAREN_LPAREN, anon_sym_LF, - ACTIONS(8069), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [150043] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1346), 8, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1348), 14, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [150073] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1342), 8, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1344), 14, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [150103] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1310), 8, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1312), 14, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [150133] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8139), 1, + anon_sym_LF, + ACTIONS(8359), 1, + sym_file_descriptor, + STATE(3080), 1, + sym_file_redirect, + ACTIONS(7924), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [140226] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8114), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8116), 20, + ACTIONS(8137), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [150169] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, + aux_sym_unary_expression_token1, + ACTIONS(8440), 1, + anon_sym_DOLLAR, + ACTIONS(8442), 1, + aux_sym_number_token1, + ACTIONS(8444), 1, + aux_sym_number_token2, + ACTIONS(8446), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8448), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8450), 1, + sym_test_operator, + ACTIONS(8452), 1, + sym_variable_name, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(1909), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_unary_expression, + sym__arithmetic_postfix_expression, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [150220] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, + aux_sym_unary_expression_token1, + ACTIONS(8440), 1, + anon_sym_DOLLAR, + ACTIONS(8442), 1, + aux_sym_number_token1, + ACTIONS(8444), 1, + aux_sym_number_token2, + ACTIONS(8446), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8452), 1, + sym_variable_name, + ACTIONS(8454), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8456), 1, + sym_test_operator, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(1837), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_unary_expression, + sym__arithmetic_postfix_expression, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [150271] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, + aux_sym_unary_expression_token1, + ACTIONS(8440), 1, + anon_sym_DOLLAR, + ACTIONS(8442), 1, + aux_sym_number_token1, + ACTIONS(8444), 1, + aux_sym_number_token2, + ACTIONS(8446), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8452), 1, + sym_variable_name, + ACTIONS(8458), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8460), 1, + sym_test_operator, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(2067), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_unary_expression, + sym__arithmetic_postfix_expression, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [150322] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, + aux_sym_unary_expression_token1, + ACTIONS(8440), 1, + anon_sym_DOLLAR, + ACTIONS(8442), 1, + aux_sym_number_token1, + ACTIONS(8444), 1, + aux_sym_number_token2, + ACTIONS(8446), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8452), 1, + sym_variable_name, + ACTIONS(8462), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8464), 1, + sym_test_operator, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(1866), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_unary_expression, + sym__arithmetic_postfix_expression, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [150373] = 10, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7794), 1, + anon_sym_PIPE, + ACTIONS(8466), 1, + anon_sym_LT_LT, + ACTIONS(8475), 1, + anon_sym_LT_LT_DASH, + ACTIONS(8478), 1, + anon_sym_LT_LT_LT, + ACTIONS(8481), 1, + sym_file_descriptor, + ACTIONS(8472), 3, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP_GT, + ACTIONS(7802), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + STATE(3148), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8469), 5, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, + [150416] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8488), 1, + anon_sym_esac, + ACTIONS(8484), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8486), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [150447] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1280), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [140256] = 3, + sym_word, + ACTIONS(1282), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [150476] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7614), 2, + ACTIONS(7848), 1, + aux_sym_concatenation_token1, + ACTIONS(7850), 1, + sym__concat, + STATE(3236), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3839), 3, sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(7616), 20, - anon_sym_SEMI, + ACTIONS(3837), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -175288,18 +185765,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, + [150511] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, + aux_sym_unary_expression_token1, + ACTIONS(8440), 1, + anon_sym_DOLLAR, + ACTIONS(8442), 1, + aux_sym_number_token1, + ACTIONS(8444), 1, + aux_sym_number_token2, + ACTIONS(8446), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8452), 1, + sym_variable_name, + ACTIONS(8490), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8492), 1, + sym_test_operator, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(1751), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_unary_expression, + sym__arithmetic_postfix_expression, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [150562] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1294), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1296), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [150591] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, + aux_sym_unary_expression_token1, + ACTIONS(8440), 1, + anon_sym_DOLLAR, + ACTIONS(8442), 1, + aux_sym_number_token1, + ACTIONS(8444), 1, + aux_sym_number_token2, + ACTIONS(8446), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8452), 1, + sym_variable_name, + ACTIONS(8494), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8496), 1, + sym_test_operator, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(1924), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_unary_expression, + sym__arithmetic_postfix_expression, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [150642] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8502), 1, + anon_sym_esac, + ACTIONS(8498), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8500), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [140286] = 6, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [150673] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8504), 1, + anon_sym_LPAREN, + ACTIONS(8506), 1, + anon_sym_BANG, + ACTIONS(8508), 1, + aux_sym_unary_expression_token1, + ACTIONS(8510), 1, + anon_sym_DOLLAR, + ACTIONS(8512), 1, + aux_sym_number_token1, + ACTIONS(8514), 1, + aux_sym_number_token2, + ACTIONS(8516), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8518), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8520), 1, + sym_test_operator, + ACTIONS(8522), 1, + sym_variable_name, + STATE(2036), 1, + sym__arithmetic_ternary_expression, + STATE(2145), 1, + sym__arithmetic_binary_expression, + STATE(2104), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_unary_expression, + sym__arithmetic_postfix_expression, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [150724] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7934), 1, + ACTIONS(8135), 1, anon_sym_LF, - ACTIONS(8122), 1, + ACTIONS(8413), 1, sym_file_descriptor, - STATE(3004), 1, + STATE(2988), 1, sym_file_redirect, - ACTIONS(7740), 8, + ACTIONS(8075), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -175308,91 +185947,385 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7936), 11, + ACTIONS(8133), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [140322] = 5, - ACTIONS(3), 1, + [150759] = 4, + ACTIONS(63), 1, sym_comment, - ACTIONS(1363), 1, + ACTIONS(8528), 1, + anon_sym_esac, + ACTIONS(8524), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8526), 14, + sym_extglob_pattern, sym__brace_start, - ACTIONS(8188), 1, - sym__special_character, - STATE(2998), 1, - aux_sym__literal_repeat1, - ACTIONS(1358), 19, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [150790] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, + aux_sym_unary_expression_token1, + ACTIONS(8440), 1, + anon_sym_DOLLAR, + ACTIONS(8442), 1, aux_sym_number_token1, + ACTIONS(8444), 1, aux_sym_number_token2, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(8452), 1, + sym_variable_name, + ACTIONS(8530), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8532), 1, + sym_test_operator, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(1838), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_unary_expression, + sym__arithmetic_postfix_expression, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [150841] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8528), 1, + anon_sym_esac, + ACTIONS(8524), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8526), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_test_operator, + [150872] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1276), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, + ACTIONS(1278), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [140356] = 3, + [150901] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8077), 2, - sym_file_descriptor, + ACTIONS(8143), 1, anon_sym_LF, - ACTIONS(8079), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(8413), 1, + sym_file_descriptor, + STATE(3071), 1, + sym_file_redirect, + ACTIONS(8075), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(8141), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + [150936] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, + aux_sym_unary_expression_token1, + ACTIONS(8440), 1, + anon_sym_DOLLAR, + ACTIONS(8442), 1, + aux_sym_number_token1, + ACTIONS(8444), 1, + aux_sym_number_token2, + ACTIONS(8446), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8452), 1, + sym_variable_name, + ACTIONS(8534), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8536), 1, + sym_test_operator, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(1846), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_unary_expression, + sym__arithmetic_postfix_expression, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [150987] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, + aux_sym_unary_expression_token1, + ACTIONS(8440), 1, + anon_sym_DOLLAR, + ACTIONS(8442), 1, + aux_sym_number_token1, + ACTIONS(8444), 1, + aux_sym_number_token2, + ACTIONS(8446), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8452), 1, + sym_variable_name, + ACTIONS(8538), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8540), 1, + sym_test_operator, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(1835), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_unary_expression, + sym__arithmetic_postfix_expression, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [151038] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, + aux_sym_unary_expression_token1, + ACTIONS(8440), 1, + anon_sym_DOLLAR, + ACTIONS(8442), 1, + aux_sym_number_token1, + ACTIONS(8444), 1, + aux_sym_number_token2, + ACTIONS(8446), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8452), 1, + sym_variable_name, + ACTIONS(8542), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8544), 1, + sym_test_operator, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(1945), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_unary_expression, + sym__arithmetic_postfix_expression, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [151089] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, + aux_sym_unary_expression_token1, + ACTIONS(8440), 1, + anon_sym_DOLLAR, + ACTIONS(8442), 1, + aux_sym_number_token1, + ACTIONS(8444), 1, + aux_sym_number_token2, + ACTIONS(8446), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8452), 1, + sym_variable_name, + ACTIONS(8546), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8548), 1, + sym_test_operator, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(1850), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_unary_expression, + sym__arithmetic_postfix_expression, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [151140] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1298), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1300), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [151169] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8554), 1, + anon_sym_esac, + ACTIONS(8550), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8552), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [140386] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [151200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8067), 2, + ACTIONS(8556), 1, + sym_variable_name, + STATE(4367), 1, + sym_subscript, + ACTIONS(7822), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8069), 20, - anon_sym_SEMI, + STATE(3262), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7820), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -175401,226 +186334,358 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, + [151235] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1302), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1304), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [151264] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1310), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1312), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [151293] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, + aux_sym_unary_expression_token1, + ACTIONS(8440), 1, + anon_sym_DOLLAR, + ACTIONS(8442), 1, + aux_sym_number_token1, + ACTIONS(8444), 1, + aux_sym_number_token2, + ACTIONS(8446), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8452), 1, + sym_variable_name, + ACTIONS(8558), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8560), 1, + sym_test_operator, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(1762), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_unary_expression, + sym__arithmetic_postfix_expression, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [151344] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, + aux_sym_unary_expression_token1, + ACTIONS(8440), 1, + anon_sym_DOLLAR, + ACTIONS(8442), 1, + aux_sym_number_token1, + ACTIONS(8444), 1, + aux_sym_number_token2, + ACTIONS(8446), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8452), 1, + sym_variable_name, + ACTIONS(8562), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8564), 1, + sym_test_operator, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(1887), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_unary_expression, + sym__arithmetic_postfix_expression, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [151395] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1258), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1263), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [151424] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8570), 1, + anon_sym_esac, + ACTIONS(8566), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8568), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [151455] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, + aux_sym_unary_expression_token1, + ACTIONS(8440), 1, + anon_sym_DOLLAR, + ACTIONS(8442), 1, + aux_sym_number_token1, + ACTIONS(8444), 1, + aux_sym_number_token2, + ACTIONS(8446), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8452), 1, + sym_variable_name, + ACTIONS(8572), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8574), 1, + sym_test_operator, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(1768), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_unary_expression, + sym__arithmetic_postfix_expression, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [151506] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8502), 1, + anon_sym_esac, + ACTIONS(8498), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8500), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [151537] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1338), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [140416] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7980), 1, - anon_sym_LF, - ACTIONS(8122), 1, - sym_file_descriptor, - STATE(2945), 1, - sym_file_redirect, - ACTIONS(7740), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7982), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + sym_word, + ACTIONS(1340), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [140452] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [151566] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8063), 2, - sym_file_descriptor, + ACTIONS(8139), 1, anon_sym_LF, - ACTIONS(8065), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [140482] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8059), 2, + ACTIONS(8413), 1, sym_file_descriptor, - anon_sym_LF, - ACTIONS(8061), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + STATE(3080), 1, + sym_file_redirect, + ACTIONS(8075), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [140512] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8084), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8086), 20, + ACTIONS(8137), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [140542] = 3, - ACTIONS(3), 1, + [151601] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8039), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8041), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, + ACTIONS(1314), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [140572] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8023), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8025), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, + sym_word, + ACTIONS(1316), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [140602] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8142), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8144), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [140631] = 13, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [151630] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8205), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - STATE(1675), 1, + ACTIONS(8576), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8578), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1882), 9, + STATE(1874), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -175630,68 +186695,34 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [140680] = 12, - ACTIONS(63), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_RBRACK, - ACTIONS(4333), 1, - anon_sym_LT_LT, - ACTIONS(4335), 1, - anon_sym_PIPE, - ACTIONS(4337), 1, - anon_sym_PIPE_AMP, - ACTIONS(4339), 1, - anon_sym_LT_LT_DASH, - ACTIONS(4341), 1, - anon_sym_LT_LT_LT, - ACTIONS(8213), 1, - sym_file_descriptor, - ACTIONS(4331), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8211), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(3124), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8209), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [140727] = 13, + [151681] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8215), 1, + ACTIONS(8580), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8582), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1939), 9, + STATE(1879), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -175701,26 +186732,23 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [140776] = 6, + [151732] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8217), 1, - aux_sym_concatenation_token1, - ACTIONS(8219), 1, - sym__concat, - STATE(3029), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1264), 6, + ACTIONS(1284), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1266), 12, + ACTIONS(1286), 15, + sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -175730,59 +186758,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [140811] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8092), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8094), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [140840] = 13, + [151761] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8221), 1, + ACTIONS(8584), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8586), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, + STATE(1755), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_unary_expression, + sym__arithmetic_postfix_expression, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [151812] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, anon_sym_BANG, + ACTIONS(8438), 1, + aux_sym_unary_expression_token1, + ACTIONS(8440), 1, + anon_sym_DOLLAR, + ACTIONS(8442), 1, + aux_sym_number_token1, + ACTIONS(8444), 1, + aux_sym_number_token2, + ACTIONS(8446), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8452), 1, + sym_variable_name, + ACTIONS(8588), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8590), 1, sym_test_operator, - STATE(1948), 9, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(1760), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -175792,15 +186832,20 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [140889] = 3, + [151863] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8092), 3, + ACTIONS(7848), 1, + aux_sym_concatenation_token1, + ACTIONS(7850), 1, + sym__concat, + STATE(3234), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3843), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, anon_sym_LF, - ACTIONS(8094), 18, - anon_sym_SEMI, + ACTIONS(3841), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -175808,7 +186853,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -175817,89 +186861,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - [140918] = 6, + [151898] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8217), 1, - aux_sym_concatenation_token1, - ACTIONS(8223), 1, - sym__concat, - STATE(3029), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 6, + ACTIONS(8434), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, + aux_sym_unary_expression_token1, + ACTIONS(8440), 1, + anon_sym_DOLLAR, + ACTIONS(8442), 1, + aux_sym_number_token1, + ACTIONS(8444), 1, + aux_sym_number_token2, + ACTIONS(8446), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8452), 1, + sym_variable_name, + ACTIONS(8592), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8594), 1, + sym_test_operator, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(1896), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_unary_expression, + sym__arithmetic_postfix_expression, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [151949] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8600), 1, + anon_sym_esac, + ACTIONS(8596), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8598), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [151980] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8606), 1, + anon_sym_esac, + ACTIONS(8602), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1260), 12, + ACTIONS(8604), 14, + sym_extglob_pattern, sym__brace_start, - anon_sym_RPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [140953] = 3, - ACTIONS(3), 1, + [152011] = 4, + ACTIONS(63), 1, sym_comment, - ACTIONS(8138), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8140), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [140982] = 13, + ACTIONS(8554), 1, + anon_sym_esac, + ACTIONS(8550), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8552), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [152042] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8225), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8229), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8231), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8233), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8235), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8237), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8239), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8241), 1, + ACTIONS(8452), 1, sym_variable_name, - STATE(1993), 1, - sym__arithmetic_binary_expression, - STATE(1995), 1, - sym__arithmetic_ternary_expression, - ACTIONS(8227), 2, - anon_sym_BANG, + ACTIONS(8608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8610), 1, sym_test_operator, - STATE(2008), 9, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(1897), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -175909,33 +187016,34 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [141031] = 13, + [152093] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8225), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8229), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8231), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8233), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8235), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8237), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8241), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8243), 1, + ACTIONS(8612), 1, aux_sym__simple_variable_name_token1, - STATE(1993), 1, - sym__arithmetic_binary_expression, - STATE(1995), 1, - sym__arithmetic_ternary_expression, - ACTIONS(8227), 2, - anon_sym_BANG, + ACTIONS(8614), 1, sym_test_operator, - STATE(2009), 9, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(1825), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -175945,62 +187053,71 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [141080] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7980), 1, - anon_sym_LF, - ACTIONS(8184), 1, - sym_file_descriptor, - STATE(2945), 1, - sym_file_redirect, - ACTIONS(7861), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7982), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [141115] = 13, + [152144] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8245), 1, + ACTIONS(8616), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8618), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, + STATE(1904), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_unary_expression, + sym__arithmetic_postfix_expression, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [152195] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, anon_sym_BANG, + ACTIONS(8438), 1, + aux_sym_unary_expression_token1, + ACTIONS(8440), 1, + anon_sym_DOLLAR, + ACTIONS(8442), 1, + aux_sym_number_token1, + ACTIONS(8444), 1, + aux_sym_number_token2, + ACTIONS(8446), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8452), 1, + sym_variable_name, + ACTIONS(8620), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8622), 1, sym_test_operator, - STATE(1943), 9, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(1743), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -176010,148 +187127,135 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [141164] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8146), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8148), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [141193] = 12, + [152246] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(143), 1, - anon_sym_RBRACK, - ACTIONS(4333), 1, - anon_sym_LT_LT, - ACTIONS(4335), 1, - anon_sym_PIPE, - ACTIONS(4337), 1, - anon_sym_PIPE_AMP, - ACTIONS(4339), 1, - anon_sym_LT_LT_DASH, - ACTIONS(4341), 1, - anon_sym_LT_LT_LT, - ACTIONS(8213), 1, - sym_file_descriptor, - ACTIONS(4331), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8211), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(3124), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8209), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [141240] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7642), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(7644), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [141269] = 5, + ACTIONS(8628), 1, + anon_sym_esac, + ACTIONS(8624), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8626), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [152277] = 14, ACTIONS(63), 1, sym_comment, - STATE(3214), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8247), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1270), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1272), 13, - sym_file_descriptor, + ACTIONS(8434), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, + aux_sym_unary_expression_token1, + ACTIONS(8440), 1, + anon_sym_DOLLAR, + ACTIONS(8442), 1, + aux_sym_number_token1, + ACTIONS(8444), 1, + aux_sym_number_token2, + ACTIONS(8446), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8452), 1, sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [141302] = 13, + ACTIONS(8630), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8632), 1, + sym_test_operator, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(1905), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_unary_expression, + sym__arithmetic_postfix_expression, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [152328] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8249), 1, + ACTIONS(8634), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8636), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, + STATE(1869), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_unary_expression, + sym__arithmetic_postfix_expression, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [152379] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, anon_sym_BANG, + ACTIONS(8438), 1, + aux_sym_unary_expression_token1, + ACTIONS(8440), 1, + anon_sym_DOLLAR, + ACTIONS(8442), 1, + aux_sym_number_token1, + ACTIONS(8444), 1, + aux_sym_number_token2, + ACTIONS(8446), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8452), 1, + sym_variable_name, + ACTIONS(8638), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8640), 1, sym_test_operator, - STATE(1938), 9, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(1750), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -176161,59 +187265,61 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [141351] = 3, - ACTIONS(3), 1, + [152430] = 4, + ACTIONS(63), 1, sym_comment, - ACTIONS(8084), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8086), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [141380] = 13, + ACTIONS(8646), 1, + anon_sym_esac, + ACTIONS(8642), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8644), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [152461] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8251), 1, + ACTIONS(8648), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8650), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1949), 9, + STATE(1829), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -176223,33 +187329,160 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [141429] = 13, + [152512] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8253), 1, + ACTIONS(8652), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8654), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, + STATE(1872), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_unary_expression, + sym__arithmetic_postfix_expression, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [152563] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8600), 1, + anon_sym_esac, + ACTIONS(8596), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8598), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [152594] = 12, + ACTIONS(63), 1, + sym_comment, + ACTIONS(77), 1, + anon_sym_RBRACK, + ACTIONS(4440), 1, + anon_sym_PIPE, + ACTIONS(4442), 1, + anon_sym_PIPE_AMP, + ACTIONS(4449), 1, + anon_sym_LT_LT, + ACTIONS(4451), 1, + anon_sym_LT_LT_DASH, + ACTIONS(4453), 1, + anon_sym_LT_LT_LT, + ACTIONS(8660), 1, + sym_file_descriptor, + ACTIONS(4447), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(8658), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(3215), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8656), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [152641] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8666), 1, + anon_sym_esac, + ACTIONS(8662), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8664), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [152672] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, anon_sym_BANG, + ACTIONS(8438), 1, + aux_sym_unary_expression_token1, + ACTIONS(8440), 1, + anon_sym_DOLLAR, + ACTIONS(8442), 1, + aux_sym_number_token1, + ACTIONS(8444), 1, + aux_sym_number_token2, + ACTIONS(8446), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8452), 1, + sym_variable_name, + ACTIONS(8668), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8670), 1, sym_test_operator, - STATE(1902), 9, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(1911), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -176259,25 +187492,23 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [141478] = 5, + [152723] = 3, ACTIONS(63), 1, sym_comment, - STATE(3029), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8255), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1274), 6, + ACTIONS(1268), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1279), 12, + ACTIONS(1270), 15, + sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -176287,33 +187518,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [141511] = 13, + [152752] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8225), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8229), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8231), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8233), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8235), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8237), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8241), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8258), 1, + ACTIONS(8672), 1, aux_sym__simple_variable_name_token1, - STATE(1993), 1, - sym__arithmetic_binary_expression, - STATE(1995), 1, - sym__arithmetic_ternary_expression, - ACTIONS(8227), 2, - anon_sym_BANG, + ACTIONS(8674), 1, sym_test_operator, - STATE(1913), 9, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(1736), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -176323,33 +187555,34 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [141560] = 13, + [152803] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8260), 1, + ACTIONS(8676), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8678), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1937), 9, + STATE(1759), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -176359,33 +187592,148 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [141609] = 13, + [152854] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1326), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1328), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [152883] = 12, + ACTIONS(63), 1, + sym_comment, + ACTIONS(127), 1, + anon_sym_RBRACK, + ACTIONS(4440), 1, + anon_sym_PIPE, + ACTIONS(4442), 1, + anon_sym_PIPE_AMP, + ACTIONS(4449), 1, + anon_sym_LT_LT, + ACTIONS(4451), 1, + anon_sym_LT_LT_DASH, + ACTIONS(4453), 1, + anon_sym_LT_LT_LT, + ACTIONS(8660), 1, + sym_file_descriptor, + ACTIONS(4447), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(8658), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(3215), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8656), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [152930] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8684), 1, + anon_sym_esac, + ACTIONS(8680), 6, anon_sym_LPAREN, - ACTIONS(8195), 1, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8682), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [152961] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1268), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1270), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [152990] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8262), 1, + ACTIONS(8686), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8688), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1950), 9, + STATE(1737), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -176395,33 +187743,95 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [141658] = 13, + [153041] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8690), 1, + sym__special_character, + STATE(3214), 1, + aux_sym__literal_repeat1, + ACTIONS(1352), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1357), 13, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [153074] = 10, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4449), 1, + anon_sym_LT_LT, + ACTIONS(4451), 1, + anon_sym_LT_LT_DASH, + ACTIONS(4453), 1, + anon_sym_LT_LT_LT, + ACTIONS(7812), 1, + anon_sym_PIPE, + ACTIONS(8660), 1, + sym_file_descriptor, + ACTIONS(8658), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(7814), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + STATE(3148), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8656), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [153117] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8264), 1, + ACTIONS(8693), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8695), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1936), 9, + STATE(1927), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -176431,69 +187841,89 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [141707] = 13, + [153168] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8697), 1, + sym__special_character, + STATE(3214), 1, + aux_sym__literal_repeat1, + ACTIONS(8231), 6, anon_sym_LPAREN, - ACTIONS(8195), 1, - aux_sym_unary_expression_token1, - ACTIONS(8197), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, aux_sym_number_token1, - ACTIONS(8201), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8233), 13, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, - sym_variable_name, - ACTIONS(8266), 1, - aux_sym__simple_variable_name_token1, - STATE(1675), 1, - sym__arithmetic_ternary_expression, - STATE(1680), 1, - sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, + anon_sym_RBRACE3, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - STATE(1930), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [141756] = 13, + [153201] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8703), 1, + anon_sym_esac, + ACTIONS(8699), 6, anon_sym_LPAREN, - ACTIONS(8195), 1, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8701), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [153232] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8268), 1, + ACTIONS(8705), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8707), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(2017), 9, + STATE(1715), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -176503,33 +187933,34 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [141805] = 13, + [153283] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8504), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8506), 1, + anon_sym_BANG, + ACTIONS(8508), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8510), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8512), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8514), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8516), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8522), 1, sym_variable_name, - ACTIONS(8270), 1, + ACTIONS(8709), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8711), 1, + sym_test_operator, + STATE(2036), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(2145), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1712), 9, + STATE(2116), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -176539,33 +187970,91 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [141854] = 13, + [153334] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4308), 1, + anon_sym_LT_LT_LT, + ACTIONS(7814), 1, + anon_sym_LF, + ACTIONS(8715), 1, + sym_file_descriptor, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(7812), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(3226), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8713), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [153373] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1342), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1344), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [153402] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8272), 1, + ACTIONS(8717), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8719), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1951), 9, + STATE(1730), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -176575,15 +188064,50 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [141903] = 3, + [153453] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8158), 3, + ACTIONS(4308), 1, + anon_sym_LT_LT_LT, + ACTIONS(8715), 1, sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(8721), 1, anon_sym_LF, - ACTIONS(8160), 18, - anon_sym_SEMI, + ACTIONS(3430), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4272), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4304), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(3221), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8713), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [153494] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3306), 2, + sym_file_descriptor, + anon_sym_LF, + STATE(3221), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3304), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -176591,7 +188115,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -176600,70 +188123,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - [141932] = 13, + [153525] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7802), 1, + anon_sym_LF, + ACTIONS(8726), 1, + anon_sym_LT_LT_LT, + ACTIONS(8729), 1, + sym_file_descriptor, + ACTIONS(7912), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(7794), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(3226), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8723), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [153564] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, - anon_sym_LPAREN, - ACTIONS(8195), 1, - aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(1346), 6, anon_sym_DOLLAR, - ACTIONS(8199), 1, aux_sym_number_token1, - ACTIONS(8201), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1348), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, - sym_variable_name, - ACTIONS(8274), 1, - aux_sym__simple_variable_name_token1, - STATE(1675), 1, - sym__arithmetic_ternary_expression, - STATE(1680), 1, - sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - STATE(1952), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [141981] = 13, + [153593] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8276), 1, + ACTIONS(8732), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8734), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1758), 9, + STATE(1732), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -176673,141 +188217,112 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [142030] = 13, + [153644] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, - anon_sym_LPAREN, - ACTIONS(8195), 1, - aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(1272), 6, anon_sym_DOLLAR, - ACTIONS(8199), 1, aux_sym_number_token1, - ACTIONS(8201), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1274), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, - sym_variable_name, - ACTIONS(8278), 1, - aux_sym__simple_variable_name_token1, - STATE(1675), 1, - sym__arithmetic_ternary_expression, - STATE(1680), 1, - sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - STATE(1922), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [142079] = 13, + [153673] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, - anon_sym_LPAREN, - ACTIONS(8195), 1, - aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(1318), 6, anon_sym_DOLLAR, - ACTIONS(8199), 1, aux_sym_number_token1, - ACTIONS(8201), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1320), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, - sym_variable_name, - ACTIONS(8280), 1, - aux_sym__simple_variable_name_token1, - STATE(1675), 1, - sym__arithmetic_ternary_expression, - STATE(1680), 1, - sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - STATE(1929), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [142128] = 13, + [153702] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, - anon_sym_LPAREN, - ACTIONS(8195), 1, - aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(1334), 6, anon_sym_DOLLAR, - ACTIONS(8199), 1, aux_sym_number_token1, - ACTIONS(8201), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1336), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, - sym_variable_name, - ACTIONS(8282), 1, - aux_sym__simple_variable_name_token1, - STATE(1675), 1, - sym__arithmetic_ternary_expression, - STATE(1680), 1, - sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - STATE(1927), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [142177] = 13, + [153731] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8225), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8229), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8231), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8233), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8235), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8237), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8241), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8284), 1, + ACTIONS(8736), 1, aux_sym__simple_variable_name_token1, - STATE(1993), 1, - sym__arithmetic_binary_expression, - STATE(1995), 1, - sym__arithmetic_ternary_expression, - ACTIONS(8227), 2, - anon_sym_BANG, + ACTIONS(8738), 1, sym_test_operator, - STATE(1907), 9, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(1723), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -176817,15 +188332,19 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [142226] = 3, + [153782] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8005), 3, + ACTIONS(7908), 1, + aux_sym_concatenation_token1, + ACTIONS(7910), 1, + sym__concat, + STATE(3436), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1244), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8007), 18, - anon_sym_SEMI, + ACTIONS(1242), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -176833,7 +188352,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -176842,26 +188360,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - [142255] = 5, - ACTIONS(63), 1, + sym__special_character, + [153817] = 6, + ACTIONS(3), 1, sym_comment, - STATE(3011), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8217), 2, - sym__concat, + ACTIONS(7848), 1, aux_sym_concatenation_token1, - ACTIONS(1270), 6, + ACTIONS(8740), 1, + sym__concat, + STATE(2712), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1246), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [153852] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1330), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1272), 12, + ACTIONS(1332), 15, + sym__concat, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -176871,15 +188416,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [142288] = 3, + [153881] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8047), 3, + ACTIONS(7848), 1, + aux_sym_concatenation_token1, + ACTIONS(8742), 1, + sym__concat, + STATE(2712), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, anon_sym_LF, - ACTIONS(8049), 18, - anon_sym_SEMI, + ACTIONS(1252), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -176887,7 +188437,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -176896,34 +188445,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - [142317] = 13, + [153916] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8286), 1, + ACTIONS(8744), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8746), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1953), 9, + STATE(1820), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -176933,121 +188482,89 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [142366] = 13, + [153967] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8666), 1, + anon_sym_esac, + ACTIONS(8662), 6, anon_sym_LPAREN, - ACTIONS(8195), 1, - aux_sym_unary_expression_token1, - ACTIONS(8197), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, aux_sym_number_token1, - ACTIONS(8201), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8664), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, - sym_variable_name, - ACTIONS(8288), 1, - aux_sym__simple_variable_name_token1, - STATE(1675), 1, - sym__arithmetic_ternary_expression, - STATE(1680), 1, - sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - STATE(1923), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [142415] = 3, - ACTIONS(3), 1, + [153998] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(8055), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8057), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(3465), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8748), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1242), 5, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [142444] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8077), 3, + ACTIONS(1244), 13, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8079), 18, - anon_sym_SEMI, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - [142473] = 13, + sym__special_character, + [154031] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8290), 1, + ACTIONS(8750), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8752), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1954), 9, + STATE(1726), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -177057,85 +188574,61 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [142522] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8104), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8106), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [142551] = 3, - ACTIONS(3), 1, + [154082] = 4, + ACTIONS(63), 1, sym_comment, - ACTIONS(8043), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8045), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [142580] = 13, + ACTIONS(8758), 1, + anon_sym_esac, + ACTIONS(8754), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8756), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [154113] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8292), 1, + ACTIONS(8760), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8762), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1955), 9, + STATE(2041), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -177145,33 +188638,34 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [142629] = 13, + [154164] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8294), 1, + ACTIONS(8764), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8766), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1921), 9, + STATE(1718), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -177181,143 +188675,34 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [142678] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8035), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8037), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [142707] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8029), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8031), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [142736] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7934), 1, - anon_sym_LF, - ACTIONS(8184), 1, - sym_file_descriptor, - STATE(3004), 1, - sym_file_redirect, - ACTIONS(7861), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7936), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [142771] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7965), 1, - anon_sym_LF, - ACTIONS(8184), 1, - sym_file_descriptor, - STATE(2991), 1, - sym_file_redirect, - ACTIONS(7861), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7967), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [142806] = 13, + [154215] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8296), 1, + ACTIONS(8768), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8770), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1917), 9, + STATE(1921), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -177327,85 +188712,60 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [142855] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8063), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8065), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [142884] = 3, - ACTIONS(3), 1, + [154266] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1272), 1, + ACTIONS(1322), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1324), 15, + sym__concat, sym__brace_start, - ACTIONS(1270), 20, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [142913] = 13, + [154295] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8298), 1, + ACTIONS(8772), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8774), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1909), 9, + STATE(1863), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -177415,59 +188775,34 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [142962] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8039), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8041), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [142991] = 13, + [154346] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8300), 1, + ACTIONS(8776), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8778), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1956), 9, + STATE(1719), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -177477,59 +188812,34 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [143040] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8023), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8025), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [143069] = 13, + [154397] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8504), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8506), 1, + anon_sym_BANG, + ACTIONS(8508), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8510), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8512), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8514), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8516), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8522), 1, sym_variable_name, - ACTIONS(8302), 1, + ACTIONS(8780), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8782), 1, + sym_test_operator, + STATE(2036), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(2145), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1960), 9, + STATE(2110), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -177539,33 +188849,34 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [143118] = 13, + [154448] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8304), 1, + ACTIONS(8784), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8786), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1915), 9, + STATE(1777), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -177575,59 +188886,88 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [143167] = 3, - ACTIONS(3), 1, + [154499] = 4, + ACTIONS(63), 1, sym_comment, - ACTIONS(8019), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8021), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [143196] = 13, + ACTIONS(8792), 1, + anon_sym_esac, + ACTIONS(8788), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8790), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [154530] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8684), 1, + anon_sym_esac, + ACTIONS(8680), 6, anon_sym_LPAREN, - ACTIONS(8195), 1, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8682), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [154561] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8306), 1, + ACTIONS(8794), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8796), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1962), 9, + STATE(1739), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -177637,59 +188977,88 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [143245] = 3, - ACTIONS(3), 1, + [154612] = 4, + ACTIONS(63), 1, sym_comment, - ACTIONS(8051), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8053), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [143274] = 13, + ACTIONS(8802), 1, + anon_sym_esac, + ACTIONS(8798), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8800), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [154643] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8606), 1, + anon_sym_esac, + ACTIONS(8602), 6, anon_sym_LPAREN, - ACTIONS(8195), 1, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8604), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [154674] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8504), 1, + anon_sym_LPAREN, + ACTIONS(8506), 1, + anon_sym_BANG, + ACTIONS(8508), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8510), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8512), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8514), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8516), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8522), 1, sym_variable_name, - ACTIONS(8308), 1, + ACTIONS(8804), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8806), 1, + sym_test_operator, + STATE(2036), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(2145), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1947), 9, + STATE(2099), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -177699,33 +189068,61 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [143323] = 13, + [154725] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8646), 1, + anon_sym_esac, + ACTIONS(8642), 6, anon_sym_LPAREN, - ACTIONS(8195), 1, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8644), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [154756] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8504), 1, + anon_sym_LPAREN, + ACTIONS(8506), 1, + anon_sym_BANG, + ACTIONS(8508), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8510), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8512), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8514), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8516), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8522), 1, sym_variable_name, - ACTIONS(8310), 1, + ACTIONS(8808), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8810), 1, + sym_test_operator, + STATE(2036), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(2145), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1912), 9, + STATE(2066), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -177735,33 +189132,34 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [143372] = 13, + [154807] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8312), 1, + ACTIONS(8812), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8814), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1910), 9, + STATE(1781), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -177771,33 +189169,34 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [143421] = 13, + [154858] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8314), 1, + ACTIONS(8816), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8818), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1963), 9, + STATE(1802), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -177807,33 +189206,62 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [143470] = 13, + [154909] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3334), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8820), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1242), 6, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + sym__special_character, + ACTIONS(1244), 12, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [154942] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8316), 1, + ACTIONS(8822), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8824), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1965), 9, + STATE(1818), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -177843,15 +189271,20 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [143519] = 3, + [154993] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8826), 1, + sym_variable_name, + STATE(4367), 1, + sym_subscript, + ACTIONS(7789), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8098), 18, - anon_sym_SEMI, + STATE(3262), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7787), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -177859,7 +189292,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -177868,34 +189300,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - [143548] = 13, + [155028] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8318), 1, + ACTIONS(8829), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8831), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, + STATE(1821), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_unary_expression, + sym__arithmetic_postfix_expression, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [155079] = 14, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, anon_sym_BANG, + ACTIONS(8438), 1, + aux_sym_unary_expression_token1, + ACTIONS(8440), 1, + anon_sym_DOLLAR, + ACTIONS(8442), 1, + aux_sym_number_token1, + ACTIONS(8444), 1, + aux_sym_number_token2, + ACTIONS(8446), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8452), 1, + sym_variable_name, + ACTIONS(8833), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8835), 1, sym_test_operator, - STATE(1901), 9, + STATE(1794), 1, + sym__arithmetic_ternary_expression, + STATE(1848), 1, + sym__arithmetic_binary_expression, + STATE(1862), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -177905,137 +189374,69 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [143597] = 3, - ACTIONS(3), 1, + [155130] = 12, + ACTIONS(63), 1, sym_comment, - ACTIONS(8118), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8120), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(137), 1, + anon_sym_RBRACK, + ACTIONS(4440), 1, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + ACTIONS(4442), 1, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [143626] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8154), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8156), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4449), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(4451), 1, anon_sym_LT_LT_DASH, + ACTIONS(4453), 1, anon_sym_LT_LT_LT, - anon_sym_AMP, - [143655] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8114), 3, + ACTIONS(8660), 1, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8116), 18, - anon_sym_SEMI, + ACTIONS(4447), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(8658), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [143684] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8162), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8164), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + STATE(3215), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8656), 5, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [143713] = 13, + [155177] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8320), 1, + ACTIONS(8837), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8839), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1897), 9, + STATE(1843), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -178045,69 +189446,61 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [143762] = 13, + [155228] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8845), 1, + anon_sym_esac, + ACTIONS(8841), 6, anon_sym_LPAREN, - ACTIONS(8195), 1, - aux_sym_unary_expression_token1, - ACTIONS(8197), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, aux_sym_number_token1, - ACTIONS(8201), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8843), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, - sym_variable_name, - ACTIONS(8322), 1, - aux_sym__simple_variable_name_token1, - STATE(1675), 1, - sym__arithmetic_ternary_expression, - STATE(1680), 1, - sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - STATE(1966), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [143811] = 13, + [155259] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8324), 1, + ACTIONS(8847), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8849), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1967), 9, + STATE(1716), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -178117,61 +189510,62 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [143860] = 5, - ACTIONS(63), 1, + [155310] = 5, + ACTIONS(3), 1, sym_comment, - STATE(3294), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8326), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1270), 6, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - sym__special_character, - ACTIONS(1272), 12, + ACTIONS(3477), 2, sym_file_descriptor, + anon_sym_LF, + ACTIONS(4272), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(3221), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3312), 13, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [143893] = 13, + [155343] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8328), 1, + ACTIONS(8851), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8853), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1891), 9, + STATE(1861), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -178181,33 +189575,34 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [143942] = 13, + [155394] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8330), 1, + ACTIONS(8855), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8857), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1968), 9, + STATE(1873), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -178217,33 +189612,34 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [143991] = 13, + [155445] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8332), 1, + ACTIONS(8859), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8861), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1969), 9, + STATE(1886), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -178253,33 +189649,34 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [144040] = 13, + [155496] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8434), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8436), 1, + anon_sym_BANG, + ACTIONS(8438), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8452), 1, sym_variable_name, - ACTIONS(8334), 1, + ACTIONS(8863), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8865), 1, + sym_test_operator, + STATE(1794), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(1848), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1887), 9, + STATE(1775), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -178289,33 +189686,34 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [144089] = 13, + [155547] = 14, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8504), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8506), 1, + anon_sym_BANG, + ACTIONS(8508), 1, aux_sym_unary_expression_token1, - ACTIONS(8197), 1, + ACTIONS(8510), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, + ACTIONS(8512), 1, aux_sym_number_token1, - ACTIONS(8201), 1, + ACTIONS(8514), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + ACTIONS(8516), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + ACTIONS(8522), 1, sym_variable_name, - ACTIONS(8336), 1, + ACTIONS(8867), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, + ACTIONS(8869), 1, + sym_test_operator, + STATE(2036), 1, sym__arithmetic_ternary_expression, - STATE(1680), 1, + STATE(2145), 1, sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1970), 9, + STATE(2137), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -178325,87 +189723,609 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_simple_expansion, sym_expansion, - [144138] = 13, + [155598] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8877), 1, + anon_sym_RBRACE3, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + STATE(3419), 1, + aux_sym_expansion_repeat1, + STATE(4633), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8871), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [155646] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8889), 6, anon_sym_LPAREN, - ACTIONS(8195), 1, - aux_sym_unary_expression_token1, - ACTIONS(8197), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, aux_sym_number_token1, - ACTIONS(8201), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8891), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [155674] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8338), 1, + ACTIONS(8895), 1, + anon_sym_RBRACE3, + STATE(3278), 1, + aux_sym_expansion_repeat1, + STATE(4986), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8893), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [155722] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, - sym__arithmetic_ternary_expression, - STATE(1680), 1, - sym__arithmetic_binary_expression, - ACTIONS(8193), 2, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(8899), 1, + anon_sym_RBRACE3, + STATE(3573), 1, + aux_sym_expansion_repeat1, + STATE(4927), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [155770] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(8903), 1, + anon_sym_RBRACE3, + STATE(3308), 1, + aux_sym_expansion_repeat1, + STATE(4706), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8901), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [155818] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(8907), 1, + anon_sym_RBRACE3, + STATE(3284), 1, + aux_sym_expansion_repeat1, + STATE(4919), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8905), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [155866] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(8911), 1, + anon_sym_RBRACE3, + STATE(3293), 1, + aux_sym_expansion_repeat1, + STATE(4779), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8909), 3, + anon_sym_EQ, anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [155914] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8524), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8526), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - STATE(1829), 9, + [155942] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(8913), 1, + anon_sym_RBRACE3, + STATE(3573), 1, + aux_sym_expansion_repeat1, + STATE(4675), 1, + sym__expansion_body, + STATE(605), 2, sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [144187] = 13, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [155990] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(8915), 1, + anon_sym_RBRACE3, + STATE(3573), 1, + aux_sym_expansion_repeat1, + STATE(4909), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [156038] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8917), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8919), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [156066] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3286), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8921), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1258), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1263), 12, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [156098] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8754), 6, anon_sym_LPAREN, - ACTIONS(8195), 1, - aux_sym_unary_expression_token1, - ACTIONS(8197), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, aux_sym_number_token1, - ACTIONS(8201), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8756), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [156126] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(8926), 1, + anon_sym_RBRACE3, + STATE(3283), 1, + aux_sym_expansion_repeat1, + STATE(4906), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8924), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [156174] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8928), 1, sym_variable_name, - ACTIONS(8340), 1, + STATE(4379), 1, + sym_subscript, + STATE(3406), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7820), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(7822), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [156208] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8917), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8919), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [156236] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, - sym__arithmetic_ternary_expression, - STATE(1680), 1, - sym__arithmetic_binary_expression, - ACTIONS(8193), 2, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(8932), 1, + anon_sym_RBRACE3, + STATE(3298), 1, + aux_sym_expansion_repeat1, + STATE(4531), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8930), 3, + anon_sym_EQ, anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [156284] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8934), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8936), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - STATE(1877), 9, + [156312] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(8938), 1, + anon_sym_RBRACE3, + STATE(3573), 1, + aux_sym_expansion_repeat1, + STATE(4693), 1, + sym__expansion_body, + STATE(605), 2, sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [144236] = 3, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [156360] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8059), 3, + ACTIONS(7908), 1, + aux_sym_concatenation_token1, + ACTIONS(7910), 1, + sym__concat, + STATE(3433), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7904), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8061), 18, - anon_sym_SEMI, + ACTIONS(7902), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -178413,7 +190333,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -178422,1116 +190341,1053 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - [144265] = 13, + [156394] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(8942), 1, + anon_sym_RBRACE3, + STATE(3307), 1, + aux_sym_expansion_repeat1, + STATE(4503), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8940), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [156442] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(8944), 1, + anon_sym_RBRACE3, + STATE(3573), 1, + aux_sym_expansion_repeat1, + STATE(4813), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [156490] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(8948), 1, + anon_sym_RBRACE3, + STATE(3301), 1, + aux_sym_expansion_repeat1, + STATE(4900), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8946), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [156538] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(8950), 1, + anon_sym_RBRACE3, + STATE(3573), 1, + aux_sym_expansion_repeat1, + STATE(4563), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [156586] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8642), 6, anon_sym_LPAREN, - ACTIONS(8195), 1, - aux_sym_unary_expression_token1, - ACTIONS(8197), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, aux_sym_number_token1, - ACTIONS(8201), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8644), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, - sym_variable_name, - ACTIONS(8342), 1, - aux_sym__simple_variable_name_token1, - STATE(1675), 1, - sym__arithmetic_ternary_expression, - STATE(1680), 1, - sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - STATE(1972), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [144314] = 13, + [156614] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8484), 6, anon_sym_LPAREN, - ACTIONS(8195), 1, - aux_sym_unary_expression_token1, - ACTIONS(8197), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, aux_sym_number_token1, - ACTIONS(8201), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8486), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, - sym_variable_name, - ACTIONS(8344), 1, - aux_sym__simple_variable_name_token1, - STATE(1675), 1, - sym__arithmetic_ternary_expression, - STATE(1680), 1, - sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - STATE(1873), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [144363] = 3, + [156642] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7614), 3, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(8952), 1, + anon_sym_RBRACE3, + STATE(3573), 1, + aux_sym_expansion_repeat1, + STATE(4894), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [156690] = 11, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4440), 1, + anon_sym_PIPE, + ACTIONS(4442), 1, + anon_sym_PIPE_AMP, + ACTIONS(4449), 1, + anon_sym_LT_LT, + ACTIONS(4451), 1, + anon_sym_LT_LT_DASH, + ACTIONS(4453), 1, + anon_sym_LT_LT_LT, + ACTIONS(8660), 1, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(7616), 18, - anon_sym_SEMI, + ACTIONS(4447), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(8658), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, + STATE(3215), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8656), 5, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [144392] = 13, + [156734] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8954), 6, anon_sym_LPAREN, - ACTIONS(8195), 1, - aux_sym_unary_expression_token1, - ACTIONS(8197), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, aux_sym_number_token1, - ACTIONS(8201), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8956), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, - sym_variable_name, - ACTIONS(8346), 1, - aux_sym__simple_variable_name_token1, - STATE(1675), 1, - sym__arithmetic_ternary_expression, - STATE(1680), 1, - sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - STATE(1866), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [144441] = 13, + [156762] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8958), 6, anon_sym_LPAREN, - ACTIONS(8195), 1, - aux_sym_unary_expression_token1, - ACTIONS(8197), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, aux_sym_number_token1, - ACTIONS(8201), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8960), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, - sym_variable_name, - ACTIONS(8348), 1, - aux_sym__simple_variable_name_token1, - STATE(1675), 1, - sym__arithmetic_ternary_expression, - STATE(1680), 1, - sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - STATE(1858), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [144490] = 13, - ACTIONS(63), 1, + [156790] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(8191), 1, - anon_sym_LPAREN, - ACTIONS(8195), 1, - aux_sym_unary_expression_token1, - ACTIONS(8197), 1, - anon_sym_DOLLAR, - ACTIONS(8199), 1, - aux_sym_number_token1, - ACTIONS(8201), 1, - aux_sym_number_token2, - ACTIONS(8203), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, - sym_variable_name, - ACTIONS(8350), 1, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, - sym__arithmetic_ternary_expression, - STATE(1680), 1, - sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, - sym_test_operator, - STATE(1704), 9, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(8964), 1, + anon_sym_RBRACE3, + STATE(3296), 1, + aux_sym_expansion_repeat1, + STATE(4878), 1, + sym__expansion_body, + STATE(605), 2, sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [144539] = 13, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8962), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [156838] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8966), 6, anon_sym_LPAREN, - ACTIONS(8195), 1, - aux_sym_unary_expression_token1, - ACTIONS(8197), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, aux_sym_number_token1, - ACTIONS(8201), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8968), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [156866] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8352), 1, + ACTIONS(8970), 1, + anon_sym_RBRACE3, + STATE(3573), 1, + aux_sym_expansion_repeat1, + STATE(4464), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [156914] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, - sym__arithmetic_ternary_expression, - STATE(1680), 1, - sym__arithmetic_binary_expression, - ACTIONS(8193), 2, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(8972), 1, + anon_sym_RBRACE3, + STATE(3573), 1, + aux_sym_expansion_repeat1, + STATE(4556), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8897), 3, + anon_sym_EQ, anon_sym_BANG, - sym_test_operator, - STATE(1703), 9, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [156962] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(8976), 1, + anon_sym_RBRACE3, + STATE(3312), 1, + aux_sym_expansion_repeat1, + STATE(4888), 1, + sym__expansion_body, + STATE(605), 2, sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [144588] = 5, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8974), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [157010] = 3, ACTIONS(63), 1, sym_comment, - STATE(3015), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8217), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3888), 6, + ACTIONS(8934), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(3892), 12, + ACTIONS(8936), 14, + sym_extglob_pattern, sym__brace_start, - anon_sym_RPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [144621] = 13, - ACTIONS(63), 1, + [157038] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(8191), 1, - anon_sym_LPAREN, - ACTIONS(8195), 1, - aux_sym_unary_expression_token1, - ACTIONS(8197), 1, - anon_sym_DOLLAR, - ACTIONS(8199), 1, - aux_sym_number_token1, - ACTIONS(8201), 1, - aux_sym_number_token2, - ACTIONS(8203), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, - sym_variable_name, - ACTIONS(8354), 1, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - STATE(1675), 1, - sym__arithmetic_ternary_expression, - STATE(1680), 1, - sym__arithmetic_binary_expression, - ACTIONS(8193), 2, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(8980), 1, + anon_sym_RBRACE3, + STATE(3353), 1, + aux_sym_expansion_repeat1, + STATE(4657), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8978), 3, + anon_sym_EQ, anon_sym_BANG, - sym_test_operator, - STATE(1973), 9, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [157086] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(8982), 1, + anon_sym_RBRACE3, + STATE(3573), 1, + aux_sym_expansion_repeat1, + STATE(4881), 1, + sym__expansion_body, + STATE(605), 2, sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [144670] = 13, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [157134] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8225), 1, + ACTIONS(8984), 6, anon_sym_LPAREN, - ACTIONS(8229), 1, - aux_sym_unary_expression_token1, - ACTIONS(8231), 1, anon_sym_DOLLAR, - ACTIONS(8233), 1, aux_sym_number_token1, - ACTIONS(8235), 1, aux_sym_number_token2, - ACTIONS(8237), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8986), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8241), 1, - sym_variable_name, - ACTIONS(8356), 1, - aux_sym__simple_variable_name_token1, - STATE(1993), 1, - sym__arithmetic_binary_expression, - STATE(1995), 1, - sym__arithmetic_ternary_expression, - ACTIONS(8227), 2, - anon_sym_BANG, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - STATE(2015), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [144719] = 13, + [157162] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8988), 6, anon_sym_LPAREN, - ACTIONS(8195), 1, - aux_sym_unary_expression_token1, - ACTIONS(8197), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, aux_sym_number_token1, - ACTIONS(8201), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8990), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, - sym_variable_name, - ACTIONS(8358), 1, - aux_sym__simple_variable_name_token1, - STATE(1675), 1, - sym__arithmetic_ternary_expression, - STATE(1680), 1, - sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - STATE(1974), 9, + [157190] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(8992), 1, + anon_sym_RBRACE3, + STATE(3573), 1, + aux_sym_expansion_repeat1, + STATE(4916), 1, + sym__expansion_body, + STATE(605), 2, sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [144768] = 13, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [157238] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8225), 1, + ACTIONS(8642), 6, anon_sym_LPAREN, - ACTIONS(8229), 1, - aux_sym_unary_expression_token1, - ACTIONS(8231), 1, anon_sym_DOLLAR, - ACTIONS(8233), 1, aux_sym_number_token1, - ACTIONS(8235), 1, aux_sym_number_token2, - ACTIONS(8237), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8644), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8241), 1, - sym_variable_name, - ACTIONS(8360), 1, - aux_sym__simple_variable_name_token1, - STATE(1993), 1, - sym__arithmetic_binary_expression, - STATE(1995), 1, - sym__arithmetic_ternary_expression, - ACTIONS(8227), 2, - anon_sym_BANG, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - STATE(2019), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [144817] = 3, + [157266] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8150), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8152), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [144846] = 13, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(8996), 1, + anon_sym_RBRACE3, + STATE(3324), 1, + aux_sym_expansion_repeat1, + STATE(4478), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8994), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [157314] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8798), 6, anon_sym_LPAREN, - ACTIONS(8195), 1, - aux_sym_unary_expression_token1, - ACTIONS(8197), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, aux_sym_number_token1, - ACTIONS(8201), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8800), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, - sym_variable_name, - ACTIONS(8362), 1, - aux_sym__simple_variable_name_token1, - STATE(1675), 1, - sym__arithmetic_ternary_expression, - STATE(1680), 1, - sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - STATE(1976), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [144895] = 13, + [157342] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8191), 1, + ACTIONS(8624), 6, anon_sym_LPAREN, - ACTIONS(8195), 1, - aux_sym_unary_expression_token1, - ACTIONS(8197), 1, anon_sym_DOLLAR, - ACTIONS(8199), 1, aux_sym_number_token1, - ACTIONS(8201), 1, aux_sym_number_token2, - ACTIONS(8203), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8626), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8207), 1, - sym_variable_name, - ACTIONS(8364), 1, - aux_sym__simple_variable_name_token1, - STATE(1675), 1, - sym__arithmetic_ternary_expression, - STATE(1680), 1, - sym__arithmetic_binary_expression, - ACTIONS(8193), 2, - anon_sym_BANG, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - STATE(1846), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [144944] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8067), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8069), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [144973] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8067), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8069), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145002] = 12, - ACTIONS(63), 1, - sym_comment, - ACTIONS(153), 1, - anon_sym_RBRACK, - ACTIONS(4333), 1, - anon_sym_LT_LT, - ACTIONS(4335), 1, - anon_sym_PIPE, - ACTIONS(4337), 1, - anon_sym_PIPE_AMP, - ACTIONS(4339), 1, - anon_sym_LT_LT_DASH, - ACTIONS(4341), 1, - anon_sym_LT_LT_LT, - ACTIONS(8213), 1, - sym_file_descriptor, - ACTIONS(4331), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8211), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(3124), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8209), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [145049] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8100), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8102), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145078] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8009), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8011), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145107] = 12, - ACTIONS(63), 1, - sym_comment, - ACTIONS(155), 1, - anon_sym_RBRACK, - ACTIONS(4333), 1, - anon_sym_LT_LT, - ACTIONS(4335), 1, - anon_sym_PIPE, - ACTIONS(4337), 1, - anon_sym_PIPE_AMP, - ACTIONS(4339), 1, - anon_sym_LT_LT_DASH, - ACTIONS(4341), 1, - anon_sym_LT_LT_LT, - ACTIONS(8213), 1, - sym_file_descriptor, - ACTIONS(4331), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8211), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(3124), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8209), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [145154] = 10, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7550), 1, - anon_sym_PIPE, - ACTIONS(8366), 1, - anon_sym_LT_LT, - ACTIONS(8375), 1, - anon_sym_LT_LT_DASH, - ACTIONS(8378), 1, - anon_sym_LT_LT_LT, - ACTIONS(8381), 1, - sym_file_descriptor, - ACTIONS(8372), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7548), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - STATE(3117), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8369), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [145197] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4348), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4346), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145226] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4348), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4346), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145255] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8128), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8130), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145284] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8088), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8090), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145313] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8001), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8003), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8132), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8134), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145371] = 10, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4333), 1, - anon_sym_LT_LT, - ACTIONS(4339), 1, - anon_sym_LT_LT_DASH, - ACTIONS(4341), 1, - anon_sym_LT_LT_LT, - ACTIONS(7127), 1, - anon_sym_PIPE, - ACTIONS(8213), 1, - sym_file_descriptor, - ACTIONS(8211), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7125), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - STATE(3117), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8209), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [145414] = 5, + [157370] = 3, ACTIONS(63), 1, sym_comment, - STATE(3011), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8217), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4049), 6, + ACTIONS(8550), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(4051), 12, + ACTIONS(8552), 14, + sym_extglob_pattern, sym__brace_start, - anon_sym_RPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [145447] = 13, + [157398] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8390), 1, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(9000), 1, + anon_sym_RBRACE3, + STATE(3315), 1, + aux_sym_expansion_repeat1, + STATE(4914), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8998), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [157446] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(9002), 1, anon_sym_RBRACE3, - ACTIONS(8392), 1, + STATE(3573), 1, + aux_sym_expansion_repeat1, + STATE(4891), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [157494] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - STATE(3452), 1, + ACTIONS(9004), 1, + anon_sym_RBRACE3, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4371), 1, + STATE(4475), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [157542] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(9006), 1, + anon_sym_RBRACE3, + STATE(3573), 1, + aux_sym_expansion_repeat1, + STATE(4424), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [145495] = 5, - ACTIONS(63), 1, + [157590] = 13, + ACTIONS(3), 1, sym_comment, - STATE(3347), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8402), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1270), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1272), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [145527] = 13, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(9010), 1, + anon_sym_RBRACE3, + STATE(3323), 1, + aux_sym_expansion_repeat1, + STATE(4458), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(9008), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [157638] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8406), 1, + ACTIONS(9012), 1, anon_sym_RBRACE3, - STATE(3136), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4461), 1, + STATE(4454), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8404), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [145575] = 13, + [157686] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8408), 1, + ACTIONS(9016), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3326), 1, aux_sym_expansion_repeat1, - STATE(4286), 1, + STATE(4440), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(9014), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [145623] = 4, - ACTIONS(63), 1, - sym_comment, - STATE(3275), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3297), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(3299), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [145653] = 4, + [157734] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8414), 1, - anon_sym_esac, - ACTIONS(8410), 5, + ACTIONS(8934), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8412), 14, + ACTIONS(8936), 14, sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, @@ -179543,219 +191399,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [145683] = 13, + [157762] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8416), 1, + ACTIONS(9018), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4466), 1, + STATE(4406), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [145731] = 13, + [157810] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7908), 1, + aux_sym_concatenation_token1, + ACTIONS(7910), 1, + sym__concat, + STATE(3436), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7881), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(7879), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [157844] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8420), 1, + ACTIONS(9022), 1, anon_sym_RBRACE3, - STATE(3219), 1, + STATE(3329), 1, aux_sym_expansion_repeat1, - STATE(4701), 1, + STATE(4417), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8418), 3, + ACTIONS(9020), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [145779] = 11, + [157892] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(4333), 1, + ACTIONS(8820), 1, + aux_sym_concatenation_token1, + ACTIONS(9024), 1, + sym__concat, + STATE(3286), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1252), 5, anon_sym_LT_LT, - ACTIONS(4335), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(4337), 1, - anon_sym_PIPE_AMP, - ACTIONS(4339), 1, - anon_sym_LT_LT_DASH, - ACTIONS(4341), 1, - anon_sym_LT_LT_LT, - ACTIONS(8213), 1, + anon_sym_AMP_GT, + ACTIONS(1254), 12, sym_file_descriptor, - ACTIONS(4331), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8211), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(3124), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8209), 5, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [145823] = 13, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [157926] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8424), 1, + ACTIONS(9026), 1, anon_sym_RBRACE3, - STATE(3129), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4247), 1, + STATE(4418), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8422), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [145871] = 13, + [157974] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8820), 1, + aux_sym_concatenation_token1, + ACTIONS(9028), 1, + sym__concat, + STATE(3286), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1246), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1248), 12, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [158008] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8426), 1, + ACTIONS(9032), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3333), 1, aux_sym_expansion_repeat1, - STATE(4455), 1, + STATE(4430), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(9030), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [145919] = 3, + [158056] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(8988), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1304), 14, - sym__concat, + ACTIONS(8990), 14, + sym_extglob_pattern, sym__brace_start, - anon_sym_RPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [145947] = 4, + [158084] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8432), 1, - anon_sym_esac, - ACTIONS(8428), 5, + ACTIONS(9034), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8430), 14, + ACTIONS(9036), 14, sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, @@ -179767,810 +191673,820 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [145977] = 13, + [158112] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8434), 1, + ACTIONS(9040), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3340), 1, aux_sym_expansion_repeat1, - STATE(4650), 1, + STATE(4875), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(9038), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [146025] = 13, + [158160] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8438), 1, + ACTIONS(9044), 1, anon_sym_RBRACE3, - STATE(3149), 1, + STATE(3322), 1, aux_sym_expansion_repeat1, - STATE(4642), 1, + STATE(4877), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8436), 3, + ACTIONS(9042), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [146073] = 13, + [158208] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8440), 1, + ACTIONS(9046), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4502), 1, + STATE(4868), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [158256] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(9048), 1, + anon_sym_RBRACE3, + STATE(3573), 1, + aux_sym_expansion_repeat1, + STATE(4432), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [146121] = 13, + [158304] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8444), 1, + ACTIONS(9052), 1, anon_sym_RBRACE3, - STATE(3132), 1, + STATE(3341), 1, aux_sym_expansion_repeat1, - STATE(4473), 1, + STATE(4441), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8442), 3, + ACTIONS(9050), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [146169] = 13, + [158352] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8448), 1, + ACTIONS(9056), 1, anon_sym_RBRACE3, - STATE(3141), 1, + STATE(3350), 1, aux_sym_expansion_repeat1, - STATE(4194), 1, + STATE(4452), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8446), 3, + ACTIONS(9054), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [146217] = 3, + [158400] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(9058), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9060), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [158428] = 10, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7812), 1, + anon_sym_PIPE, + ACTIONS(9062), 1, + anon_sym_LT_LT, + ACTIONS(9068), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9070), 1, + anon_sym_LT_LT_LT, + ACTIONS(9072), 1, + sym_file_descriptor, + ACTIONS(7814), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(9066), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(3451), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9064), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [158470] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8550), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1279), 14, - sym__concat, + ACTIONS(8552), 14, + sym_extglob_pattern, sym__brace_start, - anon_sym_RPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [146245] = 13, + [158498] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8452), 1, + ACTIONS(9074), 1, anon_sym_RBRACE3, - STATE(3148), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4451), 1, + STATE(4445), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8450), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [146293] = 13, + [158546] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8454), 1, + ACTIONS(9078), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3347), 1, aux_sym_expansion_repeat1, - STATE(4196), 1, + STATE(4451), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(9076), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [146341] = 13, + [158594] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8458), 1, + ACTIONS(9082), 1, anon_sym_RBRACE3, - STATE(3146), 1, + STATE(3356), 1, aux_sym_expansion_repeat1, - STATE(4202), 1, + STATE(4862), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8456), 3, + ACTIONS(9080), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [146389] = 13, + [158642] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8460), 1, + ACTIONS(9084), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4444), 1, + STATE(4565), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [146437] = 13, + [158690] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8462), 1, + ACTIONS(9086), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4637), 1, + STATE(4455), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [146485] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8468), 1, - anon_sym_esac, - ACTIONS(8464), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8466), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [146515] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1308), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1310), 14, - sym__concat, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [146543] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8326), 1, - aux_sym_concatenation_token1, - ACTIONS(8470), 1, - sym__concat, - STATE(3161), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1260), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [146577] = 13, + [158738] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8472), 1, + ACTIONS(9088), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4518), 1, + STATE(4904), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [146625] = 13, + [158786] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8476), 1, + ACTIONS(9090), 1, anon_sym_RBRACE3, - STATE(3153), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4475), 1, + STATE(4635), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8474), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [146673] = 13, + [158834] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8478), 1, + ACTIONS(9094), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3351), 1, aux_sym_expansion_repeat1, - STATE(4204), 1, + STATE(4463), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(9092), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [146721] = 13, + [158882] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9096), 1, + sym__special_character, + STATE(3432), 1, + aux_sym__literal_repeat1, + ACTIONS(3989), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3991), 13, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [158914] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8480), 1, + ACTIONS(9098), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4478), 1, + STATE(4855), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [146769] = 13, + [158962] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8484), 1, + ACTIONS(9100), 1, anon_sym_RBRACE3, - STATE(3160), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4439), 1, + STATE(4469), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8482), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [146817] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8486), 1, - sym_variable_name, - STATE(4090), 1, - sym_subscript, - STATE(3186), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7159), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7157), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [146851] = 13, + [159010] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8490), 1, + ACTIONS(9104), 1, anon_sym_RBRACE3, - STATE(3155), 1, + STATE(3357), 1, aux_sym_expansion_repeat1, - STATE(4214), 1, + STATE(4474), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8488), 3, + ACTIONS(9102), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [146899] = 13, + [159058] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8492), 1, + ACTIONS(9106), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4433), 1, + STATE(4482), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [146947] = 5, + [159106] = 4, ACTIONS(63), 1, sym_comment, - STATE(3161), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8494), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1274), 5, + STATE(3345), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3304), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1279), 12, + ACTIONS(3306), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146979] = 13, + [159136] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8497), 1, + ACTIONS(9110), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3359), 1, aux_sym_expansion_repeat1, - STATE(4336), 1, + STATE(4722), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(9108), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [147027] = 4, + [159184] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8432), 1, - anon_sym_esac, - ACTIONS(8428), 5, + ACTIONS(8841), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8430), 14, + ACTIONS(8843), 14, sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, @@ -180582,56 +192498,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [147057] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, - sym_variable_name, - ACTIONS(8501), 1, - anon_sym_RBRACE3, - STATE(3156), 1, - aux_sym_expansion_repeat1, - STATE(4484), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8499), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [147105] = 4, + [159212] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8507), 1, - anon_sym_esac, - ACTIONS(8503), 5, + ACTIONS(8988), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8505), 14, + ACTIONS(8990), 14, sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, @@ -180643,330 +192523,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [147135] = 3, + [159240] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3495), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9112), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1242), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1244), 12, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + [159272] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1312), 6, + ACTIONS(9034), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1314), 14, - sym__concat, + ACTIONS(9036), 14, + sym_extglob_pattern, sym__brace_start, - anon_sym_RPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [147163] = 13, + [159300] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8511), 1, + ACTIONS(9116), 1, anon_sym_RBRACE3, - STATE(3174), 1, + STATE(3352), 1, aux_sym_expansion_repeat1, - STATE(4625), 1, + STATE(4907), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8509), 3, + ACTIONS(9114), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [147211] = 13, + [159348] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8515), 1, + ACTIONS(9118), 1, anon_sym_RBRACE3, - STATE(3182), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4426), 1, + STATE(4504), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8513), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [147259] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1316), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1318), 14, - sym__concat, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [147287] = 11, + [159396] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(3510), 1, - anon_sym_LT_LT, - ACTIONS(3681), 1, + ACTIONS(4440), 1, anon_sym_PIPE, - ACTIONS(7863), 1, - sym_file_descriptor, - ACTIONS(8521), 1, + ACTIONS(4442), 1, anon_sym_PIPE_AMP, - ACTIONS(8523), 1, - anon_sym_LT_LT_DASH, - ACTIONS(8525), 1, - anon_sym_LT_LT_LT, - ACTIONS(8517), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(7861), 3, + ACTIONS(3312), 4, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(2789), 4, + STATE(3345), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(8519), 5, + ACTIONS(3477), 10, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [147331] = 13, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [159430] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8527), 1, + ACTIONS(9122), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3376), 1, aux_sym_expansion_repeat1, - STATE(4216), 1, + STATE(4526), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(9120), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [147379] = 3, + [159478] = 11, ACTIONS(63), 1, sym_comment, - ACTIONS(1324), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1326), 14, - sym__concat, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3430), 1, + anon_sym_LT_LT, + ACTIONS(3760), 1, + anon_sym_PIPE, + ACTIONS(8079), 1, + sym_file_descriptor, + ACTIONS(9128), 1, + anon_sym_PIPE_AMP, + ACTIONS(9130), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9132), 1, + anon_sym_LT_LT_LT, + ACTIONS(9124), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(8075), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(2953), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9126), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [159522] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7908), 1, aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [147407] = 13, + ACTIONS(7910), 1, + sym__concat, + STATE(3433), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7877), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(7875), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [159556] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8531), 1, + ACTIONS(9136), 1, anon_sym_RBRACE3, - STATE(3171), 1, + STATE(3367), 1, aux_sym_expansion_repeat1, - STATE(4221), 1, + STATE(4512), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8529), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [147455] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, - sym_variable_name, - ACTIONS(8533), 1, - anon_sym_RBRACE3, - STATE(3452), 1, - aux_sym_expansion_repeat1, - STATE(4616), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8384), 3, + ACTIONS(9134), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [147503] = 4, + [159604] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8539), 1, - anon_sym_esac, - ACTIONS(8535), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8537), 14, - sym_extglob_pattern, - sym__brace_start, + ACTIONS(9138), 6, anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [147533] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8414), 1, - anon_sym_esac, - ACTIONS(8410), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8412), 14, + ACTIONS(9140), 14, sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, @@ -180978,21 +192829,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [147563] = 4, + [159632] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8545), 1, - anon_sym_esac, - ACTIONS(8541), 5, + ACTIONS(8988), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8543), 14, + ACTIONS(8990), 14, sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, @@ -181004,258 +192854,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [147593] = 13, + [159660] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8547), 1, + ACTIONS(9142), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4223), 1, + STATE(4517), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [147641] = 13, + [159708] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8551), 1, + ACTIONS(9144), 1, anon_sym_RBRACE3, - STATE(3184), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4290), 1, + STATE(4548), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8549), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [147689] = 13, + [159756] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8553), 1, + ACTIONS(9148), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3390), 1, aux_sym_expansion_repeat1, - STATE(4643), 1, + STATE(4845), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(9146), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [147737] = 13, + [159804] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8557), 1, + ACTIONS(9152), 1, anon_sym_RBRACE3, - STATE(3178), 1, + STATE(3375), 1, aux_sym_expansion_repeat1, - STATE(4228), 1, + STATE(4499), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8555), 3, + ACTIONS(9150), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [147785] = 13, + [159852] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9154), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9156), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [159880] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8559), 1, + ACTIONS(9158), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4419), 1, + STATE(4861), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [147833] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3183), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8561), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1274), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1279), 12, - sym_file_descriptor, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [147865] = 13, + [159928] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8564), 1, + ACTIONS(9160), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4325), 1, + STATE(4537), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [147913] = 5, + [159976] = 5, ACTIONS(63), 1, sym_comment, - STATE(3152), 1, + STATE(3332), 1, aux_sym_concatenation_repeat1, - ACTIONS(8326), 2, + ACTIONS(8820), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(7644), 5, + ACTIONS(7875), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7642), 12, + ACTIONS(7877), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181268,74 +193116,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [147945] = 6, + [160008] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8566), 1, - sym_variable_name, - STATE(4090), 1, - sym_subscript, - STATE(3186), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7387), 5, + STATE(3334), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8820), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(7879), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7385), 11, + ACTIONS(7881), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [147979] = 3, - ACTIONS(63), 1, + [160040] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1290), 14, - sym__concat, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [148007] = 4, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(9164), 1, + anon_sym_RBRACE3, + STATE(3381), 1, + aux_sym_expansion_repeat1, + STATE(4547), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(9162), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [160088] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8573), 1, - anon_sym_esac, - ACTIONS(8569), 5, + ACTIONS(9166), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8571), 14, + ACTIONS(9168), 14, sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, @@ -181347,21 +193203,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [148037] = 4, + [160116] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7908), 1, + aux_sym_concatenation_token1, + ACTIONS(7910), 1, + sym__concat, + STATE(3436), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7887), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(7885), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [160150] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8507), 1, - anon_sym_esac, - ACTIONS(8503), 5, + ACTIONS(9138), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8505), 14, + ACTIONS(9140), 14, sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, @@ -181373,196 +193256,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [148067] = 13, - ACTIONS(3), 1, + [160178] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, - sym_variable_name, - ACTIONS(8575), 1, - anon_sym_RBRACE3, - STATE(3452), 1, - aux_sym_expansion_repeat1, - STATE(4493), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(9154), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [148115] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8392), 1, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + sym_word, + ACTIONS(9156), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8396), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, - sym_variable_name, - ACTIONS(8577), 1, - anon_sym_RBRACE3, - STATE(3452), 1, - aux_sym_expansion_repeat1, - STATE(4231), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [148163] = 13, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [160206] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8581), 1, + ACTIONS(9170), 1, anon_sym_RBRACE3, - STATE(3199), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4611), 1, + STATE(4790), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8579), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [148211] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, - sym_variable_name, - ACTIONS(8583), 1, - anon_sym_RBRACE3, - STATE(3452), 1, - aux_sym_expansion_repeat1, - STATE(4602), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8384), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [148259] = 13, + [160254] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8587), 1, + ACTIONS(9172), 1, anon_sym_RBRACE3, - STATE(3200), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4327), 1, + STATE(4835), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8585), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [148307] = 4, + [160302] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8593), 1, - anon_sym_esac, - ACTIONS(8589), 5, + ACTIONS(8984), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8591), 14, + ACTIONS(8986), 14, sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, @@ -181574,363 +193376,478 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [148337] = 13, + [160330] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8597), 1, + ACTIONS(9174), 1, anon_sym_RBRACE3, - STATE(3191), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4236), 1, + STATE(4554), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8595), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [148385] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3294), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8326), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(7640), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7638), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [148417] = 13, + [160378] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8599), 1, + ACTIONS(9178), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3389), 1, aux_sym_expansion_repeat1, - STATE(4239), 1, + STATE(4730), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [148465] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, - sym_variable_name, - ACTIONS(8601), 1, - anon_sym_RBRACE3, - STATE(3452), 1, - aux_sym_expansion_repeat1, - STATE(4605), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8384), 3, + ACTIONS(9176), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [148513] = 13, + [160426] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8603), 1, + ACTIONS(9182), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3392), 1, aux_sym_expansion_repeat1, - STATE(4354), 1, + STATE(4562), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(9180), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [148561] = 13, + [160474] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8607), 1, + ACTIONS(9186), 1, anon_sym_RBRACE3, - STATE(3261), 1, + STATE(3402), 1, aux_sym_expansion_repeat1, - STATE(4575), 1, + STATE(4577), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8605), 3, + ACTIONS(9184), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [148609] = 13, + [160522] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8984), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8986), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [160550] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9188), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9190), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [160578] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8602), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8604), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [160606] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8934), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8936), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [160634] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9154), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9156), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [160662] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8611), 1, + ACTIONS(9192), 1, anon_sym_RBRACE3, - STATE(3198), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4245), 1, + STATE(4569), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8609), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [148657] = 13, + [160710] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8615), 1, + ACTIONS(9194), 1, anon_sym_RBRACE3, - STATE(3190), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4499), 1, + STATE(4611), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8613), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [148705] = 13, + [160758] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8619), 1, + ACTIONS(9198), 1, anon_sym_RBRACE3, - STATE(3139), 1, + STATE(3414), 1, aux_sym_expansion_repeat1, - STATE(4658), 1, + STATE(4832), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8617), 3, + ACTIONS(9196), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [148753] = 13, + [160806] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8788), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8790), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [160834] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8623), 1, + ACTIONS(9202), 1, anon_sym_RBRACE3, - STATE(3209), 1, + STATE(3401), 1, aux_sym_expansion_repeat1, - STATE(4413), 1, + STATE(4587), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8621), 3, + ACTIONS(9200), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [148801] = 4, + [160882] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(8629), 1, - anon_sym_esac, - ACTIONS(8625), 5, + ACTIONS(9204), 1, + sym_variable_name, + STATE(4379), 1, + sym_subscript, + STATE(3406), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7787), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(7789), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [160916] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8524), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8627), 14, + ACTIONS(8526), 14, sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, @@ -181942,21 +193859,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [148831] = 4, + [160944] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8635), 1, - anon_sym_esac, - ACTIONS(8631), 5, + ACTIONS(9154), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8633), 14, + ACTIONS(9156), 14, sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, @@ -181968,630 +193884,543 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [148861] = 13, + [160972] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8639), 1, + ACTIONS(9207), 1, anon_sym_RBRACE3, - STATE(3180), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4615), 1, + STATE(4599), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8637), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [148909] = 13, - ACTIONS(3), 1, + [161020] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(4370), 7, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + sym_word, + ACTIONS(4372), 13, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, anon_sym_BQUOTE, - ACTIONS(8396), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, - sym_variable_name, - ACTIONS(8641), 1, - anon_sym_RBRACE3, - STATE(3452), 1, - aux_sym_expansion_repeat1, - STATE(4408), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [148957] = 13, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [161048] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8643), 1, + ACTIONS(9211), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3409), 1, aux_sym_expansion_repeat1, - STATE(4249), 1, + STATE(4610), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(9209), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [149005] = 13, + [161096] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3412), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9213), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1258), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1263), 12, + sym_file_descriptor, + sym_variable_name, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [161128] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8647), 1, + ACTIONS(9218), 1, anon_sym_RBRACE3, - STATE(3210), 1, + STATE(3380), 1, aux_sym_expansion_repeat1, - STATE(4255), 1, + STATE(4841), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8645), 3, + ACTIONS(9216), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [149053] = 13, + [161176] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8651), 1, + ACTIONS(9220), 1, anon_sym_RBRACE3, - STATE(3193), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4623), 1, + STATE(4825), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8649), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [149101] = 6, + [161224] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8247), 1, - aux_sym_concatenation_token1, - ACTIONS(8653), 1, - sym__concat, - STATE(3183), 1, + ACTIONS(8566), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8568), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [161252] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3332), 1, aux_sym_concatenation_repeat1, - ACTIONS(1258), 5, + ACTIONS(8820), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(7902), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1260), 12, + ACTIONS(7904), 12, sym_file_descriptor, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [149135] = 6, + [161284] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8247), 1, - aux_sym_concatenation_token1, - ACTIONS(8655), 1, - sym__concat, - STATE(3183), 1, + ACTIONS(9138), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9140), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [161312] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3334), 1, aux_sym_concatenation_repeat1, - ACTIONS(1264), 5, + ACTIONS(8820), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(7885), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1266), 12, + ACTIONS(7887), 12, sym_file_descriptor, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [149169] = 13, + [161344] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8657), 1, + ACTIONS(9222), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4260), 1, + STATE(4615), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [149217] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, - sym_variable_name, - ACTIONS(8659), 1, - anon_sym_RBRACE3, - STATE(3452), 1, - aux_sym_expansion_repeat1, - STATE(4633), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8384), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [149265] = 13, - ACTIONS(3), 1, + [161392] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(4374), 7, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + sym_word, + ACTIONS(4376), 13, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, anon_sym_BQUOTE, - ACTIONS(8396), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, - sym_variable_name, - ACTIONS(8663), 1, - anon_sym_RBRACE3, - STATE(3224), 1, - aux_sym_expansion_repeat1, - STATE(4599), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8661), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [149313] = 13, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [161420] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8667), 1, + ACTIONS(9226), 1, anon_sym_RBRACE3, - STATE(3215), 1, + STATE(3427), 1, aux_sym_expansion_repeat1, - STATE(4270), 1, + STATE(4636), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8665), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [149361] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, - sym_variable_name, - ACTIONS(8669), 1, - anon_sym_RBRACE3, - STATE(3452), 1, - aux_sym_expansion_repeat1, - STATE(4716), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8384), 3, + ACTIONS(9224), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [149409] = 13, + [161468] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8673), 1, + ACTIONS(9230), 1, anon_sym_RBRACE3, - STATE(3216), 1, + STATE(3425), 1, aux_sym_expansion_repeat1, - STATE(4691), 1, + STATE(4821), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8671), 3, + ACTIONS(9228), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [149457] = 6, + [161516] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4335), 1, - anon_sym_PIPE, - ACTIONS(4337), 1, - anon_sym_PIPE_AMP, - ACTIONS(3228), 4, + STATE(3465), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8748), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3841), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, - STATE(3275), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3519), 10, + ACTIONS(3843), 12, sym_file_descriptor, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [149491] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, - sym_variable_name, - ACTIONS(8675), 1, - anon_sym_RBRACE3, - STATE(3452), 1, - aux_sym_expansion_repeat1, - STATE(4699), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [149539] = 13, + [161548] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8677), 1, + ACTIONS(9232), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4505), 1, + STATE(4426), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [149587] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, - sym_variable_name, - ACTIONS(8679), 1, - anon_sym_RBRACE3, - STATE(3452), 1, - aux_sym_expansion_repeat1, - STATE(4592), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8384), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [149635] = 13, + [161596] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8683), 1, + ACTIONS(9234), 1, anon_sym_RBRACE3, - STATE(3231), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4403), 1, + STATE(4815), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8681), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [149683] = 4, + [161644] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_esac, - ACTIONS(8685), 5, + ACTIONS(8889), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8687), 14, + ACTIONS(8891), 14, sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, @@ -182603,613 +194432,668 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [149713] = 13, + [161672] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8693), 1, + ACTIONS(9236), 1, anon_sym_RBRACE3, - STATE(3222), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4589), 1, + STATE(4679), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8691), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [149761] = 13, + [161720] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8697), 1, + ACTIONS(9238), 1, anon_sym_RBRACE3, - STATE(3229), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4369), 1, + STATE(4641), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8695), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [149809] = 13, - ACTIONS(3), 1, + [161768] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8662), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + sym_word, + ACTIONS(8664), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8396), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [161796] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3443), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8748), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3837), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(3839), 12, + sym_file_descriptor, sym_variable_name, - ACTIONS(8699), 1, - anon_sym_RBRACE3, - STATE(3452), 1, - aux_sym_expansion_repeat1, - STATE(4385), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [149857] = 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [161828] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8701), 1, + ACTIONS(9242), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3428), 1, aux_sym_expansion_repeat1, - STATE(4273), 1, + STATE(4661), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(9240), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [149905] = 13, + [161876] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9244), 1, + sym__special_character, + STATE(3432), 1, + aux_sym__literal_repeat1, + ACTIONS(1352), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1357), 13, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [161908] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7908), 1, + aux_sym_concatenation_token1, + ACTIONS(9247), 1, + sym__concat, + STATE(2726), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1252), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [161942] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8703), 1, + ACTIONS(9251), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3439), 1, aux_sym_expansion_repeat1, - STATE(4396), 1, + STATE(4809), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(9249), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [149953] = 13, + [161990] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8707), 1, + ACTIONS(9253), 1, anon_sym_RBRACE3, - STATE(3223), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4482), 1, + STATE(4671), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8705), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [150001] = 13, + [162038] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7908), 1, + aux_sym_concatenation_token1, + ACTIONS(9255), 1, + sym__concat, + STATE(2726), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1246), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [162072] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9034), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9036), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [162100] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8711), 1, + ACTIONS(9259), 1, anon_sym_RBRACE3, - STATE(3230), 1, + STATE(3435), 1, aux_sym_expansion_repeat1, - STATE(4278), 1, + STATE(4681), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8709), 3, + ACTIONS(9257), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [150049] = 13, + [162148] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8713), 1, + ACTIONS(9261), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4631), 1, + STATE(4802), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [150097] = 13, + [162196] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8717), 1, + ACTIONS(9265), 1, anon_sym_RBRACE3, - STATE(3234), 1, + STATE(3424), 1, aux_sym_expansion_repeat1, - STATE(4601), 1, + STATE(4488), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8715), 3, + ACTIONS(9263), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [150145] = 3, + [162244] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(8699), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1356), 14, - sym__concat, + ACTIONS(8701), 14, + sym_extglob_pattern, sym__brace_start, - anon_sym_RPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [150173] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, - sym_variable_name, - ACTIONS(8719), 1, - anon_sym_RBRACE3, - STATE(3452), 1, - aux_sym_expansion_repeat1, - STATE(4281), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [150221] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, - sym_variable_name, - ACTIONS(8723), 1, - anon_sym_RBRACE3, - STATE(3237), 1, - aux_sym_expansion_repeat1, - STATE(4288), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8721), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [150269] = 3, + [162272] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1350), 6, + ACTIONS(8602), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1352), 14, - sym__concat, + ACTIONS(8604), 14, + sym_extglob_pattern, sym__brace_start, - anon_sym_RPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [150297] = 13, + [162300] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8748), 1, + aux_sym_concatenation_token1, + ACTIONS(9267), 1, + sym__concat, + STATE(3412), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1252), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1254), 12, + sym_file_descriptor, + sym_variable_name, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [162334] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8725), 1, + ACTIONS(9269), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4294), 1, + STATE(4820), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [150345] = 13, + [162382] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8729), 1, + ACTIONS(9271), 1, anon_sym_RBRACE3, - STATE(3240), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4300), 1, + STATE(4685), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8727), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [150393] = 13, + [162430] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8733), 1, + ACTIONS(9275), 1, anon_sym_RBRACE3, - STATE(3249), 1, + STATE(3452), 1, aux_sym_expansion_repeat1, - STATE(4588), 1, + STATE(4699), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8731), 3, + ACTIONS(9273), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [150441] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3213), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8247), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3783), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(3785), 12, - sym_file_descriptor, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [150473] = 3, + [162478] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1328), 6, + ACTIONS(9034), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1330), 14, - sym__concat, + ACTIONS(9036), 14, + sym_extglob_pattern, sym__brace_start, - anon_sym_RPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [150501] = 4, + [162506] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8739), 1, - anon_sym_esac, - ACTIONS(8735), 5, + ACTIONS(9277), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8737), 14, + ACTIONS(9279), 14, sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, @@ -183221,21 +195105,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [150531] = 4, + [162534] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_esac, - ACTIONS(8741), 5, + ACTIONS(8984), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8743), 14, + ACTIONS(8986), 14, sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, @@ -183247,457 +195130,570 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [150561] = 13, + [162562] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8747), 1, + ACTIONS(9283), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3445), 1, aux_sym_expansion_repeat1, - STATE(4305), 1, + STATE(4696), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(9281), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [150609] = 13, + [162610] = 10, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7794), 1, + anon_sym_PIPE, + ACTIONS(9285), 1, + anon_sym_LT_LT, + ACTIONS(9294), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9297), 1, + anon_sym_LT_LT_LT, + ACTIONS(9300), 1, + sym_file_descriptor, + ACTIONS(7802), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(9291), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(3451), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9288), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [162652] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8751), 1, + ACTIONS(9303), 1, anon_sym_RBRACE3, - STATE(3254), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4392), 1, + STATE(4739), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8749), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [150657] = 13, + [162700] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8753), 1, + ACTIONS(9307), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3466), 1, aux_sym_expansion_repeat1, - STATE(4581), 1, + STATE(4797), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(9305), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [150705] = 13, + [162748] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8755), 1, + ACTIONS(9309), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4692), 1, + STATE(4712), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [150753] = 5, + [162796] = 3, ACTIONS(63), 1, sym_comment, - STATE(3214), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8247), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3787), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(3789), 12, - sym_file_descriptor, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [150785] = 13, + ACTIONS(8889), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8891), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [162824] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8759), 1, + ACTIONS(9313), 1, anon_sym_RBRACE3, - STATE(3247), 1, + STATE(3454), 1, aux_sym_expansion_repeat1, - STATE(4312), 1, + STATE(4723), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8757), 3, + ACTIONS(9311), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [150833] = 10, + [162872] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7550), 1, - anon_sym_PIPE, - ACTIONS(8761), 1, - anon_sym_LT_LT, - ACTIONS(8770), 1, - anon_sym_LT_LT_DASH, - ACTIONS(8773), 1, - anon_sym_LT_LT_LT, - ACTIONS(8776), 1, - sym_file_descriptor, - ACTIONS(7548), 3, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(8767), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(3253), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8764), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [150875] = 13, + ACTIONS(8917), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8919), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [162900] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8498), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8500), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [162928] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8779), 1, + ACTIONS(9315), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4335), 1, + STATE(4732), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [150923] = 13, + [162976] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8498), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8500), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [163004] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8680), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8682), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [163032] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8783), 1, + ACTIONS(9319), 1, anon_sym_RBRACE3, - STATE(3262), 1, + STATE(3459), 1, aux_sym_expansion_repeat1, - STATE(4393), 1, + STATE(4741), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8781), 3, + ACTIONS(9317), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [150971] = 13, - ACTIONS(3), 1, + [163080] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8889), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + sym_word, + ACTIONS(8891), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8396), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, - sym_variable_name, - ACTIONS(8785), 1, - anon_sym_RBRACE3, - STATE(3452), 1, - aux_sym_expansion_repeat1, - STATE(4317), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [163108] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8917), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [151019] = 5, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8919), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [163136] = 6, ACTIONS(63), 1, sym_comment, - STATE(3294), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8326), 2, - sym__concat, + ACTIONS(8748), 1, aux_sym_concatenation_token1, - ACTIONS(7620), 5, + ACTIONS(9321), 1, + sym__concat, + STATE(3412), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1246), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7618), 12, + ACTIONS(1248), 12, sym_file_descriptor, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [151051] = 13, + [163170] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8789), 1, + ACTIONS(9323), 1, anon_sym_RBRACE3, - STATE(3256), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4324), 1, + STATE(4792), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8787), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [151099] = 13, + [163218] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8793), 1, + ACTIONS(9327), 1, anon_sym_RBRACE3, - STATE(3250), 1, + STATE(3444), 1, aux_sym_expansion_repeat1, - STATE(4523), 1, + STATE(4798), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8791), 3, + ACTIONS(9325), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [151147] = 4, + [163266] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_esac, - ACTIONS(8741), 5, + ACTIONS(8596), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8743), 14, + ACTIONS(8598), 14, sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, @@ -183709,151 +195705,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [151177] = 13, + [163294] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8795), 1, + ACTIONS(9329), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4469), 1, + STATE(4747), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [151225] = 13, + [163342] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8797), 1, + ACTIONS(9333), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3476), 1, aux_sym_expansion_repeat1, - STATE(4422), 1, + STATE(4757), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(9331), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [151273] = 3, + [163390] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 6, + ACTIONS(1242), 7, + anon_sym_LPAREN, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1286), 14, - sym__concat, + ACTIONS(1244), 13, sym__brace_start, - anon_sym_RPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [151301] = 13, + [163418] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8799), 1, + ACTIONS(9337), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3477), 1, aux_sym_expansion_repeat1, - STATE(4330), 1, + STATE(4788), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(9335), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [151349] = 4, + [163466] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8468), 1, - anon_sym_esac, - ACTIONS(8464), 5, + ACTIONS(9138), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8466), 14, + ACTIONS(9140), 14, sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, @@ -183865,887 +195860,1265 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [151379] = 3, + [163494] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(9341), 1, + anon_sym_RBRACE3, + STATE(3469), 1, + aux_sym_expansion_repeat1, + STATE(4756), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(9339), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [163542] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 6, + ACTIONS(8680), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1286), 14, - sym__concat, + ACTIONS(8682), 14, + sym_extglob_pattern, sym__brace_start, - anon_sym_RPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [151407] = 13, + [163570] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8803), 1, + ACTIONS(9343), 1, anon_sym_RBRACE3, - STATE(3274), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4562), 1, + STATE(4761), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8801), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [151455] = 13, + [163618] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8807), 1, + ACTIONS(9345), 1, anon_sym_RBRACE3, - STATE(3264), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4257), 1, + STATE(4780), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8805), 3, + ACTIONS(8897), 3, anon_sym_EQ, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 4, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [151503] = 5, + [163666] = 3, ACTIONS(63), 1, sym_comment, - STATE(3152), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8326), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(7616), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7614), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [151535] = 13, + ACTIONS(8662), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8664), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [163694] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, + ACTIONS(8885), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(8887), 1, sym_variable_name, - ACTIONS(8809), 1, + ACTIONS(9347), 1, anon_sym_RBRACE3, - STATE(3452), 1, + STATE(3573), 1, aux_sym_expansion_repeat1, - STATE(4520), 1, + STATE(4762), 1, sym__expansion_body, - STATE(621), 2, + STATE(605), 2, sym_subscript, sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, + ACTIONS(8875), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(8386), 4, + ACTIONS(8897), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT, - [151583] = 3, + [163742] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1320), 6, + ACTIONS(8596), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1322), 14, - sym__concat, + ACTIONS(8598), 14, + sym_extglob_pattern, sym__brace_start, - anon_sym_RPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [151611] = 3, + [163770] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8881), 1, + anon_sym_BQUOTE, + ACTIONS(8883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8887), 1, + sym_variable_name, + ACTIONS(9351), 1, + anon_sym_RBRACE3, + STATE(3479), 1, + aux_sym_expansion_repeat1, + STATE(4774), 1, + sym__expansion_body, + STATE(605), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8875), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(9349), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8873), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + [163818] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 6, + ACTIONS(9353), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1348), 14, - sym__concat, + ACTIONS(9355), 14, + sym_extglob_pattern, sym__brace_start, - anon_sym_RPAREN, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [151639] = 3, + [163846] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1318), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1320), 14, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [163873] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1330), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1332), 14, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [163900] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9357), 1, + sym__special_character, + STATE(3502), 1, + aux_sym__literal_repeat1, + ACTIONS(7885), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(7887), 12, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [163931] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1298), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1300), 14, + sym_file_descriptor, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [163958] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7930), 1, + anon_sym_LF, + ACTIONS(9359), 1, + sym_file_descriptor, + STATE(3488), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7928), 7, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(8713), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [163991] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8059), 1, + anon_sym_LF, + ACTIONS(9364), 1, + sym_file_descriptor, + STATE(3488), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(8054), 7, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(9361), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [164024] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1326), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1328), 14, + sym_file_descriptor, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [164051] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9112), 1, + aux_sym_concatenation_token1, + ACTIONS(9367), 1, + sym__concat, + STATE(3510), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1252), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1254), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [164084] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1276), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1278), 14, + sym_file_descriptor, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [164111] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3490), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9112), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(7875), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(7877), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [164142] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1314), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1316), 14, + sym_file_descriptor, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [164169] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3495), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9112), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(7879), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(7881), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [164200] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9112), 1, + aux_sym_concatenation_token1, + ACTIONS(9369), 1, + sym__concat, + STATE(3510), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1246), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1248), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [164233] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1318), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1320), 14, + sym_file_descriptor, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [164260] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9371), 1, + sym__special_character, + STATE(3497), 1, + aux_sym__literal_repeat1, + ACTIONS(1352), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1357), 12, + sym_file_descriptor, + sym_variable_name, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [164291] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1280), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1282), 14, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [164318] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3495), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9112), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(7885), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(7887), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [164349] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1294), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1296), 14, + sym_file_descriptor, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [164376] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3490), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9112), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(7902), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(7904), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [164407] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9374), 1, + sym__special_character, + STATE(3502), 1, + aux_sym__literal_repeat1, + ACTIONS(1352), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1357), 12, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [164438] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1342), 6, + ACTIONS(1242), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1344), 14, - sym__concat, + ACTIONS(1244), 14, sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [151667] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, - sym_variable_name, - ACTIONS(8811), 1, - anon_sym_RBRACE3, - STATE(3452), 1, - aux_sym_expansion_repeat1, - STATE(4552), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [151715] = 10, + [164465] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7127), 1, - anon_sym_PIPE, - ACTIONS(8813), 1, + ACTIONS(1310), 5, anon_sym_LT_LT, - ACTIONS(8819), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1312), 14, + sym_file_descriptor, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - ACTIONS(8821), 1, anon_sym_LT_LT_LT, - ACTIONS(8823), 1, + aux_sym_concatenation_token1, + [164492] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1258), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1263), 14, sym_file_descriptor, - ACTIONS(7125), 3, + sym__concat, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_PIPE_AMP, - ACTIONS(8817), 3, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [164519] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1268), 5, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, - STATE(3253), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8815), 5, + ACTIONS(1270), 14, + sym_file_descriptor, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [151757] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, - sym_variable_name, - ACTIONS(8825), 1, - anon_sym_RBRACE3, - STATE(3452), 1, - aux_sym_expansion_repeat1, - STATE(4666), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [151805] = 13, - ACTIONS(3), 1, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [164546] = 7, + ACTIONS(63), 1, sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, - sym_variable_name, - ACTIONS(8829), 1, - anon_sym_RBRACE3, - STATE(3126), 1, - aux_sym_expansion_repeat1, - STATE(4379), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8827), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [151853] = 13, - ACTIONS(3), 1, + ACTIONS(9377), 1, + sym_file_descriptor, + ACTIONS(7928), 2, + anon_sym_LT_LT, + anon_sym_PIPE, + STATE(3533), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(8658), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(8656), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(7930), 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [164581] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, - sym_variable_name, - ACTIONS(8831), 1, - anon_sym_RBRACE3, - STATE(3452), 1, - aux_sym_expansion_repeat1, - STATE(4340), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [151901] = 13, - ACTIONS(3), 1, + ACTIONS(1258), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1263), 14, + sym_file_descriptor, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [164608] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(1326), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1328), 14, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(8835), 1, - anon_sym_RBRACE3, - STATE(3270), 1, - aux_sym_expansion_repeat1, - STATE(4528), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8833), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [151949] = 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [164635] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8573), 1, - anon_sym_esac, - ACTIONS(8569), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8571), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [151979] = 4, + STATE(3510), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9379), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1258), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1263), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [164666] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8841), 1, - anon_sym_esac, - ACTIONS(8837), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8839), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9382), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152009] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + STATE(3497), 1, + aux_sym__literal_repeat1, + ACTIONS(3841), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(3843), 12, + sym_file_descriptor, sym_variable_name, - ACTIONS(8845), 1, - anon_sym_RBRACE3, - STATE(3278), 1, - aux_sym_expansion_repeat1, - STATE(4347), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8843), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [152057] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [164697] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1338), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1340), 14, + ACTIONS(1280), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1282), 14, + sym_file_descriptor, sym__concat, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152085] = 13, - ACTIONS(3), 1, + [164724] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(1314), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1316), 14, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(8849), 1, - anon_sym_RBRACE3, - STATE(3162), 1, - aux_sym_expansion_repeat1, - STATE(4440), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8847), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [152133] = 13, - ACTIONS(3), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [164751] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(1302), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1304), 14, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(8851), 1, - anon_sym_RBRACE3, - STATE(3452), 1, - aux_sym_expansion_repeat1, - STATE(4516), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [152181] = 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [164778] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8857), 1, - anon_sym_esac, - ACTIONS(8853), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8855), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152211] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(1272), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1274), 14, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(8861), 1, - anon_sym_RBRACE3, - STATE(3298), 1, - aux_sym_expansion_repeat1, - STATE(4368), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8859), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [152259] = 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [164805] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8545), 1, - anon_sym_esac, - ACTIONS(8541), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8543), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9357), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152289] = 3, + STATE(3502), 1, + aux_sym__literal_repeat1, + ACTIONS(7879), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(7881), 12, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [164836] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1298), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1300), 14, + ACTIONS(1338), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1340), 14, + sym_file_descriptor, sym__concat, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152317] = 13, - ACTIONS(3), 1, + [164863] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, - sym_variable_name, - ACTIONS(8863), 1, - anon_sym_RBRACE3, - STATE(3452), 1, - aux_sym_expansion_repeat1, - STATE(4350), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [152365] = 4, + ACTIONS(1342), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1344), 14, + sym_file_descriptor, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [164890] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_esac, - ACTIONS(8685), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8687), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152395] = 13, - ACTIONS(3), 1, + ACTIONS(1346), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1348), 14, + sym_file_descriptor, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [164917] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(1294), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1296), 14, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(8867), 1, - anon_sym_RBRACE3, - STATE(3299), 1, - aux_sym_expansion_repeat1, - STATE(4546), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8865), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [152443] = 13, - ACTIONS(3), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [164944] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(1284), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1286), 14, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(8871), 1, - anon_sym_RBRACE3, - STATE(3290), 1, - aux_sym_expansion_repeat1, - STATE(4357), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8869), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [152491] = 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [164971] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8326), 1, - aux_sym_concatenation_token1, - ACTIONS(8873), 1, - sym__concat, - STATE(3161), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1264), 5, + ACTIONS(1272), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1266), 12, + ACTIONS(1274), 14, sym_file_descriptor, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -184757,237 +197130,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [152525] = 4, + aux_sym_concatenation_token1, + [164998] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_esac, - ACTIONS(8875), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8877), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152555] = 3, + ACTIONS(1322), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1324), 14, + sym_file_descriptor, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [165025] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, + ACTIONS(1334), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, ACTIONS(1336), 14, + sym_file_descriptor, sym__concat, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152583] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, - sym_variable_name, - ACTIONS(8883), 1, - anon_sym_RBRACE3, - STATE(3285), 1, - aux_sym_expansion_repeat1, - STATE(4486), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8881), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [152631] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, - sym_variable_name, - ACTIONS(8885), 1, - anon_sym_RBRACE3, - STATE(3452), 1, - aux_sym_expansion_repeat1, - STATE(4360), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [152679] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, sym_variable_name, - ACTIONS(8887), 1, - anon_sym_RBRACE3, - STATE(3452), 1, - aux_sym_expansion_repeat1, - STATE(4538), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8384), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [152727] = 13, - ACTIONS(3), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [165052] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8400), 1, + ACTIONS(1298), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1300), 14, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(8891), 1, - anon_sym_RBRACE3, - STATE(3276), 1, - aux_sym_expansion_repeat1, - STATE(4672), 1, - sym__expansion_body, - STATE(621), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8388), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8889), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8386), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [152775] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [165079] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8685), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8687), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152802] = 5, + ACTIONS(1310), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1312), 14, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [165106] = 3, ACTIONS(63), 1, sym_comment, - STATE(3302), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8893), 2, + ACTIONS(1268), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1270), 14, + sym_file_descriptor, sym__concat, + sym_variable_name, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - ACTIONS(1274), 5, + [165133] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1268), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1279), 11, + ACTIONS(1270), 14, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -184998,16 +197274,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [152833] = 3, + aux_sym_concatenation_token1, + [165160] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1354), 5, + ACTIONS(1268), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1356), 14, + ACTIONS(1270), 14, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -185022,88 +197299,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [152860] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8896), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8898), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152887] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8896), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8898), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152914] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8900), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8902), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152941] = 3, + [165187] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1342), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1304), 14, + ACTIONS(1344), 14, sym_file_descriptor, sym__concat, sym_variable_name, @@ -185118,16 +197323,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [152968] = 3, + [165214] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1350), 5, + ACTIONS(1322), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1352), 14, + ACTIONS(1324), 14, sym_file_descriptor, sym__concat, sym_variable_name, @@ -185142,16 +197347,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [152995] = 3, + [165241] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1346), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1279), 14, + ACTIONS(1348), 14, sym_file_descriptor, sym__concat, sym_variable_name, @@ -185166,71 +197371,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [153022] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8904), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8906), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153049] = 3, + [165268] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(8908), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8910), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153076] = 3, + ACTIONS(9390), 1, + sym_file_descriptor, + ACTIONS(8054), 2, + anon_sym_LT_LT, + anon_sym_PIPE, + STATE(3533), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(9387), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9384), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8059), 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [165303] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1354), 5, + ACTIONS(1334), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1356), 14, + ACTIONS(1336), 14, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -185238,7 +197423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [153103] = 3, + [165330] = 3, ACTIONS(63), 1, sym_comment, ACTIONS(1284), 5, @@ -185262,114 +197447,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [153130] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8912), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8914), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153157] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8916), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8918), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153184] = 5, + [165357] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8920), 1, - sym__special_character, - STATE(3316), 1, - aux_sym__literal_repeat1, - ACTIONS(1358), 5, + ACTIONS(1276), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1363), 12, + ACTIONS(1278), 14, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [153215] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8923), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8925), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153242] = 3, + aux_sym_concatenation_token1, + [165384] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 5, + ACTIONS(1330), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1286), 14, + ACTIONS(1332), 14, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -185384,40 +197495,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [153269] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8896), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8898), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153296] = 3, + [165411] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1288), 5, + ACTIONS(1302), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1290), 14, + ACTIONS(1304), 14, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -185432,21 +197519,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [153323] = 5, + [165438] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8927), 1, - sym__special_character, - STATE(3390), 1, - aux_sym__literal_repeat1, - ACTIONS(3787), 5, + ACTIONS(1338), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(3789), 12, + ACTIONS(1340), 14, sym_file_descriptor, + sym__concat, sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -185458,45 +197542,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [153354] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8929), 1, - sym__special_character, - STATE(3352), 1, - aux_sym__literal_repeat1, - ACTIONS(4049), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4051), 12, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153385] = 3, + aux_sym_concatenation_token1, + [165465] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1308), 5, + ACTIONS(1284), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1310), 14, + ACTIONS(1286), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -185508,67 +197566,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [153412] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8931), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8933), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153439] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8896), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8898), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153466] = 3, + [165491] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1312), 5, + ACTIONS(1326), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1314), 14, + ACTIONS(1328), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -185580,23 +197589,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [153493] = 6, + [165517] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8402), 1, - aux_sym_concatenation_token1, - ACTIONS(8935), 1, - sym__concat, - STATE(3302), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 5, + ACTIONS(1314), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1260), 11, + ACTIONS(1316), 13, sym_file_descriptor, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -185607,95 +197611,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [153526] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8912), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8914), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153553] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8912), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8914), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153580] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8937), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8939), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153607] = 3, + aux_sym_concatenation_token1, + [165543] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1328), 5, + ACTIONS(1342), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1330), 14, + ACTIONS(1344), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -185703,91 +197635,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [153634] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8941), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8943), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153661] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8937), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8939), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153688] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8945), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8947), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153715] = 3, + [165569] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 5, + ACTIONS(1280), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1286), 14, + ACTIONS(1282), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -185799,19 +197658,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [153742] = 3, + [165595] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 5, + ACTIONS(1302), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1286), 14, + ACTIONS(1304), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -185823,69 +197681,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [153769] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8937), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8939), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153796] = 3, + [165621] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8937), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8939), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9393), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153823] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3347), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8402), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(7640), 5, + STATE(3551), 1, + aux_sym__literal_repeat1, + ACTIONS(7885), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7638), 11, + ACTIONS(7887), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -185897,91 +197706,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [153854] = 3, - ACTIONS(63), 1, + [165651] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(8625), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8627), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + ACTIONS(9397), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153881] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8945), 5, + STATE(3980), 1, + sym_string, + ACTIONS(9399), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1215), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + ACTIONS(9395), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8947), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153908] = 3, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [165683] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8685), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8687), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153935] = 3, + ACTIONS(1298), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1300), 13, + sym_file_descriptor, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [165709] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 5, + ACTIONS(1294), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1348), 14, + ACTIONS(1296), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -185993,19 +197778,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [153962] = 3, + [165735] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1342), 5, + ACTIONS(1346), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1344), 14, + ACTIONS(1348), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -186017,45 +197801,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [153989] = 3, + [165761] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8916), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8918), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9401), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154016] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3347), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8402), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(7620), 5, + STATE(3551), 1, + aux_sym__literal_repeat1, + ACTIONS(1352), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7618), 11, + ACTIONS(1357), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186067,23 +197826,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [154047] = 6, + [165791] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8402), 1, - aux_sym_concatenation_token1, - ACTIONS(8949), 1, - sym__concat, - STATE(3302), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1264), 5, + ACTIONS(1338), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1266), 11, + ACTIONS(1340), 13, sym_file_descriptor, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -186094,71 +197848,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [154080] = 3, + aux_sym_concatenation_token1, + [165817] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8916), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8918), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1242), 6, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154107] = 3, - ACTIONS(63), 1, + ACTIONS(1244), 12, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [165843] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(8853), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8855), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + ACTIONS(9397), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154134] = 3, + STATE(3980), 1, + sym_string, + ACTIONS(9399), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1205), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + ACTIONS(9395), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [165875] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 5, + ACTIONS(1318), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1348), 14, + ACTIONS(1320), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -186166,19 +197921,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [154161] = 3, + [165901] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1338), 5, + ACTIONS(1310), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1340), 14, + ACTIONS(1312), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -186190,45 +197944,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [154188] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8951), 1, - sym__special_character, - STATE(3352), 1, - aux_sym__literal_repeat1, - ACTIONS(1358), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1363), 12, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154219] = 3, + [165927] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 5, + ACTIONS(1276), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1336), 14, + ACTIONS(1278), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -186240,45 +197967,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [154246] = 3, + [165953] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1342), 5, + ACTIONS(9410), 1, + sym_file_descriptor, + ACTIONS(8054), 2, + anon_sym_LT_LT, + anon_sym_PIPE, + STATE(3558), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(9407), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(8059), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(9404), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [165987] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1242), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1344), 14, + ACTIONS(1244), 13, sym_file_descriptor, - sym__concat, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [154273] = 5, + sym__special_character, + [166013] = 5, ACTIONS(63), 1, sym_comment, - STATE(3327), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8402), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(7644), 5, + ACTIONS(9393), 1, + sym__special_character, + STATE(3551), 1, + aux_sym__literal_repeat1, + ACTIONS(7879), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7642), 11, + ACTIONS(7881), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186290,71 +198042,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [154304] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8912), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8914), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154331] = 3, - ACTIONS(63), 1, + [166043] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8877), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154358] = 3, + ACTIONS(8135), 1, + anon_sym_LF, + ACTIONS(9359), 1, + sym_file_descriptor, + STATE(2988), 1, + sym_file_redirect, + ACTIONS(8133), 7, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(8713), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [166075] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1350), 5, + ACTIONS(1334), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1352), 14, + ACTIONS(1336), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -186362,67 +198091,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [154385] = 3, + [166101] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8954), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8956), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154412] = 3, + ACTIONS(1268), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1270), 13, + sym_file_descriptor, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [166127] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8958), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8960), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154439] = 3, + ACTIONS(1322), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1324), 13, + sym_file_descriptor, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [166153] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1320), 5, + ACTIONS(1258), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1322), 14, + ACTIONS(1263), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -186434,99 +198160,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [154466] = 7, + [166179] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8143), 1, + anon_sym_LF, + ACTIONS(9359), 1, + sym_file_descriptor, + STATE(3071), 1, + sym_file_redirect, + ACTIONS(8141), 7, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(8713), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [166211] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8139), 1, + anon_sym_LF, + ACTIONS(9359), 1, + sym_file_descriptor, + STATE(3080), 1, + sym_file_redirect, + ACTIONS(8137), 7, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(8713), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [166243] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(8962), 1, + ACTIONS(9413), 1, sym_file_descriptor, - ACTIONS(7840), 2, + ACTIONS(7928), 2, anon_sym_LT_LT, anon_sym_PIPE, - STATE(3411), 2, + STATE(3558), 2, sym_file_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(8211), 3, + ACTIONS(9066), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(7930), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(9064), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [166277] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1268), 5, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8209), 5, + ACTIONS(1270), 13, + sym_file_descriptor, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7838), 6, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [154501] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8837), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8839), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154528] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8964), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8966), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154555] = 3, + aux_sym_concatenation_token1, + [166303] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1338), 5, + ACTIONS(1272), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1340), 14, + ACTIONS(1274), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -186534,23 +198285,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [154582] = 3, + [166329] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1316), 5, + ACTIONS(1330), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1318), 14, + ACTIONS(1332), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -186558,18 +198308,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [154609] = 3, + [166355] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1288), 5, + ACTIONS(3837), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1290), 14, + ACTIONS(3839), 12, sym_file_descriptor, - sym__concat, sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186581,67 +198330,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [154636] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8464), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8466), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154663] = 3, - ACTIONS(63), 1, + [166380] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8916), 5, + STATE(3573), 1, + aux_sym_expansion_repeat1, + ACTIONS(9415), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(9420), 4, anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + ACTIONS(9418), 9, + sym_variable_name, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_RBRACE3, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8918), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154690] = 3, + [166409] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1324), 5, + ACTIONS(4370), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1326), 14, + ACTIONS(4372), 12, sym_file_descriptor, - sym__concat, sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186653,21 +198376,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [154717] = 5, + [166434] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8968), 1, - sym__special_character, - STATE(3316), 1, - aux_sym__literal_repeat1, - ACTIONS(7640), 5, + ACTIONS(8261), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7638), 12, + ACTIONS(8259), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186680,114 +198398,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [154748] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8464), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8466), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154775] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8945), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8947), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154802] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8970), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8972), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154829] = 3, + [166459] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(8970), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8972), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154856] = 3, + ACTIONS(9413), 1, + sym_file_descriptor, + STATE(3594), 1, + sym_file_redirect, + ACTIONS(8137), 2, + anon_sym_LT_LT, + anon_sym_PIPE, + ACTIONS(9066), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(8139), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(9064), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [166492] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 5, + ACTIONS(8281), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1336), 14, + ACTIONS(8283), 12, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -186799,19 +198446,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [154883] = 3, + [166517] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(4374), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1300), 14, + ACTIONS(4376), 12, sym_file_descriptor, - sym__concat, sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186823,118 +198468,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [154910] = 3, + [166542] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1328), 5, + ACTIONS(8287), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1330), 14, + ACTIONS(8289), 12, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [154937] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8945), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8947), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154964] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8954), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8956), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154991] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8974), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8976), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155018] = 5, + [166567] = 3, ACTIONS(63), 1, sym_comment, - STATE(3327), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8402), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(7616), 5, + ACTIONS(1242), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7614), 11, + ACTIONS(1244), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186946,260 +198511,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [155049] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8741), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8743), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155076] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8741), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8743), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155103] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8541), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8543), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155130] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8541), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8543), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155157] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8410), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8412), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155184] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8954), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8956), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155211] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8410), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8412), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155238] = 5, + [166592] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8978), 1, - sym__special_character, - STATE(3390), 1, - aux_sym__literal_repeat1, - ACTIONS(1358), 5, + ACTIONS(7875), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1363), 12, + ACTIONS(7877), 12, sym_file_descriptor, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [155269] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8970), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8972), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155296] = 3, + [166617] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(8503), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8505), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155323] = 3, + ACTIONS(9413), 1, + sym_file_descriptor, + STATE(3618), 1, + sym_file_redirect, + ACTIONS(8141), 2, + anon_sym_LT_LT, + anon_sym_PIPE, + ACTIONS(9066), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(8143), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(9064), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [166650] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1324), 5, + ACTIONS(8221), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1326), 14, + ACTIONS(8223), 12, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -187211,139 +198582,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [155350] = 3, + [166675] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8970), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8972), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155377] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8954), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8956), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155404] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1316), 5, + ACTIONS(8277), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1318), 14, + ACTIONS(8279), 12, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [155431] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8503), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8505), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155458] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8569), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8571), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155485] = 3, + [166700] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1320), 5, + ACTIONS(8241), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1322), 14, + ACTIONS(8239), 12, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -187355,43 +198626,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [155512] = 3, + [166725] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(8923), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8925), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155539] = 3, + ACTIONS(9413), 1, + sym_file_descriptor, + STATE(3622), 1, + sym_file_redirect, + ACTIONS(8133), 2, + anon_sym_LT_LT, + anon_sym_PIPE, + ACTIONS(9066), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(8135), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(9064), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [166758] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(7902), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1300), 14, + ACTIONS(7904), 12, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -187403,408 +198674,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [155566] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8923), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8925), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155593] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8589), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8591), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155620] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8535), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8537), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155647] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8735), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8737), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155674] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8569), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8571), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155701] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8631), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8633), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155728] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8428), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8430), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155755] = 3, + [166783] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1312), 5, + ACTIONS(8373), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1314), 14, + ACTIONS(8375), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [155782] = 3, + [166807] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1308), 5, + ACTIONS(8297), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1310), 14, + ACTIONS(8295), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [155809] = 7, + [166831] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8987), 1, - sym_file_descriptor, - ACTIONS(7781), 2, + ACTIONS(8363), 5, anon_sym_LT_LT, - anon_sym_PIPE, - STATE(3411), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(8984), 3, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8981), 5, + ACTIONS(8361), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7779), 6, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [155844] = 3, + [166855] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(4390), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1279), 14, + ACTIONS(4392), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [155871] = 3, + [166879] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(4390), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1304), 14, + ACTIONS(4392), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [155898] = 5, + [166903] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8968), 1, - sym__special_character, - STATE(3316), 1, - aux_sym__literal_repeat1, - ACTIONS(7620), 5, + ACTIONS(8263), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7618), 12, + ACTIONS(8265), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [155929] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8428), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8430), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155956] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8923), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8925), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155983] = 3, + [166927] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(8386), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - sym__special_character, - ACTIONS(1272), 12, + ACTIONS(8384), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [156009] = 3, + [166951] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1338), 5, + ACTIONS(8327), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1340), 13, + ACTIONS(8329), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -187815,19 +198842,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [156035] = 3, + [166975] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1312), 5, + ACTIONS(8205), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1314), 13, + ACTIONS(8207), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -187838,19 +198863,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [156061] = 3, + [166999] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1308), 5, + ACTIONS(8277), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1310), 13, + ACTIONS(8279), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -187861,19 +198884,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [156087] = 3, + [167023] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1324), 5, + ACTIONS(8281), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1326), 13, + ACTIONS(8283), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -187884,19 +198905,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [156113] = 3, + [167047] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1316), 5, + ACTIONS(8287), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1318), 13, + ACTIONS(8289), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -187907,21 +198926,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [156139] = 5, + [167071] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8990), 1, - sym__special_character, - STATE(3423), 1, - aux_sym__literal_repeat1, - ACTIONS(1358), 5, + ACTIONS(8221), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1363), 11, + ACTIONS(8223), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -187933,18 +198947,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [156169] = 3, + [167095] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(8261), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1279), 13, + ACTIONS(8259), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -187955,19 +198968,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [156195] = 3, + [167119] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1328), 5, + ACTIONS(8241), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1330), 13, + ACTIONS(8239), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -187978,46 +198989,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [156221] = 7, + [167143] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8999), 1, - sym_file_descriptor, - ACTIONS(7781), 2, + ACTIONS(7902), 5, anon_sym_LT_LT, - anon_sym_PIPE, - STATE(3426), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(8996), 3, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7779), 5, + ACTIONS(7904), 11, + sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(8993), 5, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [156255] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [167167] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(7875), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1304), 13, + ACTIONS(7877), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -188028,21 +199031,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [156281] = 5, + [167191] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9002), 1, - sym__special_character, - STATE(3423), 1, - aux_sym__literal_repeat1, - ACTIONS(7640), 5, + ACTIONS(8215), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7638), 11, + ACTIONS(8213), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -188054,18 +199052,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [156311] = 3, + [167215] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1288), 5, + ACTIONS(8211), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1290), 13, + ACTIONS(8209), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -188076,44 +199073,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [156337] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1270), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1272), 13, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [156363] = 5, + [167239] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9002), 1, - sym__special_character, - STATE(3423), 1, - aux_sym__literal_repeat1, - ACTIONS(7620), 5, + ACTIONS(8227), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7618), 11, + ACTIONS(8225), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -188125,18 +199094,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [156393] = 3, + [167263] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(8227), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1272), 13, + ACTIONS(8225), 11, sym_file_descriptor, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -188147,19 +199115,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [156419] = 3, + [167287] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1354), 5, + ACTIONS(8247), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1356), 13, + ACTIONS(8249), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -188170,19 +199136,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [156445] = 3, + [167311] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1350), 5, + ACTIONS(8331), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1352), 13, + ACTIONS(8333), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -188193,19 +199157,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [156471] = 3, + [167335] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 5, + ACTIONS(8187), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1286), 13, + ACTIONS(8189), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -188216,19 +199178,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [156497] = 3, + [167359] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 5, + ACTIONS(8253), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1286), 13, + ACTIONS(8251), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -188239,19 +199199,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [156523] = 3, + [167383] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1342), 5, + ACTIONS(8219), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1344), 13, + ACTIONS(8217), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -188262,94 +199220,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [156549] = 3, + [167407] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 5, + ACTIONS(8369), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1348), 13, + ACTIONS(8371), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [156575] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9006), 1, - anon_sym_DQUOTE, - STATE(3872), 1, - sym_string, - ACTIONS(9008), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1209), 5, - anon_sym_LF, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(9004), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [156607] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9006), 1, - anon_sym_DQUOTE, - STATE(3872), 1, - sym_string, - ACTIONS(9008), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1219), 5, - anon_sym_LF, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(9004), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [156639] = 3, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [167431] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(8367), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1300), 13, + ACTIONS(8365), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -188360,19 +199262,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [156665] = 3, + [167455] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 5, + ACTIONS(8273), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1336), 13, + ACTIONS(8271), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -188383,19 +199283,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [156691] = 3, + [167479] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1320), 5, + ACTIONS(8382), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1322), 13, + ACTIONS(8380), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -188406,146 +199304,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [156717] = 7, + [167503] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9010), 1, - sym_file_descriptor, - ACTIONS(7840), 2, + ACTIONS(8299), 5, anon_sym_LT_LT, - anon_sym_PIPE, - STATE(3426), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(8817), 3, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7838), 5, + ACTIONS(8301), 11, + sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(8815), 5, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [156751] = 7, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [167527] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9010), 1, - sym_file_descriptor, - STATE(3457), 1, - sym_file_redirect, - ACTIONS(7936), 2, + ACTIONS(8319), 5, anon_sym_LT_LT, - anon_sym_PIPE, - ACTIONS(8817), 3, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7934), 5, + ACTIONS(8321), 11, + sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(8815), 5, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [156784] = 7, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [167551] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9010), 1, - sym_file_descriptor, - STATE(3485), 1, - sym_file_redirect, - ACTIONS(7967), 2, + ACTIONS(8193), 5, anon_sym_LT_LT, - anon_sym_PIPE, - ACTIONS(8817), 3, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7965), 5, + ACTIONS(8191), 11, + sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(8815), 5, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [156817] = 7, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [167575] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9010), 1, - sym_file_descriptor, - STATE(3490), 1, - sym_file_redirect, - ACTIONS(7982), 2, + ACTIONS(8205), 5, anon_sym_LT_LT, - anon_sym_PIPE, - ACTIONS(8817), 3, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7980), 5, + ACTIONS(8207), 11, + sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(8815), 5, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [156850] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [167599] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8061), 5, + ACTIONS(8199), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8059), 12, + ACTIONS(8197), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [156875] = 3, + [167623] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4295), 5, + ACTIONS(8293), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(4297), 12, + ACTIONS(8291), 11, sym_file_descriptor, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -188556,16 +199430,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [156900] = 3, + [167647] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(8255), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1272), 12, + ACTIONS(8257), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -188577,19 +199451,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [156925] = 3, + [167671] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4291), 5, + ACTIONS(8201), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(4293), 12, + ACTIONS(8203), 11, sym_file_descriptor, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -188600,64 +199472,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [156950] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3452), 1, - aux_sym_expansion_repeat1, - ACTIONS(9012), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(9017), 4, - anon_sym_DOLLAR, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - ACTIONS(9015), 9, - sym_variable_name, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_RBRACE3, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_AT, - [156979] = 3, + [167695] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7616), 5, + ACTIONS(8317), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7614), 12, + ACTIONS(8315), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [157004] = 3, + [167719] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3783), 5, + ACTIONS(8357), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(3785), 12, + ACTIONS(8355), 11, sym_file_descriptor, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -188668,60 +199514,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [157029] = 3, + [167743] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8148), 5, + ACTIONS(8325), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8146), 12, + ACTIONS(8323), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [157054] = 3, + [167767] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7644), 5, + ACTIONS(8185), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7642), 12, + ACTIONS(8183), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [157079] = 3, + [167791] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8086), 5, + ACTIONS(8235), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8084), 11, + ACTIONS(8237), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -188733,1695 +199577,3120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [157103] = 3, - ACTIONS(63), 1, + [167815] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4830), 1, + anon_sym_DQUOTE, + STATE(4132), 1, + sym_string, + ACTIONS(1215), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + ACTIONS(9424), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9422), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [167844] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4830), 1, + anon_sym_DQUOTE, + STATE(4132), 1, + sym_string, + ACTIONS(1205), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + ACTIONS(9424), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9422), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [167873] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9428), 1, + anon_sym_DQUOTE, + STATE(4123), 1, + sym_string, + ACTIONS(1205), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + ACTIONS(9430), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9426), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [167902] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9428), 1, + anon_sym_DQUOTE, + STATE(4123), 1, + sym_string, + ACTIONS(1215), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + ACTIONS(9430), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9426), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [167931] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9434), 1, + anon_sym_DOLLAR, + ACTIONS(9436), 1, + anon_sym_DQUOTE, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3726), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [167969] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9448), 1, + anon_sym_DOLLAR, + ACTIONS(9450), 1, + anon_sym_DQUOTE, + STATE(3735), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168007] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9452), 1, + anon_sym_DOLLAR, + ACTIONS(9454), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168045] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9456), 1, + anon_sym_DOLLAR, + ACTIONS(9458), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168083] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9460), 1, + anon_sym_DOLLAR, + ACTIONS(9462), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168121] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9464), 1, + anon_sym_DOLLAR, + ACTIONS(9466), 1, + anon_sym_DQUOTE, + STATE(3644), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168159] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9468), 1, + anon_sym_DOLLAR, + ACTIONS(9470), 1, + anon_sym_DQUOTE, + STATE(3638), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168197] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9472), 1, + anon_sym_DOLLAR, + ACTIONS(9474), 1, + anon_sym_DQUOTE, + STATE(3645), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168235] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9476), 1, + anon_sym_DOLLAR, + ACTIONS(9478), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168273] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9480), 1, + anon_sym_DOLLAR, + ACTIONS(9482), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168311] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9484), 1, + anon_sym_DOLLAR, + ACTIONS(9486), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168349] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9488), 1, + anon_sym_DOLLAR, + ACTIONS(9490), 1, + anon_sym_DQUOTE, + STATE(3643), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168387] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9492), 1, + anon_sym_DOLLAR, + ACTIONS(9494), 1, + anon_sym_DQUOTE, + STATE(3651), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168425] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9496), 1, + anon_sym_DOLLAR, + ACTIONS(9498), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168463] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9500), 1, + anon_sym_DOLLAR, + ACTIONS(9502), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168501] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9504), 1, + anon_sym_DOLLAR, + ACTIONS(9506), 1, + anon_sym_DQUOTE, + STATE(3649), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168539] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9508), 1, + anon_sym_DOLLAR, + ACTIONS(9510), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168577] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9512), 1, + anon_sym_DOLLAR, + ACTIONS(9514), 1, + anon_sym_DQUOTE, + STATE(3648), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168615] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9516), 1, + anon_sym_DOLLAR, + ACTIONS(9518), 1, + anon_sym_DQUOTE, + STATE(3670), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168653] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9520), 1, + anon_sym_DOLLAR, + ACTIONS(9522), 1, + anon_sym_DQUOTE, + STATE(3657), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168691] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9524), 1, + anon_sym_DOLLAR, + ACTIONS(9526), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168729] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9528), 1, + anon_sym_DOLLAR, + ACTIONS(9530), 1, + anon_sym_DQUOTE, + STATE(3655), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168767] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9532), 1, + anon_sym_DOLLAR, + ACTIONS(9534), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168805] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9536), 1, + anon_sym_DOLLAR, + ACTIONS(9538), 1, + anon_sym_DQUOTE, + STATE(3666), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168843] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9540), 1, + anon_sym_DOLLAR, + ACTIONS(9542), 1, + anon_sym_DQUOTE, + STATE(3664), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168881] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9544), 1, + anon_sym_DOLLAR, + ACTIONS(9546), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168919] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9548), 1, + anon_sym_DOLLAR, + ACTIONS(9550), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168957] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9552), 1, + anon_sym_DOLLAR, + ACTIONS(9554), 1, + anon_sym_DQUOTE, + STATE(3637), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [168995] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9556), 1, + anon_sym_DOLLAR, + ACTIONS(9558), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169033] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9560), 1, + anon_sym_DOLLAR, + ACTIONS(9562), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169071] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9564), 1, + anon_sym_DOLLAR, + ACTIONS(9566), 1, + anon_sym_DQUOTE, + STATE(3671), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169109] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9568), 1, + anon_sym_DOLLAR, + ACTIONS(9570), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169147] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9572), 1, + anon_sym_DOLLAR, + ACTIONS(9574), 1, + anon_sym_DQUOTE, + STATE(3672), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169185] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9576), 1, + anon_sym_DOLLAR, + ACTIONS(9578), 1, + anon_sym_DQUOTE, + STATE(3663), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169223] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9583), 1, + anon_sym_DOLLAR, + ACTIONS(9586), 1, + anon_sym_DQUOTE, + ACTIONS(9588), 1, + sym__string_content, + ACTIONS(9591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9594), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9597), 1, + anon_sym_BQUOTE, + ACTIONS(9600), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9580), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169261] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9603), 1, + anon_sym_DOLLAR, + ACTIONS(9605), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169299] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9607), 1, + anon_sym_DOLLAR, + ACTIONS(9609), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169337] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9611), 1, + anon_sym_DOLLAR, + ACTIONS(9613), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169375] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9615), 1, + anon_sym_DOLLAR, + ACTIONS(9617), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169413] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9619), 1, + anon_sym_DOLLAR, + ACTIONS(9621), 1, + anon_sym_DQUOTE, + STATE(3673), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169451] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9623), 1, + anon_sym_DOLLAR, + ACTIONS(9625), 1, + anon_sym_DQUOTE, + STATE(3676), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169489] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9627), 1, + anon_sym_DOLLAR, + ACTIONS(9629), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169527] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9631), 1, + anon_sym_DOLLAR, + ACTIONS(9633), 1, + anon_sym_DQUOTE, + STATE(3661), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169565] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9635), 1, + anon_sym_DOLLAR, + ACTIONS(9637), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169603] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9639), 1, + anon_sym_DOLLAR, + ACTIONS(9641), 1, + anon_sym_DQUOTE, + STATE(3639), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169641] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9643), 1, + anon_sym_DOLLAR, + ACTIONS(9645), 1, + anon_sym_DQUOTE, + STATE(3684), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169679] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(8061), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8059), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157127] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9647), 1, + anon_sym_DOLLAR, + ACTIONS(9649), 1, + anon_sym_DQUOTE, + STATE(3688), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169717] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(8045), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8043), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157151] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9651), 1, + anon_sym_DOLLAR, + ACTIONS(9653), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169755] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8096), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157175] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9655), 1, + anon_sym_DOLLAR, + ACTIONS(9657), 1, + anon_sym_DQUOTE, + STATE(3682), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169793] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(8053), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8051), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157199] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9659), 1, + anon_sym_DOLLAR, + ACTIONS(9661), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169831] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(8003), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8001), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157223] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9663), 1, + anon_sym_DOLLAR, + ACTIONS(9665), 1, + anon_sym_DQUOTE, + STATE(3660), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169869] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(8041), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8039), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157247] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9667), 1, + anon_sym_DOLLAR, + ACTIONS(9669), 1, + anon_sym_DQUOTE, + STATE(3696), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169907] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(8011), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8009), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157271] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9671), 1, + anon_sym_DOLLAR, + ACTIONS(9673), 1, + anon_sym_DQUOTE, + STATE(3694), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169945] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(8057), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8055), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157295] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9675), 1, + anon_sym_DOLLAR, + ACTIONS(9677), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [169983] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(4348), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157319] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9679), 1, + anon_sym_DOLLAR, + ACTIONS(9681), 1, + anon_sym_DQUOTE, + STATE(3692), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [170021] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(4348), 11, + ACTIONS(9687), 1, + anon_sym_LF, + ACTIONS(9689), 1, sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157343] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8130), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(9685), 2, anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8128), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157367] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8148), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8146), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(4519), 2, + sym_file_redirect, + sym__heredoc_pipeline, + ACTIONS(9683), 8, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157391] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7616), 5, - anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7614), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157415] = 3, - ACTIONS(63), 1, + [170049] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(8102), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8100), 11, + ACTIONS(9689), 1, sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157439] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8152), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(9691), 1, + anon_sym_LF, + ACTIONS(9685), 2, anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8150), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157463] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7644), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7642), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(4752), 2, + sym_file_redirect, + sym__heredoc_pipeline, + ACTIONS(9683), 8, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157487] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8140), 5, - anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8138), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157511] = 3, - ACTIONS(63), 1, + [170077] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(8007), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8005), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157535] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9693), 1, + anon_sym_DOLLAR, + ACTIONS(9695), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [170115] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(8037), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8035), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157559] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9697), 1, + anon_sym_DOLLAR, + ACTIONS(9699), 1, + anon_sym_DQUOTE, + STATE(3706), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [170153] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(8090), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8088), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157583] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9701), 1, + anon_sym_DOLLAR, + ACTIONS(9703), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [170191] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(8134), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8132), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157607] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9705), 1, + anon_sym_DOLLAR, + ACTIONS(9707), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [170229] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(8025), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8023), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157631] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9709), 1, + anon_sym_DOLLAR, + ACTIONS(9711), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [170267] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(8116), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8114), 11, + ACTIONS(9689), 1, sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157655] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8164), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(9713), 1, + anon_sym_LF, + ACTIONS(9685), 2, anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8162), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157679] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8031), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8029), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(4727), 2, + sym_file_redirect, + sym__heredoc_pipeline, + ACTIONS(9683), 8, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157703] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8021), 5, - anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8019), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157727] = 3, - ACTIONS(63), 1, + [170295] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(8065), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8063), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157751] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9715), 1, + anon_sym_DOLLAR, + ACTIONS(9717), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [170333] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(8049), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8047), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157775] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9719), 1, + anon_sym_DOLLAR, + ACTIONS(9721), 1, + anon_sym_DQUOTE, + STATE(3695), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [170371] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(8069), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8067), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157799] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9723), 1, + anon_sym_DOLLAR, + ACTIONS(9725), 1, + anon_sym_DQUOTE, + STATE(3705), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [170409] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(8094), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8092), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157823] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9727), 1, + anon_sym_DOLLAR, + ACTIONS(9729), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [170447] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(8106), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8104), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157847] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9731), 1, + anon_sym_DOLLAR, + ACTIONS(9733), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [170485] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(8079), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8077), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157871] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9735), 1, + anon_sym_DOLLAR, + ACTIONS(9737), 1, + anon_sym_DQUOTE, + STATE(3704), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [170523] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8154), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157895] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9739), 1, + anon_sym_DOLLAR, + ACTIONS(9741), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [170561] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(8069), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8067), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157919] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9743), 1, + anon_sym_DOLLAR, + ACTIONS(9745), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [170599] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8158), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157943] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9747), 1, + anon_sym_DOLLAR, + ACTIONS(9749), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [170637] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(8094), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8092), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157967] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9751), 1, + anon_sym_DOLLAR, + ACTIONS(9753), 1, + anon_sym_DQUOTE, + STATE(3698), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [170675] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(8120), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8118), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157991] = 3, - ACTIONS(63), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9755), 1, + anon_sym_DOLLAR, + ACTIONS(9757), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [170713] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(8144), 5, - anon_sym_LT_LT, + ACTIONS(9689), 1, + sym_file_descriptor, + ACTIONS(9759), 1, + anon_sym_LF, + ACTIONS(9685), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4701), 2, + sym_file_redirect, + sym__heredoc_pipeline, + ACTIONS(9683), 8, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8142), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [158015] = 6, + [170741] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4758), 1, - anon_sym_DQUOTE, - STATE(3964), 1, - sym_string, - ACTIONS(1209), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - ACTIONS(9021), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9019), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9761), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [158044] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4758), 1, + ACTIONS(9763), 1, anon_sym_DQUOTE, - STATE(3964), 1, - sym_string, - ACTIONS(1219), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - ACTIONS(9021), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9019), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [158073] = 6, + STATE(3701), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [170779] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1219), 1, - anon_sym_RBRACE3, - ACTIONS(9025), 1, - anon_sym_DQUOTE, - STATE(3996), 1, - sym_string, - ACTIONS(9027), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9023), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9765), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [158101] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1209), 1, - anon_sym_RBRACE3, - ACTIONS(9025), 1, + ACTIONS(9767), 1, anon_sym_DQUOTE, - STATE(3996), 1, - sym_string, - ACTIONS(9027), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9023), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [158129] = 5, + STATE(3713), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [170817] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9031), 1, - anon_sym_DQUOTE, - ACTIONS(9033), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9035), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9769), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [158154] = 11, + ACTIONS(9771), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [170855] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9039), 1, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9773), 1, anon_sym_DOLLAR, - ACTIONS(9041), 1, + ACTIONS(9775), 1, anon_sym_DQUOTE, - ACTIONS(9043), 1, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [170893] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9045), 1, + ACTIONS(9440), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, + ACTIONS(9444), 1, anon_sym_BQUOTE, - ACTIONS(9051), 1, + ACTIONS(9446), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3691), 1, + ACTIONS(9777), 1, + anon_sym_DOLLAR, + ACTIONS(9779), 1, + anon_sym_DQUOTE, + STATE(3717), 1, aux_sym_string_repeat1, - STATE(3780), 4, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [158191] = 11, + [170931] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9045), 1, + ACTIONS(9440), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, + ACTIONS(9444), 1, anon_sym_BQUOTE, - ACTIONS(9051), 1, + ACTIONS(9446), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9053), 1, + ACTIONS(9781), 1, anon_sym_DOLLAR, - ACTIONS(9055), 1, + ACTIONS(9783), 1, anon_sym_DQUOTE, - STATE(3509), 1, + STATE(3712), 1, aux_sym_string_repeat1, - STATE(3780), 4, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [158228] = 5, + [170969] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9006), 1, - anon_sym_DQUOTE, - STATE(3872), 1, - sym_string, - ACTIONS(9008), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9004), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [158253] = 5, + ACTIONS(9689), 1, + sym_file_descriptor, + ACTIONS(9785), 1, + anon_sym_LF, + ACTIONS(9685), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4673), 2, + sym_file_redirect, + sym__heredoc_pipeline, + ACTIONS(9683), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [170997] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9057), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9787), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [158278] = 11, + ACTIONS(9789), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [171035] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9045), 1, + ACTIONS(9440), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, + ACTIONS(9444), 1, anon_sym_BQUOTE, - ACTIONS(9051), 1, + ACTIONS(9446), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9059), 1, + ACTIONS(9791), 1, anon_sym_DOLLAR, - ACTIONS(9061), 1, + ACTIONS(9793), 1, anon_sym_DQUOTE, - STATE(3501), 1, + STATE(3721), 1, aux_sym_string_repeat1, - STATE(3780), 4, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [158315] = 5, + [171073] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9063), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9795), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [158340] = 5, + ACTIONS(9797), 1, + anon_sym_DQUOTE, + STATE(3724), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [171111] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9065), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [158365] = 11, + ACTIONS(9689), 1, + sym_file_descriptor, + ACTIONS(9799), 1, + anon_sym_LF, + ACTIONS(9685), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4720), 2, + sym_file_redirect, + sym__heredoc_pipeline, + ACTIONS(9683), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [171139] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9045), 1, + ACTIONS(9440), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, + ACTIONS(9444), 1, anon_sym_BQUOTE, - ACTIONS(9051), 1, + ACTIONS(9446), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9067), 1, + ACTIONS(9801), 1, anon_sym_DOLLAR, - ACTIONS(9069), 1, + ACTIONS(9803), 1, anon_sym_DQUOTE, - STATE(3691), 1, + STATE(3669), 1, aux_sym_string_repeat1, - STATE(3780), 4, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [158402] = 11, + [171177] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9045), 1, + ACTIONS(9440), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, + ACTIONS(9444), 1, anon_sym_BQUOTE, - ACTIONS(9051), 1, + ACTIONS(9446), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9063), 1, - anon_sym_DQUOTE, - ACTIONS(9071), 1, + ACTIONS(9805), 1, anon_sym_DOLLAR, - STATE(3691), 1, + ACTIONS(9807), 1, + anon_sym_DQUOTE, + STATE(3669), 1, aux_sym_string_repeat1, - STATE(3780), 4, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [158439] = 5, + [171215] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6492), 1, - anon_sym_DQUOTE, - STATE(3289), 1, - sym_string, - ACTIONS(6494), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6490), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9809), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [158464] = 11, + ACTIONS(9811), 1, + anon_sym_DQUOTE, + STATE(3729), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [171253] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9045), 1, + ACTIONS(9440), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, + ACTIONS(9444), 1, anon_sym_BQUOTE, - ACTIONS(9051), 1, + ACTIONS(9446), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9073), 1, + ACTIONS(9813), 1, anon_sym_DOLLAR, - ACTIONS(9075), 1, + ACTIONS(9815), 1, anon_sym_DQUOTE, - STATE(3515), 1, + STATE(3669), 1, aux_sym_string_repeat1, - STATE(3780), 4, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [158501] = 5, + [171291] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9069), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9817), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [158526] = 11, + ACTIONS(9819), 1, + anon_sym_DQUOTE, + STATE(3722), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [171329] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9045), 1, + ACTIONS(9440), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, + ACTIONS(9444), 1, anon_sym_BQUOTE, - ACTIONS(9051), 1, + ACTIONS(9446), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9077), 1, + ACTIONS(9821), 1, anon_sym_DOLLAR, - ACTIONS(9079), 1, + ACTIONS(9823), 1, anon_sym_DQUOTE, - STATE(3508), 1, + STATE(3669), 1, aux_sym_string_repeat1, - STATE(3780), 4, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [158563] = 5, + [171367] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9081), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9825), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [158588] = 11, + ACTIONS(9827), 1, + anon_sym_DQUOTE, + STATE(3733), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [171405] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9045), 1, + ACTIONS(9440), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, + ACTIONS(9444), 1, anon_sym_BQUOTE, - ACTIONS(9051), 1, + ACTIONS(9446), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9081), 1, - anon_sym_DQUOTE, - ACTIONS(9083), 1, + ACTIONS(9829), 1, anon_sym_DOLLAR, - STATE(3691), 1, + ACTIONS(9831), 1, + anon_sym_DQUOTE, + STATE(3669), 1, aux_sym_string_repeat1, - STATE(3780), 4, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [158625] = 5, + [171443] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9085), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9833), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [158650] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1237), 1, + ACTIONS(9835), 1, anon_sym_DQUOTE, - STATE(388), 1, - sym_string, - ACTIONS(1239), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [158675] = 5, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [171481] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9041), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9837), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [158700] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3334), 1, + ACTIONS(9839), 1, anon_sym_DQUOTE, - STATE(1610), 1, - sym_string, - ACTIONS(3336), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3332), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [158725] = 11, + STATE(3734), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [171519] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9045), 1, + ACTIONS(9440), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, + ACTIONS(9444), 1, anon_sym_BQUOTE, - ACTIONS(9051), 1, + ACTIONS(9446), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9087), 1, + ACTIONS(9841), 1, anon_sym_DOLLAR, - ACTIONS(9089), 1, + ACTIONS(9843), 1, anon_sym_DQUOTE, - STATE(3525), 1, + STATE(3702), 1, aux_sym_string_repeat1, - STATE(3780), 4, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [158762] = 5, + [171557] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9091), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9845), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [158787] = 5, + ACTIONS(9847), 1, + anon_sym_DQUOTE, + STATE(3728), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [171595] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9093), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9849), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [158812] = 5, + ACTIONS(9851), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [171633] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9095), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9853), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [158837] = 5, + ACTIONS(9855), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [171671] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9097), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9857), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [158862] = 11, + ACTIONS(9859), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [171709] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9045), 1, + ACTIONS(9440), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, + ACTIONS(9444), 1, anon_sym_BQUOTE, - ACTIONS(9051), 1, + ACTIONS(9446), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9091), 1, - anon_sym_DQUOTE, - ACTIONS(9099), 1, + ACTIONS(9861), 1, anon_sym_DOLLAR, - STATE(3691), 1, + ACTIONS(9863), 1, + anon_sym_DQUOTE, + STATE(3678), 1, aux_sym_string_repeat1, - STATE(3780), 4, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [158899] = 11, + [171747] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9045), 1, + ACTIONS(9440), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, + ACTIONS(9444), 1, anon_sym_BQUOTE, - ACTIONS(9051), 1, + ACTIONS(9446), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9101), 1, + ACTIONS(9865), 1, anon_sym_DOLLAR, - ACTIONS(9103), 1, + ACTIONS(9867), 1, anon_sym_DQUOTE, - STATE(3691), 1, + STATE(3669), 1, aux_sym_string_repeat1, - STATE(3780), 4, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [158936] = 5, + [171785] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5422), 1, - anon_sym_DQUOTE, - STATE(2911), 1, - sym_string, - ACTIONS(5759), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5757), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(9438), 1, + sym__string_content, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9869), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [158961] = 11, + ACTIONS(9871), 1, + anon_sym_DQUOTE, + STATE(3743), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [171823] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9045), 1, + ACTIONS(9440), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, + ACTIONS(9444), 1, anon_sym_BQUOTE, - ACTIONS(9051), 1, + ACTIONS(9446), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9105), 1, + ACTIONS(9873), 1, anon_sym_DOLLAR, - ACTIONS(9107), 1, + ACTIONS(9875), 1, anon_sym_DQUOTE, - STATE(3533), 1, + STATE(3746), 1, aux_sym_string_repeat1, - STATE(3780), 4, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [158998] = 5, + [171861] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9103), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9877), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [159023] = 11, + ACTIONS(9879), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [171899] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9045), 1, + ACTIONS(9440), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, + ACTIONS(9444), 1, anon_sym_BQUOTE, - ACTIONS(9051), 1, + ACTIONS(9446), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9109), 1, + ACTIONS(9881), 1, anon_sym_DOLLAR, - ACTIONS(9111), 1, + ACTIONS(9883), 1, anon_sym_DQUOTE, - STATE(3691), 1, + STATE(3737), 1, aux_sym_string_repeat1, - STATE(3780), 4, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [159060] = 5, + [171937] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9689), 1, + sym_file_descriptor, + ACTIONS(9885), 1, + anon_sym_LF, + ACTIONS(9685), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4405), 2, + sym_file_redirect, + sym__heredoc_pipeline, + ACTIONS(9683), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [171965] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9111), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9887), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [159085] = 5, + ACTIONS(9889), 1, + anon_sym_DQUOTE, + STATE(3669), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [172003] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9113), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9444), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9891), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [159110] = 11, + ACTIONS(9893), 1, + anon_sym_DQUOTE, + STATE(3740), 1, + aux_sym_string_repeat1, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [172041] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9045), 1, + ACTIONS(9440), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, + ACTIONS(9444), 1, anon_sym_BQUOTE, - ACTIONS(9051), 1, + ACTIONS(9446), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9113), 1, - anon_sym_DQUOTE, - ACTIONS(9115), 1, + ACTIONS(9895), 1, anon_sym_DOLLAR, - STATE(3691), 1, + ACTIONS(9897), 1, + anon_sym_DQUOTE, + STATE(3708), 1, aux_sym_string_repeat1, - STATE(3780), 4, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [159147] = 11, + [172079] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9438), 1, sym__string_content, - ACTIONS(9045), 1, + ACTIONS(9440), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, + ACTIONS(9444), 1, anon_sym_BQUOTE, - ACTIONS(9051), 1, + ACTIONS(9446), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9117), 1, + ACTIONS(9899), 1, anon_sym_DOLLAR, - ACTIONS(9119), 1, + ACTIONS(9901), 1, anon_sym_DQUOTE, - STATE(3526), 1, + STATE(3669), 1, aux_sym_string_repeat1, - STATE(3780), 4, + ACTIONS(9432), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3922), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [159184] = 5, + [172117] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9121), 1, + ACTIONS(9689), 1, + sym_file_descriptor, + ACTIONS(9903), 1, + anon_sym_LF, + ACTIONS(9685), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4407), 2, + sym_file_redirect, + sym__heredoc_pipeline, + ACTIONS(9683), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [172145] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9907), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -190431,17 +202700,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [159209] = 5, + [172170] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 1, + ACTIONS(9741), 1, anon_sym_DQUOTE, - STATE(428), 1, - sym_string, - ACTIONS(1256), 2, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1252), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -190451,43 +202720,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [159234] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9123), 1, - anon_sym_DOLLAR, - ACTIONS(9125), 1, - anon_sym_DQUOTE, - STATE(3530), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [159271] = 5, + [172195] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3391), 1, + ACTIONS(3022), 1, anon_sym_DQUOTE, - STATE(1694), 1, + STATE(1395), 1, sym_string, - ACTIONS(3393), 2, + ACTIONS(3132), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3389), 9, + ACTIONS(3130), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -190497,17 +202740,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [159296] = 5, + [172220] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9127), 1, + ACTIONS(9889), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -190517,69 +202760,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [159321] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9129), 1, - anon_sym_DOLLAR, - ACTIONS(9131), 1, - anon_sym_DQUOTE, - STATE(3555), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [159358] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9133), 1, - anon_sym_DOLLAR, - ACTIONS(9135), 1, - anon_sym_DQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [159395] = 5, + [172245] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9135), 1, + ACTIONS(9913), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -190589,43 +202780,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [159420] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9137), 1, - anon_sym_DOLLAR, - ACTIONS(9139), 1, - anon_sym_DQUOTE, - STATE(3541), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [159457] = 5, + [172270] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(214), 1, + ACTIONS(3488), 1, anon_sym_DQUOTE, - STATE(1543), 1, + STATE(1792), 1, sym_string, - ACTIONS(3326), 2, + ACTIONS(3490), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3324), 9, + ACTIONS(3486), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -190635,43 +202800,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [159482] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9141), 1, - anon_sym_DOLLAR, - ACTIONS(9143), 1, - anon_sym_DQUOTE, - STATE(3550), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [159519] = 5, + [172295] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9145), 1, + ACTIONS(9915), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -190681,17 +202820,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [159544] = 5, + [172320] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9147), 1, + ACTIONS(9397), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + STATE(3980), 1, + sym_string, + ACTIONS(9399), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9395), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -190701,17 +202840,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [159569] = 5, + [172345] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9149), 1, + ACTIONS(5487), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + STATE(2952), 1, + sym_string, + ACTIONS(6032), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(6030), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -190721,17 +202860,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [159594] = 5, + [172370] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9151), 1, + ACTIONS(9917), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -190741,43 +202880,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [159619] = 11, + [172395] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9151), 1, + ACTIONS(9733), 1, anon_sym_DQUOTE, - ACTIONS(9153), 1, - anon_sym_DOLLAR, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [159656] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9155), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -190787,17 +202900,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [159681] = 5, + [172420] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9157), 1, + ACTIONS(9919), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -190807,43 +202920,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [159706] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9159), 1, - anon_sym_DOLLAR, - ACTIONS(9161), 1, - anon_sym_DQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [159743] = 5, + [172445] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9161), 1, + ACTIONS(6273), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + STATE(3125), 1, + sym_string, + ACTIONS(6275), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(6271), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -190853,43 +202940,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [159768] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9155), 1, - anon_sym_DQUOTE, - ACTIONS(9163), 1, - anon_sym_DOLLAR, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [159805] = 5, + [172470] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1937), 1, + ACTIONS(1897), 1, anon_sym_DQUOTE, - STATE(950), 1, + STATE(1051), 1, sym_string, - ACTIONS(2255), 2, + ACTIONS(2960), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2253), 9, + ACTIONS(2958), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -190899,17 +202960,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [159830] = 5, + [172495] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9165), 1, + ACTIONS(1929), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + STATE(1144), 1, + sym_string, + ACTIONS(3062), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(3060), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -190919,17 +202980,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [159855] = 5, + [172520] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9167), 1, + ACTIONS(9921), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -190939,43 +203000,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [159880] = 11, + [172545] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9169), 1, - anon_sym_DOLLAR, - ACTIONS(9171), 1, + ACTIONS(9879), 1, anon_sym_DQUOTE, - STATE(3553), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [159917] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9173), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -190985,43 +203020,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [159942] = 11, + [172570] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9175), 1, - anon_sym_DOLLAR, - ACTIONS(9177), 1, + ACTIONS(9901), 1, anon_sym_DQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [159979] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9177), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191031,43 +203040,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [160004] = 11, + [172595] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9458), 1, + anon_sym_DQUOTE, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9179), 1, + ACTIONS(9911), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9905), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(9181), 1, - anon_sym_DQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [160041] = 5, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [172620] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2944), 1, + ACTIONS(9867), 1, anon_sym_DQUOTE, - STATE(1378), 1, - sym_string, - ACTIONS(3041), 2, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3039), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191077,43 +203080,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [160066] = 11, + [172645] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9183), 1, - anon_sym_DOLLAR, - ACTIONS(9185), 1, + ACTIONS(9711), 1, anon_sym_DQUOTE, - STATE(3570), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [160103] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9181), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191123,17 +203100,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [160128] = 5, + [172670] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9187), 1, + ACTIONS(9923), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191143,43 +203120,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [160153] = 11, + [172695] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9189), 1, - anon_sym_DOLLAR, - ACTIONS(9191), 1, + ACTIONS(9859), 1, anon_sym_DQUOTE, - STATE(3563), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [160190] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9193), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191189,43 +203140,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [160215] = 11, + [172720] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9193), 1, - anon_sym_DQUOTE, - ACTIONS(9195), 1, - anon_sym_DOLLAR, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [160252] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2474), 1, + ACTIONS(9925), 1, anon_sym_DQUOTE, - STATE(1272), 1, - sym_string, - ACTIONS(3017), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3015), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191235,17 +203160,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [160277] = 5, + [172745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9197), 1, + ACTIONS(5563), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + STATE(2901), 1, + sym_string, + ACTIONS(5565), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(5561), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191255,95 +203180,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [160302] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9199), 1, - anon_sym_DOLLAR, - ACTIONS(9201), 1, - anon_sym_DQUOTE, - STATE(3561), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [160339] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9203), 1, - anon_sym_DOLLAR, - ACTIONS(9205), 1, - anon_sym_DQUOTE, - STATE(3663), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [160376] = 11, + [172770] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9207), 1, - anon_sym_DOLLAR, - ACTIONS(9209), 1, + ACTIONS(9927), 1, anon_sym_DQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [160413] = 5, + ACTIONS(9911), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9905), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [172795] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9209), 1, + ACTIONS(6408), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + STATE(3535), 1, + sym_string, + ACTIONS(6410), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(6406), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191353,17 +203220,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [160438] = 5, + [172820] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9211), 1, + ACTIONS(5443), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + STATE(2781), 1, + sym_string, + ACTIONS(5445), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(5441), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191373,17 +203240,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [160463] = 5, + [172845] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9213), 1, + ACTIONS(9929), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191393,17 +203260,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [160488] = 5, + [172870] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3999), 1, + ACTIONS(9851), 1, anon_sym_DQUOTE, - STATE(1874), 1, - sym_string, - ACTIONS(4001), 2, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3997), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191413,43 +203280,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [160513] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9215), 1, - anon_sym_DOLLAR, - ACTIONS(9217), 1, - anon_sym_DQUOTE, - STATE(3575), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [160550] = 5, + [172895] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(9855), 1, anon_sym_DQUOTE, - STATE(1107), 1, - sym_string, - ACTIONS(3000), 2, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2998), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191459,17 +203300,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [160575] = 5, + [172920] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(330), 1, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9931), 1, anon_sym_DQUOTE, - STATE(1332), 1, - sym_string, - ACTIONS(3422), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3420), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191479,17 +203320,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [160600] = 5, + [172945] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9219), 1, + ACTIONS(9831), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191499,17 +203340,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [160625] = 5, + [172970] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5376), 1, + ACTIONS(5378), 1, anon_sym_DQUOTE, - STATE(2751), 1, + STATE(2889), 1, sym_string, - ACTIONS(5378), 2, + ACTIONS(5380), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5374), 9, + ACTIONS(5376), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191519,69 +203360,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [160650] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9221), 1, - anon_sym_DOLLAR, - ACTIONS(9223), 1, - anon_sym_DQUOTE, - STATE(3590), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [160687] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9225), 1, - anon_sym_DOLLAR, - ACTIONS(9227), 1, - anon_sym_DQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [160724] = 5, + [172995] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9227), 1, + ACTIONS(1209), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + STATE(354), 1, + sym_string, + ACTIONS(1211), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(1207), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191591,43 +203380,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [160749] = 11, + [173020] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9229), 1, - anon_sym_DOLLAR, - ACTIONS(9231), 1, + ACTIONS(9835), 1, anon_sym_DQUOTE, - STATE(3606), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [160786] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9233), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191637,43 +203400,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [160811] = 11, + [173045] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9233), 1, + ACTIONS(9933), 1, anon_sym_DQUOTE, - ACTIONS(9235), 1, + ACTIONS(9911), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9905), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [160848] = 5, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [173070] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9237), 1, + ACTIONS(9935), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191683,43 +203440,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [160873] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9239), 1, - anon_sym_DOLLAR, - ACTIONS(9241), 1, - anon_sym_DQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [160910] = 5, + [173095] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9241), 1, + ACTIONS(9937), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191729,69 +203460,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [160935] = 11, + [173120] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9243), 1, - anon_sym_DOLLAR, - ACTIONS(9245), 1, + ACTIONS(9482), 1, anon_sym_DQUOTE, - STATE(3655), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [160972] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9247), 1, - anon_sym_DOLLAR, - ACTIONS(9249), 1, - anon_sym_DQUOTE, - STATE(3592), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [161009] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1539), 1, - anon_sym_DQUOTE, - STATE(937), 1, - sym_string, - ACTIONS(2669), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2667), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191801,17 +203480,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161034] = 5, + [173145] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9939), 1, anon_sym_DQUOTE, - STATE(1752), 1, - sym_string, - ACTIONS(3795), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3791), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191821,17 +203500,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161059] = 5, + [173170] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9251), 1, + ACTIONS(9478), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191841,17 +203520,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161084] = 5, + [173195] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9253), 1, + ACTIONS(9941), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191861,43 +203540,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161109] = 11, + [173220] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9255), 1, - anon_sym_DOLLAR, - ACTIONS(9257), 1, + ACTIONS(9823), 1, anon_sym_DQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [161146] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9257), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191907,17 +203560,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161171] = 5, + [173245] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9259), 1, + ACTIONS(9943), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191927,43 +203580,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161196] = 11, + [173270] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9261), 1, - anon_sym_DOLLAR, - ACTIONS(9263), 1, - anon_sym_DQUOTE, - STATE(3752), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [161233] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4758), 1, + ACTIONS(9945), 1, anon_sym_DQUOTE, - STATE(3964), 1, - sym_string, - ACTIONS(9021), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9019), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -191973,95 +203600,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161258] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9265), 1, - anon_sym_DOLLAR, - ACTIONS(9267), 1, - anon_sym_DQUOTE, - STATE(3610), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [161295] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9259), 1, - anon_sym_DQUOTE, - ACTIONS(9269), 1, - anon_sym_DOLLAR, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [161332] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9271), 1, - anon_sym_DOLLAR, - ACTIONS(9273), 1, - anon_sym_DQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [161369] = 5, + [173295] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9273), 1, + ACTIONS(6676), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + STATE(3521), 1, + sym_string, + ACTIONS(6678), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(6674), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192071,17 +203620,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161394] = 5, + [173320] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9275), 1, + ACTIONS(9947), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192091,69 +203640,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161419] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9275), 1, - anon_sym_DQUOTE, - ACTIONS(9277), 1, - anon_sym_DOLLAR, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [161456] = 11, + [173345] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9279), 1, - anon_sym_DOLLAR, - ACTIONS(9281), 1, - anon_sym_DQUOTE, - STATE(3607), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [161493] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2571), 1, + ACTIONS(3379), 1, anon_sym_DQUOTE, - STATE(1167), 1, + STATE(1681), 1, sym_string, - ACTIONS(2573), 2, + ACTIONS(3381), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2569), 9, + ACTIONS(3377), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192163,43 +203660,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161518] = 11, + [173370] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9283), 1, - anon_sym_DOLLAR, - ACTIONS(9285), 1, + ACTIONS(9486), 1, anon_sym_DQUOTE, - STATE(3600), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [161555] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9287), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192209,17 +203680,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161580] = 5, + [173395] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2724), 1, + ACTIONS(3995), 1, anon_sym_DQUOTE, - STATE(1244), 1, + STATE(2005), 1, sym_string, - ACTIONS(3193), 2, + ACTIONS(3997), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3191), 9, + ACTIONS(3993), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192229,17 +203700,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161605] = 5, + [173420] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9289), 1, + ACTIONS(9807), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192249,43 +203720,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161630] = 11, + [173445] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9291), 1, - anon_sym_DOLLAR, - ACTIONS(9293), 1, + ACTIONS(9815), 1, anon_sym_DQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [161667] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9295), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192295,17 +203740,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161692] = 5, + [173470] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9293), 1, + ACTIONS(9949), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192315,17 +203760,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161717] = 5, + [173495] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(160), 1, anon_sym_DQUOTE, - STATE(1052), 1, + STATE(1605), 1, sym_string, - ACTIONS(2909), 2, + ACTIONS(3671), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2907), 9, + ACTIONS(3669), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192335,43 +203780,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161742] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9297), 1, - anon_sym_DOLLAR, - ACTIONS(9299), 1, - anon_sym_DQUOTE, - STATE(3617), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [161779] = 5, + [173520] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5046), 1, + ACTIONS(9803), 1, anon_sym_DQUOTE, - STATE(2627), 1, - sym_string, - ACTIONS(5048), 2, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5044), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192381,17 +203800,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161804] = 5, + [173545] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9301), 1, + ACTIONS(9637), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192401,17 +203820,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161829] = 5, + [173570] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3860), 1, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9951), 1, anon_sym_DQUOTE, - STATE(2000), 1, - sym_string, - ACTIONS(3862), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3858), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192421,43 +203840,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161854] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9303), 1, - anon_sym_DOLLAR, - ACTIONS(9305), 1, - anon_sym_DQUOTE, - STATE(3630), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [161891] = 5, + [173595] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9307), 1, + ACTIONS(9953), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192467,43 +203860,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161916] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9309), 1, - anon_sym_DOLLAR, - ACTIONS(9311), 1, - anon_sym_DQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [161953] = 5, + [173620] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9311), 1, + ACTIONS(9955), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192513,17 +203880,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161978] = 5, + [173645] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9313), 1, + ACTIONS(3729), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + STATE(2002), 1, + sym_string, + ACTIONS(3731), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(3727), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192533,69 +203900,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162003] = 11, + [173670] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9313), 1, + ACTIONS(9957), 1, anon_sym_DQUOTE, - ACTIONS(9315), 1, + ACTIONS(9911), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9905), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [162040] = 11, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [173695] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9317), 1, - anon_sym_DOLLAR, - ACTIONS(9319), 1, + ACTIONS(9789), 1, anon_sym_DQUOTE, - STATE(3627), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [162077] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9321), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192605,43 +203940,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162102] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9323), 1, - anon_sym_DOLLAR, - ACTIONS(9325), 1, - anon_sym_DQUOTE, - STATE(3586), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [162139] = 5, + [173720] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, + ACTIONS(2506), 1, anon_sym_DQUOTE, - STATE(835), 1, + STATE(1253), 1, sym_string, - ACTIONS(2099), 2, + ACTIONS(3128), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2097), 9, + ACTIONS(3126), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192651,17 +203960,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162164] = 5, + [173745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9327), 1, + ACTIONS(9959), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192671,17 +203980,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162189] = 5, + [173770] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5364), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - STATE(2873), 1, + STATE(691), 1, sym_string, - ACTIONS(5366), 2, + ACTIONS(1959), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5362), 9, + ACTIONS(1957), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192691,43 +204000,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162214] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9329), 1, - anon_sym_DOLLAR, - ACTIONS(9331), 1, - anon_sym_DQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [162251] = 5, + [173795] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9333), 1, + ACTIONS(9961), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192737,17 +204020,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162276] = 5, + [173820] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9335), 1, + ACTIONS(9757), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192757,43 +204040,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162301] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9335), 1, - anon_sym_DQUOTE, - ACTIONS(9337), 1, - anon_sym_DOLLAR, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [162338] = 5, + [173845] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9331), 1, + ACTIONS(2705), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + STATE(1351), 1, + sym_string, + ACTIONS(3052), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(3050), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192803,17 +204060,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162363] = 5, + [173870] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3824), 1, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9963), 1, anon_sym_DQUOTE, - STATE(1892), 1, - sym_string, - ACTIONS(3826), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3822), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192823,69 +204080,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162388] = 11, + [173895] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9339), 1, - anon_sym_DOLLAR, - ACTIONS(9341), 1, + ACTIONS(9771), 1, anon_sym_DQUOTE, - STATE(3648), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [162425] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9343), 1, + ACTIONS(9911), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9905), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(9345), 1, - anon_sym_DQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [162462] = 5, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [173920] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9345), 1, + ACTIONS(9965), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192895,17 +204120,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162487] = 5, + [173945] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 1, + ACTIONS(9775), 1, anon_sym_DQUOTE, - STATE(366), 1, - sym_string, - ACTIONS(1215), 2, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1211), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192915,17 +204140,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162512] = 5, + [173970] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9347), 1, + ACTIONS(9967), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192935,43 +204160,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162537] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9347), 1, - anon_sym_DQUOTE, - ACTIONS(9349), 1, - anon_sym_DOLLAR, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [162574] = 5, + [173995] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9351), 1, + ACTIONS(3056), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + STATE(1302), 1, + sym_string, + ACTIONS(3058), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(3054), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -192981,69 +204180,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162599] = 11, + [174020] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9353), 1, - anon_sym_DOLLAR, - ACTIONS(9355), 1, + ACTIONS(9749), 1, anon_sym_DQUOTE, - STATE(3637), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [162636] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9357), 1, + ACTIONS(9911), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9905), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(9359), 1, - anon_sym_DQUOTE, - STATE(3644), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [162673] = 5, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [174045] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(2478), 1, anon_sym_DQUOTE, - STATE(1123), 1, + STATE(1047), 1, sym_string, - ACTIONS(2929), 2, + ACTIONS(2775), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2927), 9, + ACTIONS(2773), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193053,17 +204220,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162698] = 5, + [174070] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5216), 1, + ACTIONS(2031), 1, anon_sym_DQUOTE, - STATE(2657), 1, + STATE(1008), 1, sym_string, - ACTIONS(5218), 2, + ACTIONS(2317), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5214), 9, + ACTIONS(2315), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193073,17 +204240,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162723] = 5, + [174095] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9361), 1, + ACTIONS(9729), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193093,43 +204260,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162748] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9351), 1, - anon_sym_DQUOTE, - ACTIONS(9363), 1, - anon_sym_DOLLAR, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [162785] = 5, + [174120] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9365), 1, + ACTIONS(6646), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + STATE(3183), 1, + sym_string, + ACTIONS(6648), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(6644), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193139,17 +204280,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162810] = 5, + [174145] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9367), 1, + ACTIONS(9969), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193159,43 +204300,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162835] = 11, + [174170] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9369), 1, - anon_sym_DOLLAR, - ACTIONS(9371), 1, + ACTIONS(9745), 1, anon_sym_DQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [162872] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9371), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193205,17 +204320,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162897] = 5, + [174195] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6116), 1, + ACTIONS(2383), 1, anon_sym_DQUOTE, - STATE(3401), 1, + STATE(1105), 1, sym_string, - ACTIONS(6118), 2, + ACTIONS(2826), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6114), 9, + ACTIONS(2824), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193225,95 +204340,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162922] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9373), 1, - anon_sym_DOLLAR, - ACTIONS(9375), 1, - anon_sym_DQUOTE, - STATE(3666), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [162959] = 11, + [174220] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9377), 1, - anon_sym_DOLLAR, - ACTIONS(9379), 1, + ACTIONS(9717), 1, anon_sym_DQUOTE, - STATE(3658), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [162996] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9381), 1, + ACTIONS(9911), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9905), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(9383), 1, - anon_sym_DQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [163033] = 5, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [174245] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2356), 1, + ACTIONS(4064), 1, anon_sym_DQUOTE, - STATE(1135), 1, + STATE(2126), 1, sym_string, - ACTIONS(2577), 2, + ACTIONS(4066), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2575), 9, + ACTIONS(4062), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193323,17 +204380,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163058] = 5, + [174270] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9385), 1, + ACTIONS(9971), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193343,43 +204400,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163083] = 11, + [174295] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9385), 1, - anon_sym_DQUOTE, - ACTIONS(9387), 1, - anon_sym_DOLLAR, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [163120] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2502), 1, + ACTIONS(9973), 1, anon_sym_DQUOTE, - STATE(1330), 1, - sym_string, - ACTIONS(3138), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3136), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193389,43 +204420,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163145] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9389), 1, - anon_sym_DOLLAR, - ACTIONS(9391), 1, - anon_sym_DQUOTE, - STATE(3673), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [163182] = 5, + [174320] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9393), 1, + ACTIONS(9975), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193435,17 +204440,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163207] = 5, + [174345] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9395), 1, + ACTIONS(3904), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + STATE(2032), 1, + sym_string, + ACTIONS(3906), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(3902), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193455,17 +204460,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163232] = 5, + [174370] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9397), 1, + ACTIONS(9707), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193475,17 +204480,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163257] = 5, + [174395] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9399), 1, + ACTIONS(1238), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + STATE(429), 1, + sym_string, + ACTIONS(1240), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(1236), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193495,43 +204500,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163282] = 11, + [174420] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9397), 1, + ACTIONS(9977), 1, anon_sym_DQUOTE, - ACTIONS(9401), 1, + ACTIONS(9911), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9905), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [163319] = 5, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [174445] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9403), 1, + ACTIONS(9979), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193541,43 +204540,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163344] = 11, + [174470] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9405), 1, - anon_sym_DOLLAR, - ACTIONS(9407), 1, + ACTIONS(9695), 1, anon_sym_DQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [163381] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9383), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193587,43 +204560,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163406] = 11, + [174495] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9409), 1, - anon_sym_DOLLAR, - ACTIONS(9411), 1, - anon_sym_DQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [163443] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9025), 1, + ACTIONS(9981), 1, anon_sym_DQUOTE, - STATE(3996), 1, - sym_string, - ACTIONS(9027), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9023), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193633,43 +204580,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163468] = 11, + [174520] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9413), 1, - anon_sym_DOLLAR, - ACTIONS(9415), 1, + ACTIONS(9703), 1, anon_sym_DQUOTE, - STATE(3684), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [163505] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9411), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193679,43 +204600,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163530] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9417), 1, - anon_sym_DOLLAR, - ACTIONS(9419), 1, - anon_sym_DQUOTE, - STATE(3677), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [163567] = 5, + [174545] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2111), 1, + ACTIONS(1971), 1, anon_sym_DQUOTE, - STATE(1016), 1, + STATE(926), 1, sym_string, - ACTIONS(2623), 2, + ACTIONS(2369), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2621), 9, + ACTIONS(2367), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193725,17 +204620,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163592] = 5, + [174570] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9421), 1, + ACTIONS(9510), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193745,69 +204640,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163617] = 11, + [174595] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9421), 1, + ACTIONS(1563), 1, anon_sym_DQUOTE, - ACTIONS(9423), 1, - anon_sym_DOLLAR, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [163654] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9425), 1, + STATE(960), 1, + sym_string, + ACTIONS(2605), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2603), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(9427), 1, - anon_sym_DQUOTE, - STATE(3640), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [163691] = 5, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [174620] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9429), 1, + ACTIONS(9983), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193817,43 +204680,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163716] = 11, + [174645] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9431), 1, - anon_sym_DOLLAR, - ACTIONS(9433), 1, - anon_sym_DQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [163753] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4404), 1, + ACTIONS(9985), 1, anon_sym_DQUOTE, - STATE(2115), 1, - sym_string, - ACTIONS(4406), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4402), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193863,17 +204700,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163778] = 5, + [174670] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9435), 1, + ACTIONS(244), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + STATE(1482), 1, + sym_string, + ACTIONS(3723), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(3721), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193883,17 +204720,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163803] = 5, + [174695] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9437), 1, + ACTIONS(9987), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193903,43 +204740,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163828] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9439), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9442), 1, - anon_sym_DOLLAR, - ACTIONS(9445), 1, - anon_sym_DQUOTE, - ACTIONS(9447), 1, - sym__string_content, - ACTIONS(9450), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9453), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9456), 1, - anon_sym_BQUOTE, - ACTIONS(9459), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [163865] = 5, + [174720] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9462), 1, + ACTIONS(6886), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + STATE(3540), 1, + sym_string, + ACTIONS(6888), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(6884), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193949,17 +204760,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163890] = 5, + [174745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9433), 1, + ACTIONS(3601), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + STATE(1796), 1, + sym_string, + ACTIONS(3603), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(3599), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -193969,43 +204780,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163915] = 11, + [174770] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9464), 1, - anon_sym_DOLLAR, - ACTIONS(9466), 1, + ACTIONS(9677), 1, anon_sym_DQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [163952] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9466), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194015,17 +204800,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163977] = 5, + [174795] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5314), 1, + ACTIONS(3795), 1, anon_sym_DQUOTE, - STATE(2824), 1, + STATE(1757), 1, sym_string, - ACTIONS(5316), 2, + ACTIONS(3797), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5312), 9, + ACTIONS(3793), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194035,69 +204820,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [164002] = 11, + [174820] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9468), 1, - anon_sym_DOLLAR, - ACTIONS(9470), 1, + ACTIONS(9989), 1, anon_sym_DQUOTE, - STATE(3702), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [164039] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9472), 1, + ACTIONS(9911), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9905), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(9474), 1, - anon_sym_DQUOTE, - STATE(3694), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [164076] = 5, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [174845] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1471), 1, + ACTIONS(9653), 1, anon_sym_DQUOTE, - STATE(788), 1, - sym_string, - ACTIONS(2422), 2, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2420), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194107,43 +204860,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [164101] = 11, + [174870] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9476), 1, - anon_sym_DOLLAR, - ACTIONS(9478), 1, + ACTIONS(9661), 1, anon_sym_DQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [164138] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9480), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194153,43 +204880,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [164163] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9480), 1, - anon_sym_DQUOTE, - ACTIONS(9482), 1, - anon_sym_DOLLAR, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [164200] = 5, + [174895] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9478), 1, + ACTIONS(2609), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + STATE(1190), 1, + sym_string, + ACTIONS(2611), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(2607), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194199,17 +204900,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [164225] = 5, + [174920] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4903), 1, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9991), 1, anon_sym_DQUOTE, - STATE(2348), 1, - sym_string, - ACTIONS(4905), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4901), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194219,43 +204920,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [164250] = 11, + [174945] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9484), 1, - anon_sym_DOLLAR, - ACTIONS(9486), 1, + ACTIONS(9454), 1, anon_sym_DQUOTE, - STATE(3687), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [164287] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9488), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194265,17 +204940,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [164312] = 5, + [174970] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9490), 1, + ACTIONS(4991), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + STATE(2389), 1, + sym_string, + ACTIONS(4993), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(4989), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194285,17 +204960,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [164337] = 5, + [174995] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3303), 1, + ACTIONS(4830), 1, anon_sym_DQUOTE, - STATE(1657), 1, + STATE(4132), 1, sym_string, - ACTIONS(3305), 2, + ACTIONS(9424), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3301), 9, + ACTIONS(9422), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194305,43 +204980,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [164362] = 11, + [175020] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9492), 1, - anon_sym_DOLLAR, - ACTIONS(9494), 1, + ACTIONS(9629), 1, anon_sym_DQUOTE, - STATE(3717), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [164399] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9496), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194351,17 +205000,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [164424] = 5, + [175045] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2978), 1, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9993), 1, anon_sym_DQUOTE, - STATE(1416), 1, - sym_string, - ACTIONS(3029), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3027), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194371,43 +205020,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [164449] = 11, + [175070] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9498), 1, - anon_sym_DOLLAR, - ACTIONS(9500), 1, + ACTIONS(9462), 1, anon_sym_DQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [164486] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9500), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194417,17 +205040,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [164511] = 5, + [175095] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5292), 1, anon_sym_DQUOTE, - STATE(2705), 1, + STATE(2730), 1, sym_string, - ACTIONS(5326), 2, + ACTIONS(5294), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5322), 9, + ACTIONS(5290), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194437,43 +205060,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [164536] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9502), 1, - anon_sym_DOLLAR, - ACTIONS(9504), 1, - anon_sym_DQUOTE, - STATE(3720), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [164573] = 5, + [175120] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9506), 1, + ACTIONS(9428), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + STATE(4123), 1, + sym_string, + ACTIONS(9430), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9426), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194483,69 +205080,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [164598] = 11, + [175145] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9506), 1, + ACTIONS(9995), 1, anon_sym_DQUOTE, - ACTIONS(9508), 1, + ACTIONS(9911), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9905), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [164635] = 11, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [175170] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9510), 1, - anon_sym_DOLLAR, - ACTIONS(9512), 1, + ACTIONS(9617), 1, anon_sym_DQUOTE, - STATE(3712), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [164672] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9514), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194555,43 +205120,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [164697] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9514), 1, - anon_sym_DQUOTE, - ACTIONS(9516), 1, - anon_sym_DOLLAR, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [164734] = 5, + [175195] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(4501), 1, anon_sym_DQUOTE, - STATE(901), 1, + STATE(2238), 1, sym_string, - ACTIONS(2251), 2, + ACTIONS(4503), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2247), 9, + ACTIONS(4499), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194601,43 +205140,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [164759] = 11, + [175220] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9518), 1, - anon_sym_DOLLAR, - ACTIONS(9520), 1, - anon_sym_DQUOTE, - STATE(3757), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [164796] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9522), 1, + ACTIONS(9997), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194647,17 +205160,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [164821] = 5, + [175245] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9524), 1, + ACTIONS(9999), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194667,43 +205180,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [164846] = 11, + [175270] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9526), 1, - anon_sym_DOLLAR, - ACTIONS(9528), 1, + ACTIONS(9605), 1, anon_sym_DQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [164883] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9528), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194713,17 +205200,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [164908] = 5, + [175295] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9530), 1, + ACTIONS(9613), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194733,17 +205220,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [164933] = 5, + [175320] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9532), 1, + ACTIONS(10001), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194753,17 +205240,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [164958] = 5, + [175345] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(9609), 1, anon_sym_DQUOTE, - STATE(1261), 1, - sym_string, - ACTIONS(2807), 2, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2803), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194773,43 +205260,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [164983] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9534), 1, - anon_sym_DOLLAR, - ACTIONS(9536), 1, - anon_sym_DQUOTE, - STATE(3725), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [165020] = 5, + [175370] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6254), 1, + ACTIONS(2407), 1, anon_sym_DQUOTE, - STATE(3441), 1, + STATE(873), 1, sym_string, - ACTIONS(6256), 2, + ACTIONS(2409), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6252), 9, + ACTIONS(2405), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194819,17 +205280,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [165045] = 5, + [175395] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6195), 1, + ACTIONS(1731), 1, anon_sym_DQUOTE, - STATE(3377), 1, + STATE(819), 1, sym_string, - ACTIONS(6197), 2, + ACTIONS(1963), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6193), 9, + ACTIONS(1961), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194839,43 +205300,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [165070] = 11, + [175420] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9538), 1, - anon_sym_DOLLAR, - ACTIONS(9540), 1, + ACTIONS(9546), 1, anon_sym_DQUOTE, - STATE(3738), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [165107] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9542), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194885,69 +205320,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [165132] = 11, + [175445] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9558), 1, + anon_sym_DQUOTE, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9544), 1, + ACTIONS(9911), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9905), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(9546), 1, - anon_sym_DQUOTE, - STATE(3675), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [165169] = 11, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [175470] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9548), 1, - anon_sym_DOLLAR, ACTIONS(9550), 1, anon_sym_DQUOTE, - STATE(3700), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [165206] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9552), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -194957,43 +205360,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [165231] = 11, + [175495] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9552), 1, + ACTIONS(9570), 1, anon_sym_DQUOTE, - ACTIONS(9554), 1, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9905), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [165268] = 5, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [175520] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9556), 1, + ACTIONS(10003), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -195003,17 +205400,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [165293] = 5, + [175545] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9558), 1, + ACTIONS(10005), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -195023,43 +205420,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [165318] = 11, + [175570] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9560), 1, - anon_sym_DOLLAR, - ACTIONS(9562), 1, + ACTIONS(10007), 1, anon_sym_DQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [165355] = 5, + ACTIONS(9911), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9905), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [175595] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, ACTIONS(9562), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -195069,17 +205460,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [165380] = 5, + [175620] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2083), 1, + ACTIONS(1523), 1, anon_sym_DQUOTE, - STATE(871), 1, + STATE(802), 1, sym_string, - ACTIONS(2259), 2, + ACTIONS(2373), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2257), 9, + ACTIONS(2371), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -195089,43 +205480,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [165405] = 11, + [175645] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9564), 1, - anon_sym_DOLLAR, - ACTIONS(9566), 1, - anon_sym_DQUOTE, - STATE(3741), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [165442] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, + ACTIONS(2917), 1, anon_sym_DQUOTE, - STATE(2043), 1, + STATE(1431), 1, sym_string, - ACTIONS(4037), 2, + ACTIONS(3066), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4033), 9, + ACTIONS(3064), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -195135,17 +205500,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [165467] = 5, + [175670] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9568), 1, + ACTIONS(1221), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + STATE(381), 1, + sym_string, + ACTIONS(1223), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(1219), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -195155,43 +205520,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [165492] = 11, + [175695] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9570), 1, - anon_sym_DOLLAR, - ACTIONS(9572), 1, + ACTIONS(9526), 1, anon_sym_DQUOTE, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [165529] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9572), 1, - anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -195201,17 +205540,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [165554] = 5, + [175720] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9574), 1, + ACTIONS(9534), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -195221,17 +205560,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [165579] = 5, + [175745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(2905), 1, anon_sym_DQUOTE, - STATE(767), 1, + STATE(1276), 1, sym_string, - ACTIONS(1859), 2, + ACTIONS(2907), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1857), 9, + ACTIONS(2903), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -195241,69 +205580,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [165604] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9576), 1, - anon_sym_DOLLAR, - ACTIONS(9578), 1, - anon_sym_DQUOTE, - STATE(3756), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [165641] = 11, + [175770] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9522), 1, - anon_sym_DQUOTE, - ACTIONS(9580), 1, - anon_sym_DOLLAR, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [165678] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3021), 1, + ACTIONS(10009), 1, anon_sym_DQUOTE, - STATE(1307), 1, - sym_string, - ACTIONS(3023), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3019), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -195313,43 +205600,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [165703] = 11, + [175795] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9582), 1, - anon_sym_DOLLAR, - ACTIONS(9584), 1, + ACTIONS(10011), 1, anon_sym_DQUOTE, - STATE(3747), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [165740] = 5, + ACTIONS(9911), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9905), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [175820] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(9909), 1, sym__string_content, - ACTIONS(9407), 1, + ACTIONS(10013), 1, anon_sym_DQUOTE, - ACTIONS(9035), 2, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -195359,67 +205640,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [165765] = 11, + [175845] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9031), 1, + ACTIONS(1995), 1, anon_sym_DQUOTE, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9586), 1, + STATE(878), 1, + sym_string, + ACTIONS(2769), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2767), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [165802] = 11, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [175870] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9043), 1, - sym__string_content, - ACTIONS(9045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9047), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9049), 1, - anon_sym_BQUOTE, - ACTIONS(9051), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9556), 1, + ACTIONS(2536), 1, anon_sym_DQUOTE, - ACTIONS(9588), 1, - anon_sym_DOLLAR, - STATE(3691), 1, - aux_sym_string_repeat1, - STATE(3780), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [165839] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, - sym__string_content, - ACTIONS(9035), 2, + STATE(1333), 1, + sym_string, + ACTIONS(3076), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9029), 9, + ACTIONS(3074), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -195429,35 +205680,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [165861] = 9, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9590), 1, - anon_sym_DOLLAR, - ACTIONS(9592), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9594), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9596), 1, - anon_sym_BQUOTE, - ACTIONS(9598), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9600), 1, - sym__heredoc_body_middle, - ACTIONS(9602), 1, - sym__heredoc_body_end, - STATE(3774), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [165892] = 3, + [175895] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9606), 2, + ACTIONS(9498), 1, + anon_sym_DQUOTE, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9604), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -195467,13 +205700,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [165911] = 3, + [175920] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9610), 2, + ACTIONS(9502), 1, + anon_sym_DQUOTE, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9608), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -195483,13 +205720,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [165930] = 3, + [175945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9614), 2, + ACTIONS(9909), 1, + sym__string_content, + ACTIONS(9911), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9612), 9, + ACTIONS(9905), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -195499,297 +205738,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [165949] = 9, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9590), 1, - anon_sym_DOLLAR, - ACTIONS(9592), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9594), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9596), 1, - anon_sym_BQUOTE, - ACTIONS(9598), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9616), 1, - sym__heredoc_body_middle, - ACTIONS(9618), 1, - sym__heredoc_body_end, - STATE(3772), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [165980] = 6, + [175967] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(9620), 1, + ACTIONS(10015), 1, anon_sym_LT_LT, - ACTIONS(9626), 1, + ACTIONS(10021), 1, anon_sym_LT_LT_DASH, - ACTIONS(9628), 1, + ACTIONS(10023), 1, anon_sym_LT_LT_LT, - ACTIONS(9624), 3, + ACTIONS(10019), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(9622), 5, + ACTIONS(10017), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [166005] = 6, + [175992] = 9, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10025), 1, + anon_sym_DOLLAR, + ACTIONS(10027), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10029), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(10031), 1, + anon_sym_BQUOTE, + ACTIONS(10033), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10035), 1, + sym__heredoc_body_middle, + ACTIONS(10037), 1, + sym_heredoc_end, + STATE(3908), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [176023] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10041), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(10039), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [176042] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(9630), 1, + ACTIONS(10043), 1, anon_sym_LT_LT, - ACTIONS(9636), 1, + ACTIONS(10049), 1, anon_sym_LT_LT_DASH, - ACTIONS(9638), 1, + ACTIONS(10051), 1, anon_sym_LT_LT_LT, - ACTIONS(9634), 3, + ACTIONS(10047), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(9632), 5, + ACTIONS(10045), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [166030] = 6, + [176067] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(9640), 1, + ACTIONS(10053), 1, anon_sym_LT_LT, - ACTIONS(9646), 1, + ACTIONS(10059), 1, anon_sym_LT_LT_DASH, - ACTIONS(9648), 1, + ACTIONS(10061), 1, anon_sym_LT_LT_LT, - ACTIONS(9644), 3, + ACTIONS(10057), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(9642), 5, + ACTIONS(10055), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [166055] = 9, + [176092] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10065), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(10063), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [176111] = 9, ACTIONS(63), 1, sym_comment, - ACTIONS(9590), 1, + ACTIONS(10067), 1, anon_sym_DOLLAR, - ACTIONS(9592), 1, + ACTIONS(10070), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9594), 1, + ACTIONS(10073), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9596), 1, + ACTIONS(10076), 1, anon_sym_BQUOTE, - ACTIONS(9598), 1, + ACTIONS(10079), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9650), 1, + ACTIONS(10082), 1, sym__heredoc_body_middle, - ACTIONS(9652), 1, - sym__heredoc_body_end, - STATE(3759), 4, + ACTIONS(10085), 1, + sym_heredoc_end, + STATE(3907), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, aux_sym_heredoc_body_repeat1, - [166086] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9640), 1, - anon_sym_LT_LT, - ACTIONS(9646), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9658), 1, - anon_sym_LT_LT_LT, - ACTIONS(9656), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(9654), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [166111] = 9, + [176142] = 9, ACTIONS(63), 1, sym_comment, - ACTIONS(9590), 1, + ACTIONS(10025), 1, anon_sym_DOLLAR, - ACTIONS(9592), 1, + ACTIONS(10027), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9594), 1, + ACTIONS(10029), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9596), 1, + ACTIONS(10031), 1, anon_sym_BQUOTE, - ACTIONS(9598), 1, + ACTIONS(10033), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9600), 1, + ACTIONS(10087), 1, sym__heredoc_body_middle, - ACTIONS(9660), 1, - sym__heredoc_body_end, - STATE(3774), 4, + ACTIONS(10089), 1, + sym_heredoc_end, + STATE(3907), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, aux_sym_heredoc_body_repeat1, - [166142] = 6, + [176173] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(9662), 1, + ACTIONS(10043), 1, anon_sym_LT_LT, - ACTIONS(9668), 1, + ACTIONS(10049), 1, anon_sym_LT_LT_DASH, - ACTIONS(9670), 1, + ACTIONS(10095), 1, anon_sym_LT_LT_LT, - ACTIONS(9666), 3, + ACTIONS(10093), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(9664), 5, + ACTIONS(10091), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [166167] = 6, + [176198] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(9620), 1, + ACTIONS(10043), 1, anon_sym_LT_LT, - ACTIONS(9626), 1, + ACTIONS(10049), 1, anon_sym_LT_LT_DASH, - ACTIONS(9676), 1, + ACTIONS(10101), 1, anon_sym_LT_LT_LT, - ACTIONS(9674), 3, + ACTIONS(10099), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(9672), 5, + ACTIONS(10097), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [166192] = 9, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9590), 1, - anon_sym_DOLLAR, - ACTIONS(9592), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9594), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9596), 1, - anon_sym_BQUOTE, - ACTIONS(9598), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9600), 1, - sym__heredoc_body_middle, - ACTIONS(9678), 1, - sym__heredoc_body_end, - STATE(3774), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [166223] = 9, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9590), 1, - anon_sym_DOLLAR, - ACTIONS(9592), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9594), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9596), 1, - anon_sym_BQUOTE, - ACTIONS(9598), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9680), 1, - sym__heredoc_body_middle, - ACTIONS(9682), 1, - sym__heredoc_body_end, - STATE(3769), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [166254] = 9, - ACTIONS(63), 1, + [176223] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(9684), 1, + ACTIONS(10105), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(10103), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(9687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9690), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9693), 1, - anon_sym_BQUOTE, - ACTIONS(9696), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9699), 1, - sym__heredoc_body_middle, - ACTIONS(9702), 1, - sym__heredoc_body_end, - STATE(3774), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [166285] = 6, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [176242] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(9640), 1, + ACTIONS(10043), 1, anon_sym_LT_LT, - ACTIONS(9646), 1, + ACTIONS(10049), 1, anon_sym_LT_LT_DASH, - ACTIONS(9708), 1, + ACTIONS(10111), 1, anon_sym_LT_LT_LT, - ACTIONS(9706), 3, + ACTIONS(10109), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(9704), 5, + ACTIONS(10107), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [166310] = 6, + [176267] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(9710), 1, + ACTIONS(10015), 1, anon_sym_LT_LT, - ACTIONS(9716), 1, + ACTIONS(10021), 1, anon_sym_LT_LT_DASH, - ACTIONS(9718), 1, + ACTIONS(10117), 1, anon_sym_LT_LT_LT, - ACTIONS(9714), 3, + ACTIONS(10115), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(9712), 5, + ACTIONS(10113), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [166335] = 3, + [176292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9722), 2, + ACTIONS(10121), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9720), 9, + ACTIONS(10119), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -195799,13 +206001,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [166354] = 3, + [176311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9726), 2, + ACTIONS(10125), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9724), 9, + ACTIONS(10123), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -195815,13 +206017,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [166373] = 3, + [176330] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10043), 1, + anon_sym_LT_LT, + ACTIONS(10049), 1, + anon_sym_LT_LT_DASH, + ACTIONS(10131), 1, + anon_sym_LT_LT_LT, + ACTIONS(10129), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(10127), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [176355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9730), 2, + ACTIONS(10135), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9728), 9, + ACTIONS(10133), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -195831,12 +206052,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [166392] = 3, + [176374] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10137), 1, + anon_sym_LT_LT, + ACTIONS(10143), 1, + anon_sym_LT_LT_DASH, + ACTIONS(10145), 1, + anon_sym_LT_LT_LT, + ACTIONS(10141), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(10139), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [176399] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10147), 10, + anon_sym_U, + anon_sym_u, + anon_sym_L, + anon_sym_Q, + anon_sym_E, + anon_sym_P, + anon_sym_A, + anon_sym_K, + anon_sym_a, + anon_sym_k, + [176415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9734), 1, + ACTIONS(1270), 1, sym__concat, - ACTIONS(9732), 8, + ACTIONS(1268), 9, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, @@ -195845,29 +206100,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [166409] = 6, + [176433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 1, - anon_sym_LF, - ACTIONS(9736), 1, - aux_sym_concatenation_token1, - ACTIONS(9738), 1, + ACTIONS(1324), 1, sym__concat, - STATE(3796), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1270), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - sym__special_character, - [166432] = 3, + ACTIONS(1322), 9, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [176451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 1, + ACTIONS(10151), 1, sym__concat, - ACTIONS(1346), 8, + ACTIONS(10149), 9, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, @@ -195876,12 +206130,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [166449] = 3, + [176469] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10153), 10, + anon_sym_U, + anon_sym_u, + anon_sym_L, + anon_sym_Q, + anon_sym_E, + anon_sym_P, + anon_sym_A, + anon_sym_K, + anon_sym_a, + anon_sym_k, + [176485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 1, + ACTIONS(1300), 1, sym__concat, - ACTIONS(1320), 8, + ACTIONS(1298), 9, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, @@ -195890,12 +206159,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [166466] = 3, + [176503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 1, + ACTIONS(1344), 1, sym__concat, - ACTIONS(1338), 8, + ACTIONS(1342), 9, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [176521] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + aux_sym_number_token1, + ACTIONS(5272), 1, + aux_sym_number_token2, + ACTIONS(5274), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10155), 1, + anon_sym_LF, + ACTIONS(10157), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5266), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(4380), 3, + sym_arithmetic_expansion, + sym_number, + sym_expansion, + [176549] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10159), 1, + sym__concat, + ACTIONS(9586), 9, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, @@ -195904,12 +206209,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [166483] = 3, + [176567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 1, + ACTIONS(1274), 1, sym__concat, - ACTIONS(1284), 8, + ACTIONS(1272), 9, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, @@ -195918,12 +206224,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [166500] = 3, + [176585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 1, + ACTIONS(1332), 1, sym__concat, - ACTIONS(1334), 8, + ACTIONS(1330), 9, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, @@ -195932,12 +206239,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [166517] = 3, + [176603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 1, + ACTIONS(1270), 1, sym__concat, - ACTIONS(1342), 8, + ACTIONS(1268), 9, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, @@ -195946,12 +206254,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [166534] = 3, + [176621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 1, + ACTIONS(1348), 1, sym__concat, - ACTIONS(1324), 8, + ACTIONS(1346), 9, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, @@ -195960,12 +206269,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [166551] = 3, + [176639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 1, + ACTIONS(1336), 1, sym__concat, - ACTIONS(1284), 8, + ACTIONS(1334), 9, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, @@ -195974,12 +206284,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [166568] = 3, + [176657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9740), 1, + ACTIONS(1312), 1, sym__concat, - ACTIONS(9445), 8, + ACTIONS(1310), 9, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [176675] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9586), 9, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [176690] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10161), 9, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, @@ -195988,11450 +206325,12385 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [166585] = 6, + [176705] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + aux_sym_number_token1, + ACTIONS(5272), 1, + aux_sym_number_token2, + ACTIONS(10163), 1, + anon_sym_LF, + ACTIONS(10165), 1, + anon_sym_RBRACE3, + ACTIONS(10167), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5266), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(4829), 2, + sym_arithmetic_expansion, + sym_number, + [176732] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 1, + ACTIONS(1244), 1, anon_sym_LF, - ACTIONS(9742), 1, + ACTIONS(10169), 1, aux_sym_concatenation_token1, - ACTIONS(9745), 1, + ACTIONS(10171), 1, sym__concat, - STATE(3791), 1, + STATE(3959), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 4, + ACTIONS(1242), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [166607] = 3, + sym__special_character, + [176755] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + aux_sym_number_token1, + ACTIONS(5272), 1, + aux_sym_number_token2, + ACTIONS(10173), 1, + anon_sym_LF, + ACTIONS(10175), 1, + anon_sym_RBRACE3, + ACTIONS(10177), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5266), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(4848), 2, + sym_arithmetic_expansion, + sym_number, + [176782] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9750), 3, + ACTIONS(10093), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(9748), 5, + ACTIONS(10091), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [166623] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9736), 1, - aux_sym_concatenation_token1, - ACTIONS(9738), 1, - sym__concat, - ACTIONS(9752), 1, - anon_sym_LF, - ACTIONS(9754), 1, - anon_sym_in, - STATE(3796), 1, - aux_sym_concatenation_repeat1, - ACTIONS(9756), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [166647] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9736), 1, - aux_sym_concatenation_token1, - ACTIONS(9738), 1, - sym__concat, - ACTIONS(9758), 1, - anon_sym_LF, - ACTIONS(9760), 1, - anon_sym_in, - STATE(3796), 1, - aux_sym_concatenation_repeat1, - ACTIONS(9762), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [166671] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9736), 1, - aux_sym_concatenation_token1, - ACTIONS(9738), 1, - sym__concat, - ACTIONS(9764), 1, - anon_sym_LF, - ACTIONS(9766), 1, - anon_sym_in, - STATE(3814), 1, - aux_sym_concatenation_repeat1, - ACTIONS(9768), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [166695] = 6, - ACTIONS(3), 1, + [176798] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1266), 1, - anon_sym_LF, - ACTIONS(9736), 1, - aux_sym_concatenation_token1, - ACTIONS(9770), 1, - sym__concat, - STATE(3791), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1264), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [166717] = 3, + ACTIONS(10181), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(10179), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [176814] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9774), 3, + ACTIONS(10185), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(9772), 5, + ACTIONS(10183), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [166733] = 7, + [176830] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9736), 1, + ACTIONS(10169), 1, aux_sym_concatenation_token1, - ACTIONS(9738), 1, + ACTIONS(10171), 1, sym__concat, - ACTIONS(9776), 1, + ACTIONS(10187), 1, + anon_sym_in, + ACTIONS(10191), 1, anon_sym_LF, - ACTIONS(9778), 1, + STATE(3946), 1, + aux_sym_concatenation_repeat1, + ACTIONS(10189), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [176854] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10169), 1, + aux_sym_concatenation_token1, + ACTIONS(10171), 1, + sym__concat, + ACTIONS(10193), 1, anon_sym_in, - STATE(3814), 1, + ACTIONS(10197), 1, + anon_sym_LF, + STATE(3959), 1, aux_sym_concatenation_repeat1, - ACTIONS(9780), 3, + ACTIONS(10195), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [166757] = 3, + [176878] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9624), 3, + ACTIONS(10115), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(9622), 5, + ACTIONS(10113), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [166773] = 3, + [176894] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9644), 3, + ACTIONS(10201), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(9642), 5, + ACTIONS(10199), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [166789] = 3, + [176910] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1254), 1, + anon_sym_LF, + ACTIONS(10169), 1, + aux_sym_concatenation_token1, + ACTIONS(10203), 1, + sym__concat, + STATE(3951), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1252), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [176932] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9634), 3, + ACTIONS(10129), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(9632), 5, + ACTIONS(10127), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [166805] = 3, + [176948] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9666), 3, + ACTIONS(10207), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(9664), 5, + ACTIONS(10205), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [166821] = 3, + [176964] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9714), 3, + ACTIONS(10019), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(9712), 5, + ACTIONS(10017), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [166837] = 3, + [176980] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9784), 3, + ACTIONS(10099), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(9782), 5, + ACTIONS(10097), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [166853] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9445), 8, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [166867] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9786), 8, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [166881] = 7, + [176996] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9736), 1, + ACTIONS(1263), 1, + anon_sym_LF, + ACTIONS(10209), 1, aux_sym_concatenation_token1, - ACTIONS(9738), 1, + ACTIONS(10212), 1, sym__concat, - ACTIONS(9788), 1, - anon_sym_LF, - ACTIONS(9790), 1, - anon_sym_in, - STATE(3814), 1, + STATE(3951), 1, aux_sym_concatenation_repeat1, - ACTIONS(9792), 3, + ACTIONS(1258), 4, + anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [166905] = 7, + [177018] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9736), 1, + ACTIONS(10169), 1, aux_sym_concatenation_token1, - ACTIONS(9738), 1, + ACTIONS(10171), 1, sym__concat, - ACTIONS(9794), 1, - anon_sym_LF, - ACTIONS(9796), 1, + ACTIONS(10215), 1, anon_sym_in, - STATE(3796), 1, + ACTIONS(10219), 1, + anon_sym_LF, + STATE(3959), 1, aux_sym_concatenation_repeat1, - ACTIONS(9798), 3, + ACTIONS(10217), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [166929] = 3, + [177042] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9802), 3, + ACTIONS(10141), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(9800), 5, + ACTIONS(10139), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [166945] = 3, + [177058] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10169), 1, + aux_sym_concatenation_token1, + ACTIONS(10171), 1, + sym__concat, + ACTIONS(10221), 1, + anon_sym_in, + ACTIONS(10225), 1, + anon_sym_LF, + STATE(3946), 1, + aux_sym_concatenation_repeat1, + ACTIONS(10223), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [177082] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9706), 3, + ACTIONS(10109), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(9704), 5, + ACTIONS(10107), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [166961] = 7, + [177098] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9736), 1, + ACTIONS(10169), 1, aux_sym_concatenation_token1, - ACTIONS(9738), 1, + ACTIONS(10171), 1, sym__concat, - ACTIONS(9804), 1, - anon_sym_LF, - ACTIONS(9806), 1, + ACTIONS(10227), 1, anon_sym_in, - STATE(3814), 1, - aux_sym_concatenation_repeat1, - ACTIONS(9808), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [166985] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9736), 1, - aux_sym_concatenation_token1, - ACTIONS(9738), 1, - sym__concat, - ACTIONS(9810), 1, + ACTIONS(10231), 1, anon_sym_LF, - ACTIONS(9812), 1, - anon_sym_in, - STATE(3796), 1, + STATE(3946), 1, aux_sym_concatenation_repeat1, - ACTIONS(9814), 3, + ACTIONS(10229), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167009] = 3, + [177122] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9818), 3, + ACTIONS(10047), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(9816), 5, + ACTIONS(10045), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [167025] = 6, + [177138] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10169), 1, + aux_sym_concatenation_token1, + ACTIONS(10171), 1, + sym__concat, + ACTIONS(10233), 1, + anon_sym_in, + ACTIONS(10237), 1, + anon_sym_LF, + STATE(3959), 1, + aux_sym_concatenation_repeat1, + ACTIONS(10235), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [177162] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1260), 1, + ACTIONS(1248), 1, anon_sym_LF, - ACTIONS(9736), 1, + ACTIONS(10169), 1, aux_sym_concatenation_token1, - ACTIONS(9820), 1, + ACTIONS(10239), 1, sym__concat, - STATE(3791), 1, + STATE(3951), 1, aux_sym_concatenation_repeat1, - ACTIONS(1258), 4, + ACTIONS(1246), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167047] = 3, + [177184] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10243), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(10241), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [177200] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9656), 3, + ACTIONS(10247), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(9654), 5, + ACTIONS(10245), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [167063] = 3, + [177216] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9674), 3, + ACTIONS(10251), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(9672), 5, + ACTIONS(10249), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [167079] = 3, + [177232] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9824), 3, + ACTIONS(10255), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(9822), 5, + ACTIONS(10253), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [167095] = 3, + [177248] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10057), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(10055), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [177264] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9828), 3, + ACTIONS(10259), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(9826), 5, + ACTIONS(10257), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [167111] = 3, + [177280] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9832), 3, + ACTIONS(10263), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(9830), 5, + ACTIONS(10261), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [167127] = 3, + [177296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 2, + ACTIONS(1274), 2, sym__concat, anon_sym_LF, - ACTIONS(1274), 5, + ACTIONS(1272), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [167142] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9752), 1, - anon_sym_LF, - ACTIONS(9754), 1, - anon_sym_in, - ACTIONS(9834), 1, - sym__special_character, - STATE(3863), 1, - aux_sym__literal_repeat1, - ACTIONS(9756), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [167163] = 6, + [177311] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(430), 1, anon_sym_LBRACE, - ACTIONS(99), 1, + ACTIONS(434), 1, anon_sym_LBRACK, - ACTIONS(101), 1, + ACTIONS(436), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(364), 1, + ACTIONS(10265), 1, anon_sym_LPAREN, - STATE(3060), 3, + STATE(2947), 3, sym_compound_statement, sym_subshell, sym_test_command, - [167184] = 3, + [177332] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10233), 1, + anon_sym_in, + ACTIONS(10237), 1, + anon_sym_LF, + ACTIONS(10267), 1, + sym__special_character, + STATE(4009), 1, + aux_sym__literal_repeat1, + ACTIONS(10235), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [177353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 2, + ACTIONS(1320), 2, sym__concat, anon_sym_LF, - ACTIONS(1328), 5, + ACTIONS(1318), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [167199] = 6, + [177368] = 6, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(268), 1, + ACTIONS(10269), 1, + anon_sym_LPAREN, + STATE(3135), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [177389] = 6, + ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(272), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(276), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9836), 1, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10271), 1, anon_sym_LPAREN, - STATE(3447), 3, + STATE(3143), 3, sym_compound_statement, sym_subshell, sym_test_command, - [167220] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1314), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1312), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [167235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1356), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1354), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [167250] = 3, + [177410] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1338), 1, + ACTIONS(1322), 1, anon_sym_DOLLAR, - ACTIONS(1340), 6, + ACTIONS(1324), 6, sym__heredoc_body_middle, - sym__heredoc_body_end, + sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [167265] = 3, + [177425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 2, + ACTIONS(1344), 2, sym__concat, anon_sym_LF, - ACTIONS(1350), 5, + ACTIONS(1342), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [167280] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACE, - ACTIONS(458), 1, - anon_sym_LBRACK, - ACTIONS(460), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9838), 1, - anon_sym_LPAREN, - STATE(2913), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [167301] = 3, + [177440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 2, + ACTIONS(1348), 2, sym__concat, anon_sym_LF, - ACTIONS(1288), 5, + ACTIONS(1346), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [167316] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9840), 1, - anon_sym_LF, - ACTIONS(9842), 6, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_AMP, - [167331] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9758), 1, - anon_sym_LF, - ACTIONS(9760), 1, - anon_sym_in, - ACTIONS(9834), 1, - sym__special_character, - STATE(3863), 1, - aux_sym__literal_repeat1, - ACTIONS(9762), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [167352] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9844), 1, - anon_sym_LF, - ACTIONS(9846), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(2964), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [167369] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_LBRACE, - ACTIONS(99), 1, - anon_sym_LBRACK, - ACTIONS(101), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9848), 1, - anon_sym_LPAREN, - STATE(3019), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [167390] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(95), 1, + [177455] = 6, + ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(99), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(101), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(364), 1, - anon_sym_LPAREN, - STATE(3059), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [167411] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(436), 1, + ACTIONS(10269), 1, anon_sym_LPAREN, - ACTIONS(454), 1, - anon_sym_LBRACE, - ACTIONS(458), 1, - anon_sym_LBRACK, - ACTIONS(460), 1, - anon_sym_LBRACK_LBRACK, - STATE(2817), 3, + STATE(3157), 3, sym_compound_statement, sym_subshell, sym_test_command, - [167432] = 6, - ACTIONS(27), 1, + [177476] = 6, + ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(31), 1, - anon_sym_LBRACK, ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(9850), 1, + ACTIONS(10269), 1, anon_sym_LPAREN, - STATE(2969), 3, + STATE(3566), 3, sym_compound_statement, sym_subshell, sym_test_command, - [167453] = 3, + [177497] = 3, ACTIONS(63), 1, sym_comment, ACTIONS(1342), 1, anon_sym_DOLLAR, ACTIONS(1344), 6, sym__heredoc_body_middle, - sym__heredoc_body_end, + sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [167468] = 3, - ACTIONS(63), 1, + [177512] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 1, - anon_sym_DOLLAR, - ACTIONS(1348), 6, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [167483] = 3, + ACTIONS(1328), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1326), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_concatenation_token1, + [177527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 2, + ACTIONS(1286), 2, sym__concat, anon_sym_LF, - ACTIONS(1338), 5, + ACTIONS(1284), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [167498] = 3, + [177542] = 6, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10269), 1, + anon_sym_LPAREN, + STATE(3162), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [177563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 2, + ACTIONS(1324), 2, sym__concat, anon_sym_LF, - ACTIONS(1334), 5, + ACTIONS(1322), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [167513] = 3, + [177578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 2, + ACTIONS(1312), 2, sym__concat, anon_sym_LF, - ACTIONS(1320), 5, + ACTIONS(1310), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [167528] = 3, + [177593] = 6, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10273), 1, + anon_sym_LPAREN, + STATE(3179), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [177614] = 3, ACTIONS(63), 1, sym_comment, ACTIONS(1334), 1, anon_sym_DOLLAR, ACTIONS(1336), 6, sym__heredoc_body_middle, - sym__heredoc_body_end, + sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [167543] = 6, + [177629] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(454), 1, + ACTIONS(1272), 1, + anon_sym_DOLLAR, + ACTIONS(1274), 6, + sym__heredoc_body_middle, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [177644] = 6, + ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(458), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(460), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9852), 1, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10269), 1, anon_sym_LPAREN, - STATE(2828), 3, + STATE(3134), 3, sym_compound_statement, sym_subshell, sym_test_command, - [167564] = 6, + [177665] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(99), 1, + ACTIONS(292), 1, anon_sym_LBRACK, - ACTIONS(101), 1, + ACTIONS(296), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9854), 1, + ACTIONS(10275), 1, anon_sym_LPAREN, - STATE(3001), 3, + STATE(3586), 3, sym_compound_statement, sym_subshell, sym_test_command, - [167585] = 6, + [177686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9794), 1, + ACTIONS(1300), 2, + sym__concat, anon_sym_LF, - ACTIONS(9796), 1, + ACTIONS(1298), 5, anon_sym_in, - ACTIONS(9834), 1, - sym__special_character, - STATE(3863), 1, - aux_sym__literal_repeat1, - ACTIONS(9798), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167606] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_LBRACE, - ACTIONS(99), 1, - anon_sym_LBRACK, - ACTIONS(101), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(364), 1, - anon_sym_LPAREN, - STATE(2968), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [167627] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_LBRACE, - ACTIONS(99), 1, - anon_sym_LBRACK, - ACTIONS(101), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9856), 1, - anon_sym_LPAREN, - STATE(2979), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [167648] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(268), 1, - anon_sym_LBRACE, - ACTIONS(272), 1, - anon_sym_LBRACK, - ACTIONS(276), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1073), 1, - anon_sym_LPAREN, - STATE(3446), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [167669] = 4, + aux_sym_concatenation_token1, + [177701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9858), 1, + ACTIONS(1278), 2, + sym__concat, anon_sym_LF, - ACTIONS(9860), 2, + ACTIONS(1276), 5, + anon_sym_in, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(1923), 4, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [167686] = 3, + anon_sym_AMP, + aux_sym_concatenation_token1, + [177716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9862), 1, + ACTIONS(1270), 2, + sym__concat, anon_sym_LF, - ACTIONS(9864), 6, + ACTIONS(1268), 5, + anon_sym_in, anon_sym_SEMI, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_AMP, - [167701] = 6, + aux_sym_concatenation_token1, + [177731] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(454), 1, + ACTIONS(430), 1, anon_sym_LBRACE, - ACTIONS(458), 1, + ACTIONS(434), 1, anon_sym_LBRACK, - ACTIONS(460), 1, + ACTIONS(436), 1, anon_sym_LBRACK_LBRACK, - STATE(2915), 3, + ACTIONS(10277), 1, + anon_sym_LPAREN, + STATE(2950), 3, sym_compound_statement, sym_subshell, sym_test_command, - [167722] = 3, + [177752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 2, + ACTIONS(1270), 2, sym__concat, anon_sym_LF, - ACTIONS(1284), 5, + ACTIONS(1268), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [167737] = 3, + [177767] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1330), 1, + anon_sym_DOLLAR, + ACTIONS(1332), 6, + sym__heredoc_body_middle, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [177782] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 2, + ACTIONS(10215), 1, + anon_sym_in, + ACTIONS(10219), 1, + anon_sym_LF, + ACTIONS(10267), 1, + sym__special_character, + STATE(4009), 1, + aux_sym__literal_repeat1, + ACTIONS(10217), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [177803] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1304), 2, sym__concat, anon_sym_LF, - ACTIONS(1346), 5, + ACTIONS(1302), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [167752] = 6, + [177818] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(268), 1, + ACTIONS(430), 1, anon_sym_LBRACE, - ACTIONS(272), 1, + ACTIONS(434), 1, anon_sym_LBRACK, - ACTIONS(276), 1, + ACTIONS(436), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1073), 1, + ACTIONS(10279), 1, anon_sym_LPAREN, - STATE(3445), 3, + STATE(3006), 3, sym_compound_statement, sym_subshell, sym_test_command, - [167773] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1320), 1, - anon_sym_DOLLAR, - ACTIONS(1322), 6, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [167788] = 3, + [177839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9866), 1, + ACTIONS(1263), 2, + sym__concat, anon_sym_LF, - ACTIONS(9868), 6, + ACTIONS(1258), 5, + anon_sym_in, anon_sym_SEMI, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_AMP, - [167803] = 3, + aux_sym_concatenation_token1, + [177854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1282), 2, sym__concat, anon_sym_LF, - ACTIONS(1316), 5, + ACTIONS(1280), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [167818] = 3, + [177869] = 6, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10281), 1, + anon_sym_LPAREN, + STATE(3123), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [177890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 2, + ACTIONS(1340), 2, sym__concat, anon_sym_LF, - ACTIONS(1342), 5, + ACTIONS(1338), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [167833] = 6, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(27), 1, + [177905] = 6, + ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(31), 1, - anon_sym_LBRACK, ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - STATE(2960), 3, + ACTIONS(10269), 1, + anon_sym_LPAREN, + STATE(3561), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [177926] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_DOLLAR, + ACTIONS(1270), 6, + sym__heredoc_body_middle, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [177941] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(430), 1, + anon_sym_LBRACE, + ACTIONS(434), 1, + anon_sym_LBRACK, + ACTIONS(436), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10277), 1, + anon_sym_LPAREN, + STATE(2942), 3, sym_compound_statement, sym_subshell, sym_test_command, - [167854] = 3, + [177962] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_DOLLAR, + ACTIONS(1270), 6, + sym__heredoc_body_middle, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [177977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 2, + ACTIONS(1296), 2, sym__concat, anon_sym_LF, - ACTIONS(1302), 5, + ACTIONS(1294), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [167869] = 3, + [177992] = 6, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10269), 1, + anon_sym_LPAREN, + STATE(3110), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [178013] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(430), 1, + anon_sym_LBRACE, + ACTIONS(434), 1, + anon_sym_LBRACK, + ACTIONS(436), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10277), 1, + anon_sym_LPAREN, + STATE(3007), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [178034] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 2, - sym__concat, + ACTIONS(1357), 1, anon_sym_LF, - ACTIONS(1324), 5, + ACTIONS(10283), 1, + sym__special_character, + STATE(4009), 1, + aux_sym__literal_repeat1, + ACTIONS(1352), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - aux_sym_concatenation_token1, - [167884] = 5, + [178053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1363), 1, + ACTIONS(1336), 2, + sym__concat, anon_sym_LF, - ACTIONS(9870), 1, - sym__special_character, - STATE(3863), 1, - aux_sym__literal_repeat1, - ACTIONS(1358), 4, + ACTIONS(1334), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167903] = 6, + aux_sym_concatenation_token1, + [178068] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(454), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(458), 1, + ACTIONS(292), 1, anon_sym_LBRACK, - ACTIONS(460), 1, + ACTIONS(296), 1, anon_sym_LBRACK_LBRACK, - STATE(2916), 3, + ACTIONS(10275), 1, + anon_sym_LPAREN, + STATE(3582), 3, sym_compound_statement, sym_subshell, sym_test_command, - [167924] = 6, + [178089] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(99), 1, + ACTIONS(292), 1, anon_sym_LBRACK, - ACTIONS(101), 1, + ACTIONS(296), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(364), 1, + ACTIONS(10286), 1, anon_sym_LPAREN, - STATE(2997), 3, + STATE(3576), 3, sym_compound_statement, sym_subshell, sym_test_command, - [167945] = 6, + [178110] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(430), 1, anon_sym_LBRACE, - ACTIONS(99), 1, + ACTIONS(434), 1, anon_sym_LBRACK, - ACTIONS(101), 1, + ACTIONS(436), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(364), 1, + ACTIONS(10277), 1, anon_sym_LPAREN, - STATE(2989), 3, + STATE(3010), 3, sym_compound_statement, sym_subshell, sym_test_command, - [167966] = 3, + [178131] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1284), 5, + ACTIONS(10193), 1, anon_sym_in, + ACTIONS(10197), 1, + anon_sym_LF, + ACTIONS(10267), 1, + sym__special_character, + STATE(4009), 1, + aux_sym__literal_repeat1, + ACTIONS(10195), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - aux_sym_concatenation_token1, - [167981] = 3, + [178152] = 6, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10288), 1, + anon_sym_LPAREN, + STATE(3567), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [178173] = 6, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10290), 1, + anon_sym_LPAREN, + STATE(3119), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [178194] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 1, + ACTIONS(1346), 1, anon_sym_DOLLAR, - ACTIONS(1286), 6, + ACTIONS(1348), 6, sym__heredoc_body_middle, - sym__heredoc_body_end, + sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [167996] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(454), 1, + [178209] = 6, + ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(458), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(460), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - STATE(2781), 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10269), 1, + anon_sym_LPAREN, + STATE(3129), 3, sym_compound_statement, sym_subshell, sym_test_command, - [168017] = 3, + [178230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 2, + ACTIONS(1332), 2, sym__concat, anon_sym_LF, - ACTIONS(1308), 5, + ACTIONS(1330), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [168032] = 3, + [178245] = 6, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 1, - anon_sym_DOLLAR, - ACTIONS(1286), 6, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [168047] = 3, + ACTIONS(10269), 1, + anon_sym_LPAREN, + STATE(3124), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [178266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 2, + ACTIONS(1316), 2, sym__concat, anon_sym_LF, - ACTIONS(1298), 5, + ACTIONS(1314), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [168062] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9810), 1, - anon_sym_LF, - ACTIONS(9812), 1, - anon_sym_in, - ACTIONS(9834), 1, - sym__special_character, - STATE(3863), 1, - aux_sym__literal_repeat1, - ACTIONS(9814), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [168083] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_LBRACE, - ACTIONS(99), 1, - anon_sym_LBRACK, - ACTIONS(101), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(364), 1, - anon_sym_LPAREN, - STATE(2992), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [168104] = 6, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(27), 1, + [178281] = 6, + ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(31), 1, - anon_sym_LBRACK, ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - STATE(2987), 3, + ACTIONS(10269), 1, + anon_sym_LPAREN, + STATE(3111), 3, sym_compound_statement, sym_subshell, sym_test_command, - [168125] = 6, + [178302] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(9873), 1, + ACTIONS(10292), 1, anon_sym_fi, - ACTIONS(9875), 1, + ACTIONS(10294), 1, anon_sym_elif, - ACTIONS(9877), 1, + ACTIONS(10296), 1, anon_sym_else, - STATE(4572), 1, + STATE(4585), 1, sym_else_clause, - STATE(3910), 2, + STATE(4072), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [168145] = 6, + [178322] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(9879), 1, + ACTIONS(10294), 1, + anon_sym_elif, + ACTIONS(10296), 1, + anon_sym_else, + ACTIONS(10298), 1, + anon_sym_fi, + STATE(4425), 1, + sym_else_clause, + STATE(4072), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [178342] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10300), 1, anon_sym_RPAREN, - ACTIONS(9881), 1, + ACTIONS(10302), 1, anon_sym_PIPE, - STATE(3915), 1, + STATE(4089), 1, aux_sym_concatenation_repeat1, - STATE(4053), 1, + STATE(4254), 1, aux_sym_case_item_repeat1, - ACTIONS(9883), 2, + ACTIONS(10304), 2, sym__concat, aux_sym_concatenation_token1, - [168165] = 3, - ACTIONS(3), 1, + [178362] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(9862), 1, - anon_sym_LF, - ACTIONS(9864), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_BQUOTE, - [168179] = 6, + ACTIONS(10294), 1, + anon_sym_elif, + ACTIONS(10296), 1, + anon_sym_else, + ACTIONS(10306), 1, + anon_sym_fi, + STATE(4640), 1, + sym_else_clause, + STATE(4072), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [178382] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, + ACTIONS(10302), 1, anon_sym_PIPE, - ACTIONS(9885), 1, + ACTIONS(10308), 1, anon_sym_RPAREN, - STATE(3915), 1, + STATE(4089), 1, aux_sym_concatenation_repeat1, - STATE(4082), 1, + STATE(4264), 1, aux_sym_case_item_repeat1, - ACTIONS(9883), 2, + ACTIONS(10304), 2, sym__concat, aux_sym_concatenation_token1, - [168199] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9887), 1, - anon_sym_LF, - ACTIONS(9891), 1, - anon_sym_COMMA, - STATE(2735), 1, - sym__c_terminator, - STATE(3905), 1, - aux_sym__for_body_repeat1, - ACTIONS(9889), 2, - anon_sym_SEMI, - anon_sym_AMP, - [168219] = 6, + [178402] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(9875), 1, + ACTIONS(10294), 1, anon_sym_elif, - ACTIONS(9877), 1, + ACTIONS(10296), 1, anon_sym_else, - ACTIONS(9893), 1, + ACTIONS(10310), 1, anon_sym_fi, - STATE(4558), 1, + STATE(4604), 1, sym_else_clause, - STATE(3910), 2, + STATE(4072), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [168239] = 4, + [178422] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9895), 1, + ACTIONS(10314), 1, + anon_sym_COMMA, + ACTIONS(10316), 1, anon_sym_LF, - ACTIONS(9897), 2, + STATE(2872), 1, + sym__c_terminator, + STATE(4045), 1, + aux_sym__for_body_repeat1, + ACTIONS(10312), 2, anon_sym_SEMI, anon_sym_AMP, - ACTIONS(1923), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [168255] = 4, + [178442] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10302), 1, + anon_sym_PIPE, + ACTIONS(10318), 1, + anon_sym_RPAREN, + STATE(4091), 1, + aux_sym_concatenation_repeat1, + STATE(4244), 1, + aux_sym_case_item_repeat1, + ACTIONS(10304), 2, + sym__concat, + aux_sym_concatenation_token1, + [178462] = 4, ACTIONS(63), 1, sym_comment, - STATE(3915), 1, + STATE(4091), 1, aux_sym_concatenation_repeat1, - ACTIONS(9883), 2, + ACTIONS(10304), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1272), 3, + ACTIONS(1244), 3, anon_sym_RPAREN, anon_sym_PIPE, sym__special_character, - [168271] = 4, + [178478] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9899), 1, + ACTIONS(10314), 1, + anon_sym_COMMA, + ACTIONS(10322), 1, + anon_sym_LF, + STATE(2801), 1, + sym__c_terminator, + STATE(4073), 1, + aux_sym__for_body_repeat1, + ACTIONS(10320), 2, + anon_sym_SEMI, + anon_sym_AMP, + [178498] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10314), 1, + anon_sym_COMMA, + ACTIONS(10326), 1, anon_sym_LF, - ACTIONS(9901), 2, + STATE(2544), 1, + sym__c_terminator, + STATE(4073), 1, + aux_sym__for_body_repeat1, + ACTIONS(10324), 2, anon_sym_SEMI, anon_sym_AMP, - ACTIONS(2964), 3, + [178518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1244), 1, + anon_sym_LF, + ACTIONS(1242), 5, + anon_sym_in, + anon_sym_SEMI, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [168287] = 6, + anon_sym_AMP, + sym__special_character, + [178532] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, + ACTIONS(10302), 1, anon_sym_PIPE, - ACTIONS(9903), 1, + ACTIONS(10328), 1, anon_sym_RPAREN, - STATE(3915), 1, + STATE(4091), 1, aux_sym_concatenation_repeat1, - STATE(4032), 1, + STATE(4187), 1, aux_sym_case_item_repeat1, - ACTIONS(9883), 2, + ACTIONS(10304), 2, sym__concat, aux_sym_concatenation_token1, - [168307] = 6, + [178552] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, - anon_sym_PIPE, - ACTIONS(9905), 1, - anon_sym_RPAREN, - STATE(3913), 1, + ACTIONS(1242), 1, + sym__special_character, + STATE(4088), 1, aux_sym_concatenation_repeat1, - STATE(4078), 1, - aux_sym_case_item_repeat1, - ACTIONS(9883), 2, + ACTIONS(1244), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + ACTIONS(10330), 2, sym__concat, aux_sym_concatenation_token1, - [168327] = 3, + [178570] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9866), 1, + ACTIONS(10314), 1, + anon_sym_COMMA, + ACTIONS(10334), 1, anon_sym_LF, - ACTIONS(9868), 5, + STATE(2516), 1, + sym__c_terminator, + STATE(4033), 1, + aux_sym__for_body_repeat1, + ACTIONS(10332), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_BQUOTE, - [168341] = 3, + [178590] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9840), 1, + ACTIONS(10314), 1, + anon_sym_COMMA, + ACTIONS(10338), 1, anon_sym_LF, - ACTIONS(9842), 5, + STATE(2802), 1, + sym__c_terminator, + STATE(4047), 1, + aux_sym__for_body_repeat1, + ACTIONS(10336), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_BQUOTE, - [168355] = 6, + [178610] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, + ACTIONS(10302), 1, anon_sym_PIPE, - ACTIONS(9907), 1, + ACTIONS(10340), 1, anon_sym_RPAREN, - STATE(3913), 1, + STATE(4091), 1, aux_sym_concatenation_repeat1, - STATE(4057), 1, + STATE(4281), 1, aux_sym_case_item_repeat1, - ACTIONS(9883), 2, + ACTIONS(10304), 2, sym__concat, aux_sym_concatenation_token1, - [168375] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9875), 1, - anon_sym_elif, - ACTIONS(9877), 1, - anon_sym_else, - ACTIONS(9909), 1, - anon_sym_fi, - STATE(4690), 1, - sym_else_clause, - STATE(3910), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [168395] = 6, + [178630] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(9875), 1, + ACTIONS(10294), 1, anon_sym_elif, - ACTIONS(9877), 1, + ACTIONS(10296), 1, anon_sym_else, - ACTIONS(9911), 1, + ACTIONS(10342), 1, anon_sym_fi, - STATE(4678), 1, + STATE(4412), 1, sym_else_clause, - STATE(3910), 2, + STATE(4072), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [168415] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9881), 1, - anon_sym_PIPE, - ACTIONS(9913), 1, - anon_sym_RPAREN, - STATE(3915), 1, - aux_sym_concatenation_repeat1, - STATE(4066), 1, - aux_sym_case_item_repeat1, - ACTIONS(9883), 2, - sym__concat, - aux_sym_concatenation_token1, - [168435] = 6, + [178650] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9891), 1, + ACTIONS(10314), 1, anon_sym_COMMA, - ACTIONS(9915), 1, + ACTIONS(10346), 1, anon_sym_LF, - STATE(2649), 1, + STATE(2865), 1, sym__c_terminator, - STATE(3919), 1, + STATE(4032), 1, aux_sym__for_body_repeat1, - ACTIONS(9917), 2, + ACTIONS(10344), 2, anon_sym_SEMI, anon_sym_AMP, - [168455] = 6, + [178670] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(9875), 1, - anon_sym_elif, - ACTIONS(9877), 1, - anon_sym_else, - ACTIONS(9919), 1, - anon_sym_fi, - STATE(4674), 1, - sym_else_clause, - STATE(3910), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [168475] = 6, + ACTIONS(10302), 1, + anon_sym_PIPE, + ACTIONS(10348), 1, + anon_sym_RPAREN, + STATE(4089), 1, + aux_sym_concatenation_repeat1, + STATE(4169), 1, + aux_sym_case_item_repeat1, + ACTIONS(10304), 2, + sym__concat, + aux_sym_concatenation_token1, + [178690] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(9875), 1, + ACTIONS(10294), 1, anon_sym_elif, - ACTIONS(9877), 1, + ACTIONS(10296), 1, anon_sym_else, - ACTIONS(9921), 1, + ACTIONS(10350), 1, anon_sym_fi, - STATE(4641), 1, + STATE(4748), 1, sym_else_clause, - STATE(3910), 2, + STATE(4072), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [168495] = 6, + [178710] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, + ACTIONS(10302), 1, anon_sym_PIPE, - ACTIONS(9923), 1, + ACTIONS(10352), 1, anon_sym_RPAREN, - STATE(3913), 1, + STATE(4089), 1, aux_sym_concatenation_repeat1, - STATE(4065), 1, + STATE(4157), 1, aux_sym_case_item_repeat1, - ACTIONS(9883), 2, + ACTIONS(10304), 2, sym__concat, aux_sym_concatenation_token1, - [168515] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9891), 1, - anon_sym_COMMA, - ACTIONS(9925), 1, - anon_sym_LF, - STATE(2379), 1, - sym__c_terminator, - STATE(3919), 1, - aux_sym__for_body_repeat1, - ACTIONS(9927), 2, - anon_sym_SEMI, - anon_sym_AMP, - [168535] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9875), 1, - anon_sym_elif, - ACTIONS(9877), 1, - anon_sym_else, - ACTIONS(9929), 1, - anon_sym_fi, - STATE(4698), 1, - sym_else_clause, - STATE(3910), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [168555] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 1, - anon_sym_LF, - ACTIONS(1270), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - sym__special_character, - [168569] = 6, + [178730] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9891), 1, - anon_sym_COMMA, - ACTIONS(9931), 1, - anon_sym_LF, - STATE(2737), 1, - sym__c_terminator, - STATE(3919), 1, - aux_sym__for_body_repeat1, - ACTIONS(9933), 2, - anon_sym_SEMI, - anon_sym_AMP, - [168589] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9891), 1, + ACTIONS(10314), 1, anon_sym_COMMA, - ACTIONS(9935), 1, + ACTIONS(10356), 1, anon_sym_LF, - STATE(2380), 1, + STATE(2834), 1, sym__c_terminator, - STATE(3897), 1, + STATE(4073), 1, aux_sym__for_body_repeat1, - ACTIONS(9937), 2, + ACTIONS(10354), 2, anon_sym_SEMI, anon_sym_AMP, - [168609] = 6, + [178750] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, + ACTIONS(10302), 1, anon_sym_PIPE, - ACTIONS(9939), 1, + ACTIONS(10358), 1, anon_sym_RPAREN, - STATE(3913), 1, + STATE(4091), 1, aux_sym_concatenation_repeat1, - STATE(4061), 1, + STATE(4226), 1, aux_sym_case_item_repeat1, - ACTIONS(9883), 2, + ACTIONS(10304), 2, sym__concat, aux_sym_concatenation_token1, - [168629] = 6, + [178770] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9891), 1, + ACTIONS(10314), 1, anon_sym_COMMA, - ACTIONS(9941), 1, + ACTIONS(10362), 1, anon_sym_LF, - STATE(2678), 1, + STATE(2882), 1, sym__c_terminator, - STATE(3900), 1, + STATE(4073), 1, aux_sym__for_body_repeat1, - ACTIONS(9943), 2, + ACTIONS(10360), 2, anon_sym_SEMI, anon_sym_AMP, - [168649] = 6, - ACTIONS(3), 1, + [178790] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(9891), 1, - anon_sym_COMMA, - ACTIONS(9945), 1, - anon_sym_LF, - STATE(2736), 1, - sym__c_terminator, - STATE(3893), 1, - aux_sym__for_body_repeat1, - ACTIONS(9947), 2, - anon_sym_SEMI, - anon_sym_AMP, - [168669] = 6, - ACTIONS(3), 1, + ACTIONS(10364), 1, + sym_simple_heredoc_body, + ACTIONS(10366), 1, + sym__heredoc_body_beginning, + STATE(4724), 1, + sym_heredoc_body, + STATE(3004), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [178807] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(9891), 1, - anon_sym_COMMA, - ACTIONS(9949), 1, - anon_sym_LF, - STATE(2712), 1, - sym__c_terminator, - STATE(3919), 1, - aux_sym__for_body_repeat1, - ACTIONS(9951), 2, + ACTIONS(10366), 1, + sym__heredoc_body_beginning, + ACTIONS(10368), 1, + sym_simple_heredoc_body, + STATE(4414), 1, + sym_heredoc_body, + STATE(3602), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [178824] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10366), 1, + sym__heredoc_body_beginning, + ACTIONS(10370), 1, + sym_simple_heredoc_body, + STATE(4564), 1, + sym_heredoc_body, + STATE(3022), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [178841] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(430), 1, + anon_sym_LBRACE, + ACTIONS(10372), 1, anon_sym_SEMI, - anon_sym_AMP, - [168689] = 6, + ACTIONS(10374), 1, + anon_sym_do, + STATE(3045), 1, + sym_do_group, + STATE(3046), 1, + sym_compound_statement, + [178860] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(9875), 1, - anon_sym_elif, - ACTIONS(9877), 1, - anon_sym_else, - ACTIONS(9953), 1, - anon_sym_fi, - STATE(4635), 1, - sym_else_clause, - STATE(3910), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [168709] = 4, + ACTIONS(10364), 1, + sym_simple_heredoc_body, + ACTIONS(10366), 1, + sym__heredoc_body_beginning, + STATE(4724), 1, + sym_heredoc_body, + STATE(3085), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [178877] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10376), 1, + anon_sym_SLASH, + ACTIONS(10378), 1, + anon_sym_RBRACE3, + STATE(4080), 1, + aux_sym_concatenation_repeat1, + ACTIONS(10330), 2, + sym__concat, + aux_sym_concatenation_token1, + [178894] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5555), 1, + anon_sym_RPAREN, + ACTIONS(5557), 1, + anon_sym_DQUOTE, + STATE(4524), 1, + sym_string, + ACTIONS(5559), 2, + sym_regex, + sym_raw_string, + [178911] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9955), 1, - anon_sym_LF, - ACTIONS(9957), 1, + ACTIONS(10380), 1, anon_sym_in, - ACTIONS(9959), 3, + ACTIONS(10384), 1, + anon_sym_LF, + ACTIONS(10382), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [168724] = 4, + [178926] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10364), 1, + sym_simple_heredoc_body, + ACTIONS(10366), 1, + sym__heredoc_body_beginning, + STATE(4724), 1, + sym_heredoc_body, + STATE(3014), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [178943] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10302), 1, + anon_sym_PIPE, + ACTIONS(10340), 1, + anon_sym_RPAREN, + ACTIONS(10386), 1, + sym__special_character, + STATE(4130), 1, + aux_sym__literal_repeat1, + STATE(4243), 1, + aux_sym_case_item_repeat1, + [178962] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10366), 1, + sym__heredoc_body_beginning, + ACTIONS(10370), 1, + sym_simple_heredoc_body, + STATE(4564), 1, + sym_heredoc_body, + STATE(3057), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [178979] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9804), 1, - anon_sym_LF, - ACTIONS(9806), 1, + ACTIONS(10221), 1, anon_sym_in, - ACTIONS(9808), 3, + ACTIONS(10225), 1, + anon_sym_LF, + ACTIONS(10223), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [168739] = 4, + [178994] = 5, ACTIONS(63), 1, sym_comment, - STATE(3909), 1, + ACTIONS(10366), 1, + sym__heredoc_body_beginning, + ACTIONS(10388), 1, + sym_simple_heredoc_body, + STATE(4591), 1, + sym_heredoc_body, + STATE(3584), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [179011] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10390), 1, + anon_sym_SLASH, + ACTIONS(10392), 1, + anon_sym_RBRACE3, + STATE(4080), 1, aux_sym_concatenation_repeat1, - ACTIONS(1279), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - ACTIONS(9961), 2, + ACTIONS(10330), 2, sym__concat, aux_sym_concatenation_token1, - [168754] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9966), 1, - anon_sym_elif, - ACTIONS(9964), 2, - anon_sym_fi, - anon_sym_else, - STATE(3910), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [168769] = 4, + [179028] = 4, ACTIONS(63), 1, sym_comment, - STATE(3915), 1, + STATE(4089), 1, aux_sym_concatenation_repeat1, - ACTIONS(9883), 2, + ACTIONS(10304), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(9969), 2, + ACTIONS(10394), 2, anon_sym_RPAREN, anon_sym_PIPE, - [168784] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9881), 1, - anon_sym_PIPE, - ACTIONS(9913), 1, - anon_sym_RPAREN, - ACTIONS(9971), 1, - sym__special_character, - STATE(3970), 1, - aux_sym__literal_repeat1, - STATE(4075), 1, - aux_sym_case_item_repeat1, - [168803] = 5, + [179043] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(9883), 1, - aux_sym_concatenation_token1, - ACTIONS(9973), 1, - sym__concat, - STATE(3909), 1, + ACTIONS(10396), 1, + anon_sym_SLASH, + ACTIONS(10398), 1, + anon_sym_RBRACE3, + STATE(4088), 1, aux_sym_concatenation_repeat1, - ACTIONS(1260), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - [168820] = 3, + ACTIONS(10330), 2, + sym__concat, + aux_sym_concatenation_token1, + [179060] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9840), 2, - ts_builtin_sym_end, + ACTIONS(10400), 1, + anon_sym_in, + ACTIONS(10404), 1, anon_sym_LF, - ACTIONS(9842), 3, + ACTIONS(10402), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [168833] = 5, + [179075] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(9883), 1, - aux_sym_concatenation_token1, - ACTIONS(9975), 1, - sym__concat, - STATE(3909), 1, + STATE(4091), 1, aux_sym_concatenation_repeat1, - ACTIONS(1266), 2, + ACTIONS(10304), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(10406), 2, anon_sym_RPAREN, anon_sym_PIPE, - [168850] = 4, - ACTIONS(3), 1, + [179090] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(5557), 1, + anon_sym_DQUOTE, + ACTIONS(10408), 1, anon_sym_RPAREN, - ACTIONS(9895), 1, - anon_sym_LF, - ACTIONS(9897), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [168865] = 6, + STATE(4515), 1, + sym_string, + ACTIONS(10410), 2, + sym_regex, + sym_raw_string, + [179107] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACE, - ACTIONS(9977), 1, - anon_sym_SEMI, - ACTIONS(9979), 1, - anon_sym_do, - STATE(2888), 1, - sym_do_group, - STATE(2898), 1, - sym_compound_statement, - [168884] = 6, + ACTIONS(10366), 1, + sym__heredoc_body_beginning, + ACTIONS(10388), 1, + sym_simple_heredoc_body, + STATE(4591), 1, + sym_heredoc_body, + STATE(3577), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [179124] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(9879), 1, - anon_sym_RPAREN, - ACTIONS(9881), 1, + ACTIONS(10366), 1, + sym__heredoc_body_beginning, + ACTIONS(10388), 1, + sym_simple_heredoc_body, + STATE(4591), 1, + sym_heredoc_body, + STATE(3575), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [179141] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10364), 1, + sym_simple_heredoc_body, + ACTIONS(10366), 1, + sym__heredoc_body_beginning, + STATE(4724), 1, + sym_heredoc_body, + STATE(3035), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [179158] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10366), 1, + sym__heredoc_body_beginning, + ACTIONS(10370), 1, + sym_simple_heredoc_body, + STATE(4564), 1, + sym_heredoc_body, + STATE(3023), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [179175] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10302), 1, anon_sym_PIPE, - ACTIONS(9971), 1, + ACTIONS(10328), 1, + anon_sym_RPAREN, + ACTIONS(10386), 1, sym__special_character, - STATE(3970), 1, + STATE(4130), 1, aux_sym__literal_repeat1, - STATE(4051), 1, + STATE(4242), 1, aux_sym_case_item_repeat1, - [168903] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9981), 1, - anon_sym_LF, - ACTIONS(9985), 1, - anon_sym_COMMA, - STATE(3919), 1, - aux_sym__for_body_repeat1, - ACTIONS(9983), 2, - anon_sym_SEMI, - anon_sym_AMP, - [168920] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2964), 1, - anon_sym_RPAREN, - ACTIONS(9899), 1, - anon_sym_LF, - ACTIONS(9901), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [168935] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9788), 1, - anon_sym_LF, - ACTIONS(9790), 1, - anon_sym_in, - ACTIONS(9792), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [168950] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9988), 1, - anon_sym_LF, - ACTIONS(9990), 1, - anon_sym_in, - ACTIONS(9992), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [168965] = 4, - ACTIONS(3), 1, + [179194] = 4, + ACTIONS(63), 1, sym_comment, - ACTIONS(9994), 1, - anon_sym_LF, - ACTIONS(9996), 1, - anon_sym_in, - ACTIONS(9998), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [168980] = 4, + ACTIONS(10414), 1, + anon_sym_elif, + ACTIONS(10412), 2, + anon_sym_fi, + anon_sym_else, + STATE(4072), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [179209] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, - anon_sym_BQUOTE, - ACTIONS(10000), 1, + ACTIONS(10419), 1, + anon_sym_COMMA, + ACTIONS(10422), 1, anon_sym_LF, - ACTIONS(10002), 3, + STATE(4073), 1, + aux_sym__for_body_repeat1, + ACTIONS(10417), 2, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - [168995] = 4, - ACTIONS(3), 1, + [179226] = 4, + ACTIONS(63), 1, sym_comment, - ACTIONS(1925), 1, - ts_builtin_sym_end, - ACTIONS(10004), 1, - anon_sym_LF, - ACTIONS(10006), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [169010] = 6, - ACTIONS(27), 1, + STATE(4074), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + ACTIONS(10424), 2, + sym__concat, + aux_sym_concatenation_token1, + [179241] = 6, + ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(63), 1, sym_comment, - ACTIONS(10008), 1, + ACTIONS(10427), 1, anon_sym_SEMI, - ACTIONS(10010), 1, + ACTIONS(10429), 1, anon_sym_do, - STATE(3111), 1, - sym_do_group, - STATE(3112), 1, + STATE(2997), 1, sym_compound_statement, - [169029] = 4, - ACTIONS(3), 1, + STATE(3041), 1, + sym_do_group, + [179260] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(10012), 1, - anon_sym_LF, - ACTIONS(10014), 1, - anon_sym_in, - ACTIONS(10016), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [169044] = 4, + ACTIONS(10302), 1, + anon_sym_PIPE, + ACTIONS(10358), 1, + anon_sym_RPAREN, + ACTIONS(10386), 1, + sym__special_character, + STATE(4130), 1, + aux_sym__literal_repeat1, + STATE(4210), 1, + aux_sym_case_item_repeat1, + [179279] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10366), 1, + sym__heredoc_body_beginning, + ACTIONS(10368), 1, + sym_simple_heredoc_body, + STATE(4414), 1, + sym_heredoc_body, + STATE(3601), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [179296] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10366), 1, + sym__heredoc_body_beginning, + ACTIONS(10368), 1, + sym_simple_heredoc_body, + STATE(4414), 1, + sym_heredoc_body, + STATE(3598), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [179313] = 4, ACTIONS(63), 1, sym_comment, - STATE(3913), 1, + STATE(4079), 1, aux_sym_concatenation_repeat1, - ACTIONS(9883), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(10018), 2, + ACTIONS(1263), 2, anon_sym_RPAREN, anon_sym_PIPE, - [169059] = 3, + ACTIONS(10431), 2, + sym__concat, + aux_sym_concatenation_token1, + [179328] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10330), 1, + aux_sym_concatenation_token1, + ACTIONS(10434), 1, + sym__concat, + STATE(4074), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [179345] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9862), 2, - ts_builtin_sym_end, + ACTIONS(10227), 1, + anon_sym_in, + ACTIONS(10231), 1, anon_sym_LF, - ACTIONS(9864), 3, + ACTIONS(10229), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [169072] = 6, + [179360] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, + ACTIONS(10366), 1, + sym__heredoc_body_beginning, + ACTIONS(10388), 1, + sym_simple_heredoc_body, + STATE(4591), 1, + sym_heredoc_body, + STATE(3585), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [179377] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10302), 1, anon_sym_PIPE, - ACTIONS(9885), 1, + ACTIONS(10318), 1, anon_sym_RPAREN, - ACTIONS(9971), 1, + ACTIONS(10386), 1, sym__special_character, - STATE(3970), 1, + STATE(4130), 1, aux_sym__literal_repeat1, - STATE(4083), 1, + STATE(4286), 1, aux_sym_case_item_repeat1, - [169091] = 4, - ACTIONS(3), 1, + [179396] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(9776), 1, - anon_sym_LF, - ACTIONS(9778), 1, - anon_sym_in, - ACTIONS(9780), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [169106] = 5, + ACTIONS(10366), 1, + sym__heredoc_body_beginning, + ACTIONS(10368), 1, + sym_simple_heredoc_body, + STATE(4414), 1, + sym_heredoc_body, + STATE(3597), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [179413] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 1, - sym__special_character, - ACTIONS(1272), 1, + ACTIONS(10436), 1, + anon_sym_SLASH, + ACTIONS(10438), 1, anon_sym_RBRACE3, - STATE(3954), 1, + STATE(4088), 1, aux_sym_concatenation_repeat1, - ACTIONS(10020), 2, + ACTIONS(10330), 2, sym__concat, aux_sym_concatenation_token1, - [169123] = 3, + [179430] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9866), 2, - ts_builtin_sym_end, + ACTIONS(10187), 1, + anon_sym_in, + ACTIONS(10191), 1, anon_sym_LF, - ACTIONS(9868), 3, + ACTIONS(10189), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [169136] = 4, + [179445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2964), 1, - anon_sym_BQUOTE, - ACTIONS(10022), 1, + ACTIONS(10440), 1, + anon_sym_in, + ACTIONS(10444), 1, anon_sym_LF, - ACTIONS(10024), 3, + ACTIONS(10442), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [169151] = 6, + [179460] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, - anon_sym_PIPE, - ACTIONS(9903), 1, - anon_sym_RPAREN, - ACTIONS(9971), 1, - sym__special_character, - STATE(3970), 1, - aux_sym__literal_repeat1, - STATE(4056), 1, - aux_sym_case_item_repeat1, - [169170] = 6, + ACTIONS(10330), 1, + aux_sym_concatenation_token1, + ACTIONS(10446), 1, + sym__concat, + STATE(4074), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [179477] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_LBRACE, - ACTIONS(10026), 1, - anon_sym_SEMI, - ACTIONS(10028), 1, - anon_sym_do, - STATE(2994), 1, - sym_compound_statement, - STATE(3000), 1, - sym_do_group, - [169189] = 6, + ACTIONS(10304), 1, + aux_sym_concatenation_token1, + ACTIONS(10448), 1, + sym__concat, + STATE(4079), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1254), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [179494] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(268), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(10030), 1, + ACTIONS(10450), 1, anon_sym_SEMI, - ACTIONS(10032), 1, + ACTIONS(10452), 1, anon_sym_do, - STATE(3486), 1, + STATE(3607), 1, sym_do_group, - STATE(3491), 1, + STATE(3608), 1, sym_compound_statement, - [169208] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9764), 1, - anon_sym_LF, - ACTIONS(9766), 1, - anon_sym_in, - ACTIONS(9768), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [169223] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2966), 1, - ts_builtin_sym_end, - ACTIONS(10034), 1, - anon_sym_LF, - ACTIONS(10036), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [169238] = 2, + [179513] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1336), 4, + ACTIONS(10304), 1, + aux_sym_concatenation_token1, + ACTIONS(10454), 1, sym__concat, + STATE(4079), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1248), 2, anon_sym_RPAREN, anon_sym_PIPE, - aux_sym_concatenation_token1, - [169248] = 2, + [179530] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1286), 4, - sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, - aux_sym_concatenation_token1, - [169258] = 4, + ACTIONS(10366), 1, + sym__heredoc_body_beginning, + ACTIONS(10370), 1, + sym_simple_heredoc_body, + STATE(4564), 1, + sym_heredoc_body, + STATE(3055), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [179547] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1279), 1, - anon_sym_RBRACE3, - STATE(3942), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10038), 2, + ACTIONS(1278), 4, sym__concat, + anon_sym_SLASH, aux_sym_concatenation_token1, - [169272] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10041), 1, - anon_sym_esac, - ACTIONS(10043), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10045), 1, - anon_sym_SEMI_AMP, - ACTIONS(10047), 1, - anon_sym_SEMI_SEMI_AMP, - [169288] = 2, + anon_sym_RBRACE3, + [179557] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1344), 4, + ACTIONS(1332), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [169298] = 4, + [179567] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10049), 1, + ACTIONS(10456), 1, anon_sym_esac, - ACTIONS(10051), 1, + ACTIONS(10458), 1, anon_sym_SEMI_SEMI, - ACTIONS(10053), 2, + ACTIONS(10460), 1, anon_sym_SEMI_AMP, + ACTIONS(10462), 1, anon_sym_SEMI_SEMI_AMP, - [169312] = 3, - ACTIONS(3), 1, + [179583] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(10055), 1, - anon_sym_LF, - ACTIONS(10057), 3, - anon_sym_SEMI, + ACTIONS(10464), 1, + anon_sym_esac, + ACTIONS(10466), 1, anon_sym_SEMI_SEMI, - anon_sym_AMP, - [169324] = 4, + ACTIONS(10468), 1, + anon_sym_SEMI_AMP, + ACTIONS(10470), 1, + anon_sym_SEMI_SEMI_AMP, + [179599] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9971), 1, - sym__special_character, - STATE(3970), 1, - aux_sym__literal_repeat1, - ACTIONS(9969), 2, + ACTIONS(1304), 4, + sym__concat, anon_sym_RPAREN, anon_sym_PIPE, - [169338] = 4, + aux_sym_concatenation_token1, + [179609] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10059), 1, + ACTIONS(1300), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [179619] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10472), 1, anon_sym_esac, - ACTIONS(10061), 1, + ACTIONS(10474), 1, anon_sym_SEMI_SEMI, - ACTIONS(10063), 2, + ACTIONS(10476), 1, anon_sym_SEMI_AMP, + ACTIONS(10478), 1, anon_sym_SEMI_SEMI_AMP, - [169352] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10065), 1, - anon_sym_LF, - ACTIONS(10067), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_AMP, - [169364] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10010), 1, - anon_sym_do, - STATE(3012), 1, - sym_compound_statement, - STATE(3014), 1, - sym_do_group, - [169380] = 5, + [179635] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10041), 1, + ACTIONS(10480), 1, anon_sym_esac, - ACTIONS(10069), 1, + ACTIONS(10482), 1, anon_sym_SEMI_SEMI, - ACTIONS(10071), 1, + ACTIONS(10484), 1, anon_sym_SEMI_AMP, - ACTIONS(10073), 1, + ACTIONS(10486), 1, anon_sym_SEMI_SEMI_AMP, - [169396] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1260), 1, - anon_sym_RBRACE3, - ACTIONS(10020), 1, - aux_sym_concatenation_token1, - ACTIONS(10075), 1, - sym__concat, - STATE(3942), 1, - aux_sym_concatenation_repeat1, - [169412] = 4, + [179651] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10077), 1, + ACTIONS(10456), 1, anon_sym_esac, - ACTIONS(10079), 1, + ACTIONS(10488), 1, anon_sym_SEMI_SEMI, - ACTIONS(10081), 2, + ACTIONS(10490), 1, anon_sym_SEMI_AMP, + ACTIONS(10492), 1, anon_sym_SEMI_SEMI_AMP, - [169426] = 5, + [179667] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1266), 1, - anon_sym_RBRACE3, - ACTIONS(10020), 1, - aux_sym_concatenation_token1, - ACTIONS(10083), 1, + ACTIONS(1312), 4, sym__concat, - STATE(3942), 1, - aux_sym_concatenation_repeat1, - [169442] = 2, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [179677] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1290), 4, + ACTIONS(1324), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [169452] = 2, + [179687] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1348), 4, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(10452), 1, + anon_sym_do, + STATE(3596), 1, + sym_compound_statement, + STATE(3621), 1, + sym_do_group, + [179703] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1263), 4, sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_SLASH, aux_sym_concatenation_token1, - [169462] = 5, + anon_sym_RBRACE3, + [179713] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10085), 1, + ACTIONS(10480), 1, anon_sym_esac, - ACTIONS(10087), 1, + ACTIONS(10494), 1, anon_sym_SEMI_SEMI, - ACTIONS(10089), 1, + ACTIONS(10496), 1, anon_sym_SEMI_AMP, - ACTIONS(10091), 1, + ACTIONS(10498), 1, anon_sym_SEMI_SEMI_AMP, - [169478] = 5, + [179729] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACE, - ACTIONS(9979), 1, - anon_sym_do, - STATE(2899), 1, - sym_do_group, - STATE(2926), 1, - sym_compound_statement, - [169494] = 4, + ACTIONS(10436), 1, + anon_sym_SLASH, + ACTIONS(10438), 1, + anon_sym_RBRACE3, + ACTIONS(10500), 1, + sym__special_character, + STATE(4154), 1, + aux_sym__literal_repeat1, + [179745] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1316), 4, + sym__concat, + anon_sym_RPAREN, + anon_sym_PIPE, + aux_sym_concatenation_token1, + [179755] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10093), 1, + ACTIONS(10472), 1, anon_sym_esac, - ACTIONS(10095), 1, + ACTIONS(10502), 1, anon_sym_SEMI_SEMI, - ACTIONS(10097), 2, + ACTIONS(10504), 1, anon_sym_SEMI_AMP, + ACTIONS(10506), 1, anon_sym_SEMI_SEMI_AMP, - [169508] = 2, + [179771] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1340), 4, + ACTIONS(1336), 4, + sym__concat, + anon_sym_RPAREN, + anon_sym_PIPE, + aux_sym_concatenation_token1, + [179781] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1274), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [169518] = 5, + [179791] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1296), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [179801] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10099), 1, + ACTIONS(10508), 1, anon_sym_esac, - ACTIONS(10101), 1, + ACTIONS(10510), 1, anon_sym_SEMI_SEMI, - ACTIONS(10103), 1, + ACTIONS(10512), 2, anon_sym_SEMI_AMP, - ACTIONS(10105), 1, anon_sym_SEMI_SEMI_AMP, - [169534] = 2, + [179815] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1348), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [169544] = 2, + [179825] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1322), 4, + ACTIONS(1344), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [169554] = 2, + [179835] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1300), 4, + ACTIONS(1282), 4, sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_SLASH, aux_sym_concatenation_token1, - [169564] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE3, + [179845] = 2, + ACTIONS(63), 1, sym_comment, - ACTIONS(10107), 1, - anon_sym_LF, - ACTIONS(10109), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [169576] = 4, + ACTIONS(1324), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [179855] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10111), 1, + ACTIONS(1304), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - STATE(3954), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10020), 2, + [179865] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10396), 1, + anon_sym_SLASH, + ACTIONS(10398), 1, + anon_sym_RBRACE3, + ACTIONS(10500), 1, + sym__special_character, + STATE(4154), 1, + aux_sym__literal_repeat1, + [179881] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1316), 4, sym__concat, + anon_sym_SLASH, aux_sym_concatenation_token1, - [169590] = 4, + anon_sym_RBRACE3, + [179891] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(1340), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - STATE(3952), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10020), 2, + [179901] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1270), 4, sym__concat, + anon_sym_RPAREN, + anon_sym_PIPE, + aux_sym_concatenation_token1, + [179911] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1286), 4, + sym__concat, + anon_sym_SLASH, aux_sym_concatenation_token1, - [169604] = 2, + anon_sym_RBRACE3, + [179921] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(1270), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [169614] = 2, + [179931] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1352), 4, + ACTIONS(1332), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [179941] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10422), 1, + anon_sym_LF, + ACTIONS(10417), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_AMP, + [179953] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1336), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [179963] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1300), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [169624] = 4, + [179973] = 5, + ACTIONS(29), 1, + anon_sym_LBRACE, ACTIONS(63), 1, sym_comment, - ACTIONS(10113), 1, + ACTIONS(10429), 1, + anon_sym_do, + STATE(3037), 1, + sym_do_group, + STATE(3063), 1, + sym_compound_statement, + [179989] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10514), 1, sym__special_character, - STATE(3970), 1, + STATE(4130), 1, aux_sym__literal_repeat1, - ACTIONS(1363), 2, + ACTIONS(1357), 2, anon_sym_RPAREN, anon_sym_PIPE, - [169638] = 2, + [180003] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1318), 4, + ACTIONS(1274), 4, sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_SLASH, aux_sym_concatenation_token1, - [169648] = 5, + anon_sym_RBRACE3, + [180013] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10116), 1, - anon_sym_esac, - ACTIONS(10118), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10120), 1, - anon_sym_SEMI_AMP, - ACTIONS(10122), 1, - anon_sym_SEMI_SEMI_AMP, - [169664] = 5, + ACTIONS(1286), 4, + sym__concat, + anon_sym_RPAREN, + anon_sym_PIPE, + aux_sym_concatenation_token1, + [180023] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_LBRACE, - ACTIONS(10028), 1, - anon_sym_do, - STATE(2971), 1, - sym_compound_statement, - STATE(2981), 1, - sym_do_group, - [169680] = 3, + ACTIONS(1328), 4, + sym__concat, + anon_sym_RPAREN, + anon_sym_PIPE, + aux_sym_concatenation_token1, + [180033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10124), 1, + ACTIONS(10519), 1, anon_sym_LF, - ACTIONS(10126), 3, + ACTIONS(10517), 3, anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_COMMA, anon_sym_AMP, - [169692] = 5, + [180045] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10099), 1, + ACTIONS(10521), 1, anon_sym_esac, - ACTIONS(10128), 1, + ACTIONS(10523), 1, anon_sym_SEMI_SEMI, - ACTIONS(10130), 1, + ACTIONS(10525), 2, anon_sym_SEMI_AMP, - ACTIONS(10132), 1, anon_sym_SEMI_SEMI_AMP, - [169708] = 2, + [180059] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1330), 4, + ACTIONS(1340), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [169718] = 2, + [180069] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1279), 4, + ACTIONS(1263), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [169728] = 3, - ACTIONS(3), 1, + [180079] = 2, + ACTIONS(63), 1, sym_comment, - ACTIONS(9981), 1, - anon_sym_LF, - ACTIONS(9983), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_AMP, - [169740] = 5, + ACTIONS(1270), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [180089] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1270), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [180099] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10386), 1, + sym__special_character, + STATE(4130), 1, + aux_sym__literal_repeat1, + ACTIONS(10406), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [180113] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10116), 1, + ACTIONS(1320), 4, + sym__concat, + anon_sym_RPAREN, + anon_sym_PIPE, + aux_sym_concatenation_token1, + [180123] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10527), 1, anon_sym_esac, - ACTIONS(10134), 1, + ACTIONS(10529), 1, anon_sym_SEMI_SEMI, - ACTIONS(10136), 1, + ACTIONS(10531), 2, anon_sym_SEMI_AMP, - ACTIONS(10138), 1, anon_sym_SEMI_SEMI_AMP, - [169756] = 2, + [180137] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1320), 4, sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_SLASH, aux_sym_concatenation_token1, - [169766] = 5, + anon_sym_RBRACE3, + [180147] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(268), 1, - anon_sym_LBRACE, - ACTIONS(10032), 1, - anon_sym_do, - STATE(3487), 1, - sym_do_group, - STATE(3493), 1, - sym_compound_statement, - [169782] = 2, + ACTIONS(1344), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [180157] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1304), 4, + ACTIONS(1348), 4, sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_SLASH, aux_sym_concatenation_token1, - [169792] = 5, + anon_sym_RBRACE3, + [180167] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10085), 1, + ACTIONS(10464), 1, + anon_sym_esac, + ACTIONS(10533), 1, + anon_sym_SEMI_SEMI, + ACTIONS(10535), 1, + anon_sym_SEMI_AMP, + ACTIONS(10537), 1, + anon_sym_SEMI_SEMI_AMP, + [180183] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10539), 1, anon_sym_esac, - ACTIONS(10140), 1, + ACTIONS(10541), 1, anon_sym_SEMI_SEMI, - ACTIONS(10142), 1, + ACTIONS(10543), 2, anon_sym_SEMI_AMP, - ACTIONS(10144), 1, anon_sym_SEMI_SEMI_AMP, - [169808] = 2, + [180197] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1296), 4, + sym__concat, + anon_sym_RPAREN, + anon_sym_PIPE, + aux_sym_concatenation_token1, + [180207] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1328), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [180217] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(430), 1, + anon_sym_LBRACE, + ACTIONS(10374), 1, + anon_sym_do, + STATE(2991), 1, + sym_do_group, + STATE(3002), 1, + sym_compound_statement, + [180233] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1326), 4, + ACTIONS(1312), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [169818] = 2, + [180243] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1356), 4, + ACTIONS(1282), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [169828] = 2, + [180253] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1279), 3, + ACTIONS(1278), 4, sym__concat, + anon_sym_RPAREN, + anon_sym_PIPE, aux_sym_concatenation_token1, + [180263] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10545), 1, + sym__special_character, + STATE(4154), 1, + aux_sym__literal_repeat1, + ACTIONS(1357), 2, + anon_sym_SLASH, anon_sym_RBRACE3, - [169837] = 4, + [180277] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10146), 1, + ACTIONS(10548), 1, anon_sym_COMMA, - ACTIONS(10148), 1, + ACTIONS(10550), 1, anon_sym_RPAREN, - STATE(3991), 1, + STATE(4192), 1, aux_sym__for_body_repeat1, - [169850] = 4, + [180290] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10150), 1, + ACTIONS(10548), 1, + anon_sym_COMMA, + ACTIONS(10552), 1, anon_sym_RPAREN, - ACTIONS(10152), 1, + STATE(4231), 1, + aux_sym__for_body_repeat1, + [180303] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10302), 1, anon_sym_PIPE, - STATE(3988), 1, + ACTIONS(10554), 1, + anon_sym_RPAREN, + STATE(4191), 1, aux_sym_case_item_repeat1, - [169863] = 4, + [180316] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10045), 1, - anon_sym_SEMI_AMP, - ACTIONS(10047), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(10155), 1, - anon_sym_SEMI_SEMI, - [169876] = 3, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10556), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [180329] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10159), 1, - anon_sym_LBRACK, - ACTIONS(10157), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [169887] = 4, + ACTIONS(10558), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(10560), 1, + anon_sym_COMMA, + STATE(4287), 1, + aux_sym__for_body_repeat1, + [180342] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10146), 1, + ACTIONS(10560), 1, anon_sym_COMMA, - ACTIONS(10161), 1, - anon_sym_RPAREN, - STATE(4063), 1, + ACTIONS(10562), 1, + anon_sym_RPAREN_RPAREN, + STATE(4263), 1, aux_sym__for_body_repeat1, - [169900] = 3, + [180355] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10159), 1, + ACTIONS(10566), 1, anon_sym_LBRACK, - ACTIONS(10163), 2, + ACTIONS(10564), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [169911] = 4, + [180366] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10146), 1, - anon_sym_COMMA, - ACTIONS(10165), 1, - anon_sym_RPAREN, - STATE(4063), 1, - aux_sym__for_body_repeat1, - [169924] = 4, + ACTIONS(10568), 1, + sym__concat, + ACTIONS(4864), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [180377] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10071), 1, - anon_sym_SEMI_AMP, - ACTIONS(10073), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(10167), 1, - anon_sym_SEMI_SEMI, - [169937] = 2, + ACTIONS(10566), 1, + anon_sym_LBRACK, + ACTIONS(10570), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [180388] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1286), 3, - sym__concat, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [169946] = 2, + ACTIONS(10566), 1, + anon_sym_LBRACK, + ACTIONS(10572), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [180399] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1300), 3, - sym__concat, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [169955] = 4, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10574), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [180412] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10169), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10576), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(10171), 1, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [180425] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10548), 1, anon_sym_COMMA, - STATE(4003), 1, + ACTIONS(10578), 1, + anon_sym_RPAREN, + STATE(4231), 1, aux_sym__for_body_repeat1, - [169968] = 2, + [180438] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1330), 3, - sym__concat, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [169977] = 2, + ACTIONS(10566), 1, + anon_sym_LBRACK, + ACTIONS(10580), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [180449] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1322), 3, - sym__concat, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [169986] = 4, + ACTIONS(10302), 1, + anon_sym_PIPE, + ACTIONS(10582), 1, + anon_sym_RPAREN, + STATE(4191), 1, + aux_sym_case_item_repeat1, + [180462] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10146), 1, + ACTIONS(4999), 1, anon_sym_COMMA, - ACTIONS(10173), 1, + ACTIONS(10584), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [180475] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10566), 1, + anon_sym_LBRACK, + ACTIONS(10586), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [180486] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10302), 1, + anon_sym_PIPE, + ACTIONS(10588), 1, anon_sym_RPAREN, - STATE(4072), 1, - aux_sym__for_body_repeat1, - [169999] = 2, + STATE(4191), 1, + aux_sym_case_item_repeat1, + [180499] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1318), 3, - sym__concat, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [170008] = 3, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10590), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [180512] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10159), 1, + ACTIONS(10548), 1, + anon_sym_COMMA, + ACTIONS(10592), 1, + anon_sym_RPAREN, + STATE(4167), 1, + aux_sym__for_body_repeat1, + [180525] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10566), 1, anon_sym_LBRACK, - ACTIONS(10175), 2, + ACTIONS(10594), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [170019] = 4, + [180536] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10171), 1, + ACTIONS(4999), 1, anon_sym_COMMA, - ACTIONS(10177), 1, + ACTIONS(10596), 1, anon_sym_RPAREN_RPAREN, - STATE(4013), 1, - aux_sym__for_body_repeat1, - [170032] = 2, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [180549] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1286), 3, - sym__concat, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [170041] = 4, + ACTIONS(10598), 1, + anon_sym_SEMI_SEMI, + ACTIONS(10531), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [180560] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10089), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10600), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [180573] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10602), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [180586] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10566), 1, + anon_sym_LBRACK, + ACTIONS(10604), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [180597] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10476), 1, anon_sym_SEMI_AMP, - ACTIONS(10091), 1, + ACTIONS(10478), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(10179), 1, + ACTIONS(10606), 1, anon_sym_SEMI_SEMI, - [170054] = 4, + [180610] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, + ACTIONS(10566), 1, + anon_sym_LBRACK, + ACTIONS(10608), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [180621] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10302), 1, anon_sym_PIPE, - ACTIONS(9939), 1, + ACTIONS(10308), 1, anon_sym_RPAREN, - STATE(4081), 1, + STATE(4280), 1, aux_sym_case_item_repeat1, - [170067] = 3, + [180634] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10159), 1, + ACTIONS(10566), 1, anon_sym_LBRACK, - ACTIONS(10181), 2, + ACTIONS(10610), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [170078] = 4, + [180645] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10171), 1, + ACTIONS(4999), 1, anon_sym_COMMA, - ACTIONS(10183), 1, + ACTIONS(10612), 1, anon_sym_RPAREN_RPAREN, - STATE(4013), 1, - aux_sym__for_body_repeat1, - [170091] = 4, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [180658] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10171), 1, + ACTIONS(10566), 1, + anon_sym_LBRACK, + ACTIONS(10614), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [180669] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10302), 1, + anon_sym_PIPE, + ACTIONS(10616), 1, + anon_sym_RPAREN, + STATE(4191), 1, + aux_sym_case_item_repeat1, + [180682] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10618), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [180695] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4999), 1, anon_sym_COMMA, - ACTIONS(10185), 1, + ACTIONS(10620), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [180708] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5236), 1, anon_sym_RPAREN_RPAREN, - STATE(4046), 1, + ACTIONS(10622), 1, + anon_sym_COMMA, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [180721] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10625), 1, + anon_sym_RPAREN, + ACTIONS(10627), 1, + anon_sym_PIPE, + STATE(4191), 1, + aux_sym_case_item_repeat1, + [180734] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10548), 1, + anon_sym_COMMA, + ACTIONS(10630), 1, + anon_sym_RPAREN, + STATE(4231), 1, aux_sym__for_body_repeat1, - [170104] = 3, + [180747] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10159), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10632), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [180760] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10566), 1, anon_sym_LBRACK, - ACTIONS(10187), 2, + ACTIONS(10634), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [170115] = 3, + [180771] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10159), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10636), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [180784] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10566), 1, anon_sym_LBRACK, - ACTIONS(10189), 2, + ACTIONS(10638), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [170126] = 4, + [180795] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10142), 1, - anon_sym_SEMI_AMP, - ACTIONS(10144), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(10191), 1, - anon_sym_SEMI_SEMI, - [170139] = 4, + ACTIONS(10566), 1, + anon_sym_LBRACK, + ACTIONS(10640), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [180806] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(9981), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(10193), 1, + ACTIONS(4999), 1, anon_sym_COMMA, - STATE(4013), 1, - aux_sym__for_body_repeat1, - [170152] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1304), 3, - sym__concat, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [170161] = 2, + ACTIONS(10642), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [180819] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1272), 3, + ACTIONS(1244), 3, anon_sym_RPAREN, anon_sym_PIPE, sym__special_character, - [170170] = 3, + [180828] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10159), 1, + ACTIONS(10566), 1, anon_sym_LBRACK, - ACTIONS(10196), 2, + ACTIONS(10644), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [170181] = 4, + [180839] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10171), 1, + ACTIONS(10566), 1, + anon_sym_LBRACK, + ACTIONS(10646), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [180850] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10560), 1, anon_sym_COMMA, - ACTIONS(10198), 1, + ACTIONS(10648), 1, anon_sym_RPAREN_RPAREN, - STATE(4088), 1, + STATE(4273), 1, aux_sym__for_body_repeat1, - [170194] = 4, + [180863] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10171), 1, + ACTIONS(10566), 1, + anon_sym_LBRACK, + ACTIONS(10650), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [180874] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4999), 1, anon_sym_COMMA, - ACTIONS(10200), 1, + ACTIONS(10652), 1, anon_sym_RPAREN_RPAREN, - STATE(4013), 1, - aux_sym__for_body_repeat1, - [170207] = 3, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [180887] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10202), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10053), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [170218] = 4, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10654), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [180900] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10171), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10656), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [180913] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10560), 1, anon_sym_COMMA, - ACTIONS(10204), 1, + ACTIONS(10658), 1, anon_sym_RPAREN_RPAREN, - STATE(4013), 1, + STATE(4233), 1, aux_sym__for_body_repeat1, - [170231] = 4, + [180926] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10660), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [180939] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10662), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [180952] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10302), 1, + anon_sym_PIPE, + ACTIONS(10664), 1, + anon_sym_RPAREN, + STATE(4191), 1, + aux_sym_case_item_repeat1, + [180965] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10120), 1, + ACTIONS(10460), 1, anon_sym_SEMI_AMP, - ACTIONS(10122), 1, + ACTIONS(10462), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(10206), 1, + ACTIONS(10666), 1, anon_sym_SEMI_SEMI, - [170244] = 4, + [180978] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10111), 1, - anon_sym_RBRACE3, - ACTIONS(10208), 1, - sym__special_character, - STATE(4071), 1, - aux_sym__literal_repeat1, - [170257] = 3, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10668), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [180991] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10159), 1, + ACTIONS(10566), 1, anon_sym_LBRACK, - ACTIONS(10210), 2, + ACTIONS(10670), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [170268] = 2, + [181002] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1356), 3, - sym__concat, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [170277] = 4, + ACTIONS(10560), 1, + anon_sym_COMMA, + ACTIONS(10672), 1, + anon_sym_RPAREN_RPAREN, + STATE(4217), 1, + aux_sym__for_body_repeat1, + [181015] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10146), 1, - anon_sym_COMMA, - ACTIONS(10212), 1, + ACTIONS(10302), 1, + anon_sym_PIPE, + ACTIONS(10352), 1, anon_sym_RPAREN, - STATE(3993), 1, - aux_sym__for_body_repeat1, - [170290] = 3, + STATE(4257), 1, + aux_sym_case_item_repeat1, + [181028] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10159), 1, + ACTIONS(10566), 1, anon_sym_LBRACK, - ACTIONS(10214), 2, + ACTIONS(10674), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [170301] = 4, + [181039] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10171), 1, + ACTIONS(10560), 1, anon_sym_COMMA, - ACTIONS(10216), 1, + ACTIONS(10676), 1, anon_sym_RPAREN_RPAREN, - STATE(4044), 1, + STATE(4287), 1, aux_sym__for_body_repeat1, - [170314] = 2, + [181052] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1310), 3, - sym__concat, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [170323] = 2, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10678), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181065] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1314), 3, - sym__concat, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [170332] = 3, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10680), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181078] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10159), 1, - anon_sym_LBRACK, - ACTIONS(10218), 2, + ACTIONS(10535), 1, + anon_sym_SEMI_AMP, + ACTIONS(10537), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(10682), 1, + anon_sym_SEMI_SEMI, + [181091] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10484), 1, + anon_sym_SEMI_AMP, + ACTIONS(10486), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(10684), 1, + anon_sym_SEMI_SEMI, + [181104] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10686), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181117] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10688), 1, + sym__concat, + ACTIONS(4797), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [170343] = 4, + [181128] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, - anon_sym_PIPE, - ACTIONS(10220), 1, - anon_sym_RPAREN, - STATE(3988), 1, - aux_sym_case_item_repeat1, - [170356] = 4, + ACTIONS(10560), 1, + anon_sym_COMMA, + ACTIONS(10690), 1, + anon_sym_RPAREN_RPAREN, + STATE(4287), 1, + aux_sym__for_body_repeat1, + [181141] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, + ACTIONS(10560), 1, + anon_sym_COMMA, + ACTIONS(10692), 1, + anon_sym_RPAREN_RPAREN, + STATE(4224), 1, + aux_sym__for_body_repeat1, + [181154] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10302), 1, anon_sym_PIPE, - ACTIONS(10222), 1, + ACTIONS(10694), 1, anon_sym_RPAREN, - STATE(3988), 1, + STATE(4191), 1, aux_sym_case_item_repeat1, - [170369] = 3, + [181167] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10159), 1, + ACTIONS(10566), 1, anon_sym_LBRACK, - ACTIONS(10224), 2, + ACTIONS(10696), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [170380] = 3, + [181178] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10159), 1, - anon_sym_LBRACK, - ACTIONS(10226), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [170391] = 2, + ACTIONS(10560), 1, + anon_sym_COMMA, + ACTIONS(10698), 1, + anon_sym_RPAREN_RPAREN, + STATE(4287), 1, + aux_sym__for_body_repeat1, + [181191] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1344), 3, - sym__concat, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [170400] = 2, + ACTIONS(10490), 1, + anon_sym_SEMI_AMP, + ACTIONS(10492), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(10700), 1, + anon_sym_SEMI_SEMI, + [181204] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1352), 3, - sym__concat, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [170409] = 4, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10702), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181217] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10171), 1, + ACTIONS(10422), 1, + anon_sym_RPAREN, + ACTIONS(10704), 1, anon_sym_COMMA, - ACTIONS(10228), 1, - anon_sym_RPAREN_RPAREN, - STATE(4073), 1, + STATE(4231), 1, aux_sym__for_body_repeat1, - [170422] = 4, + [181230] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10171), 1, + ACTIONS(4999), 1, anon_sym_COMMA, - ACTIONS(10230), 1, + ACTIONS(10707), 1, anon_sym_RPAREN_RPAREN, - STATE(4052), 1, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181243] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10560), 1, + anon_sym_COMMA, + ACTIONS(10709), 1, + anon_sym_RPAREN_RPAREN, + STATE(4287), 1, aux_sym__for_body_repeat1, - [170435] = 2, + [181256] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1348), 3, - sym__concat, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [170444] = 3, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10711), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181269] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10232), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10097), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [170455] = 3, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10713), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181282] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10715), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181295] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10566), 1, + anon_sym_LBRACK, + ACTIONS(10717), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [181306] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10719), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181319] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10560), 1, + anon_sym_COMMA, + ACTIONS(10721), 1, + anon_sym_RPAREN_RPAREN, + STATE(4287), 1, + aux_sym__for_body_repeat1, + [181332] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10234), 1, + ACTIONS(10723), 1, anon_sym_SEMI_SEMI, - ACTIONS(10063), 2, + ACTIONS(10525), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [170466] = 4, + [181343] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, + ACTIONS(10560), 1, + anon_sym_COMMA, + ACTIONS(10725), 1, + anon_sym_RPAREN_RPAREN, + STATE(4287), 1, + aux_sym__for_body_repeat1, + [181356] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10302), 1, anon_sym_PIPE, - ACTIONS(9905), 1, + ACTIONS(10727), 1, anon_sym_RPAREN, - STATE(4077), 1, + STATE(4191), 1, aux_sym_case_item_repeat1, - [170479] = 3, + [181369] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10159), 1, - anon_sym_LBRACK, - ACTIONS(10236), 2, + ACTIONS(10302), 1, + anon_sym_PIPE, + ACTIONS(10729), 1, + anon_sym_RPAREN, + STATE(4191), 1, + aux_sym_case_item_repeat1, + [181382] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10302), 1, + anon_sym_PIPE, + ACTIONS(10731), 1, + anon_sym_RPAREN, + STATE(4191), 1, + aux_sym_case_item_repeat1, + [181395] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10733), 1, + sym__concat, + ACTIONS(4924), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [170490] = 4, + [181406] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10171), 1, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10735), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181419] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10560), 1, anon_sym_COMMA, - ACTIONS(10238), 1, + ACTIONS(10737), 1, anon_sym_RPAREN_RPAREN, - STATE(4013), 1, + STATE(4159), 1, aux_sym__for_body_repeat1, - [170503] = 3, + [181432] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10159), 1, - anon_sym_LBRACK, - ACTIONS(10240), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [170514] = 4, + ACTIONS(1242), 1, + sym__special_character, + ACTIONS(1244), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [181443] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10171), 1, + ACTIONS(4999), 1, anon_sym_COMMA, - ACTIONS(10242), 1, + ACTIONS(10739), 1, anon_sym_RPAREN_RPAREN, - STATE(4013), 1, - aux_sym__for_body_repeat1, - [170527] = 3, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181456] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10159), 1, - anon_sym_LBRACK, - ACTIONS(10244), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [170538] = 2, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10741), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181469] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1336), 3, - sym__concat, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [170547] = 3, + ACTIONS(10560), 1, + anon_sym_COMMA, + ACTIONS(10743), 1, + anon_sym_RPAREN_RPAREN, + STATE(4228), 1, + aux_sym__for_body_repeat1, + [181482] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10246), 1, - sym__concat, - ACTIONS(4842), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [170558] = 3, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10745), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181495] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10248), 1, - sym__concat, - ACTIONS(4895), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [170569] = 4, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10747), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181508] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, + ACTIONS(10302), 1, anon_sym_PIPE, - ACTIONS(10250), 1, + ACTIONS(10749), 1, anon_sym_RPAREN, - STATE(3988), 1, + STATE(4191), 1, aux_sym_case_item_repeat1, - [170582] = 4, + [181521] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10171), 1, + ACTIONS(4999), 1, anon_sym_COMMA, - ACTIONS(10252), 1, + ACTIONS(10751), 1, anon_sym_RPAREN_RPAREN, - STATE(4013), 1, - aux_sym__for_body_repeat1, - [170595] = 4, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181534] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, - anon_sym_PIPE, - ACTIONS(10254), 1, - anon_sym_RPAREN, - STATE(3988), 1, - aux_sym_case_item_repeat1, - [170608] = 4, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10753), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181547] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, + ACTIONS(10302), 1, anon_sym_PIPE, - ACTIONS(9907), 1, + ACTIONS(10755), 1, anon_sym_RPAREN, - STATE(4031), 1, + STATE(4191), 1, aux_sym_case_item_repeat1, - [170621] = 3, + [181560] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10159), 1, + ACTIONS(10566), 1, anon_sym_LBRACK, - ACTIONS(10256), 2, + ACTIONS(10757), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [170632] = 4, + [181571] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, - anon_sym_PIPE, - ACTIONS(10258), 1, + ACTIONS(10300), 1, anon_sym_RPAREN, - STATE(3988), 1, + ACTIONS(10302), 1, + anon_sym_PIPE, + STATE(4262), 1, aux_sym_case_item_repeat1, - [170645] = 4, + [181584] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, - anon_sym_PIPE, - ACTIONS(10260), 1, - anon_sym_RPAREN, - STATE(3988), 1, - aux_sym_case_item_repeat1, - [170658] = 4, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10759), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181597] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10136), 1, + ACTIONS(10761), 1, + anon_sym_SEMI_SEMI, + ACTIONS(10512), 2, anon_sym_SEMI_AMP, - ACTIONS(10138), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(10262), 1, - anon_sym_SEMI_SEMI, - [170671] = 3, + [181608] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10264), 1, - sym__concat, - ACTIONS(4877), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [170682] = 3, + ACTIONS(10302), 1, + anon_sym_PIPE, + ACTIONS(10763), 1, + anon_sym_RPAREN, + STATE(4191), 1, + aux_sym_case_item_repeat1, + [181621] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10159), 1, - anon_sym_LBRACK, - ACTIONS(10266), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [170693] = 4, + ACTIONS(10560), 1, + anon_sym_COMMA, + ACTIONS(10765), 1, + anon_sym_RPAREN_RPAREN, + STATE(4287), 1, + aux_sym__for_body_repeat1, + [181634] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, + ACTIONS(10302), 1, anon_sym_PIPE, - ACTIONS(10268), 1, + ACTIONS(10767), 1, anon_sym_RPAREN, - STATE(3988), 1, + STATE(4191), 1, aux_sym_case_item_repeat1, - [170706] = 4, + [181647] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10171), 1, + ACTIONS(10504), 1, + anon_sym_SEMI_AMP, + ACTIONS(10506), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(10769), 1, + anon_sym_SEMI_SEMI, + [181660] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4999), 1, anon_sym_COMMA, - ACTIONS(10270), 1, + ACTIONS(10771), 1, anon_sym_RPAREN_RPAREN, - STATE(4018), 1, - aux_sym__for_body_repeat1, - [170719] = 4, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181673] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(9981), 1, - anon_sym_RPAREN, - ACTIONS(10272), 1, + ACTIONS(10560), 1, anon_sym_COMMA, - STATE(4063), 1, + ACTIONS(10773), 1, + anon_sym_RPAREN_RPAREN, + STATE(4239), 1, aux_sym__for_body_repeat1, - [170732] = 4, + [181686] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10171), 1, + ACTIONS(4999), 1, anon_sym_COMMA, - ACTIONS(10275), 1, + ACTIONS(10775), 1, anon_sym_RPAREN_RPAREN, - STATE(4008), 1, - aux_sym__for_body_repeat1, - [170745] = 4, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181699] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, - anon_sym_PIPE, - ACTIONS(10277), 1, - anon_sym_RPAREN, - STATE(3988), 1, - aux_sym_case_item_repeat1, - [170758] = 4, + ACTIONS(10496), 1, + anon_sym_SEMI_AMP, + ACTIONS(10498), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(10777), 1, + anon_sym_SEMI_SEMI, + [181712] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, - anon_sym_PIPE, - ACTIONS(10279), 1, - anon_sym_RPAREN, - STATE(3988), 1, - aux_sym_case_item_repeat1, - [170771] = 4, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10779), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181725] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10171), 1, + ACTIONS(10781), 1, + sym__concat, + ACTIONS(4932), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [181736] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4999), 1, anon_sym_COMMA, - ACTIONS(10281), 1, + ACTIONS(10783), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181749] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10560), 1, + anon_sym_COMMA, + ACTIONS(10785), 1, anon_sym_RPAREN_RPAREN, - STATE(4020), 1, + STATE(4287), 1, aux_sym__for_body_repeat1, - [170784] = 3, + [181762] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10159), 1, - anon_sym_LBRACK, - ACTIONS(10283), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [170795] = 3, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10787), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181775] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10285), 1, - sym__concat, - ACTIONS(4836), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [170806] = 3, + ACTIONS(10789), 1, + anon_sym_SEMI_SEMI, + ACTIONS(10543), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [181786] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10159), 1, - anon_sym_LBRACK, - ACTIONS(10287), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [170817] = 4, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10791), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181799] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1363), 1, - anon_sym_RBRACE3, - ACTIONS(10289), 1, - sym__special_character, - STATE(4071), 1, - aux_sym__literal_repeat1, - [170830] = 4, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10793), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181812] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10146), 1, + ACTIONS(10548), 1, anon_sym_COMMA, - ACTIONS(10292), 1, + ACTIONS(10795), 1, anon_sym_RPAREN, - STATE(4063), 1, + STATE(4156), 1, aux_sym__for_body_repeat1, - [170843] = 4, + [181825] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10171), 1, + ACTIONS(10560), 1, anon_sym_COMMA, - ACTIONS(10294), 1, + ACTIONS(10797), 1, anon_sym_RPAREN_RPAREN, - STATE(4013), 1, + STATE(4241), 1, aux_sym__for_body_repeat1, - [170856] = 4, + [181838] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, + ACTIONS(10302), 1, anon_sym_PIPE, - ACTIONS(10296), 1, + ACTIONS(10799), 1, anon_sym_RPAREN, - STATE(3988), 1, + STATE(4191), 1, aux_sym_case_item_repeat1, - [170869] = 4, + [181851] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, + ACTIONS(10302), 1, anon_sym_PIPE, - ACTIONS(10298), 1, + ACTIONS(10801), 1, anon_sym_RPAREN, - STATE(3988), 1, + STATE(4191), 1, aux_sym_case_item_repeat1, - [170882] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10103), 1, - anon_sym_SEMI_AMP, - ACTIONS(10105), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(10300), 1, - anon_sym_SEMI_SEMI, - [170895] = 4, + [181864] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, - anon_sym_PIPE, - ACTIONS(10302), 1, - anon_sym_RPAREN, - STATE(3988), 1, - aux_sym_case_item_repeat1, - [170908] = 4, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10803), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181877] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, - anon_sym_PIPE, - ACTIONS(10304), 1, - anon_sym_RPAREN, - STATE(3988), 1, - aux_sym_case_item_repeat1, - [170921] = 2, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10805), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181890] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1326), 3, - sym__concat, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [170930] = 4, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10807), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181903] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, + ACTIONS(10302), 1, anon_sym_PIPE, - ACTIONS(9923), 1, + ACTIONS(10348), 1, anon_sym_RPAREN, - STATE(4074), 1, + STATE(4172), 1, aux_sym_case_item_repeat1, - [170943] = 4, + [181916] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, + ACTIONS(10302), 1, anon_sym_PIPE, - ACTIONS(10306), 1, + ACTIONS(10809), 1, anon_sym_RPAREN, - STATE(3988), 1, + STATE(4191), 1, aux_sym_case_item_repeat1, - [170956] = 4, + [181929] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, - anon_sym_PIPE, - ACTIONS(10308), 1, - anon_sym_RPAREN, - STATE(3988), 1, - aux_sym_case_item_repeat1, - [170969] = 4, + ACTIONS(10422), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(10811), 1, + anon_sym_COMMA, + STATE(4287), 1, + aux_sym__for_body_repeat1, + [181942] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9881), 1, - anon_sym_PIPE, - ACTIONS(10310), 1, - anon_sym_RPAREN, - STATE(3988), 1, - aux_sym_case_item_repeat1, - [170982] = 2, + ACTIONS(10566), 1, + anon_sym_LBRACK, + ACTIONS(10814), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [181953] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1340), 3, - sym__concat, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [170991] = 4, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10816), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181966] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10130), 1, + ACTIONS(10468), 1, anon_sym_SEMI_AMP, - ACTIONS(10132), 1, + ACTIONS(10470), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(10312), 1, + ACTIONS(10818), 1, anon_sym_SEMI_SEMI, - [171004] = 3, + [181979] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10314), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10081), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [171015] = 3, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(10820), 1, + anon_sym_RPAREN_RPAREN, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [181992] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10159), 1, + ACTIONS(10566), 1, anon_sym_LBRACK, - ACTIONS(10316), 2, + ACTIONS(10822), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [171026] = 4, + [182003] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10171), 1, + ACTIONS(4999), 1, anon_sym_COMMA, - ACTIONS(10318), 1, + ACTIONS(10824), 1, anon_sym_RPAREN_RPAREN, - STATE(4013), 1, - aux_sym__for_body_repeat1, - [171039] = 2, + STATE(4190), 1, + aux_sym_arithmetic_expansion_repeat1, + [182016] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1290), 3, - sym__concat, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [171048] = 2, + ACTIONS(8446), 1, + anon_sym_DOLLAR_LBRACE, + STATE(1734), 1, + sym_expansion, + [182026] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10316), 2, + ACTIONS(10564), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [171056] = 2, + [182034] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10163), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [171064] = 2, + ACTIONS(1055), 1, + anon_sym_DOLLAR_LBRACE, + STATE(1654), 1, + sym_expansion, + [182044] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10240), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [171072] = 3, + ACTIONS(10826), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(10828), 1, + aux_sym__simple_variable_name_token1, + [182054] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(6504), 1, + ACTIONS(1320), 2, + anon_sym_COLON, + anon_sym_RBRACE3, + [182062] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1328), 2, + anon_sym_COLON, + anon_sym_RBRACE3, + [182070] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1312), 2, + anon_sym_COLON, + anon_sym_RBRACE3, + [182078] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1412), 1, anon_sym_DOLLAR_LBRACE, - STATE(1295), 1, + STATE(2225), 1, sym_expansion, - [171082] = 3, + [182088] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(5707), 1, + ACTIONS(1274), 2, + anon_sym_COLON, + anon_sym_RBRACE3, + [182096] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1163), 1, anon_sym_DOLLAR_LBRACE, - STATE(997), 1, + STATE(1561), 1, sym_expansion, - [171092] = 2, + [182106] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1336), 2, + anon_sym_COLON, + anon_sym_RBRACE3, + [182114] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1332), 2, + anon_sym_COLON, + anon_sym_RBRACE3, + [182122] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1324), 2, + anon_sym_COLON, + anon_sym_RBRACE3, + [182130] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(4877), 2, + ACTIONS(10814), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [171100] = 3, + [182138] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1300), 2, + anon_sym_COLON, + anon_sym_RBRACE3, + [182146] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(6614), 1, + anon_sym_DOLLAR_LBRACE, + STATE(1422), 1, + sym_expansion, + [182156] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5851), 1, + ACTIONS(3455), 1, anon_sym_DOLLAR_LBRACE, - STATE(1068), 1, + STATE(2007), 1, sym_expansion, - [171110] = 2, + [182166] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(5072), 2, + ACTIONS(10634), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [171118] = 3, + [182174] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9979), 1, - anon_sym_do, - STATE(2909), 1, - sym_do_group, - [171128] = 2, + ACTIONS(6738), 1, + anon_sym_DOLLAR_LBRACE, + STATE(2810), 1, + sym_expansion, + [182184] = 3, + ACTIONS(53), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(63), 1, sym_comment, - ACTIONS(4966), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [171136] = 3, + STATE(1010), 1, + sym_expansion, + [182194] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10320), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(10322), 1, - aux_sym__simple_variable_name_token1, - [171146] = 3, + ACTIONS(5769), 1, + anon_sym_DOLLAR_LBRACE, + STATE(1106), 1, + sym_expansion, + [182204] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10324), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(10326), 1, - aux_sym__simple_variable_name_token1, - [171156] = 3, + ACTIONS(4252), 1, + anon_sym_DOLLAR_LBRACE, + STATE(3209), 1, + sym_expansion, + [182214] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6568), 1, + ACTIONS(3104), 1, anon_sym_DOLLAR_LBRACE, - STATE(3828), 1, + STATE(1851), 1, sym_expansion, - [171166] = 2, + [182224] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9981), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [171174] = 3, + ACTIONS(10580), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [182232] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9979), 1, - anon_sym_do, - STATE(2932), 1, - sym_do_group, - [171184] = 3, + ACTIONS(8116), 1, + anon_sym_DOLLAR_LBRACE, + STATE(2333), 1, + sym_expansion, + [182242] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10328), 1, + ACTIONS(6550), 1, + anon_sym_DOLLAR_LBRACE, + STATE(2911), 1, + sym_expansion, + [182252] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10830), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(10330), 1, + ACTIONS(10832), 1, aux_sym__simple_variable_name_token1, - [171194] = 2, + [182262] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10224), 2, + ACTIONS(10696), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [171202] = 2, + [182270] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10065), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [171210] = 3, + ACTIONS(10390), 1, + anon_sym_SLASH, + ACTIONS(10392), 1, + anon_sym_RBRACE3, + [182280] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(298), 1, + ACTIONS(1105), 1, anon_sym_DOLLAR_LBRACE, - STATE(429), 1, + STATE(1675), 1, sym_expansion, - [171220] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10032), 1, - anon_sym_do, - STATE(3478), 1, - sym_do_group, - [171230] = 3, + [182290] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(316), 1, anon_sym_DOLLAR_LBRACE, - STATE(1423), 1, + STATE(427), 1, sym_expansion, - [171240] = 3, - ACTIONS(53), 1, - anon_sym_DOLLAR_LBRACE, + [182300] = 3, ACTIONS(63), 1, sym_comment, - STATE(943), 1, + ACTIONS(206), 1, + anon_sym_DOLLAR_LBRACE, + STATE(396), 1, sym_expansion, - [171250] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10214), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [171258] = 3, + [182310] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5605), 1, + ACTIONS(6568), 1, anon_sym_DOLLAR_LBRACE, - STATE(1047), 1, + STATE(1425), 1, sym_expansion, - [171268] = 3, + [182320] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10032), 1, - anon_sym_do, - STATE(3488), 1, - sym_do_group, - [171278] = 3, + ACTIONS(10376), 1, + anon_sym_SLASH, + ACTIONS(10378), 1, + anon_sym_RBRACE3, + [182330] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7191), 1, + ACTIONS(5425), 1, anon_sym_DOLLAR_LBRACE, - STATE(1321), 1, + STATE(4133), 1, sym_expansion, - [171288] = 3, + [182340] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10332), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(10334), 1, - aux_sym__simple_variable_name_token1, - [171298] = 3, + ACTIONS(5643), 1, + anon_sym_DOLLAR_LBRACE, + STATE(1966), 1, + sym_expansion, + [182350] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8203), 1, + ACTIONS(7061), 1, anon_sym_DOLLAR_LBRACE, - STATE(1777), 1, + STATE(1308), 1, sym_expansion, - [171308] = 3, + [182360] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(394), 1, + ACTIONS(6494), 1, anon_sym_DOLLAR_LBRACE, - STATE(884), 1, + STATE(1791), 1, sym_expansion, - [171318] = 3, + [182370] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(649), 1, + ACTIONS(3703), 1, anon_sym_DOLLAR_LBRACE, - STATE(1615), 1, + STATE(1953), 1, sym_expansion, - [171328] = 2, + [182380] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10018), 2, + ACTIONS(10422), 2, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE, - [171336] = 3, + [182388] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7926), 1, + ACTIONS(6906), 1, anon_sym_DOLLAR_LBRACE, - STATE(2167), 1, + STATE(3489), 1, sym_expansion, - [171346] = 3, + [182398] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10336), 1, - anon_sym_EQ, - ACTIONS(10338), 1, - anon_sym_LBRACK, - [171356] = 3, + ACTIONS(10834), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(10836), 1, + aux_sym__simple_variable_name_token1, + [182408] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10028), 1, - anon_sym_do, - STATE(2959), 1, - sym_do_group, - [171366] = 3, + ACTIONS(3964), 1, + anon_sym_DOLLAR_LBRACE, + STATE(3104), 1, + sym_expansion, + [182418] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(123), 1, + ACTIONS(6052), 1, anon_sym_DOLLAR_LBRACE, - STATE(382), 1, + STATE(2428), 1, sym_expansion, - [171376] = 3, + [182428] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 1, - sym__special_character, - ACTIONS(1272), 1, - anon_sym_RBRACE3, - [171386] = 3, + ACTIONS(10394), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [182436] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5819), 1, + ACTIONS(10838), 1, anon_sym_DOLLAR_LBRACE, - STATE(1168), 1, + STATE(4299), 1, sym_expansion, - [171396] = 3, + [182446] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10010), 1, - anon_sym_do, - STATE(3053), 1, - sym_do_group, - [171406] = 3, + ACTIONS(10519), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [182454] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6971), 1, + ACTIONS(5687), 1, anon_sym_DOLLAR_LBRACE, - STATE(1212), 1, + STATE(2767), 1, sym_expansion, - [171416] = 3, + [182464] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(5675), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1264), 1, - sym_expansion, - [171426] = 3, + ACTIONS(5041), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [182472] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10028), 1, - anon_sym_do, - STATE(2954), 1, - sym_do_group, - [171436] = 3, + ACTIONS(5047), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [182480] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5524), 1, + ACTIONS(7954), 1, anon_sym_DOLLAR_LBRACE, - STATE(2302), 1, + STATE(2359), 1, sym_expansion, - [171446] = 3, + [182490] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6396), 1, + ACTIONS(7255), 1, anon_sym_DOLLAR_LBRACE, - STATE(1756), 1, + STATE(1250), 1, sym_expansion, - [171456] = 3, + [182500] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(179), 1, + ACTIONS(6175), 1, anon_sym_DOLLAR_LBRACE, - STATE(384), 1, + STATE(3509), 1, sym_expansion, - [171466] = 3, + [182510] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3059), 1, + ACTIONS(6804), 1, anon_sym_DOLLAR_LBRACE, - STATE(1812), 1, + STATE(3979), 1, sym_expansion, - [171476] = 3, + [182520] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(7259), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1084), 1, - sym_expansion, - [171486] = 3, + ACTIONS(10519), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + [182528] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10422), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + [182536] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3478), 1, + ACTIONS(454), 1, anon_sym_DOLLAR_LBRACE, - STATE(1840), 1, + STATE(717), 1, sym_expansion, - [171496] = 3, + [182546] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5739), 1, + ACTIONS(10429), 1, + anon_sym_do, + STATE(3021), 1, + sym_do_group, + [182556] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10452), 1, + anon_sym_do, + STATE(3630), 1, + sym_do_group, + [182566] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3815), 1, anon_sym_DOLLAR_LBRACE, - STATE(1258), 1, + STATE(2103), 1, sym_expansion, - [171506] = 3, + [182576] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1091), 1, + ACTIONS(5861), 1, anon_sym_DOLLAR_LBRACE, - STATE(1661), 1, + STATE(1173), 1, sym_expansion, - [171516] = 3, + [182586] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8237), 1, + ACTIONS(7019), 1, anon_sym_DOLLAR_LBRACE, - STATE(1896), 1, + STATE(3541), 1, sym_expansion, - [171526] = 3, + [182596] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10010), 1, + ACTIONS(10429), 1, anon_sym_do, - STATE(3123), 1, + STATE(3070), 1, sym_do_group, - [171536] = 3, + [182606] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6008), 1, + ACTIONS(6696), 1, anon_sym_DOLLAR_LBRACE, - STATE(2614), 1, + STATE(4149), 1, sym_expansion, - [171546] = 2, + [182616] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10283), 2, + ACTIONS(10674), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [171554] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3114), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2178), 1, - sym_expansion, - [171564] = 2, + [182624] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10226), 2, + ACTIONS(10670), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [171572] = 2, + [182632] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10196), 2, + ACTIONS(10650), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [171580] = 2, + [182640] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10187), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [171588] = 3, + ACTIONS(6211), 1, + anon_sym_DOLLAR_LBRACE, + STATE(918), 1, + sym_expansion, + [182650] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6688), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_LBRACE, - STATE(2893), 1, + STATE(367), 1, sym_expansion, - [171598] = 2, + [182660] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10175), 2, + ACTIONS(10638), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [171606] = 3, + [182668] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(600), 1, - anon_sym_DOLLAR_LBRACE, - STATE(833), 1, - sym_expansion, - [171616] = 3, + ACTIONS(10610), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [182676] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(6090), 1, anon_sym_DOLLAR_LBRACE, - STATE(1396), 1, + STATE(766), 1, sym_expansion, - [171626] = 2, + [182686] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9981), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - [171634] = 2, + ACTIONS(4797), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [182694] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10210), 2, + ACTIONS(10572), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [171642] = 3, + [182702] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4105), 1, + ACTIONS(8173), 1, anon_sym_DOLLAR_LBRACE, - STATE(3239), 1, + STATE(2278), 1, sym_expansion, - [171652] = 2, + [182712] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10287), 2, + ACTIONS(10570), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [171660] = 3, + [182720] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(7887), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2224), 1, - sym_expansion, - [171670] = 3, + ACTIONS(4864), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [182728] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6304), 1, + ACTIONS(7569), 1, anon_sym_DOLLAR_LBRACE, - STATE(2900), 1, + STATE(961), 1, sym_expansion, - [171680] = 3, + [182738] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(6718), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2725), 1, - sym_expansion, - [171690] = 2, + ACTIONS(10594), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [182746] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10157), 2, + ACTIONS(10604), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [171698] = 3, + [182754] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1119), 1, + ACTIONS(10840), 1, + anon_sym_SLASH, + ACTIONS(10842), 1, + anon_sym_RBRACE3, + [182764] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5723), 1, anon_sym_DOLLAR_LBRACE, - STATE(1511), 1, + STATE(1234), 1, sym_expansion, - [171708] = 2, + [182774] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10181), 2, + ACTIONS(10646), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [171716] = 3, + [182782] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6432), 1, + ACTIONS(6532), 1, anon_sym_DOLLAR_LBRACE, - STATE(1334), 1, + STATE(1077), 1, sym_expansion, - [171726] = 2, + [182792] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10189), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [171734] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6618), 1, + ACTIONS(5803), 1, anon_sym_DOLLAR_LBRACE, - STATE(2832), 1, + STATE(1249), 1, sym_expansion, - [171744] = 2, + [182802] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10218), 2, + ACTIONS(10822), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [171752] = 3, + [182810] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6536), 1, + ACTIONS(4068), 1, + anon_sym_RBRACE3, + ACTIONS(10844), 1, + anon_sym_COLON, + [182820] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(6768), 1, anon_sym_DOLLAR_LBRACE, - STATE(1130), 1, + STATE(2808), 1, sym_expansion, - [171762] = 2, + [182830] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10065), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - [171770] = 2, + ACTIONS(10717), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [182838] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10236), 2, + ACTIONS(10640), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [171778] = 3, + [182846] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5340), 1, + ACTIONS(10846), 1, + anon_sym_SLASH, + ACTIONS(10848), 1, + anon_sym_RBRACE3, + [182856] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(574), 1, anon_sym_DOLLAR_LBRACE, - STATE(3969), 1, + STATE(847), 1, sym_expansion, - [171788] = 2, + [182866] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10244), 2, + ACTIONS(10614), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [171796] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6052), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1904), 1, - sym_expansion, - [171806] = 2, + [182874] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10266), 2, + ACTIONS(10757), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [171814] = 3, + [182882] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1980), 1, - sym_expansion, - [171824] = 3, + ACTIONS(10452), 1, + anon_sym_do, + STATE(3609), 1, + sym_do_group, + [182892] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7450), 1, + ACTIONS(623), 1, anon_sym_DOLLAR_LBRACE, - STATE(898), 1, + STATE(1903), 1, sym_expansion, - [171834] = 2, + [182902] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10374), 1, + anon_sym_do, + STATE(3003), 1, + sym_do_group, + [182912] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(4895), 2, + ACTIONS(10586), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [171842] = 3, + [182920] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6648), 1, + ACTIONS(6012), 1, anon_sym_DOLLAR_LBRACE, - STATE(3358), 1, + STATE(2769), 1, sym_expansion, - [171852] = 3, + [182930] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6330), 1, + ACTIONS(372), 1, anon_sym_DOLLAR_LBRACE, - STATE(4036), 1, + STATE(980), 1, sym_expansion, - [171862] = 3, + [182940] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(5639), 1, + ACTIONS(10644), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [182948] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5923), 1, anon_sym_DOLLAR_LBRACE, - STATE(2845), 1, + STATE(1085), 1, sym_expansion, - [171872] = 2, + [182958] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10256), 2, + ACTIONS(10608), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [171880] = 3, + [182966] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7701), 1, + ACTIONS(5833), 1, anon_sym_DOLLAR_LBRACE, - STATE(2221), 1, + STATE(998), 1, sym_expansion, - [171890] = 3, + [182976] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5779), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2733), 1, - sym_expansion, - [171900] = 3, + ACTIONS(4130), 1, + anon_sym_RBRACE3, + ACTIONS(10850), 1, + anon_sym_COLON, + [182986] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5881), 1, + ACTIONS(8516), 1, anon_sym_DOLLAR_LBRACE, - STATE(868), 1, + STATE(2113), 1, sym_expansion, - [171910] = 3, + [182996] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5936), 1, + ACTIONS(7207), 1, anon_sym_DOLLAR_LBRACE, - STATE(3308), 1, + STATE(1112), 1, sym_expansion, - [171920] = 3, + [183006] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(480), 1, - anon_sym_DOLLAR_LBRACE, - STATE(739), 1, - sym_expansion, - [171930] = 3, + ACTIONS(10374), 1, + anon_sym_do, + STATE(3009), 1, + sym_do_group, + [183016] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6828), 1, + ACTIONS(6440), 1, anon_sym_DOLLAR_LBRACE, - STATE(3434), 1, + STATE(1301), 1, sym_expansion, - [171940] = 3, + [183026] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(5972), 1, - anon_sym_DOLLAR_LBRACE, - STATE(982), 1, - sym_expansion, - [171950] = 3, + ACTIONS(10852), 1, + anon_sym_RBRACE2, + [183033] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(3765), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2029), 1, - sym_expansion, - [171960] = 2, + ACTIONS(10854), 1, + aux_sym_brace_expression_token1, + [183040] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10856), 1, + anon_sym_LF, + [183047] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10340), 1, - aux_sym_brace_expression_token1, - [171967] = 2, + ACTIONS(10858), 1, + anon_sym_RBRACE3, + [183054] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10860), 1, + anon_sym_LF, + [183061] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10342), 1, - anon_sym_RPAREN, - [171974] = 2, + ACTIONS(10862), 1, + anon_sym_BQUOTE, + [183068] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10344), 1, - anon_sym_RPAREN, - [171981] = 2, + ACTIONS(10864), 1, + anon_sym_BQUOTE, + [183075] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10346), 1, - sym_word, - [171988] = 2, + ACTIONS(10866), 1, + anon_sym_esac, + [183082] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10348), 1, - anon_sym_BQUOTE, - [171995] = 2, + ACTIONS(10868), 1, + anon_sym_esac, + [183089] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10350), 1, - anon_sym_BQUOTE, - [172002] = 2, + ACTIONS(10870), 1, + anon_sym_fi, + [183096] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10348), 1, + ACTIONS(10872), 1, anon_sym_RPAREN, - [172009] = 2, + [183103] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8440), 1, - anon_sym_RBRACE3, - [172016] = 2, + ACTIONS(10874), 1, + sym_heredoc_end, + [183110] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10352), 1, - anon_sym_RBRACE2, - [172023] = 2, + ACTIONS(10876), 1, + sym_heredoc_end, + [183117] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10354), 1, + ACTIONS(10862), 1, + anon_sym_RPAREN, + [183124] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10878), 1, anon_sym_RBRACE3, - [172030] = 2, + [183131] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10356), 1, - anon_sym_RPAREN, - [172037] = 2, + ACTIONS(10880), 1, + anon_sym_RBRACE3, + [183138] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10358), 1, - anon_sym_then, - [172044] = 2, + ACTIONS(10882), 1, + anon_sym_esac, + [183145] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10360), 1, - anon_sym_BQUOTE, - [172051] = 2, + ACTIONS(10306), 1, + anon_sym_fi, + [183152] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10362), 1, + ACTIONS(10884), 1, anon_sym_BQUOTE, - [172058] = 2, + [183159] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10360), 1, - anon_sym_RPAREN, - [172065] = 2, + ACTIONS(10886), 1, + anon_sym_esac, + [183166] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8454), 1, + ACTIONS(10888), 1, + anon_sym_BQUOTE, + [183173] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10890), 1, anon_sym_RBRACE3, - [172072] = 2, + [183180] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10364), 1, - anon_sym_RBRACE2, - [172079] = 2, + ACTIONS(10342), 1, + anon_sym_fi, + [183187] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10366), 1, + ACTIONS(10892), 1, anon_sym_RBRACE3, - [172086] = 2, + [183194] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10368), 1, - anon_sym_RPAREN, - [172093] = 2, + ACTIONS(10894), 1, + aux_sym_brace_expression_token1, + [183201] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10370), 1, + ACTIONS(10884), 1, anon_sym_RPAREN, - [172100] = 2, + [183208] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10372), 1, - anon_sym_BQUOTE, - [172107] = 2, + ACTIONS(10896), 1, + anon_sym_RBRACE2, + [183215] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10374), 1, - aux_sym_brace_expression_token1, - [172114] = 2, + ACTIONS(10898), 1, + anon_sym_RBRACE3, + [183222] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10376), 1, - anon_sym_BQUOTE, - [172121] = 2, + ACTIONS(10900), 1, + anon_sym_esac, + [183229] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10378), 1, - anon_sym_RPAREN_RPAREN, - [172128] = 2, + ACTIONS(10902), 1, + anon_sym_RBRACE3, + [183236] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10380), 1, - anon_sym_in, - [172135] = 2, + ACTIONS(10904), 1, + anon_sym_BQUOTE, + [183243] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10382), 1, - anon_sym_in, - [172142] = 2, + ACTIONS(10906), 1, + anon_sym_esac, + [183250] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10372), 1, - anon_sym_RPAREN, - [172149] = 2, + ACTIONS(10908), 1, + anon_sym_esac, + [183257] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8478), 1, - anon_sym_RBRACE3, - [172156] = 2, + ACTIONS(10910), 1, + anon_sym_BQUOTE, + [183264] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10384), 1, - anon_sym_RBRACE2, - [172163] = 2, + ACTIONS(10298), 1, + anon_sym_fi, + [183271] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10386), 1, + ACTIONS(10912), 1, anon_sym_RBRACE3, - [172170] = 2, + [183278] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10388), 1, + ACTIONS(10904), 1, anon_sym_RPAREN, - [172177] = 2, + [183285] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10390), 1, - anon_sym_BQUOTE, - [172184] = 2, + ACTIONS(10914), 1, + anon_sym_RBRACE3, + [183292] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10392), 1, - anon_sym_BQUOTE, - [172191] = 2, + ACTIONS(10916), 1, + anon_sym_RBRACE3, + [183299] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10390), 1, - anon_sym_RPAREN, - [172198] = 2, + ACTIONS(10918), 1, + anon_sym_esac, + [183306] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8527), 1, - anon_sym_RBRACE3, - [172205] = 2, + ACTIONS(10920), 1, + anon_sym_RBRACE2, + [183313] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10394), 1, - anon_sym_RBRACE2, - [172212] = 2, + ACTIONS(6994), 1, + anon_sym_RBRACK, + [183320] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10396), 1, + ACTIONS(10922), 1, anon_sym_RBRACE3, - [172219] = 2, + [183327] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10398), 1, - anon_sym_RPAREN, - [172226] = 2, + ACTIONS(10924), 1, + anon_sym_BQUOTE, + [183334] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10400), 1, + ACTIONS(10926), 1, anon_sym_BQUOTE, - [172233] = 2, + [183341] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10402), 1, + ACTIONS(10928), 1, anon_sym_BQUOTE, - [172240] = 2, + [183348] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10400), 1, + ACTIONS(10924), 1, anon_sym_RPAREN, - [172247] = 2, + [183355] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10930), 1, + aux_sym_brace_expression_token1, + [183362] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8547), 1, + ACTIONS(10932), 1, anon_sym_RBRACE3, - [172254] = 2, + [183369] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10404), 1, - anon_sym_RPAREN, - [172261] = 2, + ACTIONS(10934), 1, + anon_sym_RBRACE3, + [183376] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10406), 1, - anon_sym_RBRACE2, - [172268] = 2, + ACTIONS(6986), 1, + anon_sym_RBRACK, + [183383] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10408), 1, + ACTIONS(10936), 1, anon_sym_RBRACE3, - [172275] = 2, + [183390] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10410), 1, - anon_sym_RPAREN, - [172282] = 2, + ACTIONS(10938), 1, + anon_sym_RBRACE3, + [183397] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10412), 1, + ACTIONS(10940), 1, anon_sym_BQUOTE, - [172289] = 2, + [183404] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10414), 1, + ACTIONS(10942), 1, anon_sym_BQUOTE, - [172296] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10412), 1, - anon_sym_RPAREN, - [172303] = 2, + [183411] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8577), 1, + ACTIONS(10944), 1, anon_sym_RBRACE3, - [172310] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10416), 1, - anon_sym_RBRACE2, - [172317] = 2, + [183418] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10418), 1, - anon_sym_RBRACE2, - [172324] = 2, + ACTIONS(10946), 1, + anon_sym_RPAREN, + [183425] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10420), 1, - anon_sym_RBRACE3, - [172331] = 2, + ACTIONS(10948), 1, + aux_sym_brace_expression_token1, + [183432] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10422), 1, + ACTIONS(10940), 1, anon_sym_RPAREN, - [172338] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3330), 1, - anon_sym_then, - [172345] = 2, + [183439] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10424), 1, + ACTIONS(10950), 1, anon_sym_BQUOTE, - [172352] = 2, + [183446] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10426), 1, - anon_sym_BQUOTE, - [172359] = 2, + ACTIONS(10952), 1, + anon_sym_RBRACE3, + [183453] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10424), 1, - anon_sym_RPAREN, - [172366] = 2, + ACTIONS(10954), 1, + anon_sym_RBRACE3, + [183460] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8599), 1, - anon_sym_RBRACE3, - [172373] = 2, + ACTIONS(10946), 1, + anon_sym_BQUOTE, + [183467] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10428), 1, - sym_word, - [172380] = 2, + ACTIONS(10956), 1, + anon_sym_RPAREN, + [183474] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8408), 1, - anon_sym_RBRACE3, - [172387] = 2, + ACTIONS(10958), 1, + aux_sym_brace_expression_token1, + [183481] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10430), 1, - anon_sym_RBRACE2, - [172394] = 2, + ACTIONS(10960), 1, + anon_sym_RPAREN, + [183488] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10432), 1, + ACTIONS(10962), 1, anon_sym_RBRACE3, - [172401] = 2, + [183495] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10434), 1, - anon_sym_RPAREN, - [172408] = 2, + ACTIONS(10964), 1, + aux_sym_brace_expression_token1, + [183502] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10344), 1, + ACTIONS(10966), 1, anon_sym_BQUOTE, - [172415] = 2, + [183509] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10436), 1, + ACTIONS(10968), 1, anon_sym_BQUOTE, - [172422] = 2, + [183516] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10438), 1, + ACTIONS(10966), 1, anon_sym_RPAREN, - [172429] = 2, + [183523] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10440), 1, - anon_sym_esac, - [172436] = 2, + ACTIONS(10970), 1, + anon_sym_RBRACE3, + [183530] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8643), 1, + ACTIONS(10972), 1, anon_sym_RBRACE3, - [172443] = 2, + [183537] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10442), 1, - anon_sym_then, - [172450] = 2, + ACTIONS(10974), 1, + anon_sym_RPAREN, + [183544] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8799), 1, + ACTIONS(10976), 1, anon_sym_RBRACE3, - [172457] = 2, + [183551] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10444), 1, - anon_sym_BQUOTE, - [172464] = 2, + ACTIONS(10978), 1, + anon_sym_RBRACE3, + [183558] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10446), 1, - anon_sym_RBRACE2, - [172471] = 2, + ACTIONS(10980), 1, + anon_sym_RBRACE3, + [183565] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10448), 1, - anon_sym_RBRACE3, - [172478] = 2, + ACTIONS(10982), 1, + aux_sym_brace_expression_token1, + [183572] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10450), 1, - anon_sym_RPAREN, - [172485] = 2, + ACTIONS(10984), 1, + anon_sym_RBRACE2, + [183579] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10452), 1, - anon_sym_BQUOTE, - [172492] = 2, + ACTIONS(10986), 1, + anon_sym_RBRACE3, + [183586] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10454), 1, - anon_sym_BQUOTE, - [172499] = 2, + ACTIONS(10988), 1, + sym_word, + [183593] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10456), 1, + ACTIONS(10990), 1, anon_sym_RPAREN, - [172506] = 2, + [183600] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10452), 1, + ACTIONS(10992), 1, anon_sym_RPAREN, - [172513] = 2, + [183607] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10458), 1, - aux_sym_brace_expression_token1, - [172520] = 2, + ACTIONS(10994), 1, + anon_sym_BQUOTE, + [183614] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10460), 1, - anon_sym_RPAREN_RPAREN, - [172527] = 2, + ACTIONS(10996), 1, + anon_sym_BQUOTE, + [183621] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10462), 1, - anon_sym_in, - [172534] = 2, + ACTIONS(10998), 1, + anon_sym_RBRACE3, + [183628] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10464), 1, - anon_sym_in, - [172541] = 2, + ACTIONS(11000), 1, + aux_sym_brace_expression_token1, + [183635] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8657), 1, - anon_sym_RBRACE3, - [172548] = 2, + ACTIONS(11002), 1, + anon_sym_BQUOTE, + [183642] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10438), 1, + ACTIONS(10996), 1, + anon_sym_RPAREN, + [183649] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11004), 1, anon_sym_BQUOTE, - [172555] = 2, + [183656] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10466), 1, + ACTIONS(11006), 1, anon_sym_RBRACE2, - [172562] = 2, + [183663] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10468), 1, - anon_sym_RBRACE3, - [172569] = 2, + ACTIONS(11008), 1, + anon_sym_RBRACE2, + [183670] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10470), 1, - anon_sym_RPAREN, - [172576] = 2, + ACTIONS(6998), 1, + anon_sym_RBRACK, + [183677] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10472), 1, - anon_sym_BQUOTE, - [172583] = 2, + ACTIONS(6996), 1, + anon_sym_RBRACK, + [183684] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10474), 1, - anon_sym_BQUOTE, - [172590] = 2, + ACTIONS(11010), 1, + anon_sym_RPAREN, + [183691] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10472), 1, - anon_sym_RPAREN, - [172597] = 2, + ACTIONS(11012), 1, + aux_sym_brace_expression_token1, + [183698] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8701), 1, + ACTIONS(11014), 1, anon_sym_RBRACE3, - [172604] = 2, + [183705] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10476), 1, + ACTIONS(11016), 1, + anon_sym_BQUOTE, + [183712] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10994), 1, anon_sym_RPAREN, - [172611] = 2, + [183719] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10478), 1, + ACTIONS(11018), 1, anon_sym_RBRACE2, - [172618] = 2, + [183726] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10480), 1, + ACTIONS(11020), 1, anon_sym_RBRACE3, - [172625] = 2, + [183733] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10482), 1, - anon_sym_RPAREN, - [172632] = 2, + ACTIONS(11022), 1, + anon_sym_RBRACE3, + [183740] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10484), 1, - anon_sym_BQUOTE, - [172639] = 2, + ACTIONS(11024), 1, + anon_sym_RPAREN, + [183747] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10486), 1, + ACTIONS(11026), 1, sym_word, - [172646] = 2, + [183754] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10488), 1, + ACTIONS(11028), 1, + aux_sym_brace_expression_token1, + [183761] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11030), 1, anon_sym_BQUOTE, - [172653] = 2, + [183768] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10490), 1, - anon_sym_RBRACE3, - [172660] = 2, + ACTIONS(11032), 1, + anon_sym_BQUOTE, + [183775] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10484), 1, + ACTIONS(11030), 1, anon_sym_RPAREN, - [172667] = 2, + [183782] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8719), 1, - anon_sym_RBRACE3, - [172674] = 2, + ACTIONS(11010), 1, + anon_sym_BQUOTE, + [183789] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10492), 1, - anon_sym_RBRACE2, - [172681] = 2, + ACTIONS(11034), 1, + anon_sym_RBRACE3, + [183796] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8564), 1, + ACTIONS(11036), 1, anon_sym_RBRACE3, - [172688] = 2, + [183803] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10494), 1, - anon_sym_RPAREN, - [172695] = 2, + ACTIONS(11038), 1, + anon_sym_RBRACE2, + [183810] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10496), 1, - anon_sym_RBRACE2, - [172702] = 2, + ACTIONS(6136), 1, + anon_sym_RBRACE3, + [183817] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10498), 1, + ACTIONS(11040), 1, aux_sym_brace_expression_token1, - [172709] = 2, + [183824] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10500), 1, + ACTIONS(11042), 1, anon_sym_RBRACE3, - [172716] = 2, + [183831] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10502), 1, + ACTIONS(11044), 1, anon_sym_RPAREN, - [172723] = 2, + [183838] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11046), 1, + anon_sym_LF, + [183845] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10504), 1, + ACTIONS(11048), 1, anon_sym_BQUOTE, - [172730] = 2, + [183852] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10506), 1, - sym_word, - [172737] = 2, + ACTIONS(11050), 1, + anon_sym_RPAREN, + [183859] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10508), 1, + ACTIONS(11052), 1, anon_sym_BQUOTE, - [172744] = 2, + [183866] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10504), 1, + ACTIONS(11054), 1, anon_sym_RPAREN, - [172751] = 2, + [183873] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8725), 1, + ACTIONS(5992), 1, anon_sym_RBRACE3, - [172758] = 2, + [183880] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10510), 1, - anon_sym_RPAREN, - [172765] = 2, + ACTIONS(11056), 1, + aux_sym_brace_expression_token1, + [183887] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10512), 1, - anon_sym_RBRACE2, - [172772] = 2, + ACTIONS(11058), 1, + anon_sym_RBRACE3, + [183894] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10514), 1, - anon_sym_BQUOTE, - [172779] = 2, + ACTIONS(11048), 1, + anon_sym_RPAREN, + [183901] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10516), 1, + ACTIONS(11060), 1, anon_sym_RPAREN, - [172786] = 2, + [183908] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10518), 1, - anon_sym_RBRACE3, - [172793] = 2, + ACTIONS(11062), 1, + anon_sym_BQUOTE, + [183915] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10520), 1, - aux_sym_brace_expression_token1, - [172800] = 2, + ACTIONS(11064), 1, + anon_sym_BQUOTE, + [183922] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10522), 1, - anon_sym_RPAREN, - [172807] = 2, + ACTIONS(11066), 1, + anon_sym_RBRACE3, + [183929] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10524), 1, - anon_sym_BQUOTE, - [172814] = 2, + ACTIONS(6882), 1, + anon_sym_RBRACK, + [183936] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10526), 1, - sym_word, - [172821] = 2, + ACTIONS(6874), 1, + anon_sym_RBRACK, + [183943] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11068), 1, + aux_sym_brace_expression_token1, + [183950] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10528), 1, + ACTIONS(11060), 1, anon_sym_BQUOTE, - [172828] = 2, + [183957] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10524), 1, - anon_sym_RPAREN, - [172835] = 2, + ACTIONS(11070), 1, + anon_sym_RBRACE2, + [183964] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8747), 1, + ACTIONS(11072), 1, anon_sym_RBRACE3, - [172842] = 2, + [183971] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10510), 1, - anon_sym_BQUOTE, - [172849] = 2, + ACTIONS(11074), 1, + anon_sym_RPAREN, + [183978] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10530), 1, - anon_sym_RBRACE2, - [172856] = 2, + ACTIONS(11076), 1, + anon_sym_BQUOTE, + [183985] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10532), 1, - anon_sym_RPAREN, - [172863] = 2, + ACTIONS(11078), 1, + anon_sym_BQUOTE, + [183992] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10534), 1, - anon_sym_RPAREN, - [172870] = 2, + ACTIONS(11080), 1, + sym_heredoc_start, + [183999] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10536), 1, - anon_sym_RBRACE3, - [172877] = 2, + ACTIONS(11082), 1, + anon_sym_RBRACE2, + [184006] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10538), 1, + ACTIONS(11084), 1, aux_sym_brace_expression_token1, - [172884] = 2, + [184013] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10540), 1, + ACTIONS(11086), 1, anon_sym_RPAREN, - [172891] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10542), 1, - anon_sym_BQUOTE, - [172898] = 2, + [184020] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10544), 1, - anon_sym_BQUOTE, - [172905] = 2, + ACTIONS(11076), 1, + anon_sym_RPAREN, + [184027] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10542), 1, - anon_sym_RPAREN, - [172912] = 2, + ACTIONS(11088), 1, + anon_sym_then, + [184034] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(11090), 1, anon_sym_RBRACE3, - [172919] = 2, + [184041] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8785), 1, + ACTIONS(11092), 1, anon_sym_RBRACE3, - [172926] = 2, + [184048] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10546), 1, - anon_sym_RBRACE3, - [172933] = 2, + ACTIONS(11094), 1, + sym_heredoc_end, + [184055] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10548), 1, + ACTIONS(11096), 1, anon_sym_RBRACE2, - [172940] = 2, + [184062] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8603), 1, - anon_sym_RBRACE3, - [172947] = 2, + ACTIONS(11098), 1, + anon_sym_RBRACE2, + [184069] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10550), 1, + ACTIONS(11100), 1, aux_sym_brace_expression_token1, - [172954] = 2, + [184076] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10552), 1, + ACTIONS(11102), 1, anon_sym_RBRACE2, - [172961] = 2, + [184083] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10554), 1, + ACTIONS(11104), 1, anon_sym_RBRACE3, - [172968] = 2, + [184090] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10556), 1, + ACTIONS(11106), 1, anon_sym_RPAREN, - [172975] = 2, + [184097] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10558), 1, - anon_sym_BQUOTE, - [172982] = 2, + ACTIONS(11108), 1, + anon_sym_RBRACE3, + [184104] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10560), 1, + ACTIONS(11110), 1, anon_sym_BQUOTE, - [172989] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10558), 1, - anon_sym_RPAREN, - [172996] = 2, + [184111] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10562), 1, - anon_sym_RBRACE3, - [173003] = 2, + ACTIONS(11112), 1, + anon_sym_BQUOTE, + [184118] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10564), 1, - anon_sym_RBRACE3, - [173010] = 2, + ACTIONS(11114), 1, + anon_sym_RPAREN, + [184125] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10566), 1, + ACTIONS(11116), 1, aux_sym_brace_expression_token1, - [173017] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10568), 1, - anon_sym_BQUOTE, - [173024] = 2, + [184132] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10570), 1, - anon_sym_RBRACE2, - [173031] = 2, + ACTIONS(11110), 1, + anon_sym_RPAREN, + [184139] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10572), 1, + ACTIONS(11118), 1, anon_sym_RBRACE3, - [173038] = 2, + [184146] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10574), 1, - anon_sym_RPAREN, - [173045] = 2, + ACTIONS(11120), 1, + anon_sym_RBRACE3, + [184153] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10576), 1, - anon_sym_BQUOTE, - [173052] = 2, + ACTIONS(11122), 1, + sym_heredoc_end, + [184160] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10578), 1, - anon_sym_BQUOTE, - [173059] = 2, + ACTIONS(11124), 1, + anon_sym_RBRACE3, + [184167] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10576), 1, - anon_sym_RPAREN, - [173066] = 2, + ACTIONS(11126), 1, + anon_sym_RBRACE2, + [184174] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10404), 1, - anon_sym_BQUOTE, - [173073] = 2, + ACTIONS(11128), 1, + aux_sym_brace_expression_token1, + [184181] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10580), 1, + ACTIONS(11130), 1, aux_sym_brace_expression_token1, - [173080] = 2, + [184188] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8831), 1, + ACTIONS(11132), 1, anon_sym_RBRACE3, - [173087] = 2, + [184195] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(11134), 1, anon_sym_RPAREN, - [173094] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10584), 1, - anon_sym_RBRACE2, - [173101] = 2, + [184202] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10586), 1, - anon_sym_RBRACE3, - [173108] = 2, + ACTIONS(11136), 1, + anon_sym_esac, + [184209] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10588), 1, - anon_sym_RPAREN, - [173115] = 2, + ACTIONS(11138), 1, + anon_sym_esac, + [184216] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10590), 1, + ACTIONS(11140), 1, anon_sym_BQUOTE, - [173122] = 2, + [184223] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10592), 1, + ACTIONS(11142), 1, anon_sym_BQUOTE, - [173129] = 2, + [184230] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10594), 1, - anon_sym_RBRACE3, - [173136] = 2, + ACTIONS(11144), 1, + anon_sym_RPAREN_RPAREN, + [184237] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10596), 1, + ACTIONS(11146), 1, aux_sym_brace_expression_token1, - [173143] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10590), 1, - anon_sym_RPAREN, - [173150] = 2, + [184244] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8863), 1, + ACTIONS(11148), 1, anon_sym_RBRACE3, - [173157] = 2, + [184251] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10598), 1, - anon_sym_RBRACE2, - [173164] = 2, + ACTIONS(11150), 1, + anon_sym_esac, + [184258] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10600), 1, - anon_sym_RBRACE2, - [173171] = 2, + ACTIONS(11152), 1, + sym__regex_no_slash, + [184265] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10602), 1, - anon_sym_RBRACE3, - [173178] = 2, + ACTIONS(11154), 1, + anon_sym_esac, + [184272] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10604), 1, - anon_sym_esac, - [173185] = 2, + ACTIONS(11156), 1, + sym_regex, + [184279] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10606), 1, + ACTIONS(11140), 1, anon_sym_RPAREN, - [173192] = 2, + [184286] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10608), 1, - anon_sym_BQUOTE, - [173199] = 2, + ACTIONS(11158), 1, + anon_sym_esac, + [184293] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10610), 1, + ACTIONS(11160), 1, aux_sym_brace_expression_token1, - [173206] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10612), 1, - anon_sym_BQUOTE, - [173213] = 2, + [184300] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10614), 1, - anon_sym_BQUOTE, - [173220] = 2, + ACTIONS(11162), 1, + anon_sym_fi, + [184307] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10612), 1, + ACTIONS(11164), 1, anon_sym_RPAREN, - [173227] = 2, + [184314] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8885), 1, + ACTIONS(11166), 1, anon_sym_RBRACE3, - [173234] = 2, + [184321] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8699), 1, - anon_sym_RBRACE3, - [173241] = 2, + ACTIONS(11168), 1, + sym__regex_no_slash, + [184328] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10616), 1, - anon_sym_RBRACE2, - [173248] = 2, + ACTIONS(11170), 1, + anon_sym_BQUOTE, + [184335] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10618), 1, - anon_sym_RBRACE3, - [173255] = 2, + ACTIONS(11172), 1, + aux_sym_brace_expression_token1, + [184342] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10620), 1, - anon_sym_RPAREN, - [173262] = 2, + ACTIONS(11174), 1, + sym_heredoc_end, + [184349] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10622), 1, - aux_sym_brace_expression_token1, - [173269] = 2, + ACTIONS(11176), 1, + sym_regex, + [184356] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10624), 1, - anon_sym_RPAREN, - [173276] = 2, + ACTIONS(11178), 1, + sym_heredoc_end, + [184363] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10626), 1, + ACTIONS(11164), 1, anon_sym_BQUOTE, - [173283] = 2, + [184370] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10628), 1, - anon_sym_BQUOTE, - [173290] = 2, + ACTIONS(11180), 1, + anon_sym_RPAREN, + [184377] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10630), 1, - anon_sym_esac, - [173297] = 2, + ACTIONS(11182), 1, + aux_sym_brace_expression_token1, + [184384] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10626), 1, + ACTIONS(11184), 1, anon_sym_RPAREN, - [173304] = 2, + [184391] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8390), 1, + ACTIONS(11186), 1, + anon_sym_RBRACE2, + [184398] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11188), 1, anon_sym_RBRACE3, - [173311] = 2, + [184405] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10632), 1, - anon_sym_BQUOTE, - [173318] = 2, + ACTIONS(11190), 1, + anon_sym_esac, + [184412] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10620), 1, - anon_sym_BQUOTE, - [173325] = 2, + ACTIONS(11192), 1, + anon_sym_esac, + [184419] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10634), 1, + ACTIONS(11194), 1, aux_sym_brace_expression_token1, - [173332] = 2, + [184426] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10636), 1, + ACTIONS(11196), 1, anon_sym_RPAREN, - [173339] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10638), 1, - anon_sym_RBRACE2, - [173346] = 2, + [184433] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10640), 1, - anon_sym_RBRACE3, - [173353] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10642), 1, - anon_sym_RPAREN, - [173360] = 2, + ACTIONS(10292), 1, + anon_sym_fi, + [184440] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10644), 1, + ACTIONS(11198), 1, anon_sym_BQUOTE, - [173367] = 2, + [184447] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10646), 1, + ACTIONS(11200), 1, anon_sym_BQUOTE, - [173374] = 2, + [184454] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10644), 1, + ACTIONS(11198), 1, anon_sym_RPAREN, - [173381] = 2, + [184461] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10648), 1, - anon_sym_RBRACE2, - [173388] = 2, + ACTIONS(11202), 1, + aux_sym_brace_expression_token1, + [184468] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10650), 1, - aux_sym_brace_expression_token1, - [173395] = 2, + ACTIONS(11204), 1, + anon_sym_BQUOTE, + [184475] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8779), 1, + ACTIONS(11206), 1, anon_sym_RBRACE3, - [173402] = 2, + [184482] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8797), 1, + ACTIONS(11208), 1, anon_sym_RBRACE3, - [173409] = 2, + [184489] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10652), 1, + ACTIONS(11210), 1, + anon_sym_in, + [184496] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11212), 1, anon_sym_RBRACE2, - [173416] = 2, + [184503] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9921), 1, - anon_sym_fi, - [173423] = 2, + ACTIONS(11214), 1, + aux_sym_brace_expression_token1, + [184510] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10654), 1, + ACTIONS(11216), 1, anon_sym_RBRACE3, - [173430] = 2, + [184517] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10656), 1, + ACTIONS(11218), 1, anon_sym_RPAREN, - [173437] = 2, + [184524] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10658), 1, - anon_sym_RPAREN, - [173444] = 2, + ACTIONS(11220), 1, + anon_sym_esac, + [184531] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10660), 1, - aux_sym_brace_expression_token1, - [173451] = 2, + ACTIONS(11222), 1, + anon_sym_esac, + [184538] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10662), 1, + ACTIONS(11224), 1, anon_sym_BQUOTE, - [173458] = 2, + [184545] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10664), 1, + ACTIONS(11226), 1, + aux_sym_brace_expression_token1, + [184552] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10310), 1, + anon_sym_fi, + [184559] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11228), 1, + anon_sym_in, + [184566] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11230), 1, anon_sym_BQUOTE, - [173465] = 2, + [184573] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10662), 1, - anon_sym_RPAREN, - [173472] = 2, + ACTIONS(11232), 1, + anon_sym_in, + [184580] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8703), 1, + ACTIONS(11234), 1, anon_sym_RBRACE3, - [173479] = 2, + [184587] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10666), 1, + ACTIONS(11236), 1, + aux_sym_brace_expression_token1, + [184594] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11062), 1, anon_sym_RPAREN, - [173486] = 2, + [184601] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10668), 1, - anon_sym_RBRACE2, - [173493] = 2, + ACTIONS(11238), 1, + anon_sym_in, + [184608] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10670), 1, - anon_sym_BQUOTE, - [173500] = 2, + ACTIONS(11240), 1, + anon_sym_RBRACE2, + [184615] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10672), 1, - aux_sym_brace_expression_token1, - [173507] = 2, + ACTIONS(6972), 1, + anon_sym_RBRACK, + [184622] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10674), 1, - anon_sym_RBRACE3, - [173514] = 2, + ACTIONS(6970), 1, + anon_sym_RBRACK, + [184629] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10676), 1, - anon_sym_RPAREN, - [173521] = 2, + ACTIONS(11242), 1, + aux_sym_brace_expression_token1, + [184636] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10678), 1, - anon_sym_BQUOTE, - [173528] = 2, + ACTIONS(11244), 1, + anon_sym_RBRACE3, + [184643] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10680), 1, + ACTIONS(10960), 1, anon_sym_BQUOTE, - [173535] = 2, + [184650] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10678), 1, - anon_sym_RPAREN, - [173542] = 2, + ACTIONS(11246), 1, + anon_sym_RBRACE3, + [184657] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8641), 1, + ACTIONS(11248), 1, anon_sym_RBRACE3, - [173549] = 2, + [184664] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10658), 1, - anon_sym_BQUOTE, - [173556] = 2, + ACTIONS(11250), 1, + anon_sym_RBRACE2, + [184671] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10682), 1, + ACTIONS(11252), 1, aux_sym_brace_expression_token1, - [173563] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10684), 1, - anon_sym_RPAREN, - [173570] = 2, + [184678] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10686), 1, - anon_sym_esac, - [173577] = 2, + ACTIONS(11254), 1, + anon_sym_then, + [184685] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10688), 1, - anon_sym_RBRACE2, - [173584] = 2, + ACTIONS(10350), 1, + anon_sym_fi, + [184692] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10690), 1, + ACTIONS(11256), 1, anon_sym_RBRACE3, - [173591] = 2, + [184699] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10692), 1, + ACTIONS(11258), 1, anon_sym_RPAREN, - [173598] = 2, + [184706] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10694), 1, + ACTIONS(11260), 1, anon_sym_BQUOTE, - [173605] = 2, + [184713] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10696), 1, - anon_sym_RBRACE3, - [173612] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10698), 1, + ACTIONS(11262), 1, aux_sym_brace_expression_token1, - [173619] = 2, + [184720] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10700), 1, + ACTIONS(11264), 1, anon_sym_BQUOTE, - [173626] = 2, + [184727] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10694), 1, + ACTIONS(11204), 1, anon_sym_RPAREN, - [173633] = 2, + [184734] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8559), 1, + ACTIONS(4130), 1, anon_sym_RBRACE3, - [173640] = 2, + [184741] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10702), 1, - anon_sym_RBRACE2, - [173647] = 2, + ACTIONS(11266), 1, + anon_sym_RPAREN, + [184748] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10704), 1, - anon_sym_RBRACE2, - [173654] = 2, + ACTIONS(11268), 1, + anon_sym_RPAREN, + [184755] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10706), 1, + ACTIONS(11270), 1, aux_sym_brace_expression_token1, - [173661] = 2, + [184762] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10708), 1, - anon_sym_RBRACE2, - [173668] = 2, + ACTIONS(11272), 1, + anon_sym_BQUOTE, + [184769] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(6762), 1, - anon_sym_RBRACK, - [173675] = 2, + ACTIONS(11274), 1, + anon_sym_BQUOTE, + [184776] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(6772), 1, - anon_sym_RBRACK, - [173682] = 2, + ACTIONS(11260), 1, + anon_sym_RPAREN, + [184783] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10710), 1, - anon_sym_RBRACE3, - [173689] = 2, + ACTIONS(11276), 1, + anon_sym_RPAREN_RPAREN, + [184790] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10712), 1, + ACTIONS(11272), 1, anon_sym_RPAREN, - [173696] = 2, + [184797] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10714), 1, + ACTIONS(11278), 1, aux_sym_brace_expression_token1, - [173703] = 2, + [184804] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10716), 1, - anon_sym_BQUOTE, - [173710] = 2, + ACTIONS(11280), 1, + anon_sym_RBRACE3, + [184811] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10718), 1, - anon_sym_BQUOTE, - [173717] = 2, + ACTIONS(11282), 1, + anon_sym_RPAREN, + [184818] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10716), 1, - anon_sym_RPAREN, - [173724] = 2, + ACTIONS(11284), 1, + anon_sym_RBRACE2, + [184825] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8492), 1, - anon_sym_RBRACE3, - [173731] = 2, + ACTIONS(11286), 1, + aux_sym_brace_expression_token1, + [184832] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8497), 1, + ACTIONS(11288), 1, anon_sym_RBRACE3, - [173738] = 2, + [184839] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10720), 1, + ACTIONS(11290), 1, aux_sym_brace_expression_token1, - [173745] = 2, + [184846] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10722), 1, - anon_sym_RPAREN, - [173752] = 2, + ACTIONS(11266), 1, + anon_sym_BQUOTE, + [184853] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10724), 1, - anon_sym_RBRACE2, - [173759] = 2, + ACTIONS(11292), 1, + anon_sym_RPAREN, + [184860] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10726), 1, + ACTIONS(4068), 1, anon_sym_RBRACE3, - [173766] = 2, + [184867] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10728), 1, + ACTIONS(11294), 1, anon_sym_RPAREN, - [173773] = 2, + [184874] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10730), 1, - anon_sym_BQUOTE, - [173780] = 2, + ACTIONS(11296), 1, + anon_sym_RPAREN, + [184881] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10732), 1, + ACTIONS(11298), 1, aux_sym_brace_expression_token1, - [173787] = 2, + [184888] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10734), 1, - anon_sym_BQUOTE, - [173794] = 2, + ACTIONS(11300), 1, + anon_sym_esac, + [184895] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10736), 1, + ACTIONS(11302), 1, anon_sym_RPAREN, - [173801] = 2, + [184902] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11304), 1, + anon_sym_RBRACE3, + [184909] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10730), 1, + ACTIONS(11306), 1, anon_sym_RPAREN, - [173808] = 2, + [184916] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11308), 1, + anon_sym_LF, + [184923] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8460), 1, + ACTIONS(11310), 1, + aux_sym_brace_expression_token1, + [184930] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11312), 1, anon_sym_RBRACE3, - [173815] = 2, + [184937] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10738), 1, + ACTIONS(11314), 1, anon_sym_BQUOTE, - [173822] = 2, + [184944] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10740), 1, - anon_sym_then, - [173829] = 2, + ACTIONS(11316), 1, + anon_sym_BQUOTE, + [184951] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10742), 1, - anon_sym_RBRACE2, - [173836] = 2, + ACTIONS(11314), 1, + anon_sym_RPAREN, + [184958] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10744), 1, + ACTIONS(11318), 1, anon_sym_RBRACE3, - [173843] = 2, + [184965] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10746), 1, - anon_sym_RPAREN, - [173850] = 2, + ACTIONS(11320), 1, + aux_sym_brace_expression_token1, + [184972] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10748), 1, - anon_sym_BQUOTE, - [173857] = 2, + ACTIONS(11322), 1, + anon_sym_RBRACE3, + [184979] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10750), 1, - anon_sym_BQUOTE, - [173864] = 2, + ACTIONS(11324), 1, + anon_sym_RBRACE2, + [184986] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10752), 1, - aux_sym_brace_expression_token1, - [173871] = 2, + ACTIONS(11326), 1, + anon_sym_RBRACE2, + [184993] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10748), 1, - anon_sym_RPAREN, - [173878] = 2, + ACTIONS(11328), 1, + anon_sym_RBRACE2, + [185000] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8426), 1, + ACTIONS(11330), 1, anon_sym_RBRACE3, - [173885] = 2, + [185007] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11332), 1, + aux_sym_brace_expression_token1, + [185014] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11334), 1, + anon_sym_esac, + [185021] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11336), 1, + anon_sym_RPAREN, + [185028] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10722), 1, + ACTIONS(11338), 1, anon_sym_BQUOTE, - [173892] = 2, + [185035] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10754), 1, - anon_sym_RBRACE2, - [173899] = 2, + ACTIONS(11340), 1, + anon_sym_BQUOTE, + [185042] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10756), 1, + ACTIONS(11342), 1, sym_heredoc_start, - [173906] = 2, + [185049] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10758), 1, + ACTIONS(11344), 1, aux_sym_brace_expression_token1, - [173913] = 2, + [185056] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10760), 1, + ACTIONS(11346), 1, anon_sym_RBRACE3, - [173920] = 2, + [185063] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10762), 1, + ACTIONS(11338), 1, anon_sym_RPAREN, - [173927] = 2, + [185070] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10764), 1, - anon_sym_BQUOTE, - [173934] = 2, + ACTIONS(11348), 1, + anon_sym_RPAREN, + [185077] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10766), 1, + ACTIONS(11350), 1, anon_sym_RBRACE3, - [173941] = 2, + [185084] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10768), 1, + ACTIONS(11352), 1, anon_sym_BQUOTE, - [173948] = 2, + [185091] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10770), 1, + ACTIONS(11354), 1, aux_sym_brace_expression_token1, - [173955] = 2, + [185098] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10764), 1, - anon_sym_RPAREN, - [173962] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8416), 1, + ACTIONS(11356), 1, anon_sym_RBRACE3, - [173969] = 2, + [185105] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10772), 1, - anon_sym_RPAREN, - [173976] = 2, + ACTIONS(11358), 1, + anon_sym_BQUOTE, + [185112] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11360), 1, + anon_sym_LF, + [185119] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8472), 1, - anon_sym_RBRACE3, - [173983] = 2, + ACTIONS(11352), 1, + anon_sym_RPAREN, + [185126] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10774), 1, - anon_sym_RBRACE2, - [173990] = 2, + ACTIONS(11362), 1, + anon_sym_RPAREN, + [185133] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10776), 1, + ACTIONS(11364), 1, aux_sym_brace_expression_token1, - [173997] = 2, + [185140] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10778), 1, + ACTIONS(11366), 1, anon_sym_RBRACE3, - [174004] = 2, + [185147] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10780), 1, - anon_sym_RPAREN, - [174011] = 2, + ACTIONS(11368), 1, + anon_sym_RBRACE3, + [185154] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10666), 1, - anon_sym_BQUOTE, - [174018] = 2, + ACTIONS(11370), 1, + anon_sym_RBRACE3, + [185161] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10782), 1, - anon_sym_BQUOTE, - [174025] = 2, + ACTIONS(11372), 1, + anon_sym_RBRACE2, + [185168] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8677), 1, + ACTIONS(11374), 1, anon_sym_RBRACE3, - [174032] = 2, + [185175] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10784), 1, + ACTIONS(11376), 1, aux_sym_brace_expression_token1, - [174039] = 2, + [185182] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11378), 1, + anon_sym_esac, + [185189] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8480), 1, + ACTIONS(11380), 1, anon_sym_RBRACE3, - [174046] = 2, + [185196] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10786), 1, + ACTIONS(11382), 1, anon_sym_RPAREN, - [174053] = 2, + [185203] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8851), 1, - anon_sym_RBRACE3, - [174060] = 2, + ACTIONS(11384), 1, + anon_sym_esac, + [185210] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10788), 1, + ACTIONS(11386), 1, anon_sym_BQUOTE, - [174067] = 2, + [185217] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10786), 1, - anon_sym_BQUOTE, - [174074] = 2, + ACTIONS(11388), 1, + aux_sym_brace_expression_token1, + [185224] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10790), 1, - aux_sym_brace_expression_token1, - [174081] = 2, + ACTIONS(11390), 1, + anon_sym_BQUOTE, + [185231] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10792), 1, + ACTIONS(11386), 1, anon_sym_RPAREN, - [174088] = 2, + [185238] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10794), 1, - anon_sym_RBRACE2, - [174095] = 2, - ACTIONS(63), 1, + ACTIONS(11392), 1, + anon_sym_BQUOTE, + [185245] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(10796), 1, - sym_heredoc_start, - [174102] = 2, + ACTIONS(11394), 1, + anon_sym_LF, + [185252] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10798), 1, - anon_sym_RBRACE3, - [174109] = 2, + ACTIONS(11396), 1, + sym_heredoc_end, + [185259] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10800), 1, - anon_sym_RPAREN, - [174116] = 2, + ACTIONS(11398), 1, + anon_sym_RBRACE3, + [185266] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10802), 1, - aux_sym_brace_expression_token1, - [174123] = 2, + ACTIONS(11400), 1, + anon_sym_RBRACE3, + [185273] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10804), 1, - anon_sym_BQUOTE, - [174130] = 2, + ACTIONS(11402), 1, + sym_heredoc_end, + [185280] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10806), 1, + ACTIONS(11362), 1, anon_sym_BQUOTE, - [174137] = 2, + [185287] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10804), 1, + ACTIONS(11404), 1, anon_sym_RPAREN, - [174144] = 2, - ACTIONS(63), 1, + [185294] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8575), 1, - anon_sym_RBRACE3, - [174151] = 2, + ACTIONS(11406), 1, + anon_sym_LF, + [185301] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_RPAREN, - [174158] = 2, + ACTIONS(11408), 1, + aux_sym_brace_expression_token1, + [185308] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10810), 1, - aux_sym_brace_expression_token1, - [174165] = 2, + ACTIONS(11410), 1, + anon_sym_RPAREN, + [185315] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10812), 1, + ACTIONS(11412), 1, anon_sym_RBRACE3, - [174172] = 2, + [185322] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10814), 1, + ACTIONS(11414), 1, anon_sym_RBRACE2, - [174179] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10816), 1, - anon_sym_esac, - [174186] = 2, + [185329] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10818), 1, + ACTIONS(11416), 1, anon_sym_RBRACE3, - [174193] = 2, + [185336] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10820), 1, + ACTIONS(11418), 1, anon_sym_RPAREN, - [174200] = 2, + [185343] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10822), 1, + ACTIONS(11420), 1, aux_sym_brace_expression_token1, - [174207] = 2, + [185350] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10824), 1, + ACTIONS(11422), 1, anon_sym_BQUOTE, - [174214] = 2, + [185357] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10826), 1, + ACTIONS(11424), 1, anon_sym_BQUOTE, - [174221] = 2, + [185364] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10824), 1, + ACTIONS(11426), 1, anon_sym_RPAREN, - [174228] = 2, + [185371] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10828), 1, - anon_sym_in, - [174235] = 2, + ACTIONS(11422), 1, + anon_sym_RPAREN, + [185378] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10830), 1, - anon_sym_RPAREN, - [174242] = 2, + ACTIONS(11428), 1, + anon_sym_RBRACE3, + [185385] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10832), 1, + ACTIONS(11430), 1, aux_sym_brace_expression_token1, - [174249] = 2, + [185392] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_BQUOTE, - [174256] = 2, + ACTIONS(11432), 1, + anon_sym_RBRACE3, + [185399] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10834), 1, - anon_sym_in, - [174263] = 2, + ACTIONS(11434), 1, + anon_sym_RBRACE2, + [185406] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10836), 1, - anon_sym_RBRACE3, - [174270] = 2, + ACTIONS(11436), 1, + anon_sym_esac, + [185413] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10838), 1, - anon_sym_RBRACE2, - [174277] = 2, + ACTIONS(11438), 1, + anon_sym_BQUOTE, + [185420] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10840), 1, - anon_sym_RBRACE3, - [174284] = 2, + ACTIONS(11440), 1, + anon_sym_RBRACE2, + [185427] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10842), 1, + ACTIONS(11442), 1, aux_sym_brace_expression_token1, - [174291] = 2, + [185434] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10844), 1, + ACTIONS(11444), 1, anon_sym_RBRACE3, - [174298] = 2, + [185441] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10846), 1, - anon_sym_RPAREN, - [174305] = 2, + ACTIONS(11446), 1, + anon_sym_fi, + [185448] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10848), 1, - anon_sym_BQUOTE, - [174312] = 2, + ACTIONS(11448), 1, + anon_sym_RPAREN, + [185455] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8755), 1, - anon_sym_RBRACE3, - [174319] = 2, + ACTIONS(11450), 1, + anon_sym_BQUOTE, + [185462] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10850), 1, + ACTIONS(11452), 1, anon_sym_BQUOTE, - [174326] = 2, - ACTIONS(63), 1, + [185469] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(10852), 1, - aux_sym_brace_expression_token1, - [174333] = 2, + ACTIONS(11454), 1, + anon_sym_LF, + [185476] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10854), 1, - sym_heredoc_start, - [174340] = 2, + ACTIONS(11296), 1, + anon_sym_BQUOTE, + [185483] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10848), 1, + ACTIONS(11450), 1, anon_sym_RPAREN, - [174347] = 2, + [185490] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8809), 1, - anon_sym_RBRACE3, - [174354] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10856), 1, - anon_sym_RPAREN_RPAREN, - [174361] = 2, + ACTIONS(11456), 1, + anon_sym_RBRACE2, + [185497] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(6600), 1, - anon_sym_RBRACK, - [174368] = 2, + ACTIONS(11458), 1, + anon_sym_RBRACE3, + [185504] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10858), 1, - aux_sym_brace_expression_token1, - [174375] = 2, + ACTIONS(11460), 1, + anon_sym_RBRACE3, + [185511] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(6590), 1, - anon_sym_RBRACK, - [174382] = 2, + ACTIONS(11426), 1, + anon_sym_BQUOTE, + [185518] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10860), 1, + ACTIONS(11462), 1, anon_sym_RPAREN, - [174389] = 2, + [185525] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10862), 1, - anon_sym_RBRACE2, - [174396] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10864), 1, - aux_sym_brace_expression_token1, - [174403] = 2, + ACTIONS(11464), 1, + anon_sym_then, + [185532] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10866), 1, - anon_sym_RBRACE2, - [174410] = 2, + ACTIONS(11466), 1, + anon_sym_RBRACE3, + [185539] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10868), 1, - aux_sym_brace_expression_token1, - [174417] = 2, + ACTIONS(11468), 1, + anon_sym_RBRACE3, + [185546] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10870), 1, - anon_sym_RBRACE3, - [174424] = 2, + ACTIONS(11470), 1, + anon_sym_RPAREN, + [185553] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10872), 1, + ACTIONS(11472), 1, anon_sym_RPAREN, - [174431] = 2, + [185560] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10874), 1, + ACTIONS(11474), 1, anon_sym_BQUOTE, - [174438] = 2, + [185567] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10876), 1, + ACTIONS(11476), 1, anon_sym_BQUOTE, - [174445] = 2, + [185574] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10878), 1, + ACTIONS(11478), 1, + anon_sym_RPAREN, + [185581] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10836), 1, + aux_sym__simple_variable_name_token1, + [185588] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11480), 1, anon_sym_BQUOTE, - [174452] = 2, + [185595] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10880), 1, - aux_sym_brace_expression_token1, - [174459] = 2, + ACTIONS(11482), 1, + anon_sym_esac, + [185602] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9893), 1, - anon_sym_fi, - [174466] = 2, + ACTIONS(11484), 1, + anon_sym_DOT_DOT, + [185609] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10876), 1, + ACTIONS(11474), 1, anon_sym_RPAREN, - [174473] = 2, + [185616] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8887), 1, - anon_sym_RBRACE3, - [174480] = 2, + ACTIONS(11462), 1, + anon_sym_BQUOTE, + [185623] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10882), 1, - anon_sym_esac, - [174487] = 2, + ACTIONS(11486), 1, + anon_sym_RBRACE3, + [185630] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10884), 1, - anon_sym_esac, - [174494] = 2, + ACTIONS(11488), 1, + sym_heredoc_start, + [185637] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10886), 1, - aux_sym_brace_expression_token1, - [174501] = 2, + ACTIONS(11490), 1, + anon_sym_RPAREN, + [185644] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10860), 1, + ACTIONS(11492), 1, anon_sym_BQUOTE, - [174508] = 2, + [185651] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10888), 1, + ACTIONS(11494), 1, anon_sym_RBRACE2, - [174515] = 2, + [185658] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10890), 1, + ACTIONS(11496), 1, anon_sym_RBRACE3, - [174522] = 2, + [185665] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10892), 1, - anon_sym_BQUOTE, - [174529] = 2, + ACTIONS(11498), 1, + anon_sym_RBRACE3, + [185672] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10894), 1, - anon_sym_RPAREN, - [174536] = 2, + ACTIONS(11500), 1, + sym_heredoc_start, + [185679] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10896), 1, - aux_sym_brace_expression_token1, - [174543] = 2, + ACTIONS(11502), 1, + anon_sym_RPAREN, + [185686] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10898), 1, + ACTIONS(11504), 1, anon_sym_BQUOTE, - [174550] = 2, + [185693] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(11506), 1, anon_sym_BQUOTE, - [174557] = 2, + [185700] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9873), 1, - anon_sym_fi, - [174564] = 2, + ACTIONS(11508), 1, + anon_sym_BQUOTE, + [185707] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10898), 1, + ACTIONS(11504), 1, anon_sym_RPAREN, - [174571] = 2, + [185714] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10902), 1, - sym_heredoc_start, - [174578] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10904), 1, - aux_sym_brace_expression_token1, - [174585] = 2, + ACTIONS(11510), 1, + anon_sym_RBRACE2, + [185721] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8811), 1, + ACTIONS(11512), 1, anon_sym_RBRACE3, - [174592] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10906), 1, - anon_sym_esac, - [174599] = 2, + [185728] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10908), 1, - anon_sym_RPAREN, - [174606] = 2, + ACTIONS(11514), 1, + anon_sym_RBRACE2, + [185735] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10910), 1, - anon_sym_DOT_DOT, - [174613] = 2, + ACTIONS(11516), 1, + anon_sym_RBRACE3, + [185742] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10912), 1, - anon_sym_BQUOTE, - [174620] = 2, + ACTIONS(11518), 1, + anon_sym_RBRACE2, + [185749] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10914), 1, - aux_sym_brace_expression_token1, - [174627] = 2, + ACTIONS(11520), 1, + anon_sym_RBRACE3, + [185756] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10916), 1, - anon_sym_esac, - [174634] = 2, + ACTIONS(11522), 1, + anon_sym_RPAREN, + [185763] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10918), 1, + ACTIONS(11524), 1, anon_sym_BQUOTE, - [174641] = 2, + [185770] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10920), 1, - anon_sym_RPAREN, - [174648] = 2, + ACTIONS(11526), 1, + anon_sym_BQUOTE, + [185777] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10912), 1, + ACTIONS(11524), 1, anon_sym_RPAREN, - [174655] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10922), 1, - anon_sym_fi, - [174662] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10924), 1, - aux_sym_brace_expression_token1, - [174669] = 2, + [185784] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10926), 1, - anon_sym_esac, - [174676] = 2, + ACTIONS(11528), 1, + anon_sym_RBRACE3, + [185791] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8795), 1, + ACTIONS(11530), 1, anon_sym_RBRACE3, - [174683] = 2, + [185798] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10928), 1, - aux_sym_brace_expression_token1, - [174690] = 2, + ACTIONS(11532), 1, + anon_sym_RBRACE2, + [185805] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10930), 1, - anon_sym_esac, - [174697] = 2, + ACTIONS(11534), 1, + anon_sym_RPAREN, + [185812] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10932), 1, + ACTIONS(11536), 1, anon_sym_RBRACE2, - [174704] = 2, + [185819] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10934), 1, - aux_sym_brace_expression_token1, - [174711] = 2, + ACTIONS(11538), 1, + anon_sym_RBRACE3, + [185826] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10936), 1, - anon_sym_esac, - [174718] = 2, + ACTIONS(11540), 1, + anon_sym_RPAREN, + [185833] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10938), 1, - anon_sym_RBRACE3, - [174725] = 2, + ACTIONS(11542), 1, + anon_sym_BQUOTE, + [185840] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10940), 1, - anon_sym_esac, - [174732] = 2, + ACTIONS(11544), 1, + anon_sym_BQUOTE, + [185847] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10942), 1, + ACTIONS(11542), 1, anon_sym_RPAREN, - [174739] = 2, + [185854] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10944), 1, + ACTIONS(11546), 1, + anon_sym_DOT_DOT, + [185861] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11548), 1, anon_sym_BQUOTE, - [174746] = 2, + [185868] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10946), 1, - aux_sym_brace_expression_token1, - [174753] = 2, + ACTIONS(11550), 1, + anon_sym_RBRACE3, + [185875] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10948), 1, + ACTIONS(11534), 1, anon_sym_BQUOTE, - [174760] = 2, + [185882] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10944), 1, + ACTIONS(11552), 1, anon_sym_RPAREN, - [174767] = 2, + [185889] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8753), 1, - anon_sym_RBRACE3, - [174774] = 2, + ACTIONS(11554), 1, + anon_sym_RBRACE2, + [185896] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8675), 1, + ACTIONS(11556), 1, anon_sym_RBRACE3, - [174781] = 2, + [185903] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10950), 1, + ACTIONS(11558), 1, anon_sym_RBRACE2, - [174788] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10952), 1, - aux_sym_brace_expression_token1, - [174795] = 2, + [185910] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10954), 1, + ACTIONS(11560), 1, anon_sym_RBRACE3, - [174802] = 2, + [185917] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10956), 1, + ACTIONS(11562), 1, anon_sym_RPAREN, - [174809] = 2, + [185924] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10958), 1, - anon_sym_LBRACK, - [174816] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10960), 1, + ACTIONS(11564), 1, anon_sym_BQUOTE, - [174823] = 2, + [185931] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10962), 1, + ACTIONS(11566), 1, anon_sym_BQUOTE, - [174830] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10964), 1, - aux_sym_brace_expression_token1, - [174837] = 2, + [185938] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10960), 1, + ACTIONS(11564), 1, anon_sym_RPAREN, - [174844] = 2, + [185945] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8679), 1, + ACTIONS(11568), 1, anon_sym_RBRACE3, - [174851] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10966), 1, - anon_sym_RPAREN_RPAREN, - [174858] = 2, + [185952] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8713), 1, + ACTIONS(11570), 1, anon_sym_RBRACE3, - [174865] = 2, + [185959] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10968), 1, - anon_sym_RBRACE3, - [174872] = 2, + ACTIONS(11572), 1, + anon_sym_RBRACE2, + [185966] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10970), 1, - aux_sym_brace_expression_token1, - [174879] = 2, + ACTIONS(11574), 1, + anon_sym_in, + [185973] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10972), 1, + ACTIONS(11576), 1, anon_sym_RBRACE2, - [174886] = 2, + [185980] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10974), 1, + ACTIONS(11578), 1, anon_sym_RBRACE3, - [174893] = 2, + [185987] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10976), 1, + ACTIONS(11580), 1, anon_sym_RPAREN, - [174900] = 2, + [185994] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10978), 1, + ACTIONS(11582), 1, anon_sym_BQUOTE, - [174907] = 2, + [186001] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10980), 1, + ACTIONS(11584), 1, anon_sym_BQUOTE, - [174914] = 2, + [186008] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10982), 1, - anon_sym_RPAREN, - [174921] = 2, + ACTIONS(11586), 1, + anon_sym_RBRACE3, + [186015] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10978), 1, - anon_sym_RPAREN, - [174928] = 2, + ACTIONS(11588), 1, + anon_sym_in, + [186022] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8601), 1, - anon_sym_RBRACE3, - [174935] = 2, + ACTIONS(11582), 1, + anon_sym_RPAREN, + [186029] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10984), 1, - anon_sym_esac, - [174942] = 2, + ACTIONS(11590), 1, + anon_sym_RBRACE3, + [186036] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10986), 1, - anon_sym_esac, - [174949] = 2, + ACTIONS(11592), 1, + anon_sym_RPAREN_RPAREN, + [186043] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10988), 1, + ACTIONS(11594), 1, anon_sym_RBRACE2, - [174956] = 2, + [186050] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8553), 1, + ACTIONS(11596), 1, anon_sym_RBRACE3, - [174963] = 2, + [186057] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10990), 1, - anon_sym_RBRACE3, - [174970] = 2, + ACTIONS(11598), 1, + aux_sym_brace_expression_token1, + [186064] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10992), 1, + ACTIONS(11600), 1, anon_sym_RPAREN, - [174977] = 2, + [186071] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10994), 1, + ACTIONS(11602), 1, anon_sym_BQUOTE, - [174984] = 2, + [186078] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10996), 1, + ACTIONS(11604), 1, anon_sym_BQUOTE, - [174991] = 2, + [186085] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10998), 1, + ACTIONS(11602), 1, anon_sym_RPAREN, - [174998] = 2, + [186092] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10994), 1, - anon_sym_RPAREN, - [175005] = 2, + ACTIONS(11606), 1, + anon_sym_RBRACE3, + [186099] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11000), 1, + ACTIONS(3360), 1, anon_sym_then, - [175012] = 2, + [186106] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8583), 1, - anon_sym_RBRACE3, - [175019] = 2, + ACTIONS(11608), 1, + anon_sym_RPAREN, + [186113] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10334), 1, + ACTIONS(10832), 1, aux_sym__simple_variable_name_token1, - [175026] = 2, + [186120] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8533), 1, + ACTIONS(11610), 1, anon_sym_RBRACE3, - [175033] = 2, + [186127] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11002), 1, - anon_sym_BQUOTE, - [175040] = 2, + ACTIONS(11612), 1, + anon_sym_RPAREN, + [186134] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11004), 1, + ACTIONS(11614), 1, anon_sym_DOT_DOT, - [175047] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10998), 1, - anon_sym_BQUOTE, - [175054] = 2, + [186141] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11006), 1, - anon_sym_RPAREN, - [175061] = 2, + ACTIONS(11616), 1, + anon_sym_RBRACE3, + [186148] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11008), 1, - anon_sym_LBRACK, - [175068] = 2, + ACTIONS(11618), 1, + anon_sym_BQUOTE, + [186155] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11010), 1, - anon_sym_RBRACE3, - [175075] = 2, + ACTIONS(11620), 1, + anon_sym_BQUOTE, + [186162] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11012), 1, + ACTIONS(11622), 1, sym_heredoc_start, - [175082] = 2, + [186169] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11014), 1, - anon_sym_RBRACE3, - [175089] = 2, + ACTIONS(11612), 1, + anon_sym_BQUOTE, + [186176] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11016), 1, + ACTIONS(11624), 1, anon_sym_RPAREN, - [175096] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11018), 1, - anon_sym_fi, - [175103] = 2, + [186183] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11020), 1, + ACTIONS(11626), 1, anon_sym_RBRACE2, - [175110] = 2, + [186190] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11022), 1, + ACTIONS(11628), 1, anon_sym_RBRACE3, - [175117] = 2, + [186197] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11024), 1, + ACTIONS(11630), 1, + sym_heredoc_start, + [186204] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11632), 1, anon_sym_RPAREN, - [175124] = 2, + [186211] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10920), 1, + ACTIONS(11634), 1, anon_sym_BQUOTE, - [175131] = 2, + [186218] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11026), 1, + ACTIONS(11636), 1, anon_sym_BQUOTE, - [175138] = 2, + [186225] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9953), 1, - anon_sym_fi, - [175145] = 2, + ACTIONS(11634), 1, + anon_sym_RPAREN, + [186232] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8462), 1, + ACTIONS(11638), 1, anon_sym_RBRACE3, - [175152] = 2, + [186239] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11028), 1, + ACTIONS(11640), 1, anon_sym_RBRACE3, - [175159] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11030), 1, - anon_sym_BQUOTE, - [175166] = 2, + [186246] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11032), 1, - sym_heredoc_start, - [175173] = 2, + ACTIONS(11642), 1, + anon_sym_RBRACE2, + [186253] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(6662), 1, - anon_sym_RBRACK, - [175180] = 2, + ACTIONS(11644), 1, + anon_sym_RPAREN, + [186260] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(6664), 1, - anon_sym_RBRACK, - [175187] = 2, + ACTIONS(11646), 1, + anon_sym_BQUOTE, + [186267] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11034), 1, - anon_sym_RBRACE2, - [175194] = 2, + ACTIONS(11648), 1, + anon_sym_esac, + [186274] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11036), 1, + ACTIONS(11650), 1, anon_sym_RBRACE2, - [175201] = 2, + [186281] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11038), 1, + ACTIONS(11652), 1, anon_sym_RBRACE3, - [175208] = 2, + [186288] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11040), 1, + ACTIONS(11654), 1, anon_sym_RPAREN, - [175215] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11042), 1, - anon_sym_BQUOTE, - [175222] = 2, + [186295] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11044), 1, + ACTIONS(11656), 1, anon_sym_BQUOTE, - [175229] = 2, + [186302] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11046), 1, + ACTIONS(11658), 1, anon_sym_BQUOTE, - [175236] = 2, + [186309] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11044), 1, + ACTIONS(11656), 1, anon_sym_RPAREN, - [175243] = 2, + [186316] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11048), 1, + ACTIONS(11660), 1, ts_builtin_sym_end, - [175250] = 2, + [186323] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11050), 1, + ACTIONS(11662), 1, ts_builtin_sym_end, - [175257] = 2, + [186330] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8434), 1, + ACTIONS(11664), 1, anon_sym_RBRACE3, - [175264] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9919), 1, - anon_sym_fi, - [175271] = 2, + [186337] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11052), 1, - anon_sym_BQUOTE, - [175278] = 2, + ACTIONS(11620), 1, + anon_sym_RPAREN, + [186344] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11054), 1, - anon_sym_BQUOTE, - [175285] = 2, + ACTIONS(11666), 1, + anon_sym_RBRACE3, + [186351] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11056), 1, - anon_sym_esac, - [175292] = 2, + ACTIONS(11668), 1, + anon_sym_RBRACE3, + [186358] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11058), 1, - anon_sym_esac, - [175299] = 2, + ACTIONS(11670), 1, + anon_sym_RPAREN, + [186365] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11060), 1, + ACTIONS(11672), 1, anon_sym_RBRACE2, - [175306] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11062), 1, - sym_heredoc_start, - [175313] = 2, + [186372] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11064), 1, + ACTIONS(11674), 1, anon_sym_RBRACE3, - [175320] = 2, + [186379] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11066), 1, - sym_heredoc_start, - [175327] = 2, + ACTIONS(11676), 1, + anon_sym_RPAREN, + [186386] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11068), 1, - anon_sym_RPAREN, - [175334] = 2, + ACTIONS(11678), 1, + anon_sym_BQUOTE, + [186393] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11070), 1, + ACTIONS(11680), 1, anon_sym_BQUOTE, - [175341] = 2, + [186400] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11072), 1, + ACTIONS(11682), 1, anon_sym_BQUOTE, - [175348] = 2, + [186407] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11070), 1, + ACTIONS(11678), 1, anon_sym_RPAREN, - [175355] = 2, + [186414] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8825), 1, - anon_sym_RBRACE3, - [175362] = 2, + ACTIONS(11670), 1, + anon_sym_BQUOTE, + [186421] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11074), 1, - anon_sym_then, - [175369] = 2, + ACTIONS(11684), 1, + anon_sym_RBRACE3, + [186428] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9911), 1, - anon_sym_fi, - [175376] = 2, + ACTIONS(11686), 1, + anon_sym_RPAREN, + [186435] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11076), 1, - anon_sym_esac, - [175383] = 2, + ACTIONS(11688), 1, + anon_sym_RBRACE2, + [186442] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11042), 1, - anon_sym_RPAREN, - [175390] = 2, + ACTIONS(11690), 1, + anon_sym_RBRACE3, + [186449] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11078), 1, - anon_sym_esac, - [175397] = 2, + ACTIONS(11692), 1, + anon_sym_RBRACE2, + [186456] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11080), 1, - anon_sym_fi, - [175404] = 2, + ACTIONS(11694), 1, + anon_sym_RBRACE2, + [186463] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11082), 1, - anon_sym_esac, - [175411] = 2, + ACTIONS(11696), 1, + anon_sym_RBRACE3, + [186470] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11084), 1, - anon_sym_BQUOTE, - [175418] = 2, + ACTIONS(11698), 1, + anon_sym_RPAREN, + [186477] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11086), 1, - anon_sym_esac, - [175425] = 2, + ACTIONS(11700), 1, + sym_word, + [186484] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11088), 1, - anon_sym_esac, - [175432] = 2, + ACTIONS(11702), 1, + anon_sym_BQUOTE, + [186491] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11090), 1, - anon_sym_esac, - [175439] = 2, + ACTIONS(11704), 1, + anon_sym_BQUOTE, + [186498] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11092), 1, - anon_sym_esac, - [175446] = 2, + ACTIONS(11702), 1, + anon_sym_RPAREN, + [186505] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11094), 1, - anon_sym_esac, - [175453] = 2, + ACTIONS(11706), 1, + anon_sym_RBRACE3, + [186512] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11096), 1, - anon_sym_esac, - [175460] = 2, + ACTIONS(11708), 1, + anon_sym_BQUOTE, + [186519] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11098), 1, - anon_sym_esac, - [175467] = 2, + ACTIONS(11710), 1, + anon_sym_DOT_DOT, + [186526] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11100), 1, - sym_word, - [175474] = 2, + ACTIONS(11712), 1, + anon_sym_then, + [186533] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11102), 1, - anon_sym_esac, - [175481] = 2, + ACTIONS(11714), 1, + anon_sym_RBRACE3, + [186540] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11104), 1, - anon_sym_fi, - [175488] = 2, + ACTIONS(11716), 1, + sym_heredoc_start, + [186547] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8659), 1, + ACTIONS(11718), 1, anon_sym_RBRACE3, - [175495] = 2, + [186554] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11106), 1, + ACTIONS(11720), 1, anon_sym_RBRACE3, - [175502] = 2, + [186561] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10330), 1, - aux_sym__simple_variable_name_token1, - [175509] = 2, + ACTIONS(11722), 1, + anon_sym_RBRACE2, + [186568] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11108), 1, - anon_sym_esac, - [175516] = 2, + ACTIONS(11724), 1, + anon_sym_RBRACE3, + [186575] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11110), 1, - anon_sym_esac, - [175523] = 2, + ACTIONS(11726), 1, + sym_heredoc_start, + [186582] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11112), 1, - anon_sym_DOT_DOT, - [175530] = 2, + ACTIONS(11728), 1, + anon_sym_RPAREN, + [186589] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11030), 1, + ACTIONS(11730), 1, anon_sym_RPAREN, - [175537] = 2, + [186596] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9909), 1, - anon_sym_fi, - [175544] = 2, + ACTIONS(11732), 1, + anon_sym_RBRACE2, + [186603] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11114), 1, + ACTIONS(11734), 1, anon_sym_RBRACE3, - [175551] = 2, + [186610] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11116), 1, - anon_sym_esac, - [175558] = 2, + ACTIONS(11736), 1, + anon_sym_BQUOTE, + [186617] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8669), 1, + ACTIONS(11738), 1, anon_sym_RBRACE3, - [175565] = 2, + [186624] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11118), 1, - anon_sym_esac, - [175572] = 2, + ACTIONS(11618), 1, + anon_sym_RPAREN, + [186631] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9929), 1, - anon_sym_fi, - [175579] = 2, + ACTIONS(11740), 1, + anon_sym_RPAREN, + [186638] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11120), 1, - anon_sym_RBRACE2, - [175586] = 2, + ACTIONS(11742), 1, + anon_sym_RBRACE3, + [186645] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(6859), 1, - anon_sym_RBRACK, - [175593] = 2, + ACTIONS(11744), 1, + anon_sym_DOT_DOT, + [186652] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(6857), 1, - anon_sym_RBRACK, - [175600] = 2, + ACTIONS(11746), 1, + anon_sym_BQUOTE, + [186659] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11122), 1, + ACTIONS(11740), 1, anon_sym_BQUOTE, - [175607] = 2, + [186666] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11124), 1, - anon_sym_RPAREN, - [175614] = 2, + ACTIONS(11748), 1, + anon_sym_BQUOTE, + [186673] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11126), 1, + ACTIONS(11750), 1, anon_sym_BQUOTE, - [175621] = 2, + [186680] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10322), 1, - aux_sym__simple_variable_name_token1, - [175628] = 2, + ACTIONS(11752), 1, + anon_sym_RPAREN, + [186687] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11054), 1, - anon_sym_RPAREN, - [175635] = 2, + ACTIONS(11754), 1, + anon_sym_RBRACE2, + [186694] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10326), 1, - aux_sym__simple_variable_name_token1, - [175642] = 2, + ACTIONS(11756), 1, + anon_sym_RBRACE3, + [186701] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11128), 1, + ACTIONS(11758), 1, sym_word, - [175649] = 2, + [186708] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11130), 1, - sym_heredoc_start, - [175656] = 2, + ACTIONS(11760), 1, + anon_sym_RPAREN, + [186715] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11132), 1, - anon_sym_DOT_DOT, - [175663] = 2, + ACTIONS(11730), 1, + anon_sym_BQUOTE, + [186722] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11134), 1, - anon_sym_RBRACE3, - [175670] = 2, + ACTIONS(11762), 1, + anon_sym_RPAREN, + [186729] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11136), 1, - anon_sym_in, - [175677] = 2, + ACTIONS(11764), 1, + anon_sym_BQUOTE, + [186736] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11138), 1, - anon_sym_in, - [175684] = 2, + ACTIONS(1316), 1, + anon_sym_RBRACE3, + [186743] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11122), 1, - anon_sym_RPAREN, - [175691] = 2, + ACTIONS(11766), 1, + anon_sym_DOT_DOT, + [186750] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11140), 1, + ACTIONS(11768), 1, anon_sym_DOT_DOT, - [175698] = 2, + [186757] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11142), 1, + ACTIONS(11770), 1, anon_sym_DOT_DOT, - [175705] = 2, + [186764] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11144), 1, + ACTIONS(11772), 1, anon_sym_DOT_DOT, - [175712] = 2, + [186771] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11146), 1, + ACTIONS(11774), 1, anon_sym_DOT_DOT, - [175719] = 2, + [186778] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11148), 1, + ACTIONS(11776), 1, anon_sym_DOT_DOT, - [175726] = 2, + [186785] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11150), 1, + ACTIONS(11778), 1, anon_sym_DOT_DOT, - [175733] = 2, + [186792] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11152), 1, + ACTIONS(11780), 1, anon_sym_DOT_DOT, - [175740] = 2, + [186799] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11154), 1, + ACTIONS(11782), 1, anon_sym_DOT_DOT, - [175747] = 2, + [186806] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11156), 1, + ACTIONS(11784), 1, anon_sym_DOT_DOT, - [175754] = 2, + [186813] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11158), 1, + ACTIONS(11786), 1, anon_sym_DOT_DOT, - [175761] = 2, + [186820] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11160), 1, + ACTIONS(11788), 1, anon_sym_DOT_DOT, - [175768] = 2, + [186827] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11162), 1, + ACTIONS(11790), 1, anon_sym_DOT_DOT, - [175775] = 2, + [186834] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11164), 1, + ACTIONS(11792), 1, anon_sym_DOT_DOT, - [175782] = 2, + [186841] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11166), 1, + ACTIONS(11794), 1, anon_sym_DOT_DOT, - [175789] = 2, + [186848] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11168), 1, + ACTIONS(11796), 1, anon_sym_DOT_DOT, - [175796] = 2, + [186855] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11170), 1, + ACTIONS(11798), 1, anon_sym_DOT_DOT, - [175803] = 2, + [186862] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11172), 1, + ACTIONS(11800), 1, anon_sym_DOT_DOT, - [175810] = 2, + [186869] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11174), 1, + ACTIONS(11802), 1, anon_sym_DOT_DOT, - [175817] = 2, + [186876] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11176), 1, + ACTIONS(11804), 1, anon_sym_DOT_DOT, - [175824] = 2, + [186883] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11178), 1, + ACTIONS(11806), 1, anon_sym_DOT_DOT, - [175831] = 2, + [186890] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11180), 1, + ACTIONS(11808), 1, anon_sym_DOT_DOT, - [175838] = 2, + [186897] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11182), 1, + ACTIONS(11810), 1, anon_sym_DOT_DOT, - [175845] = 2, + [186904] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11184), 1, + ACTIONS(11812), 1, anon_sym_DOT_DOT, - [175852] = 2, + [186911] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11186), 1, + ACTIONS(11814), 1, anon_sym_DOT_DOT, - [175859] = 2, + [186918] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11188), 1, + ACTIONS(11816), 1, anon_sym_DOT_DOT, - [175866] = 2, + [186925] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11190), 1, + ACTIONS(11818), 1, anon_sym_DOT_DOT, - [175873] = 2, + [186932] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11192), 1, + ACTIONS(11820), 1, anon_sym_DOT_DOT, - [175880] = 2, + [186939] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11194), 1, + ACTIONS(11822), 1, anon_sym_DOT_DOT, - [175887] = 2, + [186946] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11196), 1, + ACTIONS(11824), 1, anon_sym_DOT_DOT, - [175894] = 2, + [186953] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11198), 1, + ACTIONS(11826), 1, anon_sym_DOT_DOT, - [175901] = 2, + [186960] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11200), 1, + ACTIONS(11828), 1, anon_sym_DOT_DOT, - [175908] = 2, + [186967] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11202), 1, + ACTIONS(11830), 1, anon_sym_DOT_DOT, - [175915] = 2, + [186974] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11204), 1, + ACTIONS(11832), 1, anon_sym_DOT_DOT, - [175922] = 2, + [186981] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11206), 1, + ACTIONS(11834), 1, anon_sym_DOT_DOT, - [175929] = 2, + [186988] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11208), 1, + ACTIONS(11836), 1, anon_sym_DOT_DOT, - [175936] = 2, + [186995] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11210), 1, + ACTIONS(11838), 1, anon_sym_DOT_DOT, - [175943] = 2, + [187002] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11212), 1, + ACTIONS(11840), 1, anon_sym_DOT_DOT, - [175950] = 2, + [187009] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(11842), 1, anon_sym_DOT_DOT, - [175957] = 2, + [187016] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11216), 1, + ACTIONS(11844), 1, anon_sym_DOT_DOT, - [175964] = 2, + [187023] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11218), 1, + ACTIONS(11846), 1, anon_sym_DOT_DOT, - [175971] = 2, + [187030] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11220), 1, + ACTIONS(11848), 1, anon_sym_DOT_DOT, - [175978] = 2, + [187037] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11222), 1, + ACTIONS(11850), 1, anon_sym_DOT_DOT, - [175985] = 2, + [187044] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11224), 1, - anon_sym_DOT_DOT, - [175992] = 2, + ACTIONS(11852), 1, + aux_sym_brace_expression_token1, + [187051] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11226), 1, - anon_sym_DOT_DOT, - [175999] = 2, + ACTIONS(11854), 1, + sym_word, + [187058] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11228), 1, - anon_sym_DOT_DOT, - [176006] = 2, + ACTIONS(11856), 1, + anon_sym_RPAREN, + [187065] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11230), 1, - aux_sym_brace_expression_token1, - [176013] = 2, + ACTIONS(11858), 1, + anon_sym_BQUOTE, + [187072] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11232), 1, + ACTIONS(1304), 1, + anon_sym_RBRACE3, + [187079] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11764), 1, + anon_sym_RPAREN, + [187086] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11860), 1, aux_sym_brace_expression_token1, - [176020] = 2, + [187093] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11234), 1, - sym_heredoc_start, - [176027] = 2, + ACTIONS(11862), 1, + sym_word, + [187100] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11236), 1, + ACTIONS(11864), 1, anon_sym_RPAREN, - [176034] = 2, + [187107] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11238), 1, - aux_sym_brace_expression_token1, - [176041] = 2, + ACTIONS(11866), 1, + anon_sym_RBRACE3, + [187114] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11240), 1, + ACTIONS(10828), 1, + aux_sym__simple_variable_name_token1, + [187121] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1296), 1, + anon_sym_RBRACE3, + [187128] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11868), 1, aux_sym_brace_expression_token1, - [176048] = 2, + [187135] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11242), 1, + ACTIONS(11870), 1, + sym_word, + [187142] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11872), 1, + anon_sym_RPAREN, + [187149] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11294), 1, + anon_sym_BQUOTE, + [187156] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11874), 1, aux_sym_brace_expression_token1, - [176055] = 2, + [187163] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11244), 1, + ACTIONS(11876), 1, + sym_word, + [187170] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11878), 1, + anon_sym_RPAREN, + [187177] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11880), 1, aux_sym_brace_expression_token1, - [176062] = 2, + [187184] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11246), 1, + ACTIONS(11882), 1, aux_sym_brace_expression_token1, - [176069] = 2, + [187191] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11248), 1, + ACTIONS(11884), 1, aux_sym_brace_expression_token1, - [176076] = 2, + [187198] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11250), 1, + ACTIONS(11886), 1, aux_sym_brace_expression_token1, - [176083] = 2, + [187205] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11252), 1, + ACTIONS(11888), 1, aux_sym_brace_expression_token1, - [176090] = 2, + [187212] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11254), 1, + ACTIONS(11890), 1, aux_sym_brace_expression_token1, - [176097] = 2, + [187219] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11256), 1, + ACTIONS(11892), 1, aux_sym_brace_expression_token1, - [176104] = 2, + [187226] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11258), 1, + ACTIONS(11894), 1, aux_sym_brace_expression_token1, - [176111] = 2, + [187233] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11260), 1, + ACTIONS(11896), 1, aux_sym_brace_expression_token1, - [176118] = 2, + [187240] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11262), 1, + ACTIONS(11898), 1, aux_sym_brace_expression_token1, - [176125] = 2, + [187247] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11264), 1, + ACTIONS(11900), 1, aux_sym_brace_expression_token1, - [176132] = 2, + [187254] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11266), 1, + ACTIONS(11902), 1, aux_sym_brace_expression_token1, - [176139] = 2, + [187261] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11268), 1, + ACTIONS(11904), 1, aux_sym_brace_expression_token1, - [176146] = 2, + [187268] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11270), 1, + ACTIONS(11906), 1, aux_sym_brace_expression_token1, - [176153] = 2, + [187275] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11272), 1, + ACTIONS(11908), 1, aux_sym_brace_expression_token1, - [176160] = 2, + [187282] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11274), 1, + ACTIONS(11910), 1, aux_sym_brace_expression_token1, - [176167] = 2, + [187289] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11276), 1, + ACTIONS(11912), 1, aux_sym_brace_expression_token1, - [176174] = 2, + [187296] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11278), 1, + ACTIONS(11914), 1, aux_sym_brace_expression_token1, - [176181] = 2, + [187303] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11280), 1, + ACTIONS(11916), 1, aux_sym_brace_expression_token1, - [176188] = 2, + [187310] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11282), 1, + ACTIONS(11918), 1, aux_sym_brace_expression_token1, - [176195] = 2, + [187317] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11284), 1, + ACTIONS(11920), 1, aux_sym_brace_expression_token1, - [176202] = 2, + [187324] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11286), 1, + ACTIONS(11922), 1, aux_sym_brace_expression_token1, - [176209] = 2, + [187331] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11288), 1, + ACTIONS(11924), 1, aux_sym_brace_expression_token1, - [176216] = 2, + [187338] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11290), 1, + ACTIONS(11926), 1, aux_sym_brace_expression_token1, - [176223] = 2, + [187345] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11292), 1, + ACTIONS(11928), 1, aux_sym_brace_expression_token1, - [176230] = 2, + [187352] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11294), 1, + ACTIONS(11930), 1, aux_sym_brace_expression_token1, - [176237] = 2, + [187359] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11296), 1, + ACTIONS(11932), 1, aux_sym_brace_expression_token1, - [176244] = 2, + [187366] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11298), 1, + ACTIONS(11934), 1, aux_sym_brace_expression_token1, - [176251] = 2, + [187373] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11300), 1, + ACTIONS(11936), 1, aux_sym_brace_expression_token1, - [176258] = 2, + [187380] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11302), 1, + ACTIONS(11938), 1, aux_sym_brace_expression_token1, - [176265] = 2, + [187387] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11304), 1, + ACTIONS(11940), 1, aux_sym_brace_expression_token1, - [176272] = 2, + [187394] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11306), 1, + ACTIONS(11942), 1, aux_sym_brace_expression_token1, - [176279] = 2, + [187401] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11308), 1, + ACTIONS(11944), 1, aux_sym_brace_expression_token1, - [176286] = 2, + [187408] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11310), 1, + ACTIONS(11946), 1, aux_sym_brace_expression_token1, - [176293] = 2, + [187415] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11312), 1, + ACTIONS(11948), 1, aux_sym_brace_expression_token1, - [176300] = 2, + [187422] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11314), 1, + ACTIONS(11950), 1, aux_sym_brace_expression_token1, - [176307] = 2, + [187429] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11316), 1, + ACTIONS(11952), 1, aux_sym_brace_expression_token1, - [176314] = 2, + [187436] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11318), 1, + ACTIONS(11954), 1, aux_sym_brace_expression_token1, - [176321] = 2, + [187443] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11320), 1, + ACTIONS(11956), 1, aux_sym_brace_expression_token1, - [176328] = 2, + [187450] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11322), 1, + ACTIONS(11958), 1, aux_sym_brace_expression_token1, - [176335] = 2, + [187457] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11324), 1, + ACTIONS(11960), 1, aux_sym_brace_expression_token1, - [176342] = 2, + [187464] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11326), 1, + ACTIONS(11962), 1, aux_sym_brace_expression_token1, - [176349] = 2, + [187471] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11328), 1, + ACTIONS(11964), 1, aux_sym_brace_expression_token1, - [176356] = 2, + [187478] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11330), 1, + ACTIONS(11966), 1, aux_sym_brace_expression_token1, + [187485] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(11968), 1, + anon_sym_RPAREN, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(436)] = 0, - [SMALL_STATE(437)] = 83, - [SMALL_STATE(438)] = 158, - [SMALL_STATE(439)] = 236, - [SMALL_STATE(440)] = 306, - [SMALL_STATE(441)] = 437, - [SMALL_STATE(442)] = 568, - [SMALL_STATE(443)] = 699, - [SMALL_STATE(444)] = 830, - [SMALL_STATE(445)] = 934, - [SMALL_STATE(446)] = 1038, - [SMALL_STATE(447)] = 1142, - [SMALL_STATE(448)] = 1245, - [SMALL_STATE(449)] = 1348, - [SMALL_STATE(450)] = 1451, - [SMALL_STATE(451)] = 1554, - [SMALL_STATE(452)] = 1657, - [SMALL_STATE(453)] = 1760, - [SMALL_STATE(454)] = 1863, - [SMALL_STATE(455)] = 1966, - [SMALL_STATE(456)] = 2068, - [SMALL_STATE(457)] = 2170, - [SMALL_STATE(458)] = 2272, - [SMALL_STATE(459)] = 2374, - [SMALL_STATE(460)] = 2476, - [SMALL_STATE(461)] = 2578, - [SMALL_STATE(462)] = 2680, - [SMALL_STATE(463)] = 2782, - [SMALL_STATE(464)] = 2884, - [SMALL_STATE(465)] = 2986, - [SMALL_STATE(466)] = 3056, - [SMALL_STATE(467)] = 3126, - [SMALL_STATE(468)] = 3228, - [SMALL_STATE(469)] = 3329, - [SMALL_STATE(470)] = 3400, - [SMALL_STATE(471)] = 3501, - [SMALL_STATE(472)] = 3598, - [SMALL_STATE(473)] = 3665, - [SMALL_STATE(474)] = 3732, - [SMALL_STATE(475)] = 3799, - [SMALL_STATE(476)] = 3894, - [SMALL_STATE(477)] = 3995, - [SMALL_STATE(478)] = 4094, - [SMALL_STATE(479)] = 4195, - [SMALL_STATE(480)] = 4296, - [SMALL_STATE(481)] = 4365, - [SMALL_STATE(482)] = 4434, - [SMALL_STATE(483)] = 4531, - [SMALL_STATE(484)] = 4632, - [SMALL_STATE(485)] = 4733, - [SMALL_STATE(486)] = 4834, - [SMALL_STATE(487)] = 4935, - [SMALL_STATE(488)] = 5034, - [SMALL_STATE(489)] = 5135, - [SMALL_STATE(490)] = 5232, - [SMALL_STATE(491)] = 5333, - [SMALL_STATE(492)] = 5404, - [SMALL_STATE(493)] = 5505, - [SMALL_STATE(494)] = 5606, - [SMALL_STATE(495)] = 5704, - [SMALL_STATE(496)] = 5772, - [SMALL_STATE(497)] = 5840, - [SMALL_STATE(498)] = 5908, - [SMALL_STATE(499)] = 5978, - [SMALL_STATE(500)] = 6046, - [SMALL_STATE(501)] = 6146, - [SMALL_STATE(502)] = 6216, - [SMALL_STATE(503)] = 6316, - [SMALL_STATE(504)] = 6412, - [SMALL_STATE(505)] = 6508, - [SMALL_STATE(506)] = 6608, - [SMALL_STATE(507)] = 6702, - [SMALL_STATE(508)] = 6802, - [SMALL_STATE(509)] = 6868, - [SMALL_STATE(510)] = 6936, - [SMALL_STATE(511)] = 7002, - [SMALL_STATE(512)] = 7096, - [SMALL_STATE(513)] = 7194, - [SMALL_STATE(514)] = 7290, - [SMALL_STATE(515)] = 7358, - [SMALL_STATE(516)] = 7452, - [SMALL_STATE(517)] = 7520, - [SMALL_STATE(518)] = 7618, - [SMALL_STATE(519)] = 7712, - [SMALL_STATE(520)] = 7780, - [SMALL_STATE(521)] = 7878, - [SMALL_STATE(522)] = 7978, - [SMALL_STATE(523)] = 8071, - [SMALL_STATE(524)] = 8166, - [SMALL_STATE(525)] = 8261, - [SMALL_STATE(526)] = 8328, - [SMALL_STATE(527)] = 8395, - [SMALL_STATE(528)] = 8462, - [SMALL_STATE(529)] = 8555, - [SMALL_STATE(530)] = 8622, - [SMALL_STATE(531)] = 8715, - [SMALL_STATE(532)] = 8780, - [SMALL_STATE(533)] = 8845, - [SMALL_STATE(534)] = 8912, - [SMALL_STATE(535)] = 8979, - [SMALL_STATE(536)] = 9046, - [SMALL_STATE(537)] = 9111, - [SMALL_STATE(538)] = 9206, - [SMALL_STATE(539)] = 9271, - [SMALL_STATE(540)] = 9366, - [SMALL_STATE(541)] = 9433, - [SMALL_STATE(542)] = 9526, - [SMALL_STATE(543)] = 9593, - [SMALL_STATE(544)] = 9660, - [SMALL_STATE(545)] = 9755, - [SMALL_STATE(546)] = 9850, - [SMALL_STATE(547)] = 9943, - [SMALL_STATE(548)] = 10005, - [SMALL_STATE(549)] = 10067, - [SMALL_STATE(550)] = 10133, - [SMALL_STATE(551)] = 10199, - [SMALL_STATE(552)] = 10291, - [SMALL_STATE(553)] = 10357, - [SMALL_STATE(554)] = 10423, - [SMALL_STATE(555)] = 10515, - [SMALL_STATE(556)] = 10579, - [SMALL_STATE(557)] = 10671, - [SMALL_STATE(558)] = 10737, - [SMALL_STATE(559)] = 10803, - [SMALL_STATE(560)] = 10897, - [SMALL_STATE(561)] = 10955, - [SMALL_STATE(562)] = 11021, - [SMALL_STATE(563)] = 11087, - [SMALL_STATE(564)] = 11181, - [SMALL_STATE(565)] = 11273, - [SMALL_STATE(566)] = 11339, - [SMALL_STATE(567)] = 11401, - [SMALL_STATE(568)] = 11467, - [SMALL_STATE(569)] = 11529, - [SMALL_STATE(570)] = 11623, - [SMALL_STATE(571)] = 11715, - [SMALL_STATE(572)] = 11781, - [SMALL_STATE(573)] = 11873, - [SMALL_STATE(574)] = 11935, - [SMALL_STATE(575)] = 12001, - [SMALL_STATE(576)] = 12093, - [SMALL_STATE(577)] = 12159, - [SMALL_STATE(578)] = 12225, - [SMALL_STATE(579)] = 12287, - [SMALL_STATE(580)] = 12351, - [SMALL_STATE(581)] = 12409, - [SMALL_STATE(582)] = 12475, - [SMALL_STATE(583)] = 12541, - [SMALL_STATE(584)] = 12607, - [SMALL_STATE(585)] = 12669, - [SMALL_STATE(586)] = 12761, - [SMALL_STATE(587)] = 12827, - [SMALL_STATE(588)] = 12889, - [SMALL_STATE(589)] = 12955, - [SMALL_STATE(590)] = 13021, - [SMALL_STATE(591)] = 13113, - [SMALL_STATE(592)] = 13177, - [SMALL_STATE(593)] = 13292, - [SMALL_STATE(594)] = 13357, - [SMALL_STATE(595)] = 13420, - [SMALL_STATE(596)] = 13535, - [SMALL_STATE(597)] = 13650, - [SMALL_STATE(598)] = 13765, - [SMALL_STATE(599)] = 13830, - [SMALL_STATE(600)] = 13895, - [SMALL_STATE(601)] = 14010, - [SMALL_STATE(602)] = 14125, - [SMALL_STATE(603)] = 14190, - [SMALL_STATE(604)] = 14255, - [SMALL_STATE(605)] = 14354, - [SMALL_STATE(606)] = 14445, - [SMALL_STATE(607)] = 14510, - [SMALL_STATE(608)] = 14575, - [SMALL_STATE(609)] = 14666, - [SMALL_STATE(610)] = 14731, - [SMALL_STATE(611)] = 14832, - [SMALL_STATE(612)] = 14931, - [SMALL_STATE(613)] = 14996, - [SMALL_STATE(614)] = 15061, - [SMALL_STATE(615)] = 15160, - [SMALL_STATE(616)] = 15225, - [SMALL_STATE(617)] = 15314, - [SMALL_STATE(618)] = 15403, - [SMALL_STATE(619)] = 15468, - [SMALL_STATE(620)] = 15533, - [SMALL_STATE(621)] = 15624, - [SMALL_STATE(622)] = 15725, - [SMALL_STATE(623)] = 15790, - [SMALL_STATE(624)] = 15905, - [SMALL_STATE(625)] = 15983, - [SMALL_STATE(626)] = 16051, - [SMALL_STATE(627)] = 16149, - [SMALL_STATE(628)] = 16247, - [SMALL_STATE(629)] = 16325, - [SMALL_STATE(630)] = 16423, - [SMALL_STATE(631)] = 16487, - [SMALL_STATE(632)] = 16585, - [SMALL_STATE(633)] = 16649, - [SMALL_STATE(634)] = 16713, - [SMALL_STATE(635)] = 16777, - [SMALL_STATE(636)] = 16875, - [SMALL_STATE(637)] = 16943, - [SMALL_STATE(638)] = 17000, - [SMALL_STATE(639)] = 17057, - [SMALL_STATE(640)] = 17120, - [SMALL_STATE(641)] = 17177, - [SMALL_STATE(642)] = 17254, - [SMALL_STATE(643)] = 17311, - [SMALL_STATE(644)] = 17388, - [SMALL_STATE(645)] = 17455, - [SMALL_STATE(646)] = 17512, - [SMALL_STATE(647)] = 17567, - [SMALL_STATE(648)] = 17628, - [SMALL_STATE(649)] = 17683, - [SMALL_STATE(650)] = 17750, - [SMALL_STATE(651)] = 17807, - [SMALL_STATE(652)] = 17868, - [SMALL_STATE(653)] = 17931, - [SMALL_STATE(654)] = 17994, - [SMALL_STATE(655)] = 18055, - [SMALL_STATE(656)] = 18118, - [SMALL_STATE(657)] = 18209, - [SMALL_STATE(658)] = 18266, - [SMALL_STATE(659)] = 18327, - [SMALL_STATE(660)] = 18384, - [SMALL_STATE(661)] = 18439, - [SMALL_STATE(662)] = 18502, - [SMALL_STATE(663)] = 18564, - [SMALL_STATE(664)] = 18620, - [SMALL_STATE(665)] = 18680, - [SMALL_STATE(666)] = 18756, - [SMALL_STATE(667)] = 18816, - [SMALL_STATE(668)] = 18876, - [SMALL_STATE(669)] = 18936, - [SMALL_STATE(670)] = 18990, - [SMALL_STATE(671)] = 19050, - [SMALL_STATE(672)] = 19110, - [SMALL_STATE(673)] = 19200, - [SMALL_STATE(674)] = 19260, - [SMALL_STATE(675)] = 19320, - [SMALL_STATE(676)] = 19412, - [SMALL_STATE(677)] = 19472, - [SMALL_STATE(678)] = 19564, - [SMALL_STATE(679)] = 19620, - [SMALL_STATE(680)] = 19680, - [SMALL_STATE(681)] = 19756, - [SMALL_STATE(682)] = 19846, - [SMALL_STATE(683)] = 19912, - [SMALL_STATE(684)] = 19980, - [SMALL_STATE(685)] = 20040, - [SMALL_STATE(686)] = 20106, - [SMALL_STATE(687)] = 20172, - [SMALL_STATE(688)] = 20232, - [SMALL_STATE(689)] = 20292, - [SMALL_STATE(690)] = 20352, - [SMALL_STATE(691)] = 20412, - [SMALL_STATE(692)] = 20472, - [SMALL_STATE(693)] = 20548, - [SMALL_STATE(694)] = 20608, - [SMALL_STATE(695)] = 20700, - [SMALL_STATE(696)] = 20754, - [SMALL_STATE(697)] = 20814, - [SMALL_STATE(698)] = 20874, - [SMALL_STATE(699)] = 20930, - [SMALL_STATE(700)] = 20992, - [SMALL_STATE(701)] = 21052, - [SMALL_STATE(702)] = 21108, - [SMALL_STATE(703)] = 21168, - [SMALL_STATE(704)] = 21258, - [SMALL_STATE(705)] = 21348, - [SMALL_STATE(706)] = 21410, - [SMALL_STATE(707)] = 21486, - [SMALL_STATE(708)] = 21546, - [SMALL_STATE(709)] = 21599, - [SMALL_STATE(710)] = 21658, - [SMALL_STATE(711)] = 21731, - [SMALL_STATE(712)] = 21784, - [SMALL_STATE(713)] = 21837, - [SMALL_STATE(714)] = 21896, - [SMALL_STATE(715)] = 21969, - [SMALL_STATE(716)] = 22058, - [SMALL_STATE(717)] = 22111, - [SMALL_STATE(718)] = 22172, - [SMALL_STATE(719)] = 22245, - [SMALL_STATE(720)] = 22334, - [SMALL_STATE(721)] = 22423, - [SMALL_STATE(722)] = 22496, - [SMALL_STATE(723)] = 22555, - [SMALL_STATE(724)] = 22608, - [SMALL_STATE(725)] = 22667, - [SMALL_STATE(726)] = 22726, - [SMALL_STATE(727)] = 22787, - [SMALL_STATE(728)] = 22848, - [SMALL_STATE(729)] = 22907, - [SMALL_STATE(730)] = 22972, - [SMALL_STATE(731)] = 23043, - [SMALL_STATE(732)] = 23096, - [SMALL_STATE(733)] = 23155, - [SMALL_STATE(734)] = 23220, - [SMALL_STATE(735)] = 23279, - [SMALL_STATE(736)] = 23344, - [SMALL_STATE(737)] = 23419, - [SMALL_STATE(738)] = 23478, - [SMALL_STATE(739)] = 23543, - [SMALL_STATE(740)] = 23596, - [SMALL_STATE(741)] = 23649, - [SMALL_STATE(742)] = 23720, - [SMALL_STATE(743)] = 23779, - [SMALL_STATE(744)] = 23840, - [SMALL_STATE(745)] = 23893, - [SMALL_STATE(746)] = 23954, - [SMALL_STATE(747)] = 24013, - [SMALL_STATE(748)] = 24072, - [SMALL_STATE(749)] = 24131, - [SMALL_STATE(750)] = 24184, - [SMALL_STATE(751)] = 24257, - [SMALL_STATE(752)] = 24352, - [SMALL_STATE(753)] = 24411, - [SMALL_STATE(754)] = 24470, - [SMALL_STATE(755)] = 24531, - [SMALL_STATE(756)] = 24590, - [SMALL_STATE(757)] = 24643, - [SMALL_STATE(758)] = 24704, - [SMALL_STATE(759)] = 24765, - [SMALL_STATE(760)] = 24818, - [SMALL_STATE(761)] = 24871, - [SMALL_STATE(762)] = 24930, - [SMALL_STATE(763)] = 25005, - [SMALL_STATE(764)] = 25058, - [SMALL_STATE(765)] = 25117, - [SMALL_STATE(766)] = 25170, - [SMALL_STATE(767)] = 25223, - [SMALL_STATE(768)] = 25276, - [SMALL_STATE(769)] = 25335, - [SMALL_STATE(770)] = 25408, - [SMALL_STATE(771)] = 25503, - [SMALL_STATE(772)] = 25576, - [SMALL_STATE(773)] = 25635, - [SMALL_STATE(774)] = 25688, - [SMALL_STATE(775)] = 25746, - [SMALL_STATE(776)] = 25804, - [SMALL_STATE(777)] = 25862, - [SMALL_STATE(778)] = 25914, - [SMALL_STATE(779)] = 25966, - [SMALL_STATE(780)] = 26024, - [SMALL_STATE(781)] = 26082, - [SMALL_STATE(782)] = 26140, - [SMALL_STATE(783)] = 26198, - [SMALL_STATE(784)] = 26250, - [SMALL_STATE(785)] = 26302, - [SMALL_STATE(786)] = 26394, - [SMALL_STATE(787)] = 26452, - [SMALL_STATE(788)] = 26510, - [SMALL_STATE(789)] = 26562, - [SMALL_STATE(790)] = 26654, - [SMALL_STATE(791)] = 26746, - [SMALL_STATE(792)] = 26838, - [SMALL_STATE(793)] = 26930, - [SMALL_STATE(794)] = 26986, - [SMALL_STATE(795)] = 27044, - [SMALL_STATE(796)] = 27102, - [SMALL_STATE(797)] = 27194, - [SMALL_STATE(798)] = 27286, - [SMALL_STATE(799)] = 27344, - [SMALL_STATE(800)] = 27402, - [SMALL_STATE(801)] = 27460, - [SMALL_STATE(802)] = 27518, - [SMALL_STATE(803)] = 27610, - [SMALL_STATE(804)] = 27668, - [SMALL_STATE(805)] = 27728, - [SMALL_STATE(806)] = 27788, - [SMALL_STATE(807)] = 27880, - [SMALL_STATE(808)] = 27936, - [SMALL_STATE(809)] = 27994, - [SMALL_STATE(810)] = 28052, - [SMALL_STATE(811)] = 28110, - [SMALL_STATE(812)] = 28170, - [SMALL_STATE(813)] = 28226, - [SMALL_STATE(814)] = 28284, - [SMALL_STATE(815)] = 28336, - [SMALL_STATE(816)] = 28388, - [SMALL_STATE(817)] = 28440, - [SMALL_STATE(818)] = 28492, - [SMALL_STATE(819)] = 28544, - [SMALL_STATE(820)] = 28596, - [SMALL_STATE(821)] = 28654, - [SMALL_STATE(822)] = 28712, - [SMALL_STATE(823)] = 28764, - [SMALL_STATE(824)] = 28820, - [SMALL_STATE(825)] = 28880, - [SMALL_STATE(826)] = 28938, - [SMALL_STATE(827)] = 28998, - [SMALL_STATE(828)] = 29050, - [SMALL_STATE(829)] = 29102, - [SMALL_STATE(830)] = 29162, - [SMALL_STATE(831)] = 29220, - [SMALL_STATE(832)] = 29278, - [SMALL_STATE(833)] = 29336, - [SMALL_STATE(834)] = 29388, - [SMALL_STATE(835)] = 29446, - [SMALL_STATE(836)] = 29498, - [SMALL_STATE(837)] = 29550, - [SMALL_STATE(838)] = 29608, - [SMALL_STATE(839)] = 29666, - [SMALL_STATE(840)] = 29718, - [SMALL_STATE(841)] = 29776, - [SMALL_STATE(842)] = 29834, - [SMALL_STATE(843)] = 29886, - [SMALL_STATE(844)] = 29938, - [SMALL_STATE(845)] = 29996, - [SMALL_STATE(846)] = 30048, - [SMALL_STATE(847)] = 30106, - [SMALL_STATE(848)] = 30158, - [SMALL_STATE(849)] = 30210, - [SMALL_STATE(850)] = 30262, - [SMALL_STATE(851)] = 30314, - [SMALL_STATE(852)] = 30372, - [SMALL_STATE(853)] = 30430, - [SMALL_STATE(854)] = 30482, - [SMALL_STATE(855)] = 30534, - [SMALL_STATE(856)] = 30586, - [SMALL_STATE(857)] = 30644, - [SMALL_STATE(858)] = 30696, - [SMALL_STATE(859)] = 30748, - [SMALL_STATE(860)] = 30806, - [SMALL_STATE(861)] = 30864, - [SMALL_STATE(862)] = 30916, - [SMALL_STATE(863)] = 30968, - [SMALL_STATE(864)] = 31020, - [SMALL_STATE(865)] = 31078, - [SMALL_STATE(866)] = 31136, - [SMALL_STATE(867)] = 31194, - [SMALL_STATE(868)] = 31252, - [SMALL_STATE(869)] = 31304, - [SMALL_STATE(870)] = 31356, - [SMALL_STATE(871)] = 31408, - [SMALL_STATE(872)] = 31459, - [SMALL_STATE(873)] = 31510, - [SMALL_STATE(874)] = 31561, - [SMALL_STATE(875)] = 31612, - [SMALL_STATE(876)] = 31663, - [SMALL_STATE(877)] = 31714, - [SMALL_STATE(878)] = 31765, - [SMALL_STATE(879)] = 31816, - [SMALL_STATE(880)] = 31867, - [SMALL_STATE(881)] = 31918, - [SMALL_STATE(882)] = 31969, - [SMALL_STATE(883)] = 32020, - [SMALL_STATE(884)] = 32071, - [SMALL_STATE(885)] = 32122, - [SMALL_STATE(886)] = 32173, - [SMALL_STATE(887)] = 32270, - [SMALL_STATE(888)] = 32321, - [SMALL_STATE(889)] = 32372, - [SMALL_STATE(890)] = 32423, - [SMALL_STATE(891)] = 32474, - [SMALL_STATE(892)] = 32531, - [SMALL_STATE(893)] = 32582, - [SMALL_STATE(894)] = 32639, - [SMALL_STATE(895)] = 32736, - [SMALL_STATE(896)] = 32787, - [SMALL_STATE(897)] = 32842, - [SMALL_STATE(898)] = 32893, - [SMALL_STATE(899)] = 32944, - [SMALL_STATE(900)] = 32995, - [SMALL_STATE(901)] = 33046, - [SMALL_STATE(902)] = 33097, - [SMALL_STATE(903)] = 33154, - [SMALL_STATE(904)] = 33211, - [SMALL_STATE(905)] = 33268, - [SMALL_STATE(906)] = 33319, - [SMALL_STATE(907)] = 33370, - [SMALL_STATE(908)] = 33427, - [SMALL_STATE(909)] = 33478, - [SMALL_STATE(910)] = 33535, - [SMALL_STATE(911)] = 33586, - [SMALL_STATE(912)] = 33675, - [SMALL_STATE(913)] = 33726, - [SMALL_STATE(914)] = 33783, - [SMALL_STATE(915)] = 33834, - [SMALL_STATE(916)] = 33885, - [SMALL_STATE(917)] = 33936, - [SMALL_STATE(918)] = 33987, - [SMALL_STATE(919)] = 34038, - [SMALL_STATE(920)] = 34089, - [SMALL_STATE(921)] = 34140, - [SMALL_STATE(922)] = 34191, - [SMALL_STATE(923)] = 34242, - [SMALL_STATE(924)] = 34299, - [SMALL_STATE(925)] = 34350, - [SMALL_STATE(926)] = 34407, - [SMALL_STATE(927)] = 34458, - [SMALL_STATE(928)] = 34509, - [SMALL_STATE(929)] = 34560, - [SMALL_STATE(930)] = 34611, - [SMALL_STATE(931)] = 34662, - [SMALL_STATE(932)] = 34719, - [SMALL_STATE(933)] = 34776, - [SMALL_STATE(934)] = 34833, - [SMALL_STATE(935)] = 34888, - [SMALL_STATE(936)] = 34939, - [SMALL_STATE(937)] = 34996, - [SMALL_STATE(938)] = 35047, - [SMALL_STATE(939)] = 35104, - [SMALL_STATE(940)] = 35155, - [SMALL_STATE(941)] = 35212, - [SMALL_STATE(942)] = 35269, - [SMALL_STATE(943)] = 35320, - [SMALL_STATE(944)] = 35371, - [SMALL_STATE(945)] = 35428, - [SMALL_STATE(946)] = 35479, - [SMALL_STATE(947)] = 35530, - [SMALL_STATE(948)] = 35585, - [SMALL_STATE(949)] = 35636, - [SMALL_STATE(950)] = 35691, - [SMALL_STATE(951)] = 35742, - [SMALL_STATE(952)] = 35793, - [SMALL_STATE(953)] = 35844, - [SMALL_STATE(954)] = 35895, - [SMALL_STATE(955)] = 35946, - [SMALL_STATE(956)] = 36003, - [SMALL_STATE(957)] = 36060, - [SMALL_STATE(958)] = 36117, - [SMALL_STATE(959)] = 36174, - [SMALL_STATE(960)] = 36231, - [SMALL_STATE(961)] = 36282, - [SMALL_STATE(962)] = 36379, - [SMALL_STATE(963)] = 36436, - [SMALL_STATE(964)] = 36493, - [SMALL_STATE(965)] = 36590, - [SMALL_STATE(966)] = 36641, - [SMALL_STATE(967)] = 36692, - [SMALL_STATE(968)] = 36743, - [SMALL_STATE(969)] = 36800, - [SMALL_STATE(970)] = 36855, - [SMALL_STATE(971)] = 36906, - [SMALL_STATE(972)] = 36957, - [SMALL_STATE(973)] = 37008, - [SMALL_STATE(974)] = 37059, - [SMALL_STATE(975)] = 37110, - [SMALL_STATE(976)] = 37207, - [SMALL_STATE(977)] = 37264, - [SMALL_STATE(978)] = 37315, - [SMALL_STATE(979)] = 37412, - [SMALL_STATE(980)] = 37463, - [SMALL_STATE(981)] = 37514, - [SMALL_STATE(982)] = 37565, - [SMALL_STATE(983)] = 37616, - [SMALL_STATE(984)] = 37667, - [SMALL_STATE(985)] = 37718, - [SMALL_STATE(986)] = 37769, - [SMALL_STATE(987)] = 37820, - [SMALL_STATE(988)] = 37877, - [SMALL_STATE(989)] = 37928, - [SMALL_STATE(990)] = 37985, - [SMALL_STATE(991)] = 38036, - [SMALL_STATE(992)] = 38087, - [SMALL_STATE(993)] = 38144, - [SMALL_STATE(994)] = 38195, - [SMALL_STATE(995)] = 38246, - [SMALL_STATE(996)] = 38297, - [SMALL_STATE(997)] = 38348, - [SMALL_STATE(998)] = 38399, - [SMALL_STATE(999)] = 38450, - [SMALL_STATE(1000)] = 38507, - [SMALL_STATE(1001)] = 38558, - [SMALL_STATE(1002)] = 38615, - [SMALL_STATE(1003)] = 38666, - [SMALL_STATE(1004)] = 38723, - [SMALL_STATE(1005)] = 38780, - [SMALL_STATE(1006)] = 38837, - [SMALL_STATE(1007)] = 38892, - [SMALL_STATE(1008)] = 38949, - [SMALL_STATE(1009)] = 39000, - [SMALL_STATE(1010)] = 39055, - [SMALL_STATE(1011)] = 39112, - [SMALL_STATE(1012)] = 39163, - [SMALL_STATE(1013)] = 39220, - [SMALL_STATE(1014)] = 39277, - [SMALL_STATE(1015)] = 39334, - [SMALL_STATE(1016)] = 39391, - [SMALL_STATE(1017)] = 39442, - [SMALL_STATE(1018)] = 39499, - [SMALL_STATE(1019)] = 39556, - [SMALL_STATE(1020)] = 39613, - [SMALL_STATE(1021)] = 39664, - [SMALL_STATE(1022)] = 39715, - [SMALL_STATE(1023)] = 39772, - [SMALL_STATE(1024)] = 39869, - [SMALL_STATE(1025)] = 39920, - [SMALL_STATE(1026)] = 39970, - [SMALL_STATE(1027)] = 40020, - [SMALL_STATE(1028)] = 40070, - [SMALL_STATE(1029)] = 40120, - [SMALL_STATE(1030)] = 40170, - [SMALL_STATE(1031)] = 40220, - [SMALL_STATE(1032)] = 40270, - [SMALL_STATE(1033)] = 40320, - [SMALL_STATE(1034)] = 40370, - [SMALL_STATE(1035)] = 40420, - [SMALL_STATE(1036)] = 40470, - [SMALL_STATE(1037)] = 40520, - [SMALL_STATE(1038)] = 40570, - [SMALL_STATE(1039)] = 40624, - [SMALL_STATE(1040)] = 40674, - [SMALL_STATE(1041)] = 40724, - [SMALL_STATE(1042)] = 40774, - [SMALL_STATE(1043)] = 40824, - [SMALL_STATE(1044)] = 40880, - [SMALL_STATE(1045)] = 40930, - [SMALL_STATE(1046)] = 40986, - [SMALL_STATE(1047)] = 41036, - [SMALL_STATE(1048)] = 41086, - [SMALL_STATE(1049)] = 41136, - [SMALL_STATE(1050)] = 41192, - [SMALL_STATE(1051)] = 41246, - [SMALL_STATE(1052)] = 41302, - [SMALL_STATE(1053)] = 41352, - [SMALL_STATE(1054)] = 41402, - [SMALL_STATE(1055)] = 41452, - [SMALL_STATE(1056)] = 41508, - [SMALL_STATE(1057)] = 41558, - [SMALL_STATE(1058)] = 41608, - [SMALL_STATE(1059)] = 41664, - [SMALL_STATE(1060)] = 41720, - [SMALL_STATE(1061)] = 41770, - [SMALL_STATE(1062)] = 41826, - [SMALL_STATE(1063)] = 41880, - [SMALL_STATE(1064)] = 41930, - [SMALL_STATE(1065)] = 41980, - [SMALL_STATE(1066)] = 42030, - [SMALL_STATE(1067)] = 42080, - [SMALL_STATE(1068)] = 42130, - [SMALL_STATE(1069)] = 42180, - [SMALL_STATE(1070)] = 42230, - [SMALL_STATE(1071)] = 42280, - [SMALL_STATE(1072)] = 42330, - [SMALL_STATE(1073)] = 42380, - [SMALL_STATE(1074)] = 42430, - [SMALL_STATE(1075)] = 42486, - [SMALL_STATE(1076)] = 42536, - [SMALL_STATE(1077)] = 42592, - [SMALL_STATE(1078)] = 42648, - [SMALL_STATE(1079)] = 42698, - [SMALL_STATE(1080)] = 42748, - [SMALL_STATE(1081)] = 42798, - [SMALL_STATE(1082)] = 42848, - [SMALL_STATE(1083)] = 42898, - [SMALL_STATE(1084)] = 42948, - [SMALL_STATE(1085)] = 42998, - [SMALL_STATE(1086)] = 43048, - [SMALL_STATE(1087)] = 43098, - [SMALL_STATE(1088)] = 43154, - [SMALL_STATE(1089)] = 43210, - [SMALL_STATE(1090)] = 43260, - [SMALL_STATE(1091)] = 43316, - [SMALL_STATE(1092)] = 43366, - [SMALL_STATE(1093)] = 43416, - [SMALL_STATE(1094)] = 43466, - [SMALL_STATE(1095)] = 43522, - [SMALL_STATE(1096)] = 43572, - [SMALL_STATE(1097)] = 43622, - [SMALL_STATE(1098)] = 43672, - [SMALL_STATE(1099)] = 43722, - [SMALL_STATE(1100)] = 43772, - [SMALL_STATE(1101)] = 43822, - [SMALL_STATE(1102)] = 43876, - [SMALL_STATE(1103)] = 43926, - [SMALL_STATE(1104)] = 43976, - [SMALL_STATE(1105)] = 44026, - [SMALL_STATE(1106)] = 44080, - [SMALL_STATE(1107)] = 44134, - [SMALL_STATE(1108)] = 44184, - [SMALL_STATE(1109)] = 44234, - [SMALL_STATE(1110)] = 44290, - [SMALL_STATE(1111)] = 44340, - [SMALL_STATE(1112)] = 44396, - [SMALL_STATE(1113)] = 44446, - [SMALL_STATE(1114)] = 44502, - [SMALL_STATE(1115)] = 44558, - [SMALL_STATE(1116)] = 44612, - [SMALL_STATE(1117)] = 44662, - [SMALL_STATE(1118)] = 44718, - [SMALL_STATE(1119)] = 44774, - [SMALL_STATE(1120)] = 44824, - [SMALL_STATE(1121)] = 44878, - [SMALL_STATE(1122)] = 44934, - [SMALL_STATE(1123)] = 44990, - [SMALL_STATE(1124)] = 45040, - [SMALL_STATE(1125)] = 45090, - [SMALL_STATE(1126)] = 45140, - [SMALL_STATE(1127)] = 45190, - [SMALL_STATE(1128)] = 45240, - [SMALL_STATE(1129)] = 45290, - [SMALL_STATE(1130)] = 45344, - [SMALL_STATE(1131)] = 45394, - [SMALL_STATE(1132)] = 45444, - [SMALL_STATE(1133)] = 45498, - [SMALL_STATE(1134)] = 45554, - [SMALL_STATE(1135)] = 45604, - [SMALL_STATE(1136)] = 45654, - [SMALL_STATE(1137)] = 45704, - [SMALL_STATE(1138)] = 45758, - [SMALL_STATE(1139)] = 45812, - [SMALL_STATE(1140)] = 45868, - [SMALL_STATE(1141)] = 45918, - [SMALL_STATE(1142)] = 45974, - [SMALL_STATE(1143)] = 46030, - [SMALL_STATE(1144)] = 46086, - [SMALL_STATE(1145)] = 46136, - [SMALL_STATE(1146)] = 46192, - [SMALL_STATE(1147)] = 46248, - [SMALL_STATE(1148)] = 46304, - [SMALL_STATE(1149)] = 46360, - [SMALL_STATE(1150)] = 46416, - [SMALL_STATE(1151)] = 46472, - [SMALL_STATE(1152)] = 46522, - [SMALL_STATE(1153)] = 46572, - [SMALL_STATE(1154)] = 46628, - [SMALL_STATE(1155)] = 46678, - [SMALL_STATE(1156)] = 46728, - [SMALL_STATE(1157)] = 46778, - [SMALL_STATE(1158)] = 46834, - [SMALL_STATE(1159)] = 46884, - [SMALL_STATE(1160)] = 46934, - [SMALL_STATE(1161)] = 46988, - [SMALL_STATE(1162)] = 47038, - [SMALL_STATE(1163)] = 47088, - [SMALL_STATE(1164)] = 47138, - [SMALL_STATE(1165)] = 47188, - [SMALL_STATE(1166)] = 47238, - [SMALL_STATE(1167)] = 47292, - [SMALL_STATE(1168)] = 47342, - [SMALL_STATE(1169)] = 47392, - [SMALL_STATE(1170)] = 47448, - [SMALL_STATE(1171)] = 47498, - [SMALL_STATE(1172)] = 47548, - [SMALL_STATE(1173)] = 47602, - [SMALL_STATE(1174)] = 47658, - [SMALL_STATE(1175)] = 47714, - [SMALL_STATE(1176)] = 47764, - [SMALL_STATE(1177)] = 47820, - [SMALL_STATE(1178)] = 47876, - [SMALL_STATE(1179)] = 47930, - [SMALL_STATE(1180)] = 47980, - [SMALL_STATE(1181)] = 48029, - [SMALL_STATE(1182)] = 48082, - [SMALL_STATE(1183)] = 48137, - [SMALL_STATE(1184)] = 48192, - [SMALL_STATE(1185)] = 48247, - [SMALL_STATE(1186)] = 48302, - [SMALL_STATE(1187)] = 48351, - [SMALL_STATE(1188)] = 48400, - [SMALL_STATE(1189)] = 48455, - [SMALL_STATE(1190)] = 48510, - [SMALL_STATE(1191)] = 48559, - [SMALL_STATE(1192)] = 48608, - [SMALL_STATE(1193)] = 48657, - [SMALL_STATE(1194)] = 48706, - [SMALL_STATE(1195)] = 48761, - [SMALL_STATE(1196)] = 48816, - [SMALL_STATE(1197)] = 48865, - [SMALL_STATE(1198)] = 48914, - [SMALL_STATE(1199)] = 48963, - [SMALL_STATE(1200)] = 49012, - [SMALL_STATE(1201)] = 49067, - [SMALL_STATE(1202)] = 49122, - [SMALL_STATE(1203)] = 49177, - [SMALL_STATE(1204)] = 49232, - [SMALL_STATE(1205)] = 49281, - [SMALL_STATE(1206)] = 49336, - [SMALL_STATE(1207)] = 49391, - [SMALL_STATE(1208)] = 49440, - [SMALL_STATE(1209)] = 49495, - [SMALL_STATE(1210)] = 49564, - [SMALL_STATE(1211)] = 49619, - [SMALL_STATE(1212)] = 49674, - [SMALL_STATE(1213)] = 49723, - [SMALL_STATE(1214)] = 49772, - [SMALL_STATE(1215)] = 49825, - [SMALL_STATE(1216)] = 49874, - [SMALL_STATE(1217)] = 49929, - [SMALL_STATE(1218)] = 49978, - [SMALL_STATE(1219)] = 50027, - [SMALL_STATE(1220)] = 50080, - [SMALL_STATE(1221)] = 50129, - [SMALL_STATE(1222)] = 50182, - [SMALL_STATE(1223)] = 50235, - [SMALL_STATE(1224)] = 50284, - [SMALL_STATE(1225)] = 50337, - [SMALL_STATE(1226)] = 50386, - [SMALL_STATE(1227)] = 50435, - [SMALL_STATE(1228)] = 50484, - [SMALL_STATE(1229)] = 50533, - [SMALL_STATE(1230)] = 50582, - [SMALL_STATE(1231)] = 50631, - [SMALL_STATE(1232)] = 50680, - [SMALL_STATE(1233)] = 50729, - [SMALL_STATE(1234)] = 50778, - [SMALL_STATE(1235)] = 50827, - [SMALL_STATE(1236)] = 50876, - [SMALL_STATE(1237)] = 50925, - [SMALL_STATE(1238)] = 50974, - [SMALL_STATE(1239)] = 51023, - [SMALL_STATE(1240)] = 51072, - [SMALL_STATE(1241)] = 51121, - [SMALL_STATE(1242)] = 51170, - [SMALL_STATE(1243)] = 51219, - [SMALL_STATE(1244)] = 51268, - [SMALL_STATE(1245)] = 51317, - [SMALL_STATE(1246)] = 51366, - [SMALL_STATE(1247)] = 51415, - [SMALL_STATE(1248)] = 51468, - [SMALL_STATE(1249)] = 51517, - [SMALL_STATE(1250)] = 51566, - [SMALL_STATE(1251)] = 51631, - [SMALL_STATE(1252)] = 51680, - [SMALL_STATE(1253)] = 51729, - [SMALL_STATE(1254)] = 51790, - [SMALL_STATE(1255)] = 51839, - [SMALL_STATE(1256)] = 51888, - [SMALL_STATE(1257)] = 51937, - [SMALL_STATE(1258)] = 51986, - [SMALL_STATE(1259)] = 52035, - [SMALL_STATE(1260)] = 52084, - [SMALL_STATE(1261)] = 52133, - [SMALL_STATE(1262)] = 52182, - [SMALL_STATE(1263)] = 52231, - [SMALL_STATE(1264)] = 52284, - [SMALL_STATE(1265)] = 52333, - [SMALL_STATE(1266)] = 52386, - [SMALL_STATE(1267)] = 52435, - [SMALL_STATE(1268)] = 52488, - [SMALL_STATE(1269)] = 52537, - [SMALL_STATE(1270)] = 52586, - [SMALL_STATE(1271)] = 52635, - [SMALL_STATE(1272)] = 52688, - [SMALL_STATE(1273)] = 52737, - [SMALL_STATE(1274)] = 52790, - [SMALL_STATE(1275)] = 52845, - [SMALL_STATE(1276)] = 52900, - [SMALL_STATE(1277)] = 52955, - [SMALL_STATE(1278)] = 53010, - [SMALL_STATE(1279)] = 53059, - [SMALL_STATE(1280)] = 53108, - [SMALL_STATE(1281)] = 53157, - [SMALL_STATE(1282)] = 53206, - [SMALL_STATE(1283)] = 53255, - [SMALL_STATE(1284)] = 53304, - [SMALL_STATE(1285)] = 53353, - [SMALL_STATE(1286)] = 53402, - [SMALL_STATE(1287)] = 53451, - [SMALL_STATE(1288)] = 53500, - [SMALL_STATE(1289)] = 53549, - [SMALL_STATE(1290)] = 53602, - [SMALL_STATE(1291)] = 53651, - [SMALL_STATE(1292)] = 53700, - [SMALL_STATE(1293)] = 53749, - [SMALL_STATE(1294)] = 53798, - [SMALL_STATE(1295)] = 53847, - [SMALL_STATE(1296)] = 53896, - [SMALL_STATE(1297)] = 53945, - [SMALL_STATE(1298)] = 53994, - [SMALL_STATE(1299)] = 54043, - [SMALL_STATE(1300)] = 54092, - [SMALL_STATE(1301)] = 54141, - [SMALL_STATE(1302)] = 54190, - [SMALL_STATE(1303)] = 54245, - [SMALL_STATE(1304)] = 54294, - [SMALL_STATE(1305)] = 54343, - [SMALL_STATE(1306)] = 54392, - [SMALL_STATE(1307)] = 54441, - [SMALL_STATE(1308)] = 54490, - [SMALL_STATE(1309)] = 54539, - [SMALL_STATE(1310)] = 54592, - [SMALL_STATE(1311)] = 54641, - [SMALL_STATE(1312)] = 54690, - [SMALL_STATE(1313)] = 54739, - [SMALL_STATE(1314)] = 54788, - [SMALL_STATE(1315)] = 54837, - [SMALL_STATE(1316)] = 54886, - [SMALL_STATE(1317)] = 54935, - [SMALL_STATE(1318)] = 54984, - [SMALL_STATE(1319)] = 55033, - [SMALL_STATE(1320)] = 55082, - [SMALL_STATE(1321)] = 55131, - [SMALL_STATE(1322)] = 55180, - [SMALL_STATE(1323)] = 55229, - [SMALL_STATE(1324)] = 55278, - [SMALL_STATE(1325)] = 55327, - [SMALL_STATE(1326)] = 55382, - [SMALL_STATE(1327)] = 55437, - [SMALL_STATE(1328)] = 55490, - [SMALL_STATE(1329)] = 55543, - [SMALL_STATE(1330)] = 55592, - [SMALL_STATE(1331)] = 55641, - [SMALL_STATE(1332)] = 55689, - [SMALL_STATE(1333)] = 55737, - [SMALL_STATE(1334)] = 55785, - [SMALL_STATE(1335)] = 55833, - [SMALL_STATE(1336)] = 55881, - [SMALL_STATE(1337)] = 55929, - [SMALL_STATE(1338)] = 55977, - [SMALL_STATE(1339)] = 56025, - [SMALL_STATE(1340)] = 56073, - [SMALL_STATE(1341)] = 56125, - [SMALL_STATE(1342)] = 56173, - [SMALL_STATE(1343)] = 56221, - [SMALL_STATE(1344)] = 56269, - [SMALL_STATE(1345)] = 56317, - [SMALL_STATE(1346)] = 56365, - [SMALL_STATE(1347)] = 56417, - [SMALL_STATE(1348)] = 56465, - [SMALL_STATE(1349)] = 56513, - [SMALL_STATE(1350)] = 56561, - [SMALL_STATE(1351)] = 56613, - [SMALL_STATE(1352)] = 56661, - [SMALL_STATE(1353)] = 56709, - [SMALL_STATE(1354)] = 56757, - [SMALL_STATE(1355)] = 56805, - [SMALL_STATE(1356)] = 56857, - [SMALL_STATE(1357)] = 56905, - [SMALL_STATE(1358)] = 56953, - [SMALL_STATE(1359)] = 57001, - [SMALL_STATE(1360)] = 57049, - [SMALL_STATE(1361)] = 57097, - [SMALL_STATE(1362)] = 57145, - [SMALL_STATE(1363)] = 57197, - [SMALL_STATE(1364)] = 57245, - [SMALL_STATE(1365)] = 57301, - [SMALL_STATE(1366)] = 57355, - [SMALL_STATE(1367)] = 57411, - [SMALL_STATE(1368)] = 57459, - [SMALL_STATE(1369)] = 57507, - [SMALL_STATE(1370)] = 57555, - [SMALL_STATE(1371)] = 57607, - [SMALL_STATE(1372)] = 57655, - [SMALL_STATE(1373)] = 57707, - [SMALL_STATE(1374)] = 57759, - [SMALL_STATE(1375)] = 57807, - [SMALL_STATE(1376)] = 57855, - [SMALL_STATE(1377)] = 57903, - [SMALL_STATE(1378)] = 57955, - [SMALL_STATE(1379)] = 58003, - [SMALL_STATE(1380)] = 58051, - [SMALL_STATE(1381)] = 58103, - [SMALL_STATE(1382)] = 58151, - [SMALL_STATE(1383)] = 58199, - [SMALL_STATE(1384)] = 58247, - [SMALL_STATE(1385)] = 58295, - [SMALL_STATE(1386)] = 58347, - [SMALL_STATE(1387)] = 58401, - [SMALL_STATE(1388)] = 58449, - [SMALL_STATE(1389)] = 58497, - [SMALL_STATE(1390)] = 58545, - [SMALL_STATE(1391)] = 58599, - [SMALL_STATE(1392)] = 58653, - [SMALL_STATE(1393)] = 58701, - [SMALL_STATE(1394)] = 58755, - [SMALL_STATE(1395)] = 58807, - [SMALL_STATE(1396)] = 58861, - [SMALL_STATE(1397)] = 58909, - [SMALL_STATE(1398)] = 58957, - [SMALL_STATE(1399)] = 59005, - [SMALL_STATE(1400)] = 59057, - [SMALL_STATE(1401)] = 59105, - [SMALL_STATE(1402)] = 59157, - [SMALL_STATE(1403)] = 59205, - [SMALL_STATE(1404)] = 59257, - [SMALL_STATE(1405)] = 59305, - [SMALL_STATE(1406)] = 59357, - [SMALL_STATE(1407)] = 59409, - [SMALL_STATE(1408)] = 59461, - [SMALL_STATE(1409)] = 59509, - [SMALL_STATE(1410)] = 59557, - [SMALL_STATE(1411)] = 59605, - [SMALL_STATE(1412)] = 59653, - [SMALL_STATE(1413)] = 59701, - [SMALL_STATE(1414)] = 59749, - [SMALL_STATE(1415)] = 59801, - [SMALL_STATE(1416)] = 59849, - [SMALL_STATE(1417)] = 59897, - [SMALL_STATE(1418)] = 59949, - [SMALL_STATE(1419)] = 59997, - [SMALL_STATE(1420)] = 60051, - [SMALL_STATE(1421)] = 60099, - [SMALL_STATE(1422)] = 60147, - [SMALL_STATE(1423)] = 60195, - [SMALL_STATE(1424)] = 60243, - [SMALL_STATE(1425)] = 60291, - [SMALL_STATE(1426)] = 60343, - [SMALL_STATE(1427)] = 60391, - [SMALL_STATE(1428)] = 60439, - [SMALL_STATE(1429)] = 60487, - [SMALL_STATE(1430)] = 60541, - [SMALL_STATE(1431)] = 60595, - [SMALL_STATE(1432)] = 60646, - [SMALL_STATE(1433)] = 60701, - [SMALL_STATE(1434)] = 60756, - [SMALL_STATE(1435)] = 60811, - [SMALL_STATE(1436)] = 60866, - [SMALL_STATE(1437)] = 60921, - [SMALL_STATE(1438)] = 60976, - [SMALL_STATE(1439)] = 61027, - [SMALL_STATE(1440)] = 61082, - [SMALL_STATE(1441)] = 61135, - [SMALL_STATE(1442)] = 61190, - [SMALL_STATE(1443)] = 61243, - [SMALL_STATE(1444)] = 61298, - [SMALL_STATE(1445)] = 61349, - [SMALL_STATE(1446)] = 61400, - [SMALL_STATE(1447)] = 61455, - [SMALL_STATE(1448)] = 61510, - [SMALL_STATE(1449)] = 61561, - [SMALL_STATE(1450)] = 61616, - [SMALL_STATE(1451)] = 61669, - [SMALL_STATE(1452)] = 61724, - [SMALL_STATE(1453)] = 61777, - [SMALL_STATE(1454)] = 61828, - [SMALL_STATE(1455)] = 61883, - [SMALL_STATE(1456)] = 61934, - [SMALL_STATE(1457)] = 61985, - [SMALL_STATE(1458)] = 62040, - [SMALL_STATE(1459)] = 62095, - [SMALL_STATE(1460)] = 62150, - [SMALL_STATE(1461)] = 62203, - [SMALL_STATE(1462)] = 62254, - [SMALL_STATE(1463)] = 62305, - [SMALL_STATE(1464)] = 62360, - [SMALL_STATE(1465)] = 62415, - [SMALL_STATE(1466)] = 62466, - [SMALL_STATE(1467)] = 62517, - [SMALL_STATE(1468)] = 62572, - [SMALL_STATE(1469)] = 62623, - [SMALL_STATE(1470)] = 62678, - [SMALL_STATE(1471)] = 62761, - [SMALL_STATE(1472)] = 62808, - [SMALL_STATE(1473)] = 62855, - [SMALL_STATE(1474)] = 62910, - [SMALL_STATE(1475)] = 62965, - [SMALL_STATE(1476)] = 63020, - [SMALL_STATE(1477)] = 63075, - [SMALL_STATE(1478)] = 63122, - [SMALL_STATE(1479)] = 63169, - [SMALL_STATE(1480)] = 63216, - [SMALL_STATE(1481)] = 63271, - [SMALL_STATE(1482)] = 63322, - [SMALL_STATE(1483)] = 63377, - [SMALL_STATE(1484)] = 63432, - [SMALL_STATE(1485)] = 63487, - [SMALL_STATE(1486)] = 63542, - [SMALL_STATE(1487)] = 63597, - [SMALL_STATE(1488)] = 63648, - [SMALL_STATE(1489)] = 63703, - [SMALL_STATE(1490)] = 63754, - [SMALL_STATE(1491)] = 63809, - [SMALL_STATE(1492)] = 63856, - [SMALL_STATE(1493)] = 63903, - [SMALL_STATE(1494)] = 63950, - [SMALL_STATE(1495)] = 63997, - [SMALL_STATE(1496)] = 64052, - [SMALL_STATE(1497)] = 64099, - [SMALL_STATE(1498)] = 64146, - [SMALL_STATE(1499)] = 64193, - [SMALL_STATE(1500)] = 64244, - [SMALL_STATE(1501)] = 64291, - [SMALL_STATE(1502)] = 64338, - [SMALL_STATE(1503)] = 64385, - [SMALL_STATE(1504)] = 64440, - [SMALL_STATE(1505)] = 64495, - [SMALL_STATE(1506)] = 64550, - [SMALL_STATE(1507)] = 64605, - [SMALL_STATE(1508)] = 64660, - [SMALL_STATE(1509)] = 64707, - [SMALL_STATE(1510)] = 64760, - [SMALL_STATE(1511)] = 64815, - [SMALL_STATE(1512)] = 64862, - [SMALL_STATE(1513)] = 64917, - [SMALL_STATE(1514)] = 64964, - [SMALL_STATE(1515)] = 65019, - [SMALL_STATE(1516)] = 65074, - [SMALL_STATE(1517)] = 65121, - [SMALL_STATE(1518)] = 65168, - [SMALL_STATE(1519)] = 65215, - [SMALL_STATE(1520)] = 65270, - [SMALL_STATE(1521)] = 65325, - [SMALL_STATE(1522)] = 65380, - [SMALL_STATE(1523)] = 65435, - [SMALL_STATE(1524)] = 65482, - [SMALL_STATE(1525)] = 65537, - [SMALL_STATE(1526)] = 65584, - [SMALL_STATE(1527)] = 65639, - [SMALL_STATE(1528)] = 65694, - [SMALL_STATE(1529)] = 65749, - [SMALL_STATE(1530)] = 65804, - [SMALL_STATE(1531)] = 65859, - [SMALL_STATE(1532)] = 65906, - [SMALL_STATE(1533)] = 65953, - [SMALL_STATE(1534)] = 66004, - [SMALL_STATE(1535)] = 66051, - [SMALL_STATE(1536)] = 66098, - [SMALL_STATE(1537)] = 66145, - [SMALL_STATE(1538)] = 66200, - [SMALL_STATE(1539)] = 66247, - [SMALL_STATE(1540)] = 66294, - [SMALL_STATE(1541)] = 66345, - [SMALL_STATE(1542)] = 66396, - [SMALL_STATE(1543)] = 66449, - [SMALL_STATE(1544)] = 66496, - [SMALL_STATE(1545)] = 66551, - [SMALL_STATE(1546)] = 66604, - [SMALL_STATE(1547)] = 66657, - [SMALL_STATE(1548)] = 66710, - [SMALL_STATE(1549)] = 66757, - [SMALL_STATE(1550)] = 66808, - [SMALL_STATE(1551)] = 66863, - [SMALL_STATE(1552)] = 66916, - [SMALL_STATE(1553)] = 66969, - [SMALL_STATE(1554)] = 67024, - [SMALL_STATE(1555)] = 67077, - [SMALL_STATE(1556)] = 67128, - [SMALL_STATE(1557)] = 67179, - [SMALL_STATE(1558)] = 67226, - [SMALL_STATE(1559)] = 67281, - [SMALL_STATE(1560)] = 67332, - [SMALL_STATE(1561)] = 67383, - [SMALL_STATE(1562)] = 67434, - [SMALL_STATE(1563)] = 67489, - [SMALL_STATE(1564)] = 67544, - [SMALL_STATE(1565)] = 67599, - [SMALL_STATE(1566)] = 67652, - [SMALL_STATE(1567)] = 67699, - [SMALL_STATE(1568)] = 67754, - [SMALL_STATE(1569)] = 67807, - [SMALL_STATE(1570)] = 67858, - [SMALL_STATE(1571)] = 67909, - [SMALL_STATE(1572)] = 67962, - [SMALL_STATE(1573)] = 68015, - [SMALL_STATE(1574)] = 68070, - [SMALL_STATE(1575)] = 68125, - [SMALL_STATE(1576)] = 68213, - [SMALL_STATE(1577)] = 68259, - [SMALL_STATE(1578)] = 68305, - [SMALL_STATE(1579)] = 68393, - [SMALL_STATE(1580)] = 68445, - [SMALL_STATE(1581)] = 68533, - [SMALL_STATE(1582)] = 68579, - [SMALL_STATE(1583)] = 68629, - [SMALL_STATE(1584)] = 68675, - [SMALL_STATE(1585)] = 68725, - [SMALL_STATE(1586)] = 68771, - [SMALL_STATE(1587)] = 68817, - [SMALL_STATE(1588)] = 68867, - [SMALL_STATE(1589)] = 68917, - [SMALL_STATE(1590)] = 68967, - [SMALL_STATE(1591)] = 69013, - [SMALL_STATE(1592)] = 69101, - [SMALL_STATE(1593)] = 69147, - [SMALL_STATE(1594)] = 69235, - [SMALL_STATE(1595)] = 69323, - [SMALL_STATE(1596)] = 69411, - [SMALL_STATE(1597)] = 69457, - [SMALL_STATE(1598)] = 69545, - [SMALL_STATE(1599)] = 69597, - [SMALL_STATE(1600)] = 69685, - [SMALL_STATE(1601)] = 69737, - [SMALL_STATE(1602)] = 69783, - [SMALL_STATE(1603)] = 69829, - [SMALL_STATE(1604)] = 69879, - [SMALL_STATE(1605)] = 69925, - [SMALL_STATE(1606)] = 70013, - [SMALL_STATE(1607)] = 70101, - [SMALL_STATE(1608)] = 70153, - [SMALL_STATE(1609)] = 70199, - [SMALL_STATE(1610)] = 70245, - [SMALL_STATE(1611)] = 70291, - [SMALL_STATE(1612)] = 70379, - [SMALL_STATE(1613)] = 70467, - [SMALL_STATE(1614)] = 70513, - [SMALL_STATE(1615)] = 70601, - [SMALL_STATE(1616)] = 70647, - [SMALL_STATE(1617)] = 70697, - [SMALL_STATE(1618)] = 70743, - [SMALL_STATE(1619)] = 70789, - [SMALL_STATE(1620)] = 70837, - [SMALL_STATE(1621)] = 70885, - [SMALL_STATE(1622)] = 70937, - [SMALL_STATE(1623)] = 70983, - [SMALL_STATE(1624)] = 71029, - [SMALL_STATE(1625)] = 71117, - [SMALL_STATE(1626)] = 71163, - [SMALL_STATE(1627)] = 71209, - [SMALL_STATE(1628)] = 71255, - [SMALL_STATE(1629)] = 71305, - [SMALL_STATE(1630)] = 71393, - [SMALL_STATE(1631)] = 71439, - [SMALL_STATE(1632)] = 71485, - [SMALL_STATE(1633)] = 71531, - [SMALL_STATE(1634)] = 71619, - [SMALL_STATE(1635)] = 71707, - [SMALL_STATE(1636)] = 71759, - [SMALL_STATE(1637)] = 71805, - [SMALL_STATE(1638)] = 71893, - [SMALL_STATE(1639)] = 71941, - [SMALL_STATE(1640)] = 71987, - [SMALL_STATE(1641)] = 72033, - [SMALL_STATE(1642)] = 72079, - [SMALL_STATE(1643)] = 72167, - [SMALL_STATE(1644)] = 72213, - [SMALL_STATE(1645)] = 72259, - [SMALL_STATE(1646)] = 72309, - [SMALL_STATE(1647)] = 72397, - [SMALL_STATE(1648)] = 72485, - [SMALL_STATE(1649)] = 72533, - [SMALL_STATE(1650)] = 72587, - [SMALL_STATE(1651)] = 72637, - [SMALL_STATE(1652)] = 72683, - [SMALL_STATE(1653)] = 72733, - [SMALL_STATE(1654)] = 72779, - [SMALL_STATE(1655)] = 72825, - [SMALL_STATE(1656)] = 72879, - [SMALL_STATE(1657)] = 72925, - [SMALL_STATE(1658)] = 72971, - [SMALL_STATE(1659)] = 73017, - [SMALL_STATE(1660)] = 73067, - [SMALL_STATE(1661)] = 73117, - [SMALL_STATE(1662)] = 73163, - [SMALL_STATE(1663)] = 73213, - [SMALL_STATE(1664)] = 73259, - [SMALL_STATE(1665)] = 73347, - [SMALL_STATE(1666)] = 73397, - [SMALL_STATE(1667)] = 73485, - [SMALL_STATE(1668)] = 73535, - [SMALL_STATE(1669)] = 73587, - [SMALL_STATE(1670)] = 73672, - [SMALL_STATE(1671)] = 73721, - [SMALL_STATE(1672)] = 73806, - [SMALL_STATE(1673)] = 73891, - [SMALL_STATE(1674)] = 73940, - [SMALL_STATE(1675)] = 73985, - [SMALL_STATE(1676)] = 74030, - [SMALL_STATE(1677)] = 74079, - [SMALL_STATE(1678)] = 74128, - [SMALL_STATE(1679)] = 74177, - [SMALL_STATE(1680)] = 74226, - [SMALL_STATE(1681)] = 74271, - [SMALL_STATE(1682)] = 74316, - [SMALL_STATE(1683)] = 74365, - [SMALL_STATE(1684)] = 74416, - [SMALL_STATE(1685)] = 74467, - [SMALL_STATE(1686)] = 74516, - [SMALL_STATE(1687)] = 74565, - [SMALL_STATE(1688)] = 74650, - [SMALL_STATE(1689)] = 74701, - [SMALL_STATE(1690)] = 74752, - [SMALL_STATE(1691)] = 74799, - [SMALL_STATE(1692)] = 74848, - [SMALL_STATE(1693)] = 74933, - [SMALL_STATE(1694)] = 74982, - [SMALL_STATE(1695)] = 75027, - [SMALL_STATE(1696)] = 75074, - [SMALL_STATE(1697)] = 75159, - [SMALL_STATE(1698)] = 75204, - [SMALL_STATE(1699)] = 75249, - [SMALL_STATE(1700)] = 75334, - [SMALL_STATE(1701)] = 75383, - [SMALL_STATE(1702)] = 75428, - [SMALL_STATE(1703)] = 75473, - [SMALL_STATE(1704)] = 75520, - [SMALL_STATE(1705)] = 75567, - [SMALL_STATE(1706)] = 75652, - [SMALL_STATE(1707)] = 75697, - [SMALL_STATE(1708)] = 75744, - [SMALL_STATE(1709)] = 75791, - [SMALL_STATE(1710)] = 75846, - [SMALL_STATE(1711)] = 75891, - [SMALL_STATE(1712)] = 75936, - [SMALL_STATE(1713)] = 75981, - [SMALL_STATE(1714)] = 76066, - [SMALL_STATE(1715)] = 76151, - [SMALL_STATE(1716)] = 76236, - [SMALL_STATE(1717)] = 76321, - [SMALL_STATE(1718)] = 76366, - [SMALL_STATE(1719)] = 76453, - [SMALL_STATE(1720)] = 76538, - [SMALL_STATE(1721)] = 76623, - [SMALL_STATE(1722)] = 76672, - [SMALL_STATE(1723)] = 76721, - [SMALL_STATE(1724)] = 76806, - [SMALL_STATE(1725)] = 76851, - [SMALL_STATE(1726)] = 76898, - [SMALL_STATE(1727)] = 76945, - [SMALL_STATE(1728)] = 77032, - [SMALL_STATE(1729)] = 77117, - [SMALL_STATE(1730)] = 77202, - [SMALL_STATE(1731)] = 77247, - [SMALL_STATE(1732)] = 77334, - [SMALL_STATE(1733)] = 77419, - [SMALL_STATE(1734)] = 77504, - [SMALL_STATE(1735)] = 77589, - [SMALL_STATE(1736)] = 77634, - [SMALL_STATE(1737)] = 77719, - [SMALL_STATE(1738)] = 77804, - [SMALL_STATE(1739)] = 77849, - [SMALL_STATE(1740)] = 77900, - [SMALL_STATE(1741)] = 77945, - [SMALL_STATE(1742)] = 77996, - [SMALL_STATE(1743)] = 78041, - [SMALL_STATE(1744)] = 78086, - [SMALL_STATE(1745)] = 78171, - [SMALL_STATE(1746)] = 78222, - [SMALL_STATE(1747)] = 78307, - [SMALL_STATE(1748)] = 78392, - [SMALL_STATE(1749)] = 78439, - [SMALL_STATE(1750)] = 78484, - [SMALL_STATE(1751)] = 78569, - [SMALL_STATE(1752)] = 78656, - [SMALL_STATE(1753)] = 78701, - [SMALL_STATE(1754)] = 78786, - [SMALL_STATE(1755)] = 78833, - [SMALL_STATE(1756)] = 78886, - [SMALL_STATE(1757)] = 78931, - [SMALL_STATE(1758)] = 78984, - [SMALL_STATE(1759)] = 79031, - [SMALL_STATE(1760)] = 79116, - [SMALL_STATE(1761)] = 79201, - [SMALL_STATE(1762)] = 79246, - [SMALL_STATE(1763)] = 79291, - [SMALL_STATE(1764)] = 79340, - [SMALL_STATE(1765)] = 79389, - [SMALL_STATE(1766)] = 79438, - [SMALL_STATE(1767)] = 79483, - [SMALL_STATE(1768)] = 79568, - [SMALL_STATE(1769)] = 79613, - [SMALL_STATE(1770)] = 79668, - [SMALL_STATE(1771)] = 79713, - [SMALL_STATE(1772)] = 79758, - [SMALL_STATE(1773)] = 79843, - [SMALL_STATE(1774)] = 79928, - [SMALL_STATE(1775)] = 79973, - [SMALL_STATE(1776)] = 80018, - [SMALL_STATE(1777)] = 80067, - [SMALL_STATE(1778)] = 80112, - [SMALL_STATE(1779)] = 80157, - [SMALL_STATE(1780)] = 80202, - [SMALL_STATE(1781)] = 80247, - [SMALL_STATE(1782)] = 80298, - [SMALL_STATE(1783)] = 80343, - [SMALL_STATE(1784)] = 80394, - [SMALL_STATE(1785)] = 80439, - [SMALL_STATE(1786)] = 80484, - [SMALL_STATE(1787)] = 80533, - [SMALL_STATE(1788)] = 80582, - [SMALL_STATE(1789)] = 80627, - [SMALL_STATE(1790)] = 80672, - [SMALL_STATE(1791)] = 80757, - [SMALL_STATE(1792)] = 80842, - [SMALL_STATE(1793)] = 80891, - [SMALL_STATE(1794)] = 80936, - [SMALL_STATE(1795)] = 81021, - [SMALL_STATE(1796)] = 81066, - [SMALL_STATE(1797)] = 81111, - [SMALL_STATE(1798)] = 81156, - [SMALL_STATE(1799)] = 81205, - [SMALL_STATE(1800)] = 81250, - [SMALL_STATE(1801)] = 81295, - [SMALL_STATE(1802)] = 81380, - [SMALL_STATE(1803)] = 81425, - [SMALL_STATE(1804)] = 81470, - [SMALL_STATE(1805)] = 81525, - [SMALL_STATE(1806)] = 81570, - [SMALL_STATE(1807)] = 81615, - [SMALL_STATE(1808)] = 81660, - [SMALL_STATE(1809)] = 81745, - [SMALL_STATE(1810)] = 81830, - [SMALL_STATE(1811)] = 81915, - [SMALL_STATE(1812)] = 81964, - [SMALL_STATE(1813)] = 82009, - [SMALL_STATE(1814)] = 82094, - [SMALL_STATE(1815)] = 82139, - [SMALL_STATE(1816)] = 82224, - [SMALL_STATE(1817)] = 82273, - [SMALL_STATE(1818)] = 82358, - [SMALL_STATE(1819)] = 82443, - [SMALL_STATE(1820)] = 82488, - [SMALL_STATE(1821)] = 82573, - [SMALL_STATE(1822)] = 82658, - [SMALL_STATE(1823)] = 82703, - [SMALL_STATE(1824)] = 82788, - [SMALL_STATE(1825)] = 82873, - [SMALL_STATE(1826)] = 82922, - [SMALL_STATE(1827)] = 82967, - [SMALL_STATE(1828)] = 83012, - [SMALL_STATE(1829)] = 83064, - [SMALL_STATE(1830)] = 83114, - [SMALL_STATE(1831)] = 83158, - [SMALL_STATE(1832)] = 83210, - [SMALL_STATE(1833)] = 83254, - [SMALL_STATE(1834)] = 83298, - [SMALL_STATE(1835)] = 83342, - [SMALL_STATE(1836)] = 83386, - [SMALL_STATE(1837)] = 83438, - [SMALL_STATE(1838)] = 83482, - [SMALL_STATE(1839)] = 83526, - [SMALL_STATE(1840)] = 83570, - [SMALL_STATE(1841)] = 83614, - [SMALL_STATE(1842)] = 83658, - [SMALL_STATE(1843)] = 83702, - [SMALL_STATE(1844)] = 83754, - [SMALL_STATE(1845)] = 83798, - [SMALL_STATE(1846)] = 83846, - [SMALL_STATE(1847)] = 83896, - [SMALL_STATE(1848)] = 83948, - [SMALL_STATE(1849)] = 83992, - [SMALL_STATE(1850)] = 84036, - [SMALL_STATE(1851)] = 84080, - [SMALL_STATE(1852)] = 84124, - [SMALL_STATE(1853)] = 84172, - [SMALL_STATE(1854)] = 84220, - [SMALL_STATE(1855)] = 84264, - [SMALL_STATE(1856)] = 84308, - [SMALL_STATE(1857)] = 84352, - [SMALL_STATE(1858)] = 84396, - [SMALL_STATE(1859)] = 84446, - [SMALL_STATE(1860)] = 84498, - [SMALL_STATE(1861)] = 84542, - [SMALL_STATE(1862)] = 84586, - [SMALL_STATE(1863)] = 84630, - [SMALL_STATE(1864)] = 84674, - [SMALL_STATE(1865)] = 84726, - [SMALL_STATE(1866)] = 84770, - [SMALL_STATE(1867)] = 84820, - [SMALL_STATE(1868)] = 84864, - [SMALL_STATE(1869)] = 84908, - [SMALL_STATE(1870)] = 84952, - [SMALL_STATE(1871)] = 84996, - [SMALL_STATE(1872)] = 85040, - [SMALL_STATE(1873)] = 85092, - [SMALL_STATE(1874)] = 85142, - [SMALL_STATE(1875)] = 85186, - [SMALL_STATE(1876)] = 85238, - [SMALL_STATE(1877)] = 85282, - [SMALL_STATE(1878)] = 85332, - [SMALL_STATE(1879)] = 85380, - [SMALL_STATE(1880)] = 85424, - [SMALL_STATE(1881)] = 85468, - [SMALL_STATE(1882)] = 85512, - [SMALL_STATE(1883)] = 85562, - [SMALL_STATE(1884)] = 85614, - [SMALL_STATE(1885)] = 85658, - [SMALL_STATE(1886)] = 85710, - [SMALL_STATE(1887)] = 85754, - [SMALL_STATE(1888)] = 85804, - [SMALL_STATE(1889)] = 85848, - [SMALL_STATE(1890)] = 85892, - [SMALL_STATE(1891)] = 85944, - [SMALL_STATE(1892)] = 85994, - [SMALL_STATE(1893)] = 86038, - [SMALL_STATE(1894)] = 86086, - [SMALL_STATE(1895)] = 86134, - [SMALL_STATE(1896)] = 86182, - [SMALL_STATE(1897)] = 86226, - [SMALL_STATE(1898)] = 86276, - [SMALL_STATE(1899)] = 86320, - [SMALL_STATE(1900)] = 86372, - [SMALL_STATE(1901)] = 86420, - [SMALL_STATE(1902)] = 86470, - [SMALL_STATE(1903)] = 86520, - [SMALL_STATE(1904)] = 86572, - [SMALL_STATE(1905)] = 86616, - [SMALL_STATE(1906)] = 86664, - [SMALL_STATE(1907)] = 86708, - [SMALL_STATE(1908)] = 86754, - [SMALL_STATE(1909)] = 86802, - [SMALL_STATE(1910)] = 86852, - [SMALL_STATE(1911)] = 86902, - [SMALL_STATE(1912)] = 86946, - [SMALL_STATE(1913)] = 86996, - [SMALL_STATE(1914)] = 87046, - [SMALL_STATE(1915)] = 87098, - [SMALL_STATE(1916)] = 87148, - [SMALL_STATE(1917)] = 87200, - [SMALL_STATE(1918)] = 87250, - [SMALL_STATE(1919)] = 87294, - [SMALL_STATE(1920)] = 87338, - [SMALL_STATE(1921)] = 87382, - [SMALL_STATE(1922)] = 87432, - [SMALL_STATE(1923)] = 87482, - [SMALL_STATE(1924)] = 87532, - [SMALL_STATE(1925)] = 87584, - [SMALL_STATE(1926)] = 87628, - [SMALL_STATE(1927)] = 87680, - [SMALL_STATE(1928)] = 87730, - [SMALL_STATE(1929)] = 87778, - [SMALL_STATE(1930)] = 87828, - [SMALL_STATE(1931)] = 87878, - [SMALL_STATE(1932)] = 87930, - [SMALL_STATE(1933)] = 87982, - [SMALL_STATE(1934)] = 88026, - [SMALL_STATE(1935)] = 88070, - [SMALL_STATE(1936)] = 88114, - [SMALL_STATE(1937)] = 88164, - [SMALL_STATE(1938)] = 88214, - [SMALL_STATE(1939)] = 88264, - [SMALL_STATE(1940)] = 88314, - [SMALL_STATE(1941)] = 88366, - [SMALL_STATE(1942)] = 88418, - [SMALL_STATE(1943)] = 88462, - [SMALL_STATE(1944)] = 88512, - [SMALL_STATE(1945)] = 88556, - [SMALL_STATE(1946)] = 88600, - [SMALL_STATE(1947)] = 88644, - [SMALL_STATE(1948)] = 88694, - [SMALL_STATE(1949)] = 88744, - [SMALL_STATE(1950)] = 88794, - [SMALL_STATE(1951)] = 88844, - [SMALL_STATE(1952)] = 88894, - [SMALL_STATE(1953)] = 88944, - [SMALL_STATE(1954)] = 88994, - [SMALL_STATE(1955)] = 89044, - [SMALL_STATE(1956)] = 89094, - [SMALL_STATE(1957)] = 89144, - [SMALL_STATE(1958)] = 89192, - [SMALL_STATE(1959)] = 89240, - [SMALL_STATE(1960)] = 89284, - [SMALL_STATE(1961)] = 89334, - [SMALL_STATE(1962)] = 89378, - [SMALL_STATE(1963)] = 89428, - [SMALL_STATE(1964)] = 89478, - [SMALL_STATE(1965)] = 89522, - [SMALL_STATE(1966)] = 89572, - [SMALL_STATE(1967)] = 89622, - [SMALL_STATE(1968)] = 89672, - [SMALL_STATE(1969)] = 89722, - [SMALL_STATE(1970)] = 89772, - [SMALL_STATE(1971)] = 89822, - [SMALL_STATE(1972)] = 89866, - [SMALL_STATE(1973)] = 89916, - [SMALL_STATE(1974)] = 89966, - [SMALL_STATE(1975)] = 90016, - [SMALL_STATE(1976)] = 90060, - [SMALL_STATE(1977)] = 90110, - [SMALL_STATE(1978)] = 90154, - [SMALL_STATE(1979)] = 90202, - [SMALL_STATE(1980)] = 90250, - [SMALL_STATE(1981)] = 90294, - [SMALL_STATE(1982)] = 90342, - [SMALL_STATE(1983)] = 90394, - [SMALL_STATE(1984)] = 90438, - [SMALL_STATE(1985)] = 90482, - [SMALL_STATE(1986)] = 90526, - [SMALL_STATE(1987)] = 90570, - [SMALL_STATE(1988)] = 90614, - [SMALL_STATE(1989)] = 90666, - [SMALL_STATE(1990)] = 90710, - [SMALL_STATE(1991)] = 90754, - [SMALL_STATE(1992)] = 90798, - [SMALL_STATE(1993)] = 90842, - [SMALL_STATE(1994)] = 90886, - [SMALL_STATE(1995)] = 90930, - [SMALL_STATE(1996)] = 90974, - [SMALL_STATE(1997)] = 91018, - [SMALL_STATE(1998)] = 91062, - [SMALL_STATE(1999)] = 91106, - [SMALL_STATE(2000)] = 91150, - [SMALL_STATE(2001)] = 91194, - [SMALL_STATE(2002)] = 91238, - [SMALL_STATE(2003)] = 91282, - [SMALL_STATE(2004)] = 91330, - [SMALL_STATE(2005)] = 91378, - [SMALL_STATE(2006)] = 91430, - [SMALL_STATE(2007)] = 91474, - [SMALL_STATE(2008)] = 91526, - [SMALL_STATE(2009)] = 91572, - [SMALL_STATE(2010)] = 91618, - [SMALL_STATE(2011)] = 91662, - [SMALL_STATE(2012)] = 91710, - [SMALL_STATE(2013)] = 91758, - [SMALL_STATE(2014)] = 91810, - [SMALL_STATE(2015)] = 91854, - [SMALL_STATE(2016)] = 91904, - [SMALL_STATE(2017)] = 91952, - [SMALL_STATE(2018)] = 92002, - [SMALL_STATE(2019)] = 92054, - [SMALL_STATE(2020)] = 92098, - [SMALL_STATE(2021)] = 92142, - [SMALL_STATE(2022)] = 92192, - [SMALL_STATE(2023)] = 92242, - [SMALL_STATE(2024)] = 92290, - [SMALL_STATE(2025)] = 92334, - [SMALL_STATE(2026)] = 92382, - [SMALL_STATE(2027)] = 92426, - [SMALL_STATE(2028)] = 92474, - [SMALL_STATE(2029)] = 92518, - [SMALL_STATE(2030)] = 92561, - [SMALL_STATE(2031)] = 92604, - [SMALL_STATE(2032)] = 92647, - [SMALL_STATE(2033)] = 92690, - [SMALL_STATE(2034)] = 92733, - [SMALL_STATE(2035)] = 92780, - [SMALL_STATE(2036)] = 92827, - [SMALL_STATE(2037)] = 92870, - [SMALL_STATE(2038)] = 92913, - [SMALL_STATE(2039)] = 92956, - [SMALL_STATE(2040)] = 93003, - [SMALL_STATE(2041)] = 93046, - [SMALL_STATE(2042)] = 93089, - [SMALL_STATE(2043)] = 93132, - [SMALL_STATE(2044)] = 93175, - [SMALL_STATE(2045)] = 93222, - [SMALL_STATE(2046)] = 93269, - [SMALL_STATE(2047)] = 93316, - [SMALL_STATE(2048)] = 93359, - [SMALL_STATE(2049)] = 93402, - [SMALL_STATE(2050)] = 93449, - [SMALL_STATE(2051)] = 93500, - [SMALL_STATE(2052)] = 93547, - [SMALL_STATE(2053)] = 93598, - [SMALL_STATE(2054)] = 93645, - [SMALL_STATE(2055)] = 93696, - [SMALL_STATE(2056)] = 93747, - [SMALL_STATE(2057)] = 93794, - [SMALL_STATE(2058)] = 93837, - [SMALL_STATE(2059)] = 93880, - [SMALL_STATE(2060)] = 93929, - [SMALL_STATE(2061)] = 93972, - [SMALL_STATE(2062)] = 94015, - [SMALL_STATE(2063)] = 94058, - [SMALL_STATE(2064)] = 94101, - [SMALL_STATE(2065)] = 94152, - [SMALL_STATE(2066)] = 94203, - [SMALL_STATE(2067)] = 94246, - [SMALL_STATE(2068)] = 94297, - [SMALL_STATE(2069)] = 94340, - [SMALL_STATE(2070)] = 94391, - [SMALL_STATE(2071)] = 94442, - [SMALL_STATE(2072)] = 94485, - [SMALL_STATE(2073)] = 94569, - [SMALL_STATE(2074)] = 94653, - [SMALL_STATE(2075)] = 94737, - [SMALL_STATE(2076)] = 94783, - [SMALL_STATE(2077)] = 94867, - [SMALL_STATE(2078)] = 94917, - [SMALL_STATE(2079)] = 94967, - [SMALL_STATE(2080)] = 95011, - [SMALL_STATE(2081)] = 95061, - [SMALL_STATE(2082)] = 95111, - [SMALL_STATE(2083)] = 95153, - [SMALL_STATE(2084)] = 95237, - [SMALL_STATE(2085)] = 95321, - [SMALL_STATE(2086)] = 95405, - [SMALL_STATE(2087)] = 95447, - [SMALL_STATE(2088)] = 95531, - [SMALL_STATE(2089)] = 95615, - [SMALL_STATE(2090)] = 95661, - [SMALL_STATE(2091)] = 95707, - [SMALL_STATE(2092)] = 95749, - [SMALL_STATE(2093)] = 95799, - [SMALL_STATE(2094)] = 95883, - [SMALL_STATE(2095)] = 95933, - [SMALL_STATE(2096)] = 96017, - [SMALL_STATE(2097)] = 96101, - [SMALL_STATE(2098)] = 96185, - [SMALL_STATE(2099)] = 96231, - [SMALL_STATE(2100)] = 96281, - [SMALL_STATE(2101)] = 96327, - [SMALL_STATE(2102)] = 96377, - [SMALL_STATE(2103)] = 96419, - [SMALL_STATE(2104)] = 96469, - [SMALL_STATE(2105)] = 96515, - [SMALL_STATE(2106)] = 96557, - [SMALL_STATE(2107)] = 96605, - [SMALL_STATE(2108)] = 96647, - [SMALL_STATE(2109)] = 96693, - [SMALL_STATE(2110)] = 96741, - [SMALL_STATE(2111)] = 96825, - [SMALL_STATE(2112)] = 96909, - [SMALL_STATE(2113)] = 96993, - [SMALL_STATE(2114)] = 97034, - [SMALL_STATE(2115)] = 97075, - [SMALL_STATE(2116)] = 97116, - [SMALL_STATE(2117)] = 97157, - [SMALL_STATE(2118)] = 97198, - [SMALL_STATE(2119)] = 97239, - [SMALL_STATE(2120)] = 97320, - [SMALL_STATE(2121)] = 97361, - [SMALL_STATE(2122)] = 97402, - [SMALL_STATE(2123)] = 97443, - [SMALL_STATE(2124)] = 97524, - [SMALL_STATE(2125)] = 97565, - [SMALL_STATE(2126)] = 97646, - [SMALL_STATE(2127)] = 97687, - [SMALL_STATE(2128)] = 97760, - [SMALL_STATE(2129)] = 97841, - [SMALL_STATE(2130)] = 97922, - [SMALL_STATE(2131)] = 97963, - [SMALL_STATE(2132)] = 98044, - [SMALL_STATE(2133)] = 98125, - [SMALL_STATE(2134)] = 98206, - [SMALL_STATE(2135)] = 98287, - [SMALL_STATE(2136)] = 98328, - [SMALL_STATE(2137)] = 98401, - [SMALL_STATE(2138)] = 98442, - [SMALL_STATE(2139)] = 98483, - [SMALL_STATE(2140)] = 98524, - [SMALL_STATE(2141)] = 98565, - [SMALL_STATE(2142)] = 98638, - [SMALL_STATE(2143)] = 98679, - [SMALL_STATE(2144)] = 98720, - [SMALL_STATE(2145)] = 98801, - [SMALL_STATE(2146)] = 98882, - [SMALL_STATE(2147)] = 98963, - [SMALL_STATE(2148)] = 99004, - [SMALL_STATE(2149)] = 99085, - [SMALL_STATE(2150)] = 99130, - [SMALL_STATE(2151)] = 99171, - [SMALL_STATE(2152)] = 99252, - [SMALL_STATE(2153)] = 99333, - [SMALL_STATE(2154)] = 99414, - [SMALL_STATE(2155)] = 99487, - [SMALL_STATE(2156)] = 99532, - [SMALL_STATE(2157)] = 99613, - [SMALL_STATE(2158)] = 99694, - [SMALL_STATE(2159)] = 99775, - [SMALL_STATE(2160)] = 99856, - [SMALL_STATE(2161)] = 99937, - [SMALL_STATE(2162)] = 99986, - [SMALL_STATE(2163)] = 100067, - [SMALL_STATE(2164)] = 100116, - [SMALL_STATE(2165)] = 100197, - [SMALL_STATE(2166)] = 100270, - [SMALL_STATE(2167)] = 100311, - [SMALL_STATE(2168)] = 100352, - [SMALL_STATE(2169)] = 100393, - [SMALL_STATE(2170)] = 100434, - [SMALL_STATE(2171)] = 100475, - [SMALL_STATE(2172)] = 100516, - [SMALL_STATE(2173)] = 100557, - [SMALL_STATE(2174)] = 100598, - [SMALL_STATE(2175)] = 100639, - [SMALL_STATE(2176)] = 100680, - [SMALL_STATE(2177)] = 100721, - [SMALL_STATE(2178)] = 100762, - [SMALL_STATE(2179)] = 100803, - [SMALL_STATE(2180)] = 100844, - [SMALL_STATE(2181)] = 100925, - [SMALL_STATE(2182)] = 101003, - [SMALL_STATE(2183)] = 101081, - [SMALL_STATE(2184)] = 101159, - [SMALL_STATE(2185)] = 101201, - [SMALL_STATE(2186)] = 101279, - [SMALL_STATE(2187)] = 101357, - [SMALL_STATE(2188)] = 101401, - [SMALL_STATE(2189)] = 101479, - [SMALL_STATE(2190)] = 101557, - [SMALL_STATE(2191)] = 101605, - [SMALL_STATE(2192)] = 101653, - [SMALL_STATE(2193)] = 101731, - [SMALL_STATE(2194)] = 101773, - [SMALL_STATE(2195)] = 101851, - [SMALL_STATE(2196)] = 101929, - [SMALL_STATE(2197)] = 102007, - [SMALL_STATE(2198)] = 102085, - [SMALL_STATE(2199)] = 102129, - [SMALL_STATE(2200)] = 102207, - [SMALL_STATE(2201)] = 102285, - [SMALL_STATE(2202)] = 102363, - [SMALL_STATE(2203)] = 102441, - [SMALL_STATE(2204)] = 102519, - [SMALL_STATE(2205)] = 102597, - [SMALL_STATE(2206)] = 102675, - [SMALL_STATE(2207)] = 102753, - [SMALL_STATE(2208)] = 102831, - [SMALL_STATE(2209)] = 102870, - [SMALL_STATE(2210)] = 102909, - [SMALL_STATE(2211)] = 102948, - [SMALL_STATE(2212)] = 102987, - [SMALL_STATE(2213)] = 103026, - [SMALL_STATE(2214)] = 103065, - [SMALL_STATE(2215)] = 103104, - [SMALL_STATE(2216)] = 103143, - [SMALL_STATE(2217)] = 103182, - [SMALL_STATE(2218)] = 103233, - [SMALL_STATE(2219)] = 103272, - [SMALL_STATE(2220)] = 103315, - [SMALL_STATE(2221)] = 103354, - [SMALL_STATE(2222)] = 103393, - [SMALL_STATE(2223)] = 103432, - [SMALL_STATE(2224)] = 103471, - [SMALL_STATE(2225)] = 103510, - [SMALL_STATE(2226)] = 103549, - [SMALL_STATE(2227)] = 103588, - [SMALL_STATE(2228)] = 103627, - [SMALL_STATE(2229)] = 103666, - [SMALL_STATE(2230)] = 103705, - [SMALL_STATE(2231)] = 103744, - [SMALL_STATE(2232)] = 103783, - [SMALL_STATE(2233)] = 103826, - [SMALL_STATE(2234)] = 103865, - [SMALL_STATE(2235)] = 103904, - [SMALL_STATE(2236)] = 103943, - [SMALL_STATE(2237)] = 103982, - [SMALL_STATE(2238)] = 104021, - [SMALL_STATE(2239)] = 104060, - [SMALL_STATE(2240)] = 104099, - [SMALL_STATE(2241)] = 104142, - [SMALL_STATE(2242)] = 104181, - [SMALL_STATE(2243)] = 104220, - [SMALL_STATE(2244)] = 104259, - [SMALL_STATE(2245)] = 104298, - [SMALL_STATE(2246)] = 104337, - [SMALL_STATE(2247)] = 104380, - [SMALL_STATE(2248)] = 104419, - [SMALL_STATE(2249)] = 104465, - [SMALL_STATE(2250)] = 104537, - [SMALL_STATE(2251)] = 104609, - [SMALL_STATE(2252)] = 104681, - [SMALL_STATE(2253)] = 104753, - [SMALL_STATE(2254)] = 104825, - [SMALL_STATE(2255)] = 104897, - [SMALL_STATE(2256)] = 104969, - [SMALL_STATE(2257)] = 105041, - [SMALL_STATE(2258)] = 105113, - [SMALL_STATE(2259)] = 105185, - [SMALL_STATE(2260)] = 105257, - [SMALL_STATE(2261)] = 105329, - [SMALL_STATE(2262)] = 105373, - [SMALL_STATE(2263)] = 105419, - [SMALL_STATE(2264)] = 105491, - [SMALL_STATE(2265)] = 105563, - [SMALL_STATE(2266)] = 105607, - [SMALL_STATE(2267)] = 105679, - [SMALL_STATE(2268)] = 105725, - [SMALL_STATE(2269)] = 105771, - [SMALL_STATE(2270)] = 105843, - [SMALL_STATE(2271)] = 105915, - [SMALL_STATE(2272)] = 105987, - [SMALL_STATE(2273)] = 106029, - [SMALL_STATE(2274)] = 106101, - [SMALL_STATE(2275)] = 106143, - [SMALL_STATE(2276)] = 106215, - [SMALL_STATE(2277)] = 106287, - [SMALL_STATE(2278)] = 106359, - [SMALL_STATE(2279)] = 106431, - [SMALL_STATE(2280)] = 106473, - [SMALL_STATE(2281)] = 106545, - [SMALL_STATE(2282)] = 106617, - [SMALL_STATE(2283)] = 106689, - [SMALL_STATE(2284)] = 106731, - [SMALL_STATE(2285)] = 106803, - [SMALL_STATE(2286)] = 106875, - [SMALL_STATE(2287)] = 106917, - [SMALL_STATE(2288)] = 106989, - [SMALL_STATE(2289)] = 107031, - [SMALL_STATE(2290)] = 107103, - [SMALL_STATE(2291)] = 107175, - [SMALL_STATE(2292)] = 107247, - [SMALL_STATE(2293)] = 107284, - [SMALL_STATE(2294)] = 107355, - [SMALL_STATE(2295)] = 107400, - [SMALL_STATE(2296)] = 107437, - [SMALL_STATE(2297)] = 107508, - [SMALL_STATE(2298)] = 107553, - [SMALL_STATE(2299)] = 107620, - [SMALL_STATE(2300)] = 107687, - [SMALL_STATE(2301)] = 107724, - [SMALL_STATE(2302)] = 107793, - [SMALL_STATE(2303)] = 107830, - [SMALL_STATE(2304)] = 107899, - [SMALL_STATE(2305)] = 107970, - [SMALL_STATE(2306)] = 108041, - [SMALL_STATE(2307)] = 108110, - [SMALL_STATE(2308)] = 108179, - [SMALL_STATE(2309)] = 108248, - [SMALL_STATE(2310)] = 108285, - [SMALL_STATE(2311)] = 108352, - [SMALL_STATE(2312)] = 108423, - [SMALL_STATE(2313)] = 108494, - [SMALL_STATE(2314)] = 108563, - [SMALL_STATE(2315)] = 108634, - [SMALL_STATE(2316)] = 108703, - [SMALL_STATE(2317)] = 108740, - [SMALL_STATE(2318)] = 108777, - [SMALL_STATE(2319)] = 108846, - [SMALL_STATE(2320)] = 108883, - [SMALL_STATE(2321)] = 108952, - [SMALL_STATE(2322)] = 109021, - [SMALL_STATE(2323)] = 109090, - [SMALL_STATE(2324)] = 109159, - [SMALL_STATE(2325)] = 109196, - [SMALL_STATE(2326)] = 109265, - [SMALL_STATE(2327)] = 109334, - [SMALL_STATE(2328)] = 109405, - [SMALL_STATE(2329)] = 109474, - [SMALL_STATE(2330)] = 109545, - [SMALL_STATE(2331)] = 109582, - [SMALL_STATE(2332)] = 109619, - [SMALL_STATE(2333)] = 109688, - [SMALL_STATE(2334)] = 109725, - [SMALL_STATE(2335)] = 109794, - [SMALL_STATE(2336)] = 109863, - [SMALL_STATE(2337)] = 109932, - [SMALL_STATE(2338)] = 110001, - [SMALL_STATE(2339)] = 110070, - [SMALL_STATE(2340)] = 110139, - [SMALL_STATE(2341)] = 110208, - [SMALL_STATE(2342)] = 110253, - [SMALL_STATE(2343)] = 110322, - [SMALL_STATE(2344)] = 110391, - [SMALL_STATE(2345)] = 110428, - [SMALL_STATE(2346)] = 110497, - [SMALL_STATE(2347)] = 110566, - [SMALL_STATE(2348)] = 110635, - [SMALL_STATE(2349)] = 110672, - [SMALL_STATE(2350)] = 110741, - [SMALL_STATE(2351)] = 110812, - [SMALL_STATE(2352)] = 110879, - [SMALL_STATE(2353)] = 110948, - [SMALL_STATE(2354)] = 110993, - [SMALL_STATE(2355)] = 111062, - [SMALL_STATE(2356)] = 111099, - [SMALL_STATE(2357)] = 111168, - [SMALL_STATE(2358)] = 111237, - [SMALL_STATE(2359)] = 111274, - [SMALL_STATE(2360)] = 111343, - [SMALL_STATE(2361)] = 111380, - [SMALL_STATE(2362)] = 111449, - [SMALL_STATE(2363)] = 111486, - [SMALL_STATE(2364)] = 111555, - [SMALL_STATE(2365)] = 111623, - [SMALL_STATE(2366)] = 111691, - [SMALL_STATE(2367)] = 111757, - [SMALL_STATE(2368)] = 111797, - [SMALL_STATE(2369)] = 111863, - [SMALL_STATE(2370)] = 111931, - [SMALL_STATE(2371)] = 111999, - [SMALL_STATE(2372)] = 112065, - [SMALL_STATE(2373)] = 112131, - [SMALL_STATE(2374)] = 112199, - [SMALL_STATE(2375)] = 112267, - [SMALL_STATE(2376)] = 112335, - [SMALL_STATE(2377)] = 112403, - [SMALL_STATE(2378)] = 112471, - [SMALL_STATE(2379)] = 112535, - [SMALL_STATE(2380)] = 112599, - [SMALL_STATE(2381)] = 112663, - [SMALL_STATE(2382)] = 112731, - [SMALL_STATE(2383)] = 112797, - [SMALL_STATE(2384)] = 112865, - [SMALL_STATE(2385)] = 112931, - [SMALL_STATE(2386)] = 112999, - [SMALL_STATE(2387)] = 113067, - [SMALL_STATE(2388)] = 113135, - [SMALL_STATE(2389)] = 113203, - [SMALL_STATE(2390)] = 113271, - [SMALL_STATE(2391)] = 113313, - [SMALL_STATE(2392)] = 113381, - [SMALL_STATE(2393)] = 113421, - [SMALL_STATE(2394)] = 113489, - [SMALL_STATE(2395)] = 113529, - [SMALL_STATE(2396)] = 113597, - [SMALL_STATE(2397)] = 113663, - [SMALL_STATE(2398)] = 113729, - [SMALL_STATE(2399)] = 113797, - [SMALL_STATE(2400)] = 113860, - [SMALL_STATE(2401)] = 113923, - [SMALL_STATE(2402)] = 113986, - [SMALL_STATE(2403)] = 114049, - [SMALL_STATE(2404)] = 114112, - [SMALL_STATE(2405)] = 114153, - [SMALL_STATE(2406)] = 114216, - [SMALL_STATE(2407)] = 114279, - [SMALL_STATE(2408)] = 114342, - [SMALL_STATE(2409)] = 114405, - [SMALL_STATE(2410)] = 114468, - [SMALL_STATE(2411)] = 114531, - [SMALL_STATE(2412)] = 114594, - [SMALL_STATE(2413)] = 114657, - [SMALL_STATE(2414)] = 114720, - [SMALL_STATE(2415)] = 114783, - [SMALL_STATE(2416)] = 114846, - [SMALL_STATE(2417)] = 114909, - [SMALL_STATE(2418)] = 114946, - [SMALL_STATE(2419)] = 115009, - [SMALL_STATE(2420)] = 115072, - [SMALL_STATE(2421)] = 115135, - [SMALL_STATE(2422)] = 115198, - [SMALL_STATE(2423)] = 115261, - [SMALL_STATE(2424)] = 115324, - [SMALL_STATE(2425)] = 115387, - [SMALL_STATE(2426)] = 115450, - [SMALL_STATE(2427)] = 115513, - [SMALL_STATE(2428)] = 115576, - [SMALL_STATE(2429)] = 115639, - [SMALL_STATE(2430)] = 115702, - [SMALL_STATE(2431)] = 115765, - [SMALL_STATE(2432)] = 115828, - [SMALL_STATE(2433)] = 115891, - [SMALL_STATE(2434)] = 115954, - [SMALL_STATE(2435)] = 116017, - [SMALL_STATE(2436)] = 116080, - [SMALL_STATE(2437)] = 116115, - [SMALL_STATE(2438)] = 116178, - [SMALL_STATE(2439)] = 116241, - [SMALL_STATE(2440)] = 116304, - [SMALL_STATE(2441)] = 116367, - [SMALL_STATE(2442)] = 116430, - [SMALL_STATE(2443)] = 116493, - [SMALL_STATE(2444)] = 116556, - [SMALL_STATE(2445)] = 116619, - [SMALL_STATE(2446)] = 116682, - [SMALL_STATE(2447)] = 116745, - [SMALL_STATE(2448)] = 116808, - [SMALL_STATE(2449)] = 116871, - [SMALL_STATE(2450)] = 116934, - [SMALL_STATE(2451)] = 116979, - [SMALL_STATE(2452)] = 117042, - [SMALL_STATE(2453)] = 117105, - [SMALL_STATE(2454)] = 117168, - [SMALL_STATE(2455)] = 117209, - [SMALL_STATE(2456)] = 117272, - [SMALL_STATE(2457)] = 117335, - [SMALL_STATE(2458)] = 117376, - [SMALL_STATE(2459)] = 117439, - [SMALL_STATE(2460)] = 117502, - [SMALL_STATE(2461)] = 117565, - [SMALL_STATE(2462)] = 117628, - [SMALL_STATE(2463)] = 117691, - [SMALL_STATE(2464)] = 117754, - [SMALL_STATE(2465)] = 117817, - [SMALL_STATE(2466)] = 117868, - [SMALL_STATE(2467)] = 117931, - [SMALL_STATE(2468)] = 117994, - [SMALL_STATE(2469)] = 118057, - [SMALL_STATE(2470)] = 118120, - [SMALL_STATE(2471)] = 118183, - [SMALL_STATE(2472)] = 118246, - [SMALL_STATE(2473)] = 118309, - [SMALL_STATE(2474)] = 118372, - [SMALL_STATE(2475)] = 118435, - [SMALL_STATE(2476)] = 118498, - [SMALL_STATE(2477)] = 118561, - [SMALL_STATE(2478)] = 118624, - [SMALL_STATE(2479)] = 118687, - [SMALL_STATE(2480)] = 118750, - [SMALL_STATE(2481)] = 118813, - [SMALL_STATE(2482)] = 118876, - [SMALL_STATE(2483)] = 118939, - [SMALL_STATE(2484)] = 119002, - [SMALL_STATE(2485)] = 119065, - [SMALL_STATE(2486)] = 119128, - [SMALL_STATE(2487)] = 119191, - [SMALL_STATE(2488)] = 119254, - [SMALL_STATE(2489)] = 119317, - [SMALL_STATE(2490)] = 119380, - [SMALL_STATE(2491)] = 119415, - [SMALL_STATE(2492)] = 119478, - [SMALL_STATE(2493)] = 119541, - [SMALL_STATE(2494)] = 119604, - [SMALL_STATE(2495)] = 119667, - [SMALL_STATE(2496)] = 119730, - [SMALL_STATE(2497)] = 119793, - [SMALL_STATE(2498)] = 119856, - [SMALL_STATE(2499)] = 119919, - [SMALL_STATE(2500)] = 119982, - [SMALL_STATE(2501)] = 120045, - [SMALL_STATE(2502)] = 120108, - [SMALL_STATE(2503)] = 120149, - [SMALL_STATE(2504)] = 120200, - [SMALL_STATE(2505)] = 120263, - [SMALL_STATE(2506)] = 120326, - [SMALL_STATE(2507)] = 120389, - [SMALL_STATE(2508)] = 120430, - [SMALL_STATE(2509)] = 120493, - [SMALL_STATE(2510)] = 120534, - [SMALL_STATE(2511)] = 120575, - [SMALL_STATE(2512)] = 120638, - [SMALL_STATE(2513)] = 120701, - [SMALL_STATE(2514)] = 120764, - [SMALL_STATE(2515)] = 120827, - [SMALL_STATE(2516)] = 120890, - [SMALL_STATE(2517)] = 120953, - [SMALL_STATE(2518)] = 120994, - [SMALL_STATE(2519)] = 121057, - [SMALL_STATE(2520)] = 121120, - [SMALL_STATE(2521)] = 121183, - [SMALL_STATE(2522)] = 121246, - [SMALL_STATE(2523)] = 121309, - [SMALL_STATE(2524)] = 121372, - [SMALL_STATE(2525)] = 121435, - [SMALL_STATE(2526)] = 121498, - [SMALL_STATE(2527)] = 121561, - [SMALL_STATE(2528)] = 121624, - [SMALL_STATE(2529)] = 121687, - [SMALL_STATE(2530)] = 121750, - [SMALL_STATE(2531)] = 121813, - [SMALL_STATE(2532)] = 121876, - [SMALL_STATE(2533)] = 121939, - [SMALL_STATE(2534)] = 122002, - [SMALL_STATE(2535)] = 122041, - [SMALL_STATE(2536)] = 122104, - [SMALL_STATE(2537)] = 122167, - [SMALL_STATE(2538)] = 122230, - [SMALL_STATE(2539)] = 122293, - [SMALL_STATE(2540)] = 122334, - [SMALL_STATE(2541)] = 122397, - [SMALL_STATE(2542)] = 122460, - [SMALL_STATE(2543)] = 122523, - [SMALL_STATE(2544)] = 122586, - [SMALL_STATE(2545)] = 122649, - [SMALL_STATE(2546)] = 122712, - [SMALL_STATE(2547)] = 122775, - [SMALL_STATE(2548)] = 122838, - [SMALL_STATE(2549)] = 122901, - [SMALL_STATE(2550)] = 122964, - [SMALL_STATE(2551)] = 123027, - [SMALL_STATE(2552)] = 123090, - [SMALL_STATE(2553)] = 123153, - [SMALL_STATE(2554)] = 123188, - [SMALL_STATE(2555)] = 123251, - [SMALL_STATE(2556)] = 123314, - [SMALL_STATE(2557)] = 123377, - [SMALL_STATE(2558)] = 123440, - [SMALL_STATE(2559)] = 123503, - [SMALL_STATE(2560)] = 123548, - [SMALL_STATE(2561)] = 123611, - [SMALL_STATE(2562)] = 123674, - [SMALL_STATE(2563)] = 123737, - [SMALL_STATE(2564)] = 123800, - [SMALL_STATE(2565)] = 123863, - [SMALL_STATE(2566)] = 123926, - [SMALL_STATE(2567)] = 123989, - [SMALL_STATE(2568)] = 124052, - [SMALL_STATE(2569)] = 124115, - [SMALL_STATE(2570)] = 124178, - [SMALL_STATE(2571)] = 124213, - [SMALL_STATE(2572)] = 124276, - [SMALL_STATE(2573)] = 124339, - [SMALL_STATE(2574)] = 124402, - [SMALL_STATE(2575)] = 124465, - [SMALL_STATE(2576)] = 124528, - [SMALL_STATE(2577)] = 124591, - [SMALL_STATE(2578)] = 124654, - [SMALL_STATE(2579)] = 124717, - [SMALL_STATE(2580)] = 124780, - [SMALL_STATE(2581)] = 124843, - [SMALL_STATE(2582)] = 124906, - [SMALL_STATE(2583)] = 124969, - [SMALL_STATE(2584)] = 125032, - [SMALL_STATE(2585)] = 125095, - [SMALL_STATE(2586)] = 125158, - [SMALL_STATE(2587)] = 125221, - [SMALL_STATE(2588)] = 125284, - [SMALL_STATE(2589)] = 125347, - [SMALL_STATE(2590)] = 125410, - [SMALL_STATE(2591)] = 125473, - [SMALL_STATE(2592)] = 125536, - [SMALL_STATE(2593)] = 125599, - [SMALL_STATE(2594)] = 125662, - [SMALL_STATE(2595)] = 125725, - [SMALL_STATE(2596)] = 125788, - [SMALL_STATE(2597)] = 125851, - [SMALL_STATE(2598)] = 125891, - [SMALL_STATE(2599)] = 125931, - [SMALL_STATE(2600)] = 125969, - [SMALL_STATE(2601)] = 126003, - [SMALL_STATE(2602)] = 126037, - [SMALL_STATE(2603)] = 126077, - [SMALL_STATE(2604)] = 126121, - [SMALL_STATE(2605)] = 126165, - [SMALL_STATE(2606)] = 126203, - [SMALL_STATE(2607)] = 126237, - [SMALL_STATE(2608)] = 126271, - [SMALL_STATE(2609)] = 126311, - [SMALL_STATE(2610)] = 126351, - [SMALL_STATE(2611)] = 126401, - [SMALL_STATE(2612)] = 126441, - [SMALL_STATE(2613)] = 126475, - [SMALL_STATE(2614)] = 126515, - [SMALL_STATE(2615)] = 126549, - [SMALL_STATE(2616)] = 126589, - [SMALL_STATE(2617)] = 126629, - [SMALL_STATE(2618)] = 126669, - [SMALL_STATE(2619)] = 126703, - [SMALL_STATE(2620)] = 126737, - [SMALL_STATE(2621)] = 126771, - [SMALL_STATE(2622)] = 126805, - [SMALL_STATE(2623)] = 126839, - [SMALL_STATE(2624)] = 126873, - [SMALL_STATE(2625)] = 126907, - [SMALL_STATE(2626)] = 126957, - [SMALL_STATE(2627)] = 126997, - [SMALL_STATE(2628)] = 127031, - [SMALL_STATE(2629)] = 127069, - [SMALL_STATE(2630)] = 127109, - [SMALL_STATE(2631)] = 127145, - [SMALL_STATE(2632)] = 127185, - [SMALL_STATE(2633)] = 127225, - [SMALL_STATE(2634)] = 127259, - [SMALL_STATE(2635)] = 127293, - [SMALL_STATE(2636)] = 127333, - [SMALL_STATE(2637)] = 127373, - [SMALL_STATE(2638)] = 127413, - [SMALL_STATE(2639)] = 127453, - [SMALL_STATE(2640)] = 127487, - [SMALL_STATE(2641)] = 127521, - [SMALL_STATE(2642)] = 127554, - [SMALL_STATE(2643)] = 127611, - [SMALL_STATE(2644)] = 127650, - [SMALL_STATE(2645)] = 127689, - [SMALL_STATE(2646)] = 127722, - [SMALL_STATE(2647)] = 127755, - [SMALL_STATE(2648)] = 127798, - [SMALL_STATE(2649)] = 127837, - [SMALL_STATE(2650)] = 127894, - [SMALL_STATE(2651)] = 127943, - [SMALL_STATE(2652)] = 127976, - [SMALL_STATE(2653)] = 128009, - [SMALL_STATE(2654)] = 128048, - [SMALL_STATE(2655)] = 128097, - [SMALL_STATE(2656)] = 128130, - [SMALL_STATE(2657)] = 128167, - [SMALL_STATE(2658)] = 128200, - [SMALL_STATE(2659)] = 128239, - [SMALL_STATE(2660)] = 128288, - [SMALL_STATE(2661)] = 128321, - [SMALL_STATE(2662)] = 128358, - [SMALL_STATE(2663)] = 128391, - [SMALL_STATE(2664)] = 128430, - [SMALL_STATE(2665)] = 128463, - [SMALL_STATE(2666)] = 128496, - [SMALL_STATE(2667)] = 128535, - [SMALL_STATE(2668)] = 128570, - [SMALL_STATE(2669)] = 128613, - [SMALL_STATE(2670)] = 128646, - [SMALL_STATE(2671)] = 128695, - [SMALL_STATE(2672)] = 128734, - [SMALL_STATE(2673)] = 128773, - [SMALL_STATE(2674)] = 128806, - [SMALL_STATE(2675)] = 128839, - [SMALL_STATE(2676)] = 128872, - [SMALL_STATE(2677)] = 128909, - [SMALL_STATE(2678)] = 128942, - [SMALL_STATE(2679)] = 128999, - [SMALL_STATE(2680)] = 129032, - [SMALL_STATE(2681)] = 129071, - [SMALL_STATE(2682)] = 129104, - [SMALL_STATE(2683)] = 129153, - [SMALL_STATE(2684)] = 129186, - [SMALL_STATE(2685)] = 129223, - [SMALL_STATE(2686)] = 129260, - [SMALL_STATE(2687)] = 129299, - [SMALL_STATE(2688)] = 129332, - [SMALL_STATE(2689)] = 129367, - [SMALL_STATE(2690)] = 129400, - [SMALL_STATE(2691)] = 129433, - [SMALL_STATE(2692)] = 129476, - [SMALL_STATE(2693)] = 129515, - [SMALL_STATE(2694)] = 129554, - [SMALL_STATE(2695)] = 129593, - [SMALL_STATE(2696)] = 129632, - [SMALL_STATE(2697)] = 129671, - [SMALL_STATE(2698)] = 129714, - [SMALL_STATE(2699)] = 129753, - [SMALL_STATE(2700)] = 129788, - [SMALL_STATE(2701)] = 129827, - [SMALL_STATE(2702)] = 129866, - [SMALL_STATE(2703)] = 129905, - [SMALL_STATE(2704)] = 129938, - [SMALL_STATE(2705)] = 129971, - [SMALL_STATE(2706)] = 130004, - [SMALL_STATE(2707)] = 130047, - [SMALL_STATE(2708)] = 130086, - [SMALL_STATE(2709)] = 130119, - [SMALL_STATE(2710)] = 130162, - [SMALL_STATE(2711)] = 130195, - [SMALL_STATE(2712)] = 130232, - [SMALL_STATE(2713)] = 130289, - [SMALL_STATE(2714)] = 130328, - [SMALL_STATE(2715)] = 130377, - [SMALL_STATE(2716)] = 130416, - [SMALL_STATE(2717)] = 130449, - [SMALL_STATE(2718)] = 130488, - [SMALL_STATE(2719)] = 130525, - [SMALL_STATE(2720)] = 130582, - [SMALL_STATE(2721)] = 130615, - [SMALL_STATE(2722)] = 130648, - [SMALL_STATE(2723)] = 130687, - [SMALL_STATE(2724)] = 130720, - [SMALL_STATE(2725)] = 130759, - [SMALL_STATE(2726)] = 130792, - [SMALL_STATE(2727)] = 130829, - [SMALL_STATE(2728)] = 130868, - [SMALL_STATE(2729)] = 130901, - [SMALL_STATE(2730)] = 130940, - [SMALL_STATE(2731)] = 130997, - [SMALL_STATE(2732)] = 131030, - [SMALL_STATE(2733)] = 131069, - [SMALL_STATE(2734)] = 131102, - [SMALL_STATE(2735)] = 131135, - [SMALL_STATE(2736)] = 131192, - [SMALL_STATE(2737)] = 131249, - [SMALL_STATE(2738)] = 131306, - [SMALL_STATE(2739)] = 131345, - [SMALL_STATE(2740)] = 131384, - [SMALL_STATE(2741)] = 131423, - [SMALL_STATE(2742)] = 131456, - [SMALL_STATE(2743)] = 131488, - [SMALL_STATE(2744)] = 131526, - [SMALL_STATE(2745)] = 131558, - [SMALL_STATE(2746)] = 131604, - [SMALL_STATE(2747)] = 131636, - [SMALL_STATE(2748)] = 131674, - [SMALL_STATE(2749)] = 131712, - [SMALL_STATE(2750)] = 131750, - [SMALL_STATE(2751)] = 131788, - [SMALL_STATE(2752)] = 131820, - [SMALL_STATE(2753)] = 131852, - [SMALL_STATE(2754)] = 131890, - [SMALL_STATE(2755)] = 131922, - [SMALL_STATE(2756)] = 131976, - [SMALL_STATE(2757)] = 132014, - [SMALL_STATE(2758)] = 132060, - [SMALL_STATE(2759)] = 132092, - [SMALL_STATE(2760)] = 132146, - [SMALL_STATE(2761)] = 132178, - [SMALL_STATE(2762)] = 132210, - [SMALL_STATE(2763)] = 132242, - [SMALL_STATE(2764)] = 132296, - [SMALL_STATE(2765)] = 132350, - [SMALL_STATE(2766)] = 132382, - [SMALL_STATE(2767)] = 132420, - [SMALL_STATE(2768)] = 132452, - [SMALL_STATE(2769)] = 132484, - [SMALL_STATE(2770)] = 132516, - [SMALL_STATE(2771)] = 132554, - [SMALL_STATE(2772)] = 132592, - [SMALL_STATE(2773)] = 132624, - [SMALL_STATE(2774)] = 132656, - [SMALL_STATE(2775)] = 132688, - [SMALL_STATE(2776)] = 132726, - [SMALL_STATE(2777)] = 132758, - [SMALL_STATE(2778)] = 132800, - [SMALL_STATE(2779)] = 132832, - [SMALL_STATE(2780)] = 132886, - [SMALL_STATE(2781)] = 132924, - [SMALL_STATE(2782)] = 132962, - [SMALL_STATE(2783)] = 133000, - [SMALL_STATE(2784)] = 133032, - [SMALL_STATE(2785)] = 133064, - [SMALL_STATE(2786)] = 133098, - [SMALL_STATE(2787)] = 133144, - [SMALL_STATE(2788)] = 133180, - [SMALL_STATE(2789)] = 133218, - [SMALL_STATE(2790)] = 133260, - [SMALL_STATE(2791)] = 133296, - [SMALL_STATE(2792)] = 133328, - [SMALL_STATE(2793)] = 133382, - [SMALL_STATE(2794)] = 133420, - [SMALL_STATE(2795)] = 133452, - [SMALL_STATE(2796)] = 133484, - [SMALL_STATE(2797)] = 133522, - [SMALL_STATE(2798)] = 133554, - [SMALL_STATE(2799)] = 133592, - [SMALL_STATE(2800)] = 133638, - [SMALL_STATE(2801)] = 133684, - [SMALL_STATE(2802)] = 133722, - [SMALL_STATE(2803)] = 133754, - [SMALL_STATE(2804)] = 133808, - [SMALL_STATE(2805)] = 133862, - [SMALL_STATE(2806)] = 133900, - [SMALL_STATE(2807)] = 133938, - [SMALL_STATE(2808)] = 133984, - [SMALL_STATE(2809)] = 134016, - [SMALL_STATE(2810)] = 134054, - [SMALL_STATE(2811)] = 134092, - [SMALL_STATE(2812)] = 134146, - [SMALL_STATE(2813)] = 134178, - [SMALL_STATE(2814)] = 134216, - [SMALL_STATE(2815)] = 134262, - [SMALL_STATE(2816)] = 134294, - [SMALL_STATE(2817)] = 134332, - [SMALL_STATE(2818)] = 134370, - [SMALL_STATE(2819)] = 134402, - [SMALL_STATE(2820)] = 134440, - [SMALL_STATE(2821)] = 134478, - [SMALL_STATE(2822)] = 134516, - [SMALL_STATE(2823)] = 134552, - [SMALL_STATE(2824)] = 134590, - [SMALL_STATE(2825)] = 134622, - [SMALL_STATE(2826)] = 134660, - [SMALL_STATE(2827)] = 134698, - [SMALL_STATE(2828)] = 134730, - [SMALL_STATE(2829)] = 134768, - [SMALL_STATE(2830)] = 134804, - [SMALL_STATE(2831)] = 134836, - [SMALL_STATE(2832)] = 134882, - [SMALL_STATE(2833)] = 134914, - [SMALL_STATE(2834)] = 134946, - [SMALL_STATE(2835)] = 134984, - [SMALL_STATE(2836)] = 135020, - [SMALL_STATE(2837)] = 135052, - [SMALL_STATE(2838)] = 135098, - [SMALL_STATE(2839)] = 135136, - [SMALL_STATE(2840)] = 135168, - [SMALL_STATE(2841)] = 135200, - [SMALL_STATE(2842)] = 135236, - [SMALL_STATE(2843)] = 135274, - [SMALL_STATE(2844)] = 135306, - [SMALL_STATE(2845)] = 135344, - [SMALL_STATE(2846)] = 135376, - [SMALL_STATE(2847)] = 135408, - [SMALL_STATE(2848)] = 135439, - [SMALL_STATE(2849)] = 135470, - [SMALL_STATE(2850)] = 135501, - [SMALL_STATE(2851)] = 135538, - [SMALL_STATE(2852)] = 135569, - [SMALL_STATE(2853)] = 135600, - [SMALL_STATE(2854)] = 135631, - [SMALL_STATE(2855)] = 135662, - [SMALL_STATE(2856)] = 135699, - [SMALL_STATE(2857)] = 135730, - [SMALL_STATE(2858)] = 135761, - [SMALL_STATE(2859)] = 135792, - [SMALL_STATE(2860)] = 135823, - [SMALL_STATE(2861)] = 135854, - [SMALL_STATE(2862)] = 135885, - [SMALL_STATE(2863)] = 135916, - [SMALL_STATE(2864)] = 135947, - [SMALL_STATE(2865)] = 135984, - [SMALL_STATE(2866)] = 136015, - [SMALL_STATE(2867)] = 136052, - [SMALL_STATE(2868)] = 136083, - [SMALL_STATE(2869)] = 136118, - [SMALL_STATE(2870)] = 136149, - [SMALL_STATE(2871)] = 136180, - [SMALL_STATE(2872)] = 136211, - [SMALL_STATE(2873)] = 136242, - [SMALL_STATE(2874)] = 136273, - [SMALL_STATE(2875)] = 136304, - [SMALL_STATE(2876)] = 136335, - [SMALL_STATE(2877)] = 136366, - [SMALL_STATE(2878)] = 136397, - [SMALL_STATE(2879)] = 136428, - [SMALL_STATE(2880)] = 136459, - [SMALL_STATE(2881)] = 136490, - [SMALL_STATE(2882)] = 136521, - [SMALL_STATE(2883)] = 136558, - [SMALL_STATE(2884)] = 136589, - [SMALL_STATE(2885)] = 136620, - [SMALL_STATE(2886)] = 136651, - [SMALL_STATE(2887)] = 136682, - [SMALL_STATE(2888)] = 136713, - [SMALL_STATE(2889)] = 136744, - [SMALL_STATE(2890)] = 136775, - [SMALL_STATE(2891)] = 136806, - [SMALL_STATE(2892)] = 136843, - [SMALL_STATE(2893)] = 136874, - [SMALL_STATE(2894)] = 136905, - [SMALL_STATE(2895)] = 136940, - [SMALL_STATE(2896)] = 136971, - [SMALL_STATE(2897)] = 137002, - [SMALL_STATE(2898)] = 137033, - [SMALL_STATE(2899)] = 137064, - [SMALL_STATE(2900)] = 137095, - [SMALL_STATE(2901)] = 137126, - [SMALL_STATE(2902)] = 137157, - [SMALL_STATE(2903)] = 137188, - [SMALL_STATE(2904)] = 137223, - [SMALL_STATE(2905)] = 137254, - [SMALL_STATE(2906)] = 137285, - [SMALL_STATE(2907)] = 137316, - [SMALL_STATE(2908)] = 137347, - [SMALL_STATE(2909)] = 137378, - [SMALL_STATE(2910)] = 137409, - [SMALL_STATE(2911)] = 137440, - [SMALL_STATE(2912)] = 137471, - [SMALL_STATE(2913)] = 137502, - [SMALL_STATE(2914)] = 137539, - [SMALL_STATE(2915)] = 137576, - [SMALL_STATE(2916)] = 137613, - [SMALL_STATE(2917)] = 137650, - [SMALL_STATE(2918)] = 137681, - [SMALL_STATE(2919)] = 137712, - [SMALL_STATE(2920)] = 137749, - [SMALL_STATE(2921)] = 137780, - [SMALL_STATE(2922)] = 137811, - [SMALL_STATE(2923)] = 137842, - [SMALL_STATE(2924)] = 137873, - [SMALL_STATE(2925)] = 137910, - [SMALL_STATE(2926)] = 137941, - [SMALL_STATE(2927)] = 137972, - [SMALL_STATE(2928)] = 138003, - [SMALL_STATE(2929)] = 138034, - [SMALL_STATE(2930)] = 138065, - [SMALL_STATE(2931)] = 138102, - [SMALL_STATE(2932)] = 138133, - [SMALL_STATE(2933)] = 138164, - [SMALL_STATE(2934)] = 138195, - [SMALL_STATE(2935)] = 138232, - [SMALL_STATE(2936)] = 138263, - [SMALL_STATE(2937)] = 138294, - [SMALL_STATE(2938)] = 138325, - [SMALL_STATE(2939)] = 138362, - [SMALL_STATE(2940)] = 138393, - [SMALL_STATE(2941)] = 138424, - [SMALL_STATE(2942)] = 138455, - [SMALL_STATE(2943)] = 138486, - [SMALL_STATE(2944)] = 138517, - [SMALL_STATE(2945)] = 138548, - [SMALL_STATE(2946)] = 138578, - [SMALL_STATE(2947)] = 138608, - [SMALL_STATE(2948)] = 138638, - [SMALL_STATE(2949)] = 138668, - [SMALL_STATE(2950)] = 138698, - [SMALL_STATE(2951)] = 138728, - [SMALL_STATE(2952)] = 138758, - [SMALL_STATE(2953)] = 138788, - [SMALL_STATE(2954)] = 138818, - [SMALL_STATE(2955)] = 138848, - [SMALL_STATE(2956)] = 138878, - [SMALL_STATE(2957)] = 138928, - [SMALL_STATE(2958)] = 138962, - [SMALL_STATE(2959)] = 138992, - [SMALL_STATE(2960)] = 139022, - [SMALL_STATE(2961)] = 139058, - [SMALL_STATE(2962)] = 139088, - [SMALL_STATE(2963)] = 139138, - [SMALL_STATE(2964)] = 139168, - [SMALL_STATE(2965)] = 139198, - [SMALL_STATE(2966)] = 139228, - [SMALL_STATE(2967)] = 139278, - [SMALL_STATE(2968)] = 139328, - [SMALL_STATE(2969)] = 139364, - [SMALL_STATE(2970)] = 139400, - [SMALL_STATE(2971)] = 139430, - [SMALL_STATE(2972)] = 139460, - [SMALL_STATE(2973)] = 139510, - [SMALL_STATE(2974)] = 139540, - [SMALL_STATE(2975)] = 139576, - [SMALL_STATE(2976)] = 139606, - [SMALL_STATE(2977)] = 139642, - [SMALL_STATE(2978)] = 139672, - [SMALL_STATE(2979)] = 139702, - [SMALL_STATE(2980)] = 139738, - [SMALL_STATE(2981)] = 139768, - [SMALL_STATE(2982)] = 139798, - [SMALL_STATE(2983)] = 139828, - [SMALL_STATE(2984)] = 139858, - [SMALL_STATE(2985)] = 139908, - [SMALL_STATE(2986)] = 139938, - [SMALL_STATE(2987)] = 139968, - [SMALL_STATE(2988)] = 140004, - [SMALL_STATE(2989)] = 140034, - [SMALL_STATE(2990)] = 140070, - [SMALL_STATE(2991)] = 140100, - [SMALL_STATE(2992)] = 140130, - [SMALL_STATE(2993)] = 140166, - [SMALL_STATE(2994)] = 140196, - [SMALL_STATE(2995)] = 140226, - [SMALL_STATE(2996)] = 140256, - [SMALL_STATE(2997)] = 140286, - [SMALL_STATE(2998)] = 140322, - [SMALL_STATE(2999)] = 140356, - [SMALL_STATE(3000)] = 140386, - [SMALL_STATE(3001)] = 140416, - [SMALL_STATE(3002)] = 140452, - [SMALL_STATE(3003)] = 140482, - [SMALL_STATE(3004)] = 140512, - [SMALL_STATE(3005)] = 140542, - [SMALL_STATE(3006)] = 140572, - [SMALL_STATE(3007)] = 140602, - [SMALL_STATE(3008)] = 140631, - [SMALL_STATE(3009)] = 140680, - [SMALL_STATE(3010)] = 140727, - [SMALL_STATE(3011)] = 140776, - [SMALL_STATE(3012)] = 140811, - [SMALL_STATE(3013)] = 140840, - [SMALL_STATE(3014)] = 140889, - [SMALL_STATE(3015)] = 140918, - [SMALL_STATE(3016)] = 140953, - [SMALL_STATE(3017)] = 140982, - [SMALL_STATE(3018)] = 141031, - [SMALL_STATE(3019)] = 141080, - [SMALL_STATE(3020)] = 141115, - [SMALL_STATE(3021)] = 141164, - [SMALL_STATE(3022)] = 141193, - [SMALL_STATE(3023)] = 141240, - [SMALL_STATE(3024)] = 141269, - [SMALL_STATE(3025)] = 141302, - [SMALL_STATE(3026)] = 141351, - [SMALL_STATE(3027)] = 141380, - [SMALL_STATE(3028)] = 141429, - [SMALL_STATE(3029)] = 141478, - [SMALL_STATE(3030)] = 141511, - [SMALL_STATE(3031)] = 141560, - [SMALL_STATE(3032)] = 141609, - [SMALL_STATE(3033)] = 141658, - [SMALL_STATE(3034)] = 141707, - [SMALL_STATE(3035)] = 141756, - [SMALL_STATE(3036)] = 141805, - [SMALL_STATE(3037)] = 141854, - [SMALL_STATE(3038)] = 141903, - [SMALL_STATE(3039)] = 141932, - [SMALL_STATE(3040)] = 141981, - [SMALL_STATE(3041)] = 142030, - [SMALL_STATE(3042)] = 142079, - [SMALL_STATE(3043)] = 142128, - [SMALL_STATE(3044)] = 142177, - [SMALL_STATE(3045)] = 142226, - [SMALL_STATE(3046)] = 142255, - [SMALL_STATE(3047)] = 142288, - [SMALL_STATE(3048)] = 142317, - [SMALL_STATE(3049)] = 142366, - [SMALL_STATE(3050)] = 142415, - [SMALL_STATE(3051)] = 142444, - [SMALL_STATE(3052)] = 142473, - [SMALL_STATE(3053)] = 142522, - [SMALL_STATE(3054)] = 142551, - [SMALL_STATE(3055)] = 142580, - [SMALL_STATE(3056)] = 142629, - [SMALL_STATE(3057)] = 142678, - [SMALL_STATE(3058)] = 142707, - [SMALL_STATE(3059)] = 142736, - [SMALL_STATE(3060)] = 142771, - [SMALL_STATE(3061)] = 142806, - [SMALL_STATE(3062)] = 142855, - [SMALL_STATE(3063)] = 142884, - [SMALL_STATE(3064)] = 142913, - [SMALL_STATE(3065)] = 142962, - [SMALL_STATE(3066)] = 142991, - [SMALL_STATE(3067)] = 143040, - [SMALL_STATE(3068)] = 143069, - [SMALL_STATE(3069)] = 143118, - [SMALL_STATE(3070)] = 143167, - [SMALL_STATE(3071)] = 143196, - [SMALL_STATE(3072)] = 143245, - [SMALL_STATE(3073)] = 143274, - [SMALL_STATE(3074)] = 143323, - [SMALL_STATE(3075)] = 143372, - [SMALL_STATE(3076)] = 143421, - [SMALL_STATE(3077)] = 143470, - [SMALL_STATE(3078)] = 143519, - [SMALL_STATE(3079)] = 143548, - [SMALL_STATE(3080)] = 143597, - [SMALL_STATE(3081)] = 143626, - [SMALL_STATE(3082)] = 143655, - [SMALL_STATE(3083)] = 143684, - [SMALL_STATE(3084)] = 143713, - [SMALL_STATE(3085)] = 143762, - [SMALL_STATE(3086)] = 143811, - [SMALL_STATE(3087)] = 143860, - [SMALL_STATE(3088)] = 143893, - [SMALL_STATE(3089)] = 143942, - [SMALL_STATE(3090)] = 143991, - [SMALL_STATE(3091)] = 144040, - [SMALL_STATE(3092)] = 144089, - [SMALL_STATE(3093)] = 144138, - [SMALL_STATE(3094)] = 144187, - [SMALL_STATE(3095)] = 144236, - [SMALL_STATE(3096)] = 144265, - [SMALL_STATE(3097)] = 144314, - [SMALL_STATE(3098)] = 144363, - [SMALL_STATE(3099)] = 144392, - [SMALL_STATE(3100)] = 144441, - [SMALL_STATE(3101)] = 144490, - [SMALL_STATE(3102)] = 144539, - [SMALL_STATE(3103)] = 144588, - [SMALL_STATE(3104)] = 144621, - [SMALL_STATE(3105)] = 144670, - [SMALL_STATE(3106)] = 144719, - [SMALL_STATE(3107)] = 144768, - [SMALL_STATE(3108)] = 144817, - [SMALL_STATE(3109)] = 144846, - [SMALL_STATE(3110)] = 144895, - [SMALL_STATE(3111)] = 144944, - [SMALL_STATE(3112)] = 144973, - [SMALL_STATE(3113)] = 145002, - [SMALL_STATE(3114)] = 145049, - [SMALL_STATE(3115)] = 145078, - [SMALL_STATE(3116)] = 145107, - [SMALL_STATE(3117)] = 145154, - [SMALL_STATE(3118)] = 145197, - [SMALL_STATE(3119)] = 145226, - [SMALL_STATE(3120)] = 145255, - [SMALL_STATE(3121)] = 145284, - [SMALL_STATE(3122)] = 145313, - [SMALL_STATE(3123)] = 145342, - [SMALL_STATE(3124)] = 145371, - [SMALL_STATE(3125)] = 145414, - [SMALL_STATE(3126)] = 145447, - [SMALL_STATE(3127)] = 145495, - [SMALL_STATE(3128)] = 145527, - [SMALL_STATE(3129)] = 145575, - [SMALL_STATE(3130)] = 145623, - [SMALL_STATE(3131)] = 145653, - [SMALL_STATE(3132)] = 145683, - [SMALL_STATE(3133)] = 145731, - [SMALL_STATE(3134)] = 145779, - [SMALL_STATE(3135)] = 145823, - [SMALL_STATE(3136)] = 145871, - [SMALL_STATE(3137)] = 145919, - [SMALL_STATE(3138)] = 145947, - [SMALL_STATE(3139)] = 145977, - [SMALL_STATE(3140)] = 146025, - [SMALL_STATE(3141)] = 146073, - [SMALL_STATE(3142)] = 146121, - [SMALL_STATE(3143)] = 146169, - [SMALL_STATE(3144)] = 146217, - [SMALL_STATE(3145)] = 146245, - [SMALL_STATE(3146)] = 146293, - [SMALL_STATE(3147)] = 146341, - [SMALL_STATE(3148)] = 146389, - [SMALL_STATE(3149)] = 146437, - [SMALL_STATE(3150)] = 146485, - [SMALL_STATE(3151)] = 146515, - [SMALL_STATE(3152)] = 146543, - [SMALL_STATE(3153)] = 146577, - [SMALL_STATE(3154)] = 146625, - [SMALL_STATE(3155)] = 146673, - [SMALL_STATE(3156)] = 146721, - [SMALL_STATE(3157)] = 146769, - [SMALL_STATE(3158)] = 146817, - [SMALL_STATE(3159)] = 146851, - [SMALL_STATE(3160)] = 146899, - [SMALL_STATE(3161)] = 146947, - [SMALL_STATE(3162)] = 146979, - [SMALL_STATE(3163)] = 147027, - [SMALL_STATE(3164)] = 147057, - [SMALL_STATE(3165)] = 147105, - [SMALL_STATE(3166)] = 147135, - [SMALL_STATE(3167)] = 147163, - [SMALL_STATE(3168)] = 147211, - [SMALL_STATE(3169)] = 147259, - [SMALL_STATE(3170)] = 147287, - [SMALL_STATE(3171)] = 147331, - [SMALL_STATE(3172)] = 147379, - [SMALL_STATE(3173)] = 147407, - [SMALL_STATE(3174)] = 147455, - [SMALL_STATE(3175)] = 147503, - [SMALL_STATE(3176)] = 147533, - [SMALL_STATE(3177)] = 147563, - [SMALL_STATE(3178)] = 147593, - [SMALL_STATE(3179)] = 147641, - [SMALL_STATE(3180)] = 147689, - [SMALL_STATE(3181)] = 147737, - [SMALL_STATE(3182)] = 147785, - [SMALL_STATE(3183)] = 147833, - [SMALL_STATE(3184)] = 147865, - [SMALL_STATE(3185)] = 147913, - [SMALL_STATE(3186)] = 147945, - [SMALL_STATE(3187)] = 147979, - [SMALL_STATE(3188)] = 148007, - [SMALL_STATE(3189)] = 148037, - [SMALL_STATE(3190)] = 148067, - [SMALL_STATE(3191)] = 148115, - [SMALL_STATE(3192)] = 148163, - [SMALL_STATE(3193)] = 148211, - [SMALL_STATE(3194)] = 148259, - [SMALL_STATE(3195)] = 148307, - [SMALL_STATE(3196)] = 148337, - [SMALL_STATE(3197)] = 148385, - [SMALL_STATE(3198)] = 148417, - [SMALL_STATE(3199)] = 148465, - [SMALL_STATE(3200)] = 148513, - [SMALL_STATE(3201)] = 148561, - [SMALL_STATE(3202)] = 148609, - [SMALL_STATE(3203)] = 148657, - [SMALL_STATE(3204)] = 148705, - [SMALL_STATE(3205)] = 148753, - [SMALL_STATE(3206)] = 148801, - [SMALL_STATE(3207)] = 148831, - [SMALL_STATE(3208)] = 148861, - [SMALL_STATE(3209)] = 148909, - [SMALL_STATE(3210)] = 148957, - [SMALL_STATE(3211)] = 149005, - [SMALL_STATE(3212)] = 149053, - [SMALL_STATE(3213)] = 149101, - [SMALL_STATE(3214)] = 149135, - [SMALL_STATE(3215)] = 149169, - [SMALL_STATE(3216)] = 149217, - [SMALL_STATE(3217)] = 149265, - [SMALL_STATE(3218)] = 149313, - [SMALL_STATE(3219)] = 149361, - [SMALL_STATE(3220)] = 149409, - [SMALL_STATE(3221)] = 149457, - [SMALL_STATE(3222)] = 149491, - [SMALL_STATE(3223)] = 149539, - [SMALL_STATE(3224)] = 149587, - [SMALL_STATE(3225)] = 149635, - [SMALL_STATE(3226)] = 149683, - [SMALL_STATE(3227)] = 149713, - [SMALL_STATE(3228)] = 149761, - [SMALL_STATE(3229)] = 149809, - [SMALL_STATE(3230)] = 149857, - [SMALL_STATE(3231)] = 149905, - [SMALL_STATE(3232)] = 149953, - [SMALL_STATE(3233)] = 150001, - [SMALL_STATE(3234)] = 150049, - [SMALL_STATE(3235)] = 150097, - [SMALL_STATE(3236)] = 150145, - [SMALL_STATE(3237)] = 150173, - [SMALL_STATE(3238)] = 150221, - [SMALL_STATE(3239)] = 150269, - [SMALL_STATE(3240)] = 150297, - [SMALL_STATE(3241)] = 150345, - [SMALL_STATE(3242)] = 150393, - [SMALL_STATE(3243)] = 150441, - [SMALL_STATE(3244)] = 150473, - [SMALL_STATE(3245)] = 150501, - [SMALL_STATE(3246)] = 150531, - [SMALL_STATE(3247)] = 150561, - [SMALL_STATE(3248)] = 150609, - [SMALL_STATE(3249)] = 150657, - [SMALL_STATE(3250)] = 150705, - [SMALL_STATE(3251)] = 150753, - [SMALL_STATE(3252)] = 150785, - [SMALL_STATE(3253)] = 150833, - [SMALL_STATE(3254)] = 150875, - [SMALL_STATE(3255)] = 150923, - [SMALL_STATE(3256)] = 150971, - [SMALL_STATE(3257)] = 151019, - [SMALL_STATE(3258)] = 151051, - [SMALL_STATE(3259)] = 151099, - [SMALL_STATE(3260)] = 151147, - [SMALL_STATE(3261)] = 151177, - [SMALL_STATE(3262)] = 151225, - [SMALL_STATE(3263)] = 151273, - [SMALL_STATE(3264)] = 151301, - [SMALL_STATE(3265)] = 151349, - [SMALL_STATE(3266)] = 151379, - [SMALL_STATE(3267)] = 151407, - [SMALL_STATE(3268)] = 151455, - [SMALL_STATE(3269)] = 151503, - [SMALL_STATE(3270)] = 151535, - [SMALL_STATE(3271)] = 151583, - [SMALL_STATE(3272)] = 151611, - [SMALL_STATE(3273)] = 151639, - [SMALL_STATE(3274)] = 151667, - [SMALL_STATE(3275)] = 151715, - [SMALL_STATE(3276)] = 151757, - [SMALL_STATE(3277)] = 151805, - [SMALL_STATE(3278)] = 151853, - [SMALL_STATE(3279)] = 151901, - [SMALL_STATE(3280)] = 151949, - [SMALL_STATE(3281)] = 151979, - [SMALL_STATE(3282)] = 152009, - [SMALL_STATE(3283)] = 152057, - [SMALL_STATE(3284)] = 152085, - [SMALL_STATE(3285)] = 152133, - [SMALL_STATE(3286)] = 152181, - [SMALL_STATE(3287)] = 152211, - [SMALL_STATE(3288)] = 152259, - [SMALL_STATE(3289)] = 152289, - [SMALL_STATE(3290)] = 152317, - [SMALL_STATE(3291)] = 152365, - [SMALL_STATE(3292)] = 152395, - [SMALL_STATE(3293)] = 152443, - [SMALL_STATE(3294)] = 152491, - [SMALL_STATE(3295)] = 152525, - [SMALL_STATE(3296)] = 152555, - [SMALL_STATE(3297)] = 152583, - [SMALL_STATE(3298)] = 152631, - [SMALL_STATE(3299)] = 152679, - [SMALL_STATE(3300)] = 152727, - [SMALL_STATE(3301)] = 152775, - [SMALL_STATE(3302)] = 152802, - [SMALL_STATE(3303)] = 152833, - [SMALL_STATE(3304)] = 152860, - [SMALL_STATE(3305)] = 152887, - [SMALL_STATE(3306)] = 152914, - [SMALL_STATE(3307)] = 152941, - [SMALL_STATE(3308)] = 152968, - [SMALL_STATE(3309)] = 152995, - [SMALL_STATE(3310)] = 153022, - [SMALL_STATE(3311)] = 153049, - [SMALL_STATE(3312)] = 153076, - [SMALL_STATE(3313)] = 153103, - [SMALL_STATE(3314)] = 153130, - [SMALL_STATE(3315)] = 153157, - [SMALL_STATE(3316)] = 153184, - [SMALL_STATE(3317)] = 153215, - [SMALL_STATE(3318)] = 153242, - [SMALL_STATE(3319)] = 153269, - [SMALL_STATE(3320)] = 153296, - [SMALL_STATE(3321)] = 153323, - [SMALL_STATE(3322)] = 153354, - [SMALL_STATE(3323)] = 153385, - [SMALL_STATE(3324)] = 153412, - [SMALL_STATE(3325)] = 153439, - [SMALL_STATE(3326)] = 153466, - [SMALL_STATE(3327)] = 153493, - [SMALL_STATE(3328)] = 153526, - [SMALL_STATE(3329)] = 153553, - [SMALL_STATE(3330)] = 153580, - [SMALL_STATE(3331)] = 153607, - [SMALL_STATE(3332)] = 153634, - [SMALL_STATE(3333)] = 153661, - [SMALL_STATE(3334)] = 153688, - [SMALL_STATE(3335)] = 153715, - [SMALL_STATE(3336)] = 153742, - [SMALL_STATE(3337)] = 153769, - [SMALL_STATE(3338)] = 153796, - [SMALL_STATE(3339)] = 153823, - [SMALL_STATE(3340)] = 153854, - [SMALL_STATE(3341)] = 153881, - [SMALL_STATE(3342)] = 153908, - [SMALL_STATE(3343)] = 153935, - [SMALL_STATE(3344)] = 153962, - [SMALL_STATE(3345)] = 153989, - [SMALL_STATE(3346)] = 154016, - [SMALL_STATE(3347)] = 154047, - [SMALL_STATE(3348)] = 154080, - [SMALL_STATE(3349)] = 154107, - [SMALL_STATE(3350)] = 154134, - [SMALL_STATE(3351)] = 154161, - [SMALL_STATE(3352)] = 154188, - [SMALL_STATE(3353)] = 154219, - [SMALL_STATE(3354)] = 154246, - [SMALL_STATE(3355)] = 154273, - [SMALL_STATE(3356)] = 154304, - [SMALL_STATE(3357)] = 154331, - [SMALL_STATE(3358)] = 154358, - [SMALL_STATE(3359)] = 154385, - [SMALL_STATE(3360)] = 154412, - [SMALL_STATE(3361)] = 154439, - [SMALL_STATE(3362)] = 154466, - [SMALL_STATE(3363)] = 154501, - [SMALL_STATE(3364)] = 154528, - [SMALL_STATE(3365)] = 154555, - [SMALL_STATE(3366)] = 154582, - [SMALL_STATE(3367)] = 154609, - [SMALL_STATE(3368)] = 154636, - [SMALL_STATE(3369)] = 154663, - [SMALL_STATE(3370)] = 154690, - [SMALL_STATE(3371)] = 154717, - [SMALL_STATE(3372)] = 154748, - [SMALL_STATE(3373)] = 154775, - [SMALL_STATE(3374)] = 154802, - [SMALL_STATE(3375)] = 154829, - [SMALL_STATE(3376)] = 154856, - [SMALL_STATE(3377)] = 154883, - [SMALL_STATE(3378)] = 154910, - [SMALL_STATE(3379)] = 154937, - [SMALL_STATE(3380)] = 154964, - [SMALL_STATE(3381)] = 154991, - [SMALL_STATE(3382)] = 155018, - [SMALL_STATE(3383)] = 155049, - [SMALL_STATE(3384)] = 155076, - [SMALL_STATE(3385)] = 155103, - [SMALL_STATE(3386)] = 155130, - [SMALL_STATE(3387)] = 155157, - [SMALL_STATE(3388)] = 155184, - [SMALL_STATE(3389)] = 155211, - [SMALL_STATE(3390)] = 155238, - [SMALL_STATE(3391)] = 155269, - [SMALL_STATE(3392)] = 155296, - [SMALL_STATE(3393)] = 155323, - [SMALL_STATE(3394)] = 155350, - [SMALL_STATE(3395)] = 155377, - [SMALL_STATE(3396)] = 155404, - [SMALL_STATE(3397)] = 155431, - [SMALL_STATE(3398)] = 155458, - [SMALL_STATE(3399)] = 155485, - [SMALL_STATE(3400)] = 155512, - [SMALL_STATE(3401)] = 155539, - [SMALL_STATE(3402)] = 155566, - [SMALL_STATE(3403)] = 155593, - [SMALL_STATE(3404)] = 155620, - [SMALL_STATE(3405)] = 155647, - [SMALL_STATE(3406)] = 155674, - [SMALL_STATE(3407)] = 155701, - [SMALL_STATE(3408)] = 155728, - [SMALL_STATE(3409)] = 155755, - [SMALL_STATE(3410)] = 155782, - [SMALL_STATE(3411)] = 155809, - [SMALL_STATE(3412)] = 155844, - [SMALL_STATE(3413)] = 155871, - [SMALL_STATE(3414)] = 155898, - [SMALL_STATE(3415)] = 155929, - [SMALL_STATE(3416)] = 155956, - [SMALL_STATE(3417)] = 155983, - [SMALL_STATE(3418)] = 156009, - [SMALL_STATE(3419)] = 156035, - [SMALL_STATE(3420)] = 156061, - [SMALL_STATE(3421)] = 156087, - [SMALL_STATE(3422)] = 156113, - [SMALL_STATE(3423)] = 156139, - [SMALL_STATE(3424)] = 156169, - [SMALL_STATE(3425)] = 156195, - [SMALL_STATE(3426)] = 156221, - [SMALL_STATE(3427)] = 156255, - [SMALL_STATE(3428)] = 156281, - [SMALL_STATE(3429)] = 156311, - [SMALL_STATE(3430)] = 156337, - [SMALL_STATE(3431)] = 156363, - [SMALL_STATE(3432)] = 156393, - [SMALL_STATE(3433)] = 156419, - [SMALL_STATE(3434)] = 156445, - [SMALL_STATE(3435)] = 156471, - [SMALL_STATE(3436)] = 156497, - [SMALL_STATE(3437)] = 156523, - [SMALL_STATE(3438)] = 156549, - [SMALL_STATE(3439)] = 156575, - [SMALL_STATE(3440)] = 156607, - [SMALL_STATE(3441)] = 156639, - [SMALL_STATE(3442)] = 156665, - [SMALL_STATE(3443)] = 156691, - [SMALL_STATE(3444)] = 156717, - [SMALL_STATE(3445)] = 156751, - [SMALL_STATE(3446)] = 156784, - [SMALL_STATE(3447)] = 156817, - [SMALL_STATE(3448)] = 156850, - [SMALL_STATE(3449)] = 156875, - [SMALL_STATE(3450)] = 156900, - [SMALL_STATE(3451)] = 156925, - [SMALL_STATE(3452)] = 156950, - [SMALL_STATE(3453)] = 156979, - [SMALL_STATE(3454)] = 157004, - [SMALL_STATE(3455)] = 157029, - [SMALL_STATE(3456)] = 157054, - [SMALL_STATE(3457)] = 157079, - [SMALL_STATE(3458)] = 157103, - [SMALL_STATE(3459)] = 157127, - [SMALL_STATE(3460)] = 157151, - [SMALL_STATE(3461)] = 157175, - [SMALL_STATE(3462)] = 157199, - [SMALL_STATE(3463)] = 157223, - [SMALL_STATE(3464)] = 157247, - [SMALL_STATE(3465)] = 157271, - [SMALL_STATE(3466)] = 157295, - [SMALL_STATE(3467)] = 157319, - [SMALL_STATE(3468)] = 157343, - [SMALL_STATE(3469)] = 157367, - [SMALL_STATE(3470)] = 157391, - [SMALL_STATE(3471)] = 157415, - [SMALL_STATE(3472)] = 157439, - [SMALL_STATE(3473)] = 157463, - [SMALL_STATE(3474)] = 157487, - [SMALL_STATE(3475)] = 157511, - [SMALL_STATE(3476)] = 157535, - [SMALL_STATE(3477)] = 157559, - [SMALL_STATE(3478)] = 157583, - [SMALL_STATE(3479)] = 157607, - [SMALL_STATE(3480)] = 157631, - [SMALL_STATE(3481)] = 157655, - [SMALL_STATE(3482)] = 157679, - [SMALL_STATE(3483)] = 157703, - [SMALL_STATE(3484)] = 157727, - [SMALL_STATE(3485)] = 157751, - [SMALL_STATE(3486)] = 157775, - [SMALL_STATE(3487)] = 157799, - [SMALL_STATE(3488)] = 157823, - [SMALL_STATE(3489)] = 157847, - [SMALL_STATE(3490)] = 157871, - [SMALL_STATE(3491)] = 157895, - [SMALL_STATE(3492)] = 157919, - [SMALL_STATE(3493)] = 157943, - [SMALL_STATE(3494)] = 157967, - [SMALL_STATE(3495)] = 157991, - [SMALL_STATE(3496)] = 158015, - [SMALL_STATE(3497)] = 158044, - [SMALL_STATE(3498)] = 158073, - [SMALL_STATE(3499)] = 158101, - [SMALL_STATE(3500)] = 158129, - [SMALL_STATE(3501)] = 158154, - [SMALL_STATE(3502)] = 158191, - [SMALL_STATE(3503)] = 158228, - [SMALL_STATE(3504)] = 158253, - [SMALL_STATE(3505)] = 158278, - [SMALL_STATE(3506)] = 158315, - [SMALL_STATE(3507)] = 158340, - [SMALL_STATE(3508)] = 158365, - [SMALL_STATE(3509)] = 158402, - [SMALL_STATE(3510)] = 158439, - [SMALL_STATE(3511)] = 158464, - [SMALL_STATE(3512)] = 158501, - [SMALL_STATE(3513)] = 158526, - [SMALL_STATE(3514)] = 158563, - [SMALL_STATE(3515)] = 158588, - [SMALL_STATE(3516)] = 158625, - [SMALL_STATE(3517)] = 158650, - [SMALL_STATE(3518)] = 158675, - [SMALL_STATE(3519)] = 158700, - [SMALL_STATE(3520)] = 158725, - [SMALL_STATE(3521)] = 158762, - [SMALL_STATE(3522)] = 158787, - [SMALL_STATE(3523)] = 158812, - [SMALL_STATE(3524)] = 158837, - [SMALL_STATE(3525)] = 158862, - [SMALL_STATE(3526)] = 158899, - [SMALL_STATE(3527)] = 158936, - [SMALL_STATE(3528)] = 158961, - [SMALL_STATE(3529)] = 158998, - [SMALL_STATE(3530)] = 159023, - [SMALL_STATE(3531)] = 159060, - [SMALL_STATE(3532)] = 159085, - [SMALL_STATE(3533)] = 159110, - [SMALL_STATE(3534)] = 159147, - [SMALL_STATE(3535)] = 159184, - [SMALL_STATE(3536)] = 159209, - [SMALL_STATE(3537)] = 159234, - [SMALL_STATE(3538)] = 159271, - [SMALL_STATE(3539)] = 159296, - [SMALL_STATE(3540)] = 159321, - [SMALL_STATE(3541)] = 159358, - [SMALL_STATE(3542)] = 159395, - [SMALL_STATE(3543)] = 159420, - [SMALL_STATE(3544)] = 159457, - [SMALL_STATE(3545)] = 159482, - [SMALL_STATE(3546)] = 159519, - [SMALL_STATE(3547)] = 159544, - [SMALL_STATE(3548)] = 159569, - [SMALL_STATE(3549)] = 159594, - [SMALL_STATE(3550)] = 159619, - [SMALL_STATE(3551)] = 159656, - [SMALL_STATE(3552)] = 159681, - [SMALL_STATE(3553)] = 159706, - [SMALL_STATE(3554)] = 159743, - [SMALL_STATE(3555)] = 159768, - [SMALL_STATE(3556)] = 159805, - [SMALL_STATE(3557)] = 159830, - [SMALL_STATE(3558)] = 159855, - [SMALL_STATE(3559)] = 159880, - [SMALL_STATE(3560)] = 159917, - [SMALL_STATE(3561)] = 159942, - [SMALL_STATE(3562)] = 159979, - [SMALL_STATE(3563)] = 160004, - [SMALL_STATE(3564)] = 160041, - [SMALL_STATE(3565)] = 160066, - [SMALL_STATE(3566)] = 160103, - [SMALL_STATE(3567)] = 160128, - [SMALL_STATE(3568)] = 160153, - [SMALL_STATE(3569)] = 160190, - [SMALL_STATE(3570)] = 160215, - [SMALL_STATE(3571)] = 160252, - [SMALL_STATE(3572)] = 160277, - [SMALL_STATE(3573)] = 160302, - [SMALL_STATE(3574)] = 160339, - [SMALL_STATE(3575)] = 160376, - [SMALL_STATE(3576)] = 160413, - [SMALL_STATE(3577)] = 160438, - [SMALL_STATE(3578)] = 160463, - [SMALL_STATE(3579)] = 160488, - [SMALL_STATE(3580)] = 160513, - [SMALL_STATE(3581)] = 160550, - [SMALL_STATE(3582)] = 160575, - [SMALL_STATE(3583)] = 160600, - [SMALL_STATE(3584)] = 160625, - [SMALL_STATE(3585)] = 160650, - [SMALL_STATE(3586)] = 160687, - [SMALL_STATE(3587)] = 160724, - [SMALL_STATE(3588)] = 160749, - [SMALL_STATE(3589)] = 160786, - [SMALL_STATE(3590)] = 160811, - [SMALL_STATE(3591)] = 160848, - [SMALL_STATE(3592)] = 160873, - [SMALL_STATE(3593)] = 160910, - [SMALL_STATE(3594)] = 160935, - [SMALL_STATE(3595)] = 160972, - [SMALL_STATE(3596)] = 161009, - [SMALL_STATE(3597)] = 161034, - [SMALL_STATE(3598)] = 161059, - [SMALL_STATE(3599)] = 161084, - [SMALL_STATE(3600)] = 161109, - [SMALL_STATE(3601)] = 161146, - [SMALL_STATE(3602)] = 161171, - [SMALL_STATE(3603)] = 161196, - [SMALL_STATE(3604)] = 161233, - [SMALL_STATE(3605)] = 161258, - [SMALL_STATE(3606)] = 161295, - [SMALL_STATE(3607)] = 161332, - [SMALL_STATE(3608)] = 161369, - [SMALL_STATE(3609)] = 161394, - [SMALL_STATE(3610)] = 161419, - [SMALL_STATE(3611)] = 161456, - [SMALL_STATE(3612)] = 161493, - [SMALL_STATE(3613)] = 161518, - [SMALL_STATE(3614)] = 161555, - [SMALL_STATE(3615)] = 161580, - [SMALL_STATE(3616)] = 161605, - [SMALL_STATE(3617)] = 161630, - [SMALL_STATE(3618)] = 161667, - [SMALL_STATE(3619)] = 161692, - [SMALL_STATE(3620)] = 161717, - [SMALL_STATE(3621)] = 161742, - [SMALL_STATE(3622)] = 161779, - [SMALL_STATE(3623)] = 161804, - [SMALL_STATE(3624)] = 161829, - [SMALL_STATE(3625)] = 161854, - [SMALL_STATE(3626)] = 161891, - [SMALL_STATE(3627)] = 161916, - [SMALL_STATE(3628)] = 161953, - [SMALL_STATE(3629)] = 161978, - [SMALL_STATE(3630)] = 162003, - [SMALL_STATE(3631)] = 162040, - [SMALL_STATE(3632)] = 162077, - [SMALL_STATE(3633)] = 162102, - [SMALL_STATE(3634)] = 162139, - [SMALL_STATE(3635)] = 162164, - [SMALL_STATE(3636)] = 162189, - [SMALL_STATE(3637)] = 162214, - [SMALL_STATE(3638)] = 162251, - [SMALL_STATE(3639)] = 162276, - [SMALL_STATE(3640)] = 162301, - [SMALL_STATE(3641)] = 162338, - [SMALL_STATE(3642)] = 162363, - [SMALL_STATE(3643)] = 162388, - [SMALL_STATE(3644)] = 162425, - [SMALL_STATE(3645)] = 162462, - [SMALL_STATE(3646)] = 162487, - [SMALL_STATE(3647)] = 162512, - [SMALL_STATE(3648)] = 162537, - [SMALL_STATE(3649)] = 162574, - [SMALL_STATE(3650)] = 162599, - [SMALL_STATE(3651)] = 162636, - [SMALL_STATE(3652)] = 162673, - [SMALL_STATE(3653)] = 162698, - [SMALL_STATE(3654)] = 162723, - [SMALL_STATE(3655)] = 162748, - [SMALL_STATE(3656)] = 162785, - [SMALL_STATE(3657)] = 162810, - [SMALL_STATE(3658)] = 162835, - [SMALL_STATE(3659)] = 162872, - [SMALL_STATE(3660)] = 162897, - [SMALL_STATE(3661)] = 162922, - [SMALL_STATE(3662)] = 162959, - [SMALL_STATE(3663)] = 162996, - [SMALL_STATE(3664)] = 163033, - [SMALL_STATE(3665)] = 163058, - [SMALL_STATE(3666)] = 163083, - [SMALL_STATE(3667)] = 163120, - [SMALL_STATE(3668)] = 163145, - [SMALL_STATE(3669)] = 163182, - [SMALL_STATE(3670)] = 163207, - [SMALL_STATE(3671)] = 163232, - [SMALL_STATE(3672)] = 163257, - [SMALL_STATE(3673)] = 163282, - [SMALL_STATE(3674)] = 163319, - [SMALL_STATE(3675)] = 163344, - [SMALL_STATE(3676)] = 163381, - [SMALL_STATE(3677)] = 163406, - [SMALL_STATE(3678)] = 163443, - [SMALL_STATE(3679)] = 163468, - [SMALL_STATE(3680)] = 163505, - [SMALL_STATE(3681)] = 163530, - [SMALL_STATE(3682)] = 163567, - [SMALL_STATE(3683)] = 163592, - [SMALL_STATE(3684)] = 163617, - [SMALL_STATE(3685)] = 163654, - [SMALL_STATE(3686)] = 163691, - [SMALL_STATE(3687)] = 163716, - [SMALL_STATE(3688)] = 163753, - [SMALL_STATE(3689)] = 163778, - [SMALL_STATE(3690)] = 163803, - [SMALL_STATE(3691)] = 163828, - [SMALL_STATE(3692)] = 163865, - [SMALL_STATE(3693)] = 163890, - [SMALL_STATE(3694)] = 163915, - [SMALL_STATE(3695)] = 163952, - [SMALL_STATE(3696)] = 163977, - [SMALL_STATE(3697)] = 164002, - [SMALL_STATE(3698)] = 164039, - [SMALL_STATE(3699)] = 164076, - [SMALL_STATE(3700)] = 164101, - [SMALL_STATE(3701)] = 164138, - [SMALL_STATE(3702)] = 164163, - [SMALL_STATE(3703)] = 164200, - [SMALL_STATE(3704)] = 164225, - [SMALL_STATE(3705)] = 164250, - [SMALL_STATE(3706)] = 164287, - [SMALL_STATE(3707)] = 164312, - [SMALL_STATE(3708)] = 164337, - [SMALL_STATE(3709)] = 164362, - [SMALL_STATE(3710)] = 164399, - [SMALL_STATE(3711)] = 164424, - [SMALL_STATE(3712)] = 164449, - [SMALL_STATE(3713)] = 164486, - [SMALL_STATE(3714)] = 164511, - [SMALL_STATE(3715)] = 164536, - [SMALL_STATE(3716)] = 164573, - [SMALL_STATE(3717)] = 164598, - [SMALL_STATE(3718)] = 164635, - [SMALL_STATE(3719)] = 164672, - [SMALL_STATE(3720)] = 164697, - [SMALL_STATE(3721)] = 164734, - [SMALL_STATE(3722)] = 164759, - [SMALL_STATE(3723)] = 164796, - [SMALL_STATE(3724)] = 164821, - [SMALL_STATE(3725)] = 164846, - [SMALL_STATE(3726)] = 164883, - [SMALL_STATE(3727)] = 164908, - [SMALL_STATE(3728)] = 164933, - [SMALL_STATE(3729)] = 164958, - [SMALL_STATE(3730)] = 164983, - [SMALL_STATE(3731)] = 165020, - [SMALL_STATE(3732)] = 165045, - [SMALL_STATE(3733)] = 165070, - [SMALL_STATE(3734)] = 165107, - [SMALL_STATE(3735)] = 165132, - [SMALL_STATE(3736)] = 165169, - [SMALL_STATE(3737)] = 165206, - [SMALL_STATE(3738)] = 165231, - [SMALL_STATE(3739)] = 165268, - [SMALL_STATE(3740)] = 165293, - [SMALL_STATE(3741)] = 165318, - [SMALL_STATE(3742)] = 165355, - [SMALL_STATE(3743)] = 165380, - [SMALL_STATE(3744)] = 165405, - [SMALL_STATE(3745)] = 165442, - [SMALL_STATE(3746)] = 165467, - [SMALL_STATE(3747)] = 165492, - [SMALL_STATE(3748)] = 165529, - [SMALL_STATE(3749)] = 165554, - [SMALL_STATE(3750)] = 165579, - [SMALL_STATE(3751)] = 165604, - [SMALL_STATE(3752)] = 165641, - [SMALL_STATE(3753)] = 165678, - [SMALL_STATE(3754)] = 165703, - [SMALL_STATE(3755)] = 165740, - [SMALL_STATE(3756)] = 165765, - [SMALL_STATE(3757)] = 165802, - [SMALL_STATE(3758)] = 165839, - [SMALL_STATE(3759)] = 165861, - [SMALL_STATE(3760)] = 165892, - [SMALL_STATE(3761)] = 165911, - [SMALL_STATE(3762)] = 165930, - [SMALL_STATE(3763)] = 165949, - [SMALL_STATE(3764)] = 165980, - [SMALL_STATE(3765)] = 166005, - [SMALL_STATE(3766)] = 166030, - [SMALL_STATE(3767)] = 166055, - [SMALL_STATE(3768)] = 166086, - [SMALL_STATE(3769)] = 166111, - [SMALL_STATE(3770)] = 166142, - [SMALL_STATE(3771)] = 166167, - [SMALL_STATE(3772)] = 166192, - [SMALL_STATE(3773)] = 166223, - [SMALL_STATE(3774)] = 166254, - [SMALL_STATE(3775)] = 166285, - [SMALL_STATE(3776)] = 166310, - [SMALL_STATE(3777)] = 166335, - [SMALL_STATE(3778)] = 166354, - [SMALL_STATE(3779)] = 166373, - [SMALL_STATE(3780)] = 166392, - [SMALL_STATE(3781)] = 166409, - [SMALL_STATE(3782)] = 166432, - [SMALL_STATE(3783)] = 166449, - [SMALL_STATE(3784)] = 166466, - [SMALL_STATE(3785)] = 166483, - [SMALL_STATE(3786)] = 166500, - [SMALL_STATE(3787)] = 166517, - [SMALL_STATE(3788)] = 166534, - [SMALL_STATE(3789)] = 166551, - [SMALL_STATE(3790)] = 166568, - [SMALL_STATE(3791)] = 166585, - [SMALL_STATE(3792)] = 166607, - [SMALL_STATE(3793)] = 166623, - [SMALL_STATE(3794)] = 166647, - [SMALL_STATE(3795)] = 166671, - [SMALL_STATE(3796)] = 166695, - [SMALL_STATE(3797)] = 166717, - [SMALL_STATE(3798)] = 166733, - [SMALL_STATE(3799)] = 166757, - [SMALL_STATE(3800)] = 166773, - [SMALL_STATE(3801)] = 166789, - [SMALL_STATE(3802)] = 166805, - [SMALL_STATE(3803)] = 166821, - [SMALL_STATE(3804)] = 166837, - [SMALL_STATE(3805)] = 166853, - [SMALL_STATE(3806)] = 166867, - [SMALL_STATE(3807)] = 166881, - [SMALL_STATE(3808)] = 166905, - [SMALL_STATE(3809)] = 166929, - [SMALL_STATE(3810)] = 166945, - [SMALL_STATE(3811)] = 166961, - [SMALL_STATE(3812)] = 166985, - [SMALL_STATE(3813)] = 167009, - [SMALL_STATE(3814)] = 167025, - [SMALL_STATE(3815)] = 167047, - [SMALL_STATE(3816)] = 167063, - [SMALL_STATE(3817)] = 167079, - [SMALL_STATE(3818)] = 167095, - [SMALL_STATE(3819)] = 167111, - [SMALL_STATE(3820)] = 167127, - [SMALL_STATE(3821)] = 167142, - [SMALL_STATE(3822)] = 167163, - [SMALL_STATE(3823)] = 167184, - [SMALL_STATE(3824)] = 167199, - [SMALL_STATE(3825)] = 167220, - [SMALL_STATE(3826)] = 167235, - [SMALL_STATE(3827)] = 167250, - [SMALL_STATE(3828)] = 167265, - [SMALL_STATE(3829)] = 167280, - [SMALL_STATE(3830)] = 167301, - [SMALL_STATE(3831)] = 167316, - [SMALL_STATE(3832)] = 167331, - [SMALL_STATE(3833)] = 167352, - [SMALL_STATE(3834)] = 167369, - [SMALL_STATE(3835)] = 167390, - [SMALL_STATE(3836)] = 167411, - [SMALL_STATE(3837)] = 167432, - [SMALL_STATE(3838)] = 167453, - [SMALL_STATE(3839)] = 167468, - [SMALL_STATE(3840)] = 167483, - [SMALL_STATE(3841)] = 167498, - [SMALL_STATE(3842)] = 167513, - [SMALL_STATE(3843)] = 167528, - [SMALL_STATE(3844)] = 167543, - [SMALL_STATE(3845)] = 167564, - [SMALL_STATE(3846)] = 167585, - [SMALL_STATE(3847)] = 167606, - [SMALL_STATE(3848)] = 167627, - [SMALL_STATE(3849)] = 167648, - [SMALL_STATE(3850)] = 167669, - [SMALL_STATE(3851)] = 167686, - [SMALL_STATE(3852)] = 167701, - [SMALL_STATE(3853)] = 167722, - [SMALL_STATE(3854)] = 167737, - [SMALL_STATE(3855)] = 167752, - [SMALL_STATE(3856)] = 167773, - [SMALL_STATE(3857)] = 167788, - [SMALL_STATE(3858)] = 167803, - [SMALL_STATE(3859)] = 167818, - [SMALL_STATE(3860)] = 167833, - [SMALL_STATE(3861)] = 167854, - [SMALL_STATE(3862)] = 167869, - [SMALL_STATE(3863)] = 167884, - [SMALL_STATE(3864)] = 167903, - [SMALL_STATE(3865)] = 167924, - [SMALL_STATE(3866)] = 167945, - [SMALL_STATE(3867)] = 167966, - [SMALL_STATE(3868)] = 167981, - [SMALL_STATE(3869)] = 167996, - [SMALL_STATE(3870)] = 168017, - [SMALL_STATE(3871)] = 168032, - [SMALL_STATE(3872)] = 168047, - [SMALL_STATE(3873)] = 168062, - [SMALL_STATE(3874)] = 168083, - [SMALL_STATE(3875)] = 168104, - [SMALL_STATE(3876)] = 168125, - [SMALL_STATE(3877)] = 168145, - [SMALL_STATE(3878)] = 168165, - [SMALL_STATE(3879)] = 168179, - [SMALL_STATE(3880)] = 168199, - [SMALL_STATE(3881)] = 168219, - [SMALL_STATE(3882)] = 168239, - [SMALL_STATE(3883)] = 168255, - [SMALL_STATE(3884)] = 168271, - [SMALL_STATE(3885)] = 168287, - [SMALL_STATE(3886)] = 168307, - [SMALL_STATE(3887)] = 168327, - [SMALL_STATE(3888)] = 168341, - [SMALL_STATE(3889)] = 168355, - [SMALL_STATE(3890)] = 168375, - [SMALL_STATE(3891)] = 168395, - [SMALL_STATE(3892)] = 168415, - [SMALL_STATE(3893)] = 168435, - [SMALL_STATE(3894)] = 168455, - [SMALL_STATE(3895)] = 168475, - [SMALL_STATE(3896)] = 168495, - [SMALL_STATE(3897)] = 168515, - [SMALL_STATE(3898)] = 168535, - [SMALL_STATE(3899)] = 168555, - [SMALL_STATE(3900)] = 168569, - [SMALL_STATE(3901)] = 168589, - [SMALL_STATE(3902)] = 168609, - [SMALL_STATE(3903)] = 168629, - [SMALL_STATE(3904)] = 168649, - [SMALL_STATE(3905)] = 168669, - [SMALL_STATE(3906)] = 168689, - [SMALL_STATE(3907)] = 168709, - [SMALL_STATE(3908)] = 168724, - [SMALL_STATE(3909)] = 168739, - [SMALL_STATE(3910)] = 168754, - [SMALL_STATE(3911)] = 168769, - [SMALL_STATE(3912)] = 168784, - [SMALL_STATE(3913)] = 168803, - [SMALL_STATE(3914)] = 168820, - [SMALL_STATE(3915)] = 168833, - [SMALL_STATE(3916)] = 168850, - [SMALL_STATE(3917)] = 168865, - [SMALL_STATE(3918)] = 168884, - [SMALL_STATE(3919)] = 168903, - [SMALL_STATE(3920)] = 168920, - [SMALL_STATE(3921)] = 168935, - [SMALL_STATE(3922)] = 168950, - [SMALL_STATE(3923)] = 168965, - [SMALL_STATE(3924)] = 168980, - [SMALL_STATE(3925)] = 168995, - [SMALL_STATE(3926)] = 169010, - [SMALL_STATE(3927)] = 169029, - [SMALL_STATE(3928)] = 169044, - [SMALL_STATE(3929)] = 169059, - [SMALL_STATE(3930)] = 169072, - [SMALL_STATE(3931)] = 169091, - [SMALL_STATE(3932)] = 169106, - [SMALL_STATE(3933)] = 169123, - [SMALL_STATE(3934)] = 169136, - [SMALL_STATE(3935)] = 169151, - [SMALL_STATE(3936)] = 169170, - [SMALL_STATE(3937)] = 169189, - [SMALL_STATE(3938)] = 169208, - [SMALL_STATE(3939)] = 169223, - [SMALL_STATE(3940)] = 169238, - [SMALL_STATE(3941)] = 169248, - [SMALL_STATE(3942)] = 169258, - [SMALL_STATE(3943)] = 169272, - [SMALL_STATE(3944)] = 169288, - [SMALL_STATE(3945)] = 169298, - [SMALL_STATE(3946)] = 169312, - [SMALL_STATE(3947)] = 169324, - [SMALL_STATE(3948)] = 169338, - [SMALL_STATE(3949)] = 169352, - [SMALL_STATE(3950)] = 169364, - [SMALL_STATE(3951)] = 169380, - [SMALL_STATE(3952)] = 169396, - [SMALL_STATE(3953)] = 169412, - [SMALL_STATE(3954)] = 169426, - [SMALL_STATE(3955)] = 169442, - [SMALL_STATE(3956)] = 169452, - [SMALL_STATE(3957)] = 169462, - [SMALL_STATE(3958)] = 169478, - [SMALL_STATE(3959)] = 169494, - [SMALL_STATE(3960)] = 169508, - [SMALL_STATE(3961)] = 169518, - [SMALL_STATE(3962)] = 169534, - [SMALL_STATE(3963)] = 169544, - [SMALL_STATE(3964)] = 169554, - [SMALL_STATE(3965)] = 169564, - [SMALL_STATE(3966)] = 169576, - [SMALL_STATE(3967)] = 169590, - [SMALL_STATE(3968)] = 169604, - [SMALL_STATE(3969)] = 169614, - [SMALL_STATE(3970)] = 169624, - [SMALL_STATE(3971)] = 169638, - [SMALL_STATE(3972)] = 169648, - [SMALL_STATE(3973)] = 169664, - [SMALL_STATE(3974)] = 169680, - [SMALL_STATE(3975)] = 169692, - [SMALL_STATE(3976)] = 169708, - [SMALL_STATE(3977)] = 169718, - [SMALL_STATE(3978)] = 169728, - [SMALL_STATE(3979)] = 169740, - [SMALL_STATE(3980)] = 169756, - [SMALL_STATE(3981)] = 169766, - [SMALL_STATE(3982)] = 169782, - [SMALL_STATE(3983)] = 169792, - [SMALL_STATE(3984)] = 169808, - [SMALL_STATE(3985)] = 169818, - [SMALL_STATE(3986)] = 169828, - [SMALL_STATE(3987)] = 169837, - [SMALL_STATE(3988)] = 169850, - [SMALL_STATE(3989)] = 169863, - [SMALL_STATE(3990)] = 169876, - [SMALL_STATE(3991)] = 169887, - [SMALL_STATE(3992)] = 169900, - [SMALL_STATE(3993)] = 169911, - [SMALL_STATE(3994)] = 169924, - [SMALL_STATE(3995)] = 169937, - [SMALL_STATE(3996)] = 169946, - [SMALL_STATE(3997)] = 169955, - [SMALL_STATE(3998)] = 169968, - [SMALL_STATE(3999)] = 169977, - [SMALL_STATE(4000)] = 169986, - [SMALL_STATE(4001)] = 169999, - [SMALL_STATE(4002)] = 170008, - [SMALL_STATE(4003)] = 170019, - [SMALL_STATE(4004)] = 170032, - [SMALL_STATE(4005)] = 170041, - [SMALL_STATE(4006)] = 170054, - [SMALL_STATE(4007)] = 170067, - [SMALL_STATE(4008)] = 170078, - [SMALL_STATE(4009)] = 170091, - [SMALL_STATE(4010)] = 170104, - [SMALL_STATE(4011)] = 170115, - [SMALL_STATE(4012)] = 170126, - [SMALL_STATE(4013)] = 170139, - [SMALL_STATE(4014)] = 170152, - [SMALL_STATE(4015)] = 170161, - [SMALL_STATE(4016)] = 170170, - [SMALL_STATE(4017)] = 170181, - [SMALL_STATE(4018)] = 170194, - [SMALL_STATE(4019)] = 170207, - [SMALL_STATE(4020)] = 170218, - [SMALL_STATE(4021)] = 170231, - [SMALL_STATE(4022)] = 170244, - [SMALL_STATE(4023)] = 170257, - [SMALL_STATE(4024)] = 170268, - [SMALL_STATE(4025)] = 170277, - [SMALL_STATE(4026)] = 170290, - [SMALL_STATE(4027)] = 170301, - [SMALL_STATE(4028)] = 170314, - [SMALL_STATE(4029)] = 170323, - [SMALL_STATE(4030)] = 170332, - [SMALL_STATE(4031)] = 170343, - [SMALL_STATE(4032)] = 170356, - [SMALL_STATE(4033)] = 170369, - [SMALL_STATE(4034)] = 170380, - [SMALL_STATE(4035)] = 170391, - [SMALL_STATE(4036)] = 170400, - [SMALL_STATE(4037)] = 170409, - [SMALL_STATE(4038)] = 170422, - [SMALL_STATE(4039)] = 170435, - [SMALL_STATE(4040)] = 170444, - [SMALL_STATE(4041)] = 170455, - [SMALL_STATE(4042)] = 170466, - [SMALL_STATE(4043)] = 170479, - [SMALL_STATE(4044)] = 170490, - [SMALL_STATE(4045)] = 170503, - [SMALL_STATE(4046)] = 170514, - [SMALL_STATE(4047)] = 170527, - [SMALL_STATE(4048)] = 170538, - [SMALL_STATE(4049)] = 170547, - [SMALL_STATE(4050)] = 170558, - [SMALL_STATE(4051)] = 170569, - [SMALL_STATE(4052)] = 170582, - [SMALL_STATE(4053)] = 170595, - [SMALL_STATE(4054)] = 170608, - [SMALL_STATE(4055)] = 170621, - [SMALL_STATE(4056)] = 170632, - [SMALL_STATE(4057)] = 170645, - [SMALL_STATE(4058)] = 170658, - [SMALL_STATE(4059)] = 170671, - [SMALL_STATE(4060)] = 170682, - [SMALL_STATE(4061)] = 170693, - [SMALL_STATE(4062)] = 170706, - [SMALL_STATE(4063)] = 170719, - [SMALL_STATE(4064)] = 170732, - [SMALL_STATE(4065)] = 170745, - [SMALL_STATE(4066)] = 170758, - [SMALL_STATE(4067)] = 170771, - [SMALL_STATE(4068)] = 170784, - [SMALL_STATE(4069)] = 170795, - [SMALL_STATE(4070)] = 170806, - [SMALL_STATE(4071)] = 170817, - [SMALL_STATE(4072)] = 170830, - [SMALL_STATE(4073)] = 170843, - [SMALL_STATE(4074)] = 170856, - [SMALL_STATE(4075)] = 170869, - [SMALL_STATE(4076)] = 170882, - [SMALL_STATE(4077)] = 170895, - [SMALL_STATE(4078)] = 170908, - [SMALL_STATE(4079)] = 170921, - [SMALL_STATE(4080)] = 170930, - [SMALL_STATE(4081)] = 170943, - [SMALL_STATE(4082)] = 170956, - [SMALL_STATE(4083)] = 170969, - [SMALL_STATE(4084)] = 170982, - [SMALL_STATE(4085)] = 170991, - [SMALL_STATE(4086)] = 171004, - [SMALL_STATE(4087)] = 171015, - [SMALL_STATE(4088)] = 171026, - [SMALL_STATE(4089)] = 171039, - [SMALL_STATE(4090)] = 171048, - [SMALL_STATE(4091)] = 171056, - [SMALL_STATE(4092)] = 171064, - [SMALL_STATE(4093)] = 171072, - [SMALL_STATE(4094)] = 171082, - [SMALL_STATE(4095)] = 171092, - [SMALL_STATE(4096)] = 171100, - [SMALL_STATE(4097)] = 171110, - [SMALL_STATE(4098)] = 171118, - [SMALL_STATE(4099)] = 171128, - [SMALL_STATE(4100)] = 171136, - [SMALL_STATE(4101)] = 171146, - [SMALL_STATE(4102)] = 171156, - [SMALL_STATE(4103)] = 171166, - [SMALL_STATE(4104)] = 171174, - [SMALL_STATE(4105)] = 171184, - [SMALL_STATE(4106)] = 171194, - [SMALL_STATE(4107)] = 171202, - [SMALL_STATE(4108)] = 171210, - [SMALL_STATE(4109)] = 171220, - [SMALL_STATE(4110)] = 171230, - [SMALL_STATE(4111)] = 171240, - [SMALL_STATE(4112)] = 171250, - [SMALL_STATE(4113)] = 171258, - [SMALL_STATE(4114)] = 171268, - [SMALL_STATE(4115)] = 171278, - [SMALL_STATE(4116)] = 171288, - [SMALL_STATE(4117)] = 171298, - [SMALL_STATE(4118)] = 171308, - [SMALL_STATE(4119)] = 171318, - [SMALL_STATE(4120)] = 171328, - [SMALL_STATE(4121)] = 171336, - [SMALL_STATE(4122)] = 171346, - [SMALL_STATE(4123)] = 171356, - [SMALL_STATE(4124)] = 171366, - [SMALL_STATE(4125)] = 171376, - [SMALL_STATE(4126)] = 171386, - [SMALL_STATE(4127)] = 171396, - [SMALL_STATE(4128)] = 171406, - [SMALL_STATE(4129)] = 171416, - [SMALL_STATE(4130)] = 171426, - [SMALL_STATE(4131)] = 171436, - [SMALL_STATE(4132)] = 171446, - [SMALL_STATE(4133)] = 171456, - [SMALL_STATE(4134)] = 171466, - [SMALL_STATE(4135)] = 171476, - [SMALL_STATE(4136)] = 171486, - [SMALL_STATE(4137)] = 171496, - [SMALL_STATE(4138)] = 171506, - [SMALL_STATE(4139)] = 171516, - [SMALL_STATE(4140)] = 171526, - [SMALL_STATE(4141)] = 171536, - [SMALL_STATE(4142)] = 171546, - [SMALL_STATE(4143)] = 171554, - [SMALL_STATE(4144)] = 171564, - [SMALL_STATE(4145)] = 171572, - [SMALL_STATE(4146)] = 171580, - [SMALL_STATE(4147)] = 171588, - [SMALL_STATE(4148)] = 171598, - [SMALL_STATE(4149)] = 171606, - [SMALL_STATE(4150)] = 171616, - [SMALL_STATE(4151)] = 171626, - [SMALL_STATE(4152)] = 171634, - [SMALL_STATE(4153)] = 171642, - [SMALL_STATE(4154)] = 171652, - [SMALL_STATE(4155)] = 171660, - [SMALL_STATE(4156)] = 171670, - [SMALL_STATE(4157)] = 171680, - [SMALL_STATE(4158)] = 171690, - [SMALL_STATE(4159)] = 171698, - [SMALL_STATE(4160)] = 171708, - [SMALL_STATE(4161)] = 171716, - [SMALL_STATE(4162)] = 171726, - [SMALL_STATE(4163)] = 171734, - [SMALL_STATE(4164)] = 171744, - [SMALL_STATE(4165)] = 171752, - [SMALL_STATE(4166)] = 171762, - [SMALL_STATE(4167)] = 171770, - [SMALL_STATE(4168)] = 171778, - [SMALL_STATE(4169)] = 171788, - [SMALL_STATE(4170)] = 171796, - [SMALL_STATE(4171)] = 171806, - [SMALL_STATE(4172)] = 171814, - [SMALL_STATE(4173)] = 171824, - [SMALL_STATE(4174)] = 171834, - [SMALL_STATE(4175)] = 171842, - [SMALL_STATE(4176)] = 171852, - [SMALL_STATE(4177)] = 171862, - [SMALL_STATE(4178)] = 171872, - [SMALL_STATE(4179)] = 171880, - [SMALL_STATE(4180)] = 171890, - [SMALL_STATE(4181)] = 171900, - [SMALL_STATE(4182)] = 171910, - [SMALL_STATE(4183)] = 171920, - [SMALL_STATE(4184)] = 171930, - [SMALL_STATE(4185)] = 171940, - [SMALL_STATE(4186)] = 171950, - [SMALL_STATE(4187)] = 171960, - [SMALL_STATE(4188)] = 171967, - [SMALL_STATE(4189)] = 171974, - [SMALL_STATE(4190)] = 171981, - [SMALL_STATE(4191)] = 171988, - [SMALL_STATE(4192)] = 171995, - [SMALL_STATE(4193)] = 172002, - [SMALL_STATE(4194)] = 172009, - [SMALL_STATE(4195)] = 172016, - [SMALL_STATE(4196)] = 172023, - [SMALL_STATE(4197)] = 172030, - [SMALL_STATE(4198)] = 172037, - [SMALL_STATE(4199)] = 172044, - [SMALL_STATE(4200)] = 172051, - [SMALL_STATE(4201)] = 172058, - [SMALL_STATE(4202)] = 172065, - [SMALL_STATE(4203)] = 172072, - [SMALL_STATE(4204)] = 172079, - [SMALL_STATE(4205)] = 172086, - [SMALL_STATE(4206)] = 172093, - [SMALL_STATE(4207)] = 172100, - [SMALL_STATE(4208)] = 172107, - [SMALL_STATE(4209)] = 172114, - [SMALL_STATE(4210)] = 172121, - [SMALL_STATE(4211)] = 172128, - [SMALL_STATE(4212)] = 172135, - [SMALL_STATE(4213)] = 172142, - [SMALL_STATE(4214)] = 172149, - [SMALL_STATE(4215)] = 172156, - [SMALL_STATE(4216)] = 172163, - [SMALL_STATE(4217)] = 172170, - [SMALL_STATE(4218)] = 172177, - [SMALL_STATE(4219)] = 172184, - [SMALL_STATE(4220)] = 172191, - [SMALL_STATE(4221)] = 172198, - [SMALL_STATE(4222)] = 172205, - [SMALL_STATE(4223)] = 172212, - [SMALL_STATE(4224)] = 172219, - [SMALL_STATE(4225)] = 172226, - [SMALL_STATE(4226)] = 172233, - [SMALL_STATE(4227)] = 172240, - [SMALL_STATE(4228)] = 172247, - [SMALL_STATE(4229)] = 172254, - [SMALL_STATE(4230)] = 172261, - [SMALL_STATE(4231)] = 172268, - [SMALL_STATE(4232)] = 172275, - [SMALL_STATE(4233)] = 172282, - [SMALL_STATE(4234)] = 172289, - [SMALL_STATE(4235)] = 172296, - [SMALL_STATE(4236)] = 172303, - [SMALL_STATE(4237)] = 172310, - [SMALL_STATE(4238)] = 172317, - [SMALL_STATE(4239)] = 172324, - [SMALL_STATE(4240)] = 172331, - [SMALL_STATE(4241)] = 172338, - [SMALL_STATE(4242)] = 172345, - [SMALL_STATE(4243)] = 172352, - [SMALL_STATE(4244)] = 172359, - [SMALL_STATE(4245)] = 172366, - [SMALL_STATE(4246)] = 172373, - [SMALL_STATE(4247)] = 172380, - [SMALL_STATE(4248)] = 172387, - [SMALL_STATE(4249)] = 172394, - [SMALL_STATE(4250)] = 172401, - [SMALL_STATE(4251)] = 172408, - [SMALL_STATE(4252)] = 172415, - [SMALL_STATE(4253)] = 172422, - [SMALL_STATE(4254)] = 172429, - [SMALL_STATE(4255)] = 172436, - [SMALL_STATE(4256)] = 172443, - [SMALL_STATE(4257)] = 172450, - [SMALL_STATE(4258)] = 172457, - [SMALL_STATE(4259)] = 172464, - [SMALL_STATE(4260)] = 172471, - [SMALL_STATE(4261)] = 172478, - [SMALL_STATE(4262)] = 172485, - [SMALL_STATE(4263)] = 172492, - [SMALL_STATE(4264)] = 172499, - [SMALL_STATE(4265)] = 172506, - [SMALL_STATE(4266)] = 172513, - [SMALL_STATE(4267)] = 172520, - [SMALL_STATE(4268)] = 172527, - [SMALL_STATE(4269)] = 172534, - [SMALL_STATE(4270)] = 172541, - [SMALL_STATE(4271)] = 172548, - [SMALL_STATE(4272)] = 172555, - [SMALL_STATE(4273)] = 172562, - [SMALL_STATE(4274)] = 172569, - [SMALL_STATE(4275)] = 172576, - [SMALL_STATE(4276)] = 172583, - [SMALL_STATE(4277)] = 172590, - [SMALL_STATE(4278)] = 172597, - [SMALL_STATE(4279)] = 172604, - [SMALL_STATE(4280)] = 172611, - [SMALL_STATE(4281)] = 172618, - [SMALL_STATE(4282)] = 172625, - [SMALL_STATE(4283)] = 172632, - [SMALL_STATE(4284)] = 172639, - [SMALL_STATE(4285)] = 172646, - [SMALL_STATE(4286)] = 172653, - [SMALL_STATE(4287)] = 172660, - [SMALL_STATE(4288)] = 172667, - [SMALL_STATE(4289)] = 172674, - [SMALL_STATE(4290)] = 172681, - [SMALL_STATE(4291)] = 172688, - [SMALL_STATE(4292)] = 172695, - [SMALL_STATE(4293)] = 172702, - [SMALL_STATE(4294)] = 172709, - [SMALL_STATE(4295)] = 172716, - [SMALL_STATE(4296)] = 172723, - [SMALL_STATE(4297)] = 172730, - [SMALL_STATE(4298)] = 172737, - [SMALL_STATE(4299)] = 172744, - [SMALL_STATE(4300)] = 172751, - [SMALL_STATE(4301)] = 172758, - [SMALL_STATE(4302)] = 172765, - [SMALL_STATE(4303)] = 172772, - [SMALL_STATE(4304)] = 172779, - [SMALL_STATE(4305)] = 172786, - [SMALL_STATE(4306)] = 172793, - [SMALL_STATE(4307)] = 172800, - [SMALL_STATE(4308)] = 172807, - [SMALL_STATE(4309)] = 172814, - [SMALL_STATE(4310)] = 172821, - [SMALL_STATE(4311)] = 172828, - [SMALL_STATE(4312)] = 172835, - [SMALL_STATE(4313)] = 172842, - [SMALL_STATE(4314)] = 172849, - [SMALL_STATE(4315)] = 172856, - [SMALL_STATE(4316)] = 172863, - [SMALL_STATE(4317)] = 172870, - [SMALL_STATE(4318)] = 172877, - [SMALL_STATE(4319)] = 172884, - [SMALL_STATE(4320)] = 172891, - [SMALL_STATE(4321)] = 172898, - [SMALL_STATE(4322)] = 172905, - [SMALL_STATE(4323)] = 172912, - [SMALL_STATE(4324)] = 172919, - [SMALL_STATE(4325)] = 172926, - [SMALL_STATE(4326)] = 172933, - [SMALL_STATE(4327)] = 172940, - [SMALL_STATE(4328)] = 172947, - [SMALL_STATE(4329)] = 172954, - [SMALL_STATE(4330)] = 172961, - [SMALL_STATE(4331)] = 172968, - [SMALL_STATE(4332)] = 172975, - [SMALL_STATE(4333)] = 172982, - [SMALL_STATE(4334)] = 172989, - [SMALL_STATE(4335)] = 172996, - [SMALL_STATE(4336)] = 173003, - [SMALL_STATE(4337)] = 173010, - [SMALL_STATE(4338)] = 173017, - [SMALL_STATE(4339)] = 173024, - [SMALL_STATE(4340)] = 173031, - [SMALL_STATE(4341)] = 173038, - [SMALL_STATE(4342)] = 173045, - [SMALL_STATE(4343)] = 173052, - [SMALL_STATE(4344)] = 173059, - [SMALL_STATE(4345)] = 173066, - [SMALL_STATE(4346)] = 173073, - [SMALL_STATE(4347)] = 173080, - [SMALL_STATE(4348)] = 173087, - [SMALL_STATE(4349)] = 173094, - [SMALL_STATE(4350)] = 173101, - [SMALL_STATE(4351)] = 173108, - [SMALL_STATE(4352)] = 173115, - [SMALL_STATE(4353)] = 173122, - [SMALL_STATE(4354)] = 173129, - [SMALL_STATE(4355)] = 173136, - [SMALL_STATE(4356)] = 173143, - [SMALL_STATE(4357)] = 173150, - [SMALL_STATE(4358)] = 173157, - [SMALL_STATE(4359)] = 173164, - [SMALL_STATE(4360)] = 173171, - [SMALL_STATE(4361)] = 173178, - [SMALL_STATE(4362)] = 173185, - [SMALL_STATE(4363)] = 173192, - [SMALL_STATE(4364)] = 173199, - [SMALL_STATE(4365)] = 173206, - [SMALL_STATE(4366)] = 173213, - [SMALL_STATE(4367)] = 173220, - [SMALL_STATE(4368)] = 173227, - [SMALL_STATE(4369)] = 173234, - [SMALL_STATE(4370)] = 173241, - [SMALL_STATE(4371)] = 173248, - [SMALL_STATE(4372)] = 173255, - [SMALL_STATE(4373)] = 173262, - [SMALL_STATE(4374)] = 173269, - [SMALL_STATE(4375)] = 173276, - [SMALL_STATE(4376)] = 173283, - [SMALL_STATE(4377)] = 173290, - [SMALL_STATE(4378)] = 173297, - [SMALL_STATE(4379)] = 173304, - [SMALL_STATE(4380)] = 173311, - [SMALL_STATE(4381)] = 173318, - [SMALL_STATE(4382)] = 173325, - [SMALL_STATE(4383)] = 173332, - [SMALL_STATE(4384)] = 173339, - [SMALL_STATE(4385)] = 173346, - [SMALL_STATE(4386)] = 173353, - [SMALL_STATE(4387)] = 173360, - [SMALL_STATE(4388)] = 173367, - [SMALL_STATE(4389)] = 173374, - [SMALL_STATE(4390)] = 173381, - [SMALL_STATE(4391)] = 173388, - [SMALL_STATE(4392)] = 173395, - [SMALL_STATE(4393)] = 173402, - [SMALL_STATE(4394)] = 173409, - [SMALL_STATE(4395)] = 173416, - [SMALL_STATE(4396)] = 173423, - [SMALL_STATE(4397)] = 173430, - [SMALL_STATE(4398)] = 173437, - [SMALL_STATE(4399)] = 173444, - [SMALL_STATE(4400)] = 173451, - [SMALL_STATE(4401)] = 173458, - [SMALL_STATE(4402)] = 173465, - [SMALL_STATE(4403)] = 173472, - [SMALL_STATE(4404)] = 173479, - [SMALL_STATE(4405)] = 173486, - [SMALL_STATE(4406)] = 173493, - [SMALL_STATE(4407)] = 173500, - [SMALL_STATE(4408)] = 173507, - [SMALL_STATE(4409)] = 173514, - [SMALL_STATE(4410)] = 173521, - [SMALL_STATE(4411)] = 173528, - [SMALL_STATE(4412)] = 173535, - [SMALL_STATE(4413)] = 173542, - [SMALL_STATE(4414)] = 173549, - [SMALL_STATE(4415)] = 173556, - [SMALL_STATE(4416)] = 173563, - [SMALL_STATE(4417)] = 173570, - [SMALL_STATE(4418)] = 173577, - [SMALL_STATE(4419)] = 173584, - [SMALL_STATE(4420)] = 173591, - [SMALL_STATE(4421)] = 173598, - [SMALL_STATE(4422)] = 173605, - [SMALL_STATE(4423)] = 173612, - [SMALL_STATE(4424)] = 173619, - [SMALL_STATE(4425)] = 173626, - [SMALL_STATE(4426)] = 173633, - [SMALL_STATE(4427)] = 173640, - [SMALL_STATE(4428)] = 173647, - [SMALL_STATE(4429)] = 173654, - [SMALL_STATE(4430)] = 173661, - [SMALL_STATE(4431)] = 173668, - [SMALL_STATE(4432)] = 173675, - [SMALL_STATE(4433)] = 173682, - [SMALL_STATE(4434)] = 173689, - [SMALL_STATE(4435)] = 173696, - [SMALL_STATE(4436)] = 173703, - [SMALL_STATE(4437)] = 173710, - [SMALL_STATE(4438)] = 173717, - [SMALL_STATE(4439)] = 173724, - [SMALL_STATE(4440)] = 173731, - [SMALL_STATE(4441)] = 173738, - [SMALL_STATE(4442)] = 173745, - [SMALL_STATE(4443)] = 173752, - [SMALL_STATE(4444)] = 173759, - [SMALL_STATE(4445)] = 173766, - [SMALL_STATE(4446)] = 173773, - [SMALL_STATE(4447)] = 173780, - [SMALL_STATE(4448)] = 173787, - [SMALL_STATE(4449)] = 173794, - [SMALL_STATE(4450)] = 173801, - [SMALL_STATE(4451)] = 173808, - [SMALL_STATE(4452)] = 173815, - [SMALL_STATE(4453)] = 173822, - [SMALL_STATE(4454)] = 173829, - [SMALL_STATE(4455)] = 173836, - [SMALL_STATE(4456)] = 173843, - [SMALL_STATE(4457)] = 173850, - [SMALL_STATE(4458)] = 173857, - [SMALL_STATE(4459)] = 173864, - [SMALL_STATE(4460)] = 173871, - [SMALL_STATE(4461)] = 173878, - [SMALL_STATE(4462)] = 173885, - [SMALL_STATE(4463)] = 173892, - [SMALL_STATE(4464)] = 173899, - [SMALL_STATE(4465)] = 173906, - [SMALL_STATE(4466)] = 173913, - [SMALL_STATE(4467)] = 173920, - [SMALL_STATE(4468)] = 173927, - [SMALL_STATE(4469)] = 173934, - [SMALL_STATE(4470)] = 173941, - [SMALL_STATE(4471)] = 173948, - [SMALL_STATE(4472)] = 173955, - [SMALL_STATE(4473)] = 173962, - [SMALL_STATE(4474)] = 173969, - [SMALL_STATE(4475)] = 173976, - [SMALL_STATE(4476)] = 173983, - [SMALL_STATE(4477)] = 173990, - [SMALL_STATE(4478)] = 173997, - [SMALL_STATE(4479)] = 174004, - [SMALL_STATE(4480)] = 174011, - [SMALL_STATE(4481)] = 174018, - [SMALL_STATE(4482)] = 174025, - [SMALL_STATE(4483)] = 174032, - [SMALL_STATE(4484)] = 174039, - [SMALL_STATE(4485)] = 174046, - [SMALL_STATE(4486)] = 174053, - [SMALL_STATE(4487)] = 174060, - [SMALL_STATE(4488)] = 174067, - [SMALL_STATE(4489)] = 174074, - [SMALL_STATE(4490)] = 174081, - [SMALL_STATE(4491)] = 174088, - [SMALL_STATE(4492)] = 174095, - [SMALL_STATE(4493)] = 174102, - [SMALL_STATE(4494)] = 174109, - [SMALL_STATE(4495)] = 174116, - [SMALL_STATE(4496)] = 174123, - [SMALL_STATE(4497)] = 174130, - [SMALL_STATE(4498)] = 174137, - [SMALL_STATE(4499)] = 174144, - [SMALL_STATE(4500)] = 174151, - [SMALL_STATE(4501)] = 174158, - [SMALL_STATE(4502)] = 174165, - [SMALL_STATE(4503)] = 174172, - [SMALL_STATE(4504)] = 174179, - [SMALL_STATE(4505)] = 174186, - [SMALL_STATE(4506)] = 174193, - [SMALL_STATE(4507)] = 174200, - [SMALL_STATE(4508)] = 174207, - [SMALL_STATE(4509)] = 174214, - [SMALL_STATE(4510)] = 174221, - [SMALL_STATE(4511)] = 174228, - [SMALL_STATE(4512)] = 174235, - [SMALL_STATE(4513)] = 174242, - [SMALL_STATE(4514)] = 174249, - [SMALL_STATE(4515)] = 174256, - [SMALL_STATE(4516)] = 174263, - [SMALL_STATE(4517)] = 174270, - [SMALL_STATE(4518)] = 174277, - [SMALL_STATE(4519)] = 174284, - [SMALL_STATE(4520)] = 174291, - [SMALL_STATE(4521)] = 174298, - [SMALL_STATE(4522)] = 174305, - [SMALL_STATE(4523)] = 174312, - [SMALL_STATE(4524)] = 174319, - [SMALL_STATE(4525)] = 174326, - [SMALL_STATE(4526)] = 174333, - [SMALL_STATE(4527)] = 174340, - [SMALL_STATE(4528)] = 174347, - [SMALL_STATE(4529)] = 174354, - [SMALL_STATE(4530)] = 174361, - [SMALL_STATE(4531)] = 174368, - [SMALL_STATE(4532)] = 174375, - [SMALL_STATE(4533)] = 174382, - [SMALL_STATE(4534)] = 174389, - [SMALL_STATE(4535)] = 174396, - [SMALL_STATE(4536)] = 174403, - [SMALL_STATE(4537)] = 174410, - [SMALL_STATE(4538)] = 174417, - [SMALL_STATE(4539)] = 174424, - [SMALL_STATE(4540)] = 174431, - [SMALL_STATE(4541)] = 174438, - [SMALL_STATE(4542)] = 174445, - [SMALL_STATE(4543)] = 174452, - [SMALL_STATE(4544)] = 174459, - [SMALL_STATE(4545)] = 174466, - [SMALL_STATE(4546)] = 174473, - [SMALL_STATE(4547)] = 174480, - [SMALL_STATE(4548)] = 174487, - [SMALL_STATE(4549)] = 174494, - [SMALL_STATE(4550)] = 174501, - [SMALL_STATE(4551)] = 174508, - [SMALL_STATE(4552)] = 174515, - [SMALL_STATE(4553)] = 174522, - [SMALL_STATE(4554)] = 174529, - [SMALL_STATE(4555)] = 174536, - [SMALL_STATE(4556)] = 174543, - [SMALL_STATE(4557)] = 174550, - [SMALL_STATE(4558)] = 174557, - [SMALL_STATE(4559)] = 174564, - [SMALL_STATE(4560)] = 174571, - [SMALL_STATE(4561)] = 174578, - [SMALL_STATE(4562)] = 174585, - [SMALL_STATE(4563)] = 174592, - [SMALL_STATE(4564)] = 174599, - [SMALL_STATE(4565)] = 174606, - [SMALL_STATE(4566)] = 174613, - [SMALL_STATE(4567)] = 174620, - [SMALL_STATE(4568)] = 174627, - [SMALL_STATE(4569)] = 174634, - [SMALL_STATE(4570)] = 174641, - [SMALL_STATE(4571)] = 174648, - [SMALL_STATE(4572)] = 174655, - [SMALL_STATE(4573)] = 174662, - [SMALL_STATE(4574)] = 174669, - [SMALL_STATE(4575)] = 174676, - [SMALL_STATE(4576)] = 174683, - [SMALL_STATE(4577)] = 174690, - [SMALL_STATE(4578)] = 174697, - [SMALL_STATE(4579)] = 174704, - [SMALL_STATE(4580)] = 174711, - [SMALL_STATE(4581)] = 174718, - [SMALL_STATE(4582)] = 174725, - [SMALL_STATE(4583)] = 174732, - [SMALL_STATE(4584)] = 174739, - [SMALL_STATE(4585)] = 174746, - [SMALL_STATE(4586)] = 174753, - [SMALL_STATE(4587)] = 174760, - [SMALL_STATE(4588)] = 174767, - [SMALL_STATE(4589)] = 174774, - [SMALL_STATE(4590)] = 174781, - [SMALL_STATE(4591)] = 174788, - [SMALL_STATE(4592)] = 174795, - [SMALL_STATE(4593)] = 174802, - [SMALL_STATE(4594)] = 174809, - [SMALL_STATE(4595)] = 174816, - [SMALL_STATE(4596)] = 174823, - [SMALL_STATE(4597)] = 174830, - [SMALL_STATE(4598)] = 174837, - [SMALL_STATE(4599)] = 174844, - [SMALL_STATE(4600)] = 174851, - [SMALL_STATE(4601)] = 174858, - [SMALL_STATE(4602)] = 174865, - [SMALL_STATE(4603)] = 174872, - [SMALL_STATE(4604)] = 174879, - [SMALL_STATE(4605)] = 174886, - [SMALL_STATE(4606)] = 174893, - [SMALL_STATE(4607)] = 174900, - [SMALL_STATE(4608)] = 174907, - [SMALL_STATE(4609)] = 174914, - [SMALL_STATE(4610)] = 174921, - [SMALL_STATE(4611)] = 174928, - [SMALL_STATE(4612)] = 174935, - [SMALL_STATE(4613)] = 174942, - [SMALL_STATE(4614)] = 174949, - [SMALL_STATE(4615)] = 174956, - [SMALL_STATE(4616)] = 174963, - [SMALL_STATE(4617)] = 174970, - [SMALL_STATE(4618)] = 174977, - [SMALL_STATE(4619)] = 174984, - [SMALL_STATE(4620)] = 174991, - [SMALL_STATE(4621)] = 174998, - [SMALL_STATE(4622)] = 175005, - [SMALL_STATE(4623)] = 175012, - [SMALL_STATE(4624)] = 175019, - [SMALL_STATE(4625)] = 175026, - [SMALL_STATE(4626)] = 175033, - [SMALL_STATE(4627)] = 175040, - [SMALL_STATE(4628)] = 175047, - [SMALL_STATE(4629)] = 175054, - [SMALL_STATE(4630)] = 175061, - [SMALL_STATE(4631)] = 175068, - [SMALL_STATE(4632)] = 175075, - [SMALL_STATE(4633)] = 175082, - [SMALL_STATE(4634)] = 175089, - [SMALL_STATE(4635)] = 175096, - [SMALL_STATE(4636)] = 175103, - [SMALL_STATE(4637)] = 175110, - [SMALL_STATE(4638)] = 175117, - [SMALL_STATE(4639)] = 175124, - [SMALL_STATE(4640)] = 175131, - [SMALL_STATE(4641)] = 175138, - [SMALL_STATE(4642)] = 175145, - [SMALL_STATE(4643)] = 175152, - [SMALL_STATE(4644)] = 175159, - [SMALL_STATE(4645)] = 175166, - [SMALL_STATE(4646)] = 175173, - [SMALL_STATE(4647)] = 175180, - [SMALL_STATE(4648)] = 175187, - [SMALL_STATE(4649)] = 175194, - [SMALL_STATE(4650)] = 175201, - [SMALL_STATE(4651)] = 175208, - [SMALL_STATE(4652)] = 175215, - [SMALL_STATE(4653)] = 175222, - [SMALL_STATE(4654)] = 175229, - [SMALL_STATE(4655)] = 175236, - [SMALL_STATE(4656)] = 175243, - [SMALL_STATE(4657)] = 175250, - [SMALL_STATE(4658)] = 175257, - [SMALL_STATE(4659)] = 175264, - [SMALL_STATE(4660)] = 175271, - [SMALL_STATE(4661)] = 175278, - [SMALL_STATE(4662)] = 175285, - [SMALL_STATE(4663)] = 175292, - [SMALL_STATE(4664)] = 175299, - [SMALL_STATE(4665)] = 175306, - [SMALL_STATE(4666)] = 175313, - [SMALL_STATE(4667)] = 175320, - [SMALL_STATE(4668)] = 175327, - [SMALL_STATE(4669)] = 175334, - [SMALL_STATE(4670)] = 175341, - [SMALL_STATE(4671)] = 175348, - [SMALL_STATE(4672)] = 175355, - [SMALL_STATE(4673)] = 175362, - [SMALL_STATE(4674)] = 175369, - [SMALL_STATE(4675)] = 175376, - [SMALL_STATE(4676)] = 175383, - [SMALL_STATE(4677)] = 175390, - [SMALL_STATE(4678)] = 175397, - [SMALL_STATE(4679)] = 175404, - [SMALL_STATE(4680)] = 175411, - [SMALL_STATE(4681)] = 175418, - [SMALL_STATE(4682)] = 175425, - [SMALL_STATE(4683)] = 175432, - [SMALL_STATE(4684)] = 175439, - [SMALL_STATE(4685)] = 175446, - [SMALL_STATE(4686)] = 175453, - [SMALL_STATE(4687)] = 175460, - [SMALL_STATE(4688)] = 175467, - [SMALL_STATE(4689)] = 175474, - [SMALL_STATE(4690)] = 175481, - [SMALL_STATE(4691)] = 175488, - [SMALL_STATE(4692)] = 175495, - [SMALL_STATE(4693)] = 175502, - [SMALL_STATE(4694)] = 175509, - [SMALL_STATE(4695)] = 175516, - [SMALL_STATE(4696)] = 175523, - [SMALL_STATE(4697)] = 175530, - [SMALL_STATE(4698)] = 175537, - [SMALL_STATE(4699)] = 175544, - [SMALL_STATE(4700)] = 175551, - [SMALL_STATE(4701)] = 175558, - [SMALL_STATE(4702)] = 175565, - [SMALL_STATE(4703)] = 175572, - [SMALL_STATE(4704)] = 175579, - [SMALL_STATE(4705)] = 175586, - [SMALL_STATE(4706)] = 175593, - [SMALL_STATE(4707)] = 175600, - [SMALL_STATE(4708)] = 175607, - [SMALL_STATE(4709)] = 175614, - [SMALL_STATE(4710)] = 175621, - [SMALL_STATE(4711)] = 175628, - [SMALL_STATE(4712)] = 175635, - [SMALL_STATE(4713)] = 175642, - [SMALL_STATE(4714)] = 175649, - [SMALL_STATE(4715)] = 175656, - [SMALL_STATE(4716)] = 175663, - [SMALL_STATE(4717)] = 175670, - [SMALL_STATE(4718)] = 175677, - [SMALL_STATE(4719)] = 175684, - [SMALL_STATE(4720)] = 175691, - [SMALL_STATE(4721)] = 175698, - [SMALL_STATE(4722)] = 175705, - [SMALL_STATE(4723)] = 175712, - [SMALL_STATE(4724)] = 175719, - [SMALL_STATE(4725)] = 175726, - [SMALL_STATE(4726)] = 175733, - [SMALL_STATE(4727)] = 175740, - [SMALL_STATE(4728)] = 175747, - [SMALL_STATE(4729)] = 175754, - [SMALL_STATE(4730)] = 175761, - [SMALL_STATE(4731)] = 175768, - [SMALL_STATE(4732)] = 175775, - [SMALL_STATE(4733)] = 175782, - [SMALL_STATE(4734)] = 175789, - [SMALL_STATE(4735)] = 175796, - [SMALL_STATE(4736)] = 175803, - [SMALL_STATE(4737)] = 175810, - [SMALL_STATE(4738)] = 175817, - [SMALL_STATE(4739)] = 175824, - [SMALL_STATE(4740)] = 175831, - [SMALL_STATE(4741)] = 175838, - [SMALL_STATE(4742)] = 175845, - [SMALL_STATE(4743)] = 175852, - [SMALL_STATE(4744)] = 175859, - [SMALL_STATE(4745)] = 175866, - [SMALL_STATE(4746)] = 175873, - [SMALL_STATE(4747)] = 175880, - [SMALL_STATE(4748)] = 175887, - [SMALL_STATE(4749)] = 175894, - [SMALL_STATE(4750)] = 175901, - [SMALL_STATE(4751)] = 175908, - [SMALL_STATE(4752)] = 175915, - [SMALL_STATE(4753)] = 175922, - [SMALL_STATE(4754)] = 175929, - [SMALL_STATE(4755)] = 175936, - [SMALL_STATE(4756)] = 175943, - [SMALL_STATE(4757)] = 175950, - [SMALL_STATE(4758)] = 175957, - [SMALL_STATE(4759)] = 175964, - [SMALL_STATE(4760)] = 175971, - [SMALL_STATE(4761)] = 175978, - [SMALL_STATE(4762)] = 175985, - [SMALL_STATE(4763)] = 175992, - [SMALL_STATE(4764)] = 175999, - [SMALL_STATE(4765)] = 176006, - [SMALL_STATE(4766)] = 176013, - [SMALL_STATE(4767)] = 176020, - [SMALL_STATE(4768)] = 176027, - [SMALL_STATE(4769)] = 176034, - [SMALL_STATE(4770)] = 176041, - [SMALL_STATE(4771)] = 176048, - [SMALL_STATE(4772)] = 176055, - [SMALL_STATE(4773)] = 176062, - [SMALL_STATE(4774)] = 176069, - [SMALL_STATE(4775)] = 176076, - [SMALL_STATE(4776)] = 176083, - [SMALL_STATE(4777)] = 176090, - [SMALL_STATE(4778)] = 176097, - [SMALL_STATE(4779)] = 176104, - [SMALL_STATE(4780)] = 176111, - [SMALL_STATE(4781)] = 176118, - [SMALL_STATE(4782)] = 176125, - [SMALL_STATE(4783)] = 176132, - [SMALL_STATE(4784)] = 176139, - [SMALL_STATE(4785)] = 176146, - [SMALL_STATE(4786)] = 176153, - [SMALL_STATE(4787)] = 176160, - [SMALL_STATE(4788)] = 176167, - [SMALL_STATE(4789)] = 176174, - [SMALL_STATE(4790)] = 176181, - [SMALL_STATE(4791)] = 176188, - [SMALL_STATE(4792)] = 176195, - [SMALL_STATE(4793)] = 176202, - [SMALL_STATE(4794)] = 176209, - [SMALL_STATE(4795)] = 176216, - [SMALL_STATE(4796)] = 176223, - [SMALL_STATE(4797)] = 176230, - [SMALL_STATE(4798)] = 176237, - [SMALL_STATE(4799)] = 176244, - [SMALL_STATE(4800)] = 176251, - [SMALL_STATE(4801)] = 176258, - [SMALL_STATE(4802)] = 176265, - [SMALL_STATE(4803)] = 176272, - [SMALL_STATE(4804)] = 176279, - [SMALL_STATE(4805)] = 176286, - [SMALL_STATE(4806)] = 176293, - [SMALL_STATE(4807)] = 176300, - [SMALL_STATE(4808)] = 176307, - [SMALL_STATE(4809)] = 176314, - [SMALL_STATE(4810)] = 176321, - [SMALL_STATE(4811)] = 176328, - [SMALL_STATE(4812)] = 176335, - [SMALL_STATE(4813)] = 176342, - [SMALL_STATE(4814)] = 176349, - [SMALL_STATE(4815)] = 176356, + [SMALL_STATE(433)] = 0, + [SMALL_STATE(434)] = 71, + [SMALL_STATE(435)] = 150, + [SMALL_STATE(436)] = 282, + [SMALL_STATE(437)] = 414, + [SMALL_STATE(438)] = 546, + [SMALL_STATE(439)] = 678, + [SMALL_STATE(440)] = 783, + [SMALL_STATE(441)] = 888, + [SMALL_STATE(442)] = 993, + [SMALL_STATE(443)] = 1097, + [SMALL_STATE(444)] = 1201, + [SMALL_STATE(445)] = 1305, + [SMALL_STATE(446)] = 1409, + [SMALL_STATE(447)] = 1513, + [SMALL_STATE(448)] = 1617, + [SMALL_STATE(449)] = 1721, + [SMALL_STATE(450)] = 1825, + [SMALL_STATE(451)] = 1928, + [SMALL_STATE(452)] = 2031, + [SMALL_STATE(453)] = 2134, + [SMALL_STATE(454)] = 2237, + [SMALL_STATE(455)] = 2340, + [SMALL_STATE(456)] = 2443, + [SMALL_STATE(457)] = 2546, + [SMALL_STATE(458)] = 2649, + [SMALL_STATE(459)] = 2752, + [SMALL_STATE(460)] = 2855, + [SMALL_STATE(461)] = 2958, + [SMALL_STATE(462)] = 3029, + [SMALL_STATE(463)] = 3100, + [SMALL_STATE(464)] = 3170, + [SMALL_STATE(465)] = 3272, + [SMALL_STATE(466)] = 3370, + [SMALL_STATE(467)] = 3468, + [SMALL_STATE(468)] = 3570, + [SMALL_STATE(469)] = 3638, + [SMALL_STATE(470)] = 3706, + [SMALL_STATE(471)] = 3808, + [SMALL_STATE(472)] = 3904, + [SMALL_STATE(473)] = 4006, + [SMALL_STATE(474)] = 4108, + [SMALL_STATE(475)] = 4210, + [SMALL_STATE(476)] = 4312, + [SMALL_STATE(477)] = 4414, + [SMALL_STATE(478)] = 4516, + [SMALL_STATE(479)] = 4586, + [SMALL_STATE(480)] = 4688, + [SMALL_STATE(481)] = 4790, + [SMALL_STATE(482)] = 4892, + [SMALL_STATE(483)] = 4992, + [SMALL_STATE(484)] = 5092, + [SMALL_STATE(485)] = 5194, + [SMALL_STATE(486)] = 5292, + [SMALL_STATE(487)] = 5387, + [SMALL_STATE(488)] = 5456, + [SMALL_STATE(489)] = 5557, + [SMALL_STATE(490)] = 5652, + [SMALL_STATE(491)] = 5721, + [SMALL_STATE(492)] = 5822, + [SMALL_STATE(493)] = 5921, + [SMALL_STATE(494)] = 5990, + [SMALL_STATE(495)] = 6091, + [SMALL_STATE(496)] = 6190, + [SMALL_STATE(497)] = 6287, + [SMALL_STATE(498)] = 6354, + [SMALL_STATE(499)] = 6423, + [SMALL_STATE(500)] = 6492, + [SMALL_STATE(501)] = 6559, + [SMALL_STATE(502)] = 6628, + [SMALL_STATE(503)] = 6725, + [SMALL_STATE(504)] = 6826, + [SMALL_STATE(505)] = 6923, + [SMALL_STATE(506)] = 7024, + [SMALL_STATE(507)] = 7123, + [SMALL_STATE(508)] = 7218, + [SMALL_STATE(509)] = 7287, + [SMALL_STATE(510)] = 7386, + [SMALL_STATE(511)] = 7481, + [SMALL_STATE(512)] = 7550, + [SMALL_STATE(513)] = 7646, + [SMALL_STATE(514)] = 7742, + [SMALL_STATE(515)] = 7838, + [SMALL_STATE(516)] = 7906, + [SMALL_STATE(517)] = 7974, + [SMALL_STATE(518)] = 8040, + [SMALL_STATE(519)] = 8134, + [SMALL_STATE(520)] = 8200, + [SMALL_STATE(521)] = 8266, + [SMALL_STATE(522)] = 8360, + [SMALL_STATE(523)] = 8454, + [SMALL_STATE(524)] = 8548, + [SMALL_STATE(525)] = 8616, + [SMALL_STATE(526)] = 8684, + [SMALL_STATE(527)] = 8778, + [SMALL_STATE(528)] = 8874, + [SMALL_STATE(529)] = 8942, + [SMALL_STATE(530)] = 9010, + [SMALL_STATE(531)] = 9076, + [SMALL_STATE(532)] = 9144, + [SMALL_STATE(533)] = 9240, + [SMALL_STATE(534)] = 9308, + [SMALL_STATE(535)] = 9376, + [SMALL_STATE(536)] = 9444, + [SMALL_STATE(537)] = 9540, + [SMALL_STATE(538)] = 9607, + [SMALL_STATE(539)] = 9706, + [SMALL_STATE(540)] = 9799, + [SMALL_STATE(541)] = 9862, + [SMALL_STATE(542)] = 9955, + [SMALL_STATE(543)] = 10020, + [SMALL_STATE(544)] = 10115, + [SMALL_STATE(545)] = 10182, + [SMALL_STATE(546)] = 10275, + [SMALL_STATE(547)] = 10342, + [SMALL_STATE(548)] = 10437, + [SMALL_STATE(549)] = 10496, + [SMALL_STATE(550)] = 10589, + [SMALL_STATE(551)] = 10654, + [SMALL_STATE(552)] = 10717, + [SMALL_STATE(553)] = 10784, + [SMALL_STATE(554)] = 10877, + [SMALL_STATE(555)] = 10944, + [SMALL_STATE(556)] = 11037, + [SMALL_STATE(557)] = 11104, + [SMALL_STATE(558)] = 11203, + [SMALL_STATE(559)] = 11296, + [SMALL_STATE(560)] = 11391, + [SMALL_STATE(561)] = 11454, + [SMALL_STATE(562)] = 11553, + [SMALL_STATE(563)] = 11620, + [SMALL_STATE(564)] = 11687, + [SMALL_STATE(565)] = 11754, + [SMALL_STATE(566)] = 11821, + [SMALL_STATE(567)] = 11884, + [SMALL_STATE(568)] = 11977, + [SMALL_STATE(569)] = 12070, + [SMALL_STATE(570)] = 12137, + [SMALL_STATE(571)] = 12204, + [SMALL_STATE(572)] = 12270, + [SMALL_STATE(573)] = 12336, + [SMALL_STATE(574)] = 12426, + [SMALL_STATE(575)] = 12492, + [SMALL_STATE(576)] = 12558, + [SMALL_STATE(577)] = 12674, + [SMALL_STATE(578)] = 12790, + [SMALL_STATE(579)] = 12906, + [SMALL_STATE(580)] = 13022, + [SMALL_STATE(581)] = 13138, + [SMALL_STATE(582)] = 13238, + [SMALL_STATE(583)] = 13354, + [SMALL_STATE(584)] = 13454, + [SMALL_STATE(585)] = 13520, + [SMALL_STATE(586)] = 13586, + [SMALL_STATE(587)] = 13652, + [SMALL_STATE(588)] = 13768, + [SMALL_STATE(589)] = 13866, + [SMALL_STATE(590)] = 13932, + [SMALL_STATE(591)] = 14030, + [SMALL_STATE(592)] = 14096, + [SMALL_STATE(593)] = 14162, + [SMALL_STATE(594)] = 14228, + [SMALL_STATE(595)] = 14318, + [SMALL_STATE(596)] = 14384, + [SMALL_STATE(597)] = 14482, + [SMALL_STATE(598)] = 14580, + [SMALL_STATE(599)] = 14672, + [SMALL_STATE(600)] = 14788, + [SMALL_STATE(601)] = 14880, + [SMALL_STATE(602)] = 14972, + [SMALL_STATE(603)] = 15070, + [SMALL_STATE(604)] = 15170, + [SMALL_STATE(605)] = 15269, + [SMALL_STATE(606)] = 15370, + [SMALL_STATE(607)] = 15435, + [SMALL_STATE(608)] = 15500, + [SMALL_STATE(609)] = 15577, + [SMALL_STATE(610)] = 15676, + [SMALL_STATE(611)] = 15745, + [SMALL_STATE(612)] = 15844, + [SMALL_STATE(613)] = 15943, + [SMALL_STATE(614)] = 16020, + [SMALL_STATE(615)] = 16085, + [SMALL_STATE(616)] = 16184, + [SMALL_STATE(617)] = 16253, + [SMALL_STATE(618)] = 16318, + [SMALL_STATE(619)] = 16383, + [SMALL_STATE(620)] = 16448, + [SMALL_STATE(621)] = 16510, + [SMALL_STATE(622)] = 16568, + [SMALL_STATE(623)] = 16630, + [SMALL_STATE(624)] = 16688, + [SMALL_STATE(625)] = 16764, + [SMALL_STATE(626)] = 16832, + [SMALL_STATE(627)] = 16894, + [SMALL_STATE(628)] = 16956, + [SMALL_STATE(629)] = 17012, + [SMALL_STATE(630)] = 17104, + [SMALL_STATE(631)] = 17162, + [SMALL_STATE(632)] = 17230, + [SMALL_STATE(633)] = 17306, + [SMALL_STATE(634)] = 17364, + [SMALL_STATE(635)] = 17456, + [SMALL_STATE(636)] = 17514, + [SMALL_STATE(637)] = 17606, + [SMALL_STATE(638)] = 17662, + [SMALL_STATE(639)] = 17726, + [SMALL_STATE(640)] = 17816, + [SMALL_STATE(641)] = 17880, + [SMALL_STATE(642)] = 17944, + [SMALL_STATE(643)] = 18036, + [SMALL_STATE(644)] = 18099, + [SMALL_STATE(645)] = 18174, + [SMALL_STATE(646)] = 18267, + [SMALL_STATE(647)] = 18322, + [SMALL_STATE(648)] = 18411, + [SMALL_STATE(649)] = 18480, + [SMALL_STATE(650)] = 18569, + [SMALL_STATE(651)] = 18662, + [SMALL_STATE(652)] = 18725, + [SMALL_STATE(653)] = 18782, + [SMALL_STATE(654)] = 18857, + [SMALL_STATE(655)] = 18920, + [SMALL_STATE(656)] = 18983, + [SMALL_STATE(657)] = 19050, + [SMALL_STATE(658)] = 19113, + [SMALL_STATE(659)] = 19176, + [SMALL_STATE(660)] = 19269, + [SMALL_STATE(661)] = 19326, + [SMALL_STATE(662)] = 19389, + [SMALL_STATE(663)] = 19464, + [SMALL_STATE(664)] = 19531, + [SMALL_STATE(665)] = 19622, + [SMALL_STATE(666)] = 19683, + [SMALL_STATE(667)] = 19744, + [SMALL_STATE(668)] = 19807, + [SMALL_STATE(669)] = 19870, + [SMALL_STATE(670)] = 19961, + [SMALL_STATE(671)] = 20022, + [SMALL_STATE(672)] = 20083, + [SMALL_STATE(673)] = 20172, + [SMALL_STATE(674)] = 20233, + [SMALL_STATE(675)] = 20300, + [SMALL_STATE(676)] = 20361, + [SMALL_STATE(677)] = 20436, + [SMALL_STATE(678)] = 20497, + [SMALL_STATE(679)] = 20558, + [SMALL_STATE(680)] = 20619, + [SMALL_STATE(681)] = 20680, + [SMALL_STATE(682)] = 20741, + [SMALL_STATE(683)] = 20832, + [SMALL_STATE(684)] = 20893, + [SMALL_STATE(685)] = 20954, + [SMALL_STATE(686)] = 21045, + [SMALL_STATE(687)] = 21106, + [SMALL_STATE(688)] = 21166, + [SMALL_STATE(689)] = 21226, + [SMALL_STATE(690)] = 21288, + [SMALL_STATE(691)] = 21348, + [SMALL_STATE(692)] = 21402, + [SMALL_STATE(693)] = 21464, + [SMALL_STATE(694)] = 21518, + [SMALL_STATE(695)] = 21572, + [SMALL_STATE(696)] = 21626, + [SMALL_STATE(697)] = 21686, + [SMALL_STATE(698)] = 21746, + [SMALL_STATE(699)] = 21800, + [SMALL_STATE(700)] = 21854, + [SMALL_STATE(701)] = 21908, + [SMALL_STATE(702)] = 21974, + [SMALL_STATE(703)] = 22028, + [SMALL_STATE(704)] = 22094, + [SMALL_STATE(705)] = 22148, + [SMALL_STATE(706)] = 22202, + [SMALL_STATE(707)] = 22298, + [SMALL_STATE(708)] = 22358, + [SMALL_STATE(709)] = 22418, + [SMALL_STATE(710)] = 22490, + [SMALL_STATE(711)] = 22550, + [SMALL_STATE(712)] = 22604, + [SMALL_STATE(713)] = 22658, + [SMALL_STATE(714)] = 22712, + [SMALL_STATE(715)] = 22766, + [SMALL_STATE(716)] = 22826, + [SMALL_STATE(717)] = 22880, + [SMALL_STATE(718)] = 22934, + [SMALL_STATE(719)] = 22988, + [SMALL_STATE(720)] = 23048, + [SMALL_STATE(721)] = 23102, + [SMALL_STATE(722)] = 23156, + [SMALL_STATE(723)] = 23216, + [SMALL_STATE(724)] = 23270, + [SMALL_STATE(725)] = 23330, + [SMALL_STATE(726)] = 23390, + [SMALL_STATE(727)] = 23452, + [SMALL_STATE(728)] = 23512, + [SMALL_STATE(729)] = 23572, + [SMALL_STATE(730)] = 23632, + [SMALL_STATE(731)] = 23692, + [SMALL_STATE(732)] = 23752, + [SMALL_STATE(733)] = 23824, + [SMALL_STATE(734)] = 23884, + [SMALL_STATE(735)] = 23944, + [SMALL_STATE(736)] = 24004, + [SMALL_STATE(737)] = 24064, + [SMALL_STATE(738)] = 24124, + [SMALL_STATE(739)] = 24186, + [SMALL_STATE(740)] = 24246, + [SMALL_STATE(741)] = 24336, + [SMALL_STATE(742)] = 24398, + [SMALL_STATE(743)] = 24472, + [SMALL_STATE(744)] = 24546, + [SMALL_STATE(745)] = 24608, + [SMALL_STATE(746)] = 24670, + [SMALL_STATE(747)] = 24760, + [SMALL_STATE(748)] = 24820, + [SMALL_STATE(749)] = 24880, + [SMALL_STATE(750)] = 24942, + [SMALL_STATE(751)] = 25004, + [SMALL_STATE(752)] = 25066, + [SMALL_STATE(753)] = 25156, + [SMALL_STATE(754)] = 25228, + [SMALL_STATE(755)] = 25294, + [SMALL_STATE(756)] = 25366, + [SMALL_STATE(757)] = 25432, + [SMALL_STATE(758)] = 25492, + [SMALL_STATE(759)] = 25552, + [SMALL_STATE(760)] = 25624, + [SMALL_STATE(761)] = 25686, + [SMALL_STATE(762)] = 25748, + [SMALL_STATE(763)] = 25844, + [SMALL_STATE(764)] = 25916, + [SMALL_STATE(765)] = 25988, + [SMALL_STATE(766)] = 26060, + [SMALL_STATE(767)] = 26113, + [SMALL_STATE(768)] = 26172, + [SMALL_STATE(769)] = 26233, + [SMALL_STATE(770)] = 26292, + [SMALL_STATE(771)] = 26351, + [SMALL_STATE(772)] = 26410, + [SMALL_STATE(773)] = 26469, + [SMALL_STATE(774)] = 26528, + [SMALL_STATE(775)] = 26587, + [SMALL_STATE(776)] = 26640, + [SMALL_STATE(777)] = 26699, + [SMALL_STATE(778)] = 26758, + [SMALL_STATE(779)] = 26817, + [SMALL_STATE(780)] = 26876, + [SMALL_STATE(781)] = 26935, + [SMALL_STATE(782)] = 26994, + [SMALL_STATE(783)] = 27087, + [SMALL_STATE(784)] = 27180, + [SMALL_STATE(785)] = 27239, + [SMALL_STATE(786)] = 27298, + [SMALL_STATE(787)] = 27357, + [SMALL_STATE(788)] = 27416, + [SMALL_STATE(789)] = 27475, + [SMALL_STATE(790)] = 27528, + [SMALL_STATE(791)] = 27587, + [SMALL_STATE(792)] = 27648, + [SMALL_STATE(793)] = 27705, + [SMALL_STATE(794)] = 27766, + [SMALL_STATE(795)] = 27825, + [SMALL_STATE(796)] = 27884, + [SMALL_STATE(797)] = 27941, + [SMALL_STATE(798)] = 28000, + [SMALL_STATE(799)] = 28059, + [SMALL_STATE(800)] = 28118, + [SMALL_STATE(801)] = 28177, + [SMALL_STATE(802)] = 28236, + [SMALL_STATE(803)] = 28289, + [SMALL_STATE(804)] = 28342, + [SMALL_STATE(805)] = 28395, + [SMALL_STATE(806)] = 28448, + [SMALL_STATE(807)] = 28501, + [SMALL_STATE(808)] = 28560, + [SMALL_STATE(809)] = 28619, + [SMALL_STATE(810)] = 28676, + [SMALL_STATE(811)] = 28735, + [SMALL_STATE(812)] = 28794, + [SMALL_STATE(813)] = 28847, + [SMALL_STATE(814)] = 28906, + [SMALL_STATE(815)] = 28965, + [SMALL_STATE(816)] = 29018, + [SMALL_STATE(817)] = 29077, + [SMALL_STATE(818)] = 29136, + [SMALL_STATE(819)] = 29195, + [SMALL_STATE(820)] = 29248, + [SMALL_STATE(821)] = 29301, + [SMALL_STATE(822)] = 29354, + [SMALL_STATE(823)] = 29407, + [SMALL_STATE(824)] = 29460, + [SMALL_STATE(825)] = 29553, + [SMALL_STATE(826)] = 29606, + [SMALL_STATE(827)] = 29659, + [SMALL_STATE(828)] = 29712, + [SMALL_STATE(829)] = 29771, + [SMALL_STATE(830)] = 29832, + [SMALL_STATE(831)] = 29885, + [SMALL_STATE(832)] = 29942, + [SMALL_STATE(833)] = 29995, + [SMALL_STATE(834)] = 30048, + [SMALL_STATE(835)] = 30101, + [SMALL_STATE(836)] = 30154, + [SMALL_STATE(837)] = 30213, + [SMALL_STATE(838)] = 30266, + [SMALL_STATE(839)] = 30319, + [SMALL_STATE(840)] = 30372, + [SMALL_STATE(841)] = 30425, + [SMALL_STATE(842)] = 30478, + [SMALL_STATE(843)] = 30531, + [SMALL_STATE(844)] = 30584, + [SMALL_STATE(845)] = 30643, + [SMALL_STATE(846)] = 30696, + [SMALL_STATE(847)] = 30755, + [SMALL_STATE(848)] = 30808, + [SMALL_STATE(849)] = 30861, + [SMALL_STATE(850)] = 30914, + [SMALL_STATE(851)] = 30967, + [SMALL_STATE(852)] = 31020, + [SMALL_STATE(853)] = 31073, + [SMALL_STATE(854)] = 31126, + [SMALL_STATE(855)] = 31179, + [SMALL_STATE(856)] = 31238, + [SMALL_STATE(857)] = 31297, + [SMALL_STATE(858)] = 31356, + [SMALL_STATE(859)] = 31415, + [SMALL_STATE(860)] = 31468, + [SMALL_STATE(861)] = 31561, + [SMALL_STATE(862)] = 31654, + [SMALL_STATE(863)] = 31715, + [SMALL_STATE(864)] = 31776, + [SMALL_STATE(865)] = 31869, + [SMALL_STATE(866)] = 31962, + [SMALL_STATE(867)] = 32055, + [SMALL_STATE(868)] = 32114, + [SMALL_STATE(869)] = 32207, + [SMALL_STATE(870)] = 32300, + [SMALL_STATE(871)] = 32352, + [SMALL_STATE(872)] = 32404, + [SMALL_STATE(873)] = 32456, + [SMALL_STATE(874)] = 32508, + [SMALL_STATE(875)] = 32560, + [SMALL_STATE(876)] = 32612, + [SMALL_STATE(877)] = 32664, + [SMALL_STATE(878)] = 32716, + [SMALL_STATE(879)] = 32768, + [SMALL_STATE(880)] = 32820, + [SMALL_STATE(881)] = 32872, + [SMALL_STATE(882)] = 32924, + [SMALL_STATE(883)] = 32982, + [SMALL_STATE(884)] = 33040, + [SMALL_STATE(885)] = 33092, + [SMALL_STATE(886)] = 33144, + [SMALL_STATE(887)] = 33196, + [SMALL_STATE(888)] = 33248, + [SMALL_STATE(889)] = 33306, + [SMALL_STATE(890)] = 33364, + [SMALL_STATE(891)] = 33422, + [SMALL_STATE(892)] = 33480, + [SMALL_STATE(893)] = 33538, + [SMALL_STATE(894)] = 33596, + [SMALL_STATE(895)] = 33694, + [SMALL_STATE(896)] = 33752, + [SMALL_STATE(897)] = 33850, + [SMALL_STATE(898)] = 33908, + [SMALL_STATE(899)] = 33966, + [SMALL_STATE(900)] = 34064, + [SMALL_STATE(901)] = 34120, + [SMALL_STATE(902)] = 34172, + [SMALL_STATE(903)] = 34230, + [SMALL_STATE(904)] = 34288, + [SMALL_STATE(905)] = 34344, + [SMALL_STATE(906)] = 34396, + [SMALL_STATE(907)] = 34448, + [SMALL_STATE(908)] = 34504, + [SMALL_STATE(909)] = 34602, + [SMALL_STATE(910)] = 34654, + [SMALL_STATE(911)] = 34706, + [SMALL_STATE(912)] = 34764, + [SMALL_STATE(913)] = 34822, + [SMALL_STATE(914)] = 34880, + [SMALL_STATE(915)] = 34938, + [SMALL_STATE(916)] = 34996, + [SMALL_STATE(917)] = 35054, + [SMALL_STATE(918)] = 35106, + [SMALL_STATE(919)] = 35158, + [SMALL_STATE(920)] = 35216, + [SMALL_STATE(921)] = 35268, + [SMALL_STATE(922)] = 35320, + [SMALL_STATE(923)] = 35372, + [SMALL_STATE(924)] = 35424, + [SMALL_STATE(925)] = 35480, + [SMALL_STATE(926)] = 35538, + [SMALL_STATE(927)] = 35590, + [SMALL_STATE(928)] = 35642, + [SMALL_STATE(929)] = 35694, + [SMALL_STATE(930)] = 35746, + [SMALL_STATE(931)] = 35804, + [SMALL_STATE(932)] = 35856, + [SMALL_STATE(933)] = 35914, + [SMALL_STATE(934)] = 35972, + [SMALL_STATE(935)] = 36030, + [SMALL_STATE(936)] = 36088, + [SMALL_STATE(937)] = 36146, + [SMALL_STATE(938)] = 36204, + [SMALL_STATE(939)] = 36256, + [SMALL_STATE(940)] = 36314, + [SMALL_STATE(941)] = 36370, + [SMALL_STATE(942)] = 36468, + [SMALL_STATE(943)] = 36526, + [SMALL_STATE(944)] = 36584, + [SMALL_STATE(945)] = 36642, + [SMALL_STATE(946)] = 36700, + [SMALL_STATE(947)] = 36752, + [SMALL_STATE(948)] = 36804, + [SMALL_STATE(949)] = 36862, + [SMALL_STATE(950)] = 36960, + [SMALL_STATE(951)] = 37012, + [SMALL_STATE(952)] = 37064, + [SMALL_STATE(953)] = 37116, + [SMALL_STATE(954)] = 37168, + [SMALL_STATE(955)] = 37220, + [SMALL_STATE(956)] = 37272, + [SMALL_STATE(957)] = 37324, + [SMALL_STATE(958)] = 37422, + [SMALL_STATE(959)] = 37480, + [SMALL_STATE(960)] = 37538, + [SMALL_STATE(961)] = 37590, + [SMALL_STATE(962)] = 37642, + [SMALL_STATE(963)] = 37694, + [SMALL_STATE(964)] = 37752, + [SMALL_STATE(965)] = 37810, + [SMALL_STATE(966)] = 37866, + [SMALL_STATE(967)] = 37918, + [SMALL_STATE(968)] = 37970, + [SMALL_STATE(969)] = 38022, + [SMALL_STATE(970)] = 38074, + [SMALL_STATE(971)] = 38126, + [SMALL_STATE(972)] = 38178, + [SMALL_STATE(973)] = 38230, + [SMALL_STATE(974)] = 38282, + [SMALL_STATE(975)] = 38334, + [SMALL_STATE(976)] = 38386, + [SMALL_STATE(977)] = 38438, + [SMALL_STATE(978)] = 38490, + [SMALL_STATE(979)] = 38542, + [SMALL_STATE(980)] = 38594, + [SMALL_STATE(981)] = 38646, + [SMALL_STATE(982)] = 38698, + [SMALL_STATE(983)] = 38750, + [SMALL_STATE(984)] = 38802, + [SMALL_STATE(985)] = 38854, + [SMALL_STATE(986)] = 38906, + [SMALL_STATE(987)] = 38958, + [SMALL_STATE(988)] = 39010, + [SMALL_STATE(989)] = 39062, + [SMALL_STATE(990)] = 39114, + [SMALL_STATE(991)] = 39166, + [SMALL_STATE(992)] = 39218, + [SMALL_STATE(993)] = 39276, + [SMALL_STATE(994)] = 39334, + [SMALL_STATE(995)] = 39386, + [SMALL_STATE(996)] = 39438, + [SMALL_STATE(997)] = 39494, + [SMALL_STATE(998)] = 39546, + [SMALL_STATE(999)] = 39598, + [SMALL_STATE(1000)] = 39656, + [SMALL_STATE(1001)] = 39714, + [SMALL_STATE(1002)] = 39766, + [SMALL_STATE(1003)] = 39864, + [SMALL_STATE(1004)] = 39916, + [SMALL_STATE(1005)] = 39974, + [SMALL_STATE(1006)] = 40026, + [SMALL_STATE(1007)] = 40078, + [SMALL_STATE(1008)] = 40130, + [SMALL_STATE(1009)] = 40182, + [SMALL_STATE(1010)] = 40234, + [SMALL_STATE(1011)] = 40286, + [SMALL_STATE(1012)] = 40338, + [SMALL_STATE(1013)] = 40390, + [SMALL_STATE(1014)] = 40448, + [SMALL_STATE(1015)] = 40500, + [SMALL_STATE(1016)] = 40552, + [SMALL_STATE(1017)] = 40604, + [SMALL_STATE(1018)] = 40656, + [SMALL_STATE(1019)] = 40708, + [SMALL_STATE(1020)] = 40760, + [SMALL_STATE(1021)] = 40812, + [SMALL_STATE(1022)] = 40864, + [SMALL_STATE(1023)] = 40916, + [SMALL_STATE(1024)] = 40968, + [SMALL_STATE(1025)] = 41020, + [SMALL_STATE(1026)] = 41078, + [SMALL_STATE(1027)] = 41168, + [SMALL_STATE(1028)] = 41220, + [SMALL_STATE(1029)] = 41272, + [SMALL_STATE(1030)] = 41324, + [SMALL_STATE(1031)] = 41376, + [SMALL_STATE(1032)] = 41428, + [SMALL_STATE(1033)] = 41480, + [SMALL_STATE(1034)] = 41532, + [SMALL_STATE(1035)] = 41584, + [SMALL_STATE(1036)] = 41635, + [SMALL_STATE(1037)] = 41686, + [SMALL_STATE(1038)] = 41743, + [SMALL_STATE(1039)] = 41794, + [SMALL_STATE(1040)] = 41845, + [SMALL_STATE(1041)] = 41896, + [SMALL_STATE(1042)] = 41947, + [SMALL_STATE(1043)] = 41998, + [SMALL_STATE(1044)] = 42049, + [SMALL_STATE(1045)] = 42112, + [SMALL_STATE(1046)] = 42163, + [SMALL_STATE(1047)] = 42214, + [SMALL_STATE(1048)] = 42265, + [SMALL_STATE(1049)] = 42316, + [SMALL_STATE(1050)] = 42371, + [SMALL_STATE(1051)] = 42422, + [SMALL_STATE(1052)] = 42473, + [SMALL_STATE(1053)] = 42524, + [SMALL_STATE(1054)] = 42575, + [SMALL_STATE(1055)] = 42626, + [SMALL_STATE(1056)] = 42677, + [SMALL_STATE(1057)] = 42728, + [SMALL_STATE(1058)] = 42779, + [SMALL_STATE(1059)] = 42830, + [SMALL_STATE(1060)] = 42885, + [SMALL_STATE(1061)] = 42936, + [SMALL_STATE(1062)] = 42991, + [SMALL_STATE(1063)] = 43042, + [SMALL_STATE(1064)] = 43093, + [SMALL_STATE(1065)] = 43150, + [SMALL_STATE(1066)] = 43201, + [SMALL_STATE(1067)] = 43252, + [SMALL_STATE(1068)] = 43309, + [SMALL_STATE(1069)] = 43364, + [SMALL_STATE(1070)] = 43415, + [SMALL_STATE(1071)] = 43466, + [SMALL_STATE(1072)] = 43517, + [SMALL_STATE(1073)] = 43574, + [SMALL_STATE(1074)] = 43631, + [SMALL_STATE(1075)] = 43688, + [SMALL_STATE(1076)] = 43739, + [SMALL_STATE(1077)] = 43790, + [SMALL_STATE(1078)] = 43841, + [SMALL_STATE(1079)] = 43898, + [SMALL_STATE(1080)] = 43953, + [SMALL_STATE(1081)] = 44010, + [SMALL_STATE(1082)] = 44067, + [SMALL_STATE(1083)] = 44118, + [SMALL_STATE(1084)] = 44169, + [SMALL_STATE(1085)] = 44220, + [SMALL_STATE(1086)] = 44271, + [SMALL_STATE(1087)] = 44322, + [SMALL_STATE(1088)] = 44373, + [SMALL_STATE(1089)] = 44424, + [SMALL_STATE(1090)] = 44475, + [SMALL_STATE(1091)] = 44544, + [SMALL_STATE(1092)] = 44601, + [SMALL_STATE(1093)] = 44652, + [SMALL_STATE(1094)] = 44703, + [SMALL_STATE(1095)] = 44754, + [SMALL_STATE(1096)] = 44805, + [SMALL_STATE(1097)] = 44860, + [SMALL_STATE(1098)] = 44911, + [SMALL_STATE(1099)] = 44962, + [SMALL_STATE(1100)] = 45013, + [SMALL_STATE(1101)] = 45064, + [SMALL_STATE(1102)] = 45121, + [SMALL_STATE(1103)] = 45178, + [SMALL_STATE(1104)] = 45233, + [SMALL_STATE(1105)] = 45288, + [SMALL_STATE(1106)] = 45339, + [SMALL_STATE(1107)] = 45390, + [SMALL_STATE(1108)] = 45441, + [SMALL_STATE(1109)] = 45492, + [SMALL_STATE(1110)] = 45543, + [SMALL_STATE(1111)] = 45600, + [SMALL_STATE(1112)] = 45651, + [SMALL_STATE(1113)] = 45702, + [SMALL_STATE(1114)] = 45753, + [SMALL_STATE(1115)] = 45804, + [SMALL_STATE(1116)] = 45855, + [SMALL_STATE(1117)] = 45906, + [SMALL_STATE(1118)] = 45957, + [SMALL_STATE(1119)] = 46008, + [SMALL_STATE(1120)] = 46059, + [SMALL_STATE(1121)] = 46110, + [SMALL_STATE(1122)] = 46161, + [SMALL_STATE(1123)] = 46218, + [SMALL_STATE(1124)] = 46269, + [SMALL_STATE(1125)] = 46326, + [SMALL_STATE(1126)] = 46383, + [SMALL_STATE(1127)] = 46440, + [SMALL_STATE(1128)] = 46497, + [SMALL_STATE(1129)] = 46554, + [SMALL_STATE(1130)] = 46611, + [SMALL_STATE(1131)] = 46666, + [SMALL_STATE(1132)] = 46723, + [SMALL_STATE(1133)] = 46774, + [SMALL_STATE(1134)] = 46825, + [SMALL_STATE(1135)] = 46876, + [SMALL_STATE(1136)] = 46933, + [SMALL_STATE(1137)] = 46990, + [SMALL_STATE(1138)] = 47041, + [SMALL_STATE(1139)] = 47092, + [SMALL_STATE(1140)] = 47147, + [SMALL_STATE(1141)] = 47202, + [SMALL_STATE(1142)] = 47253, + [SMALL_STATE(1143)] = 47304, + [SMALL_STATE(1144)] = 47355, + [SMALL_STATE(1145)] = 47406, + [SMALL_STATE(1146)] = 47463, + [SMALL_STATE(1147)] = 47514, + [SMALL_STATE(1148)] = 47571, + [SMALL_STATE(1149)] = 47622, + [SMALL_STATE(1150)] = 47677, + [SMALL_STATE(1151)] = 47728, + [SMALL_STATE(1152)] = 47779, + [SMALL_STATE(1153)] = 47830, + [SMALL_STATE(1154)] = 47881, + [SMALL_STATE(1155)] = 47936, + [SMALL_STATE(1156)] = 47987, + [SMALL_STATE(1157)] = 48044, + [SMALL_STATE(1158)] = 48095, + [SMALL_STATE(1159)] = 48146, + [SMALL_STATE(1160)] = 48203, + [SMALL_STATE(1161)] = 48254, + [SMALL_STATE(1162)] = 48305, + [SMALL_STATE(1163)] = 48356, + [SMALL_STATE(1164)] = 48407, + [SMALL_STATE(1165)] = 48458, + [SMALL_STATE(1166)] = 48515, + [SMALL_STATE(1167)] = 48572, + [SMALL_STATE(1168)] = 48623, + [SMALL_STATE(1169)] = 48674, + [SMALL_STATE(1170)] = 48731, + [SMALL_STATE(1171)] = 48782, + [SMALL_STATE(1172)] = 48833, + [SMALL_STATE(1173)] = 48884, + [SMALL_STATE(1174)] = 48935, + [SMALL_STATE(1175)] = 48992, + [SMALL_STATE(1176)] = 49049, + [SMALL_STATE(1177)] = 49106, + [SMALL_STATE(1178)] = 49157, + [SMALL_STATE(1179)] = 49214, + [SMALL_STATE(1180)] = 49271, + [SMALL_STATE(1181)] = 49322, + [SMALL_STATE(1182)] = 49379, + [SMALL_STATE(1183)] = 49430, + [SMALL_STATE(1184)] = 49481, + [SMALL_STATE(1185)] = 49544, + [SMALL_STATE(1186)] = 49601, + [SMALL_STATE(1187)] = 49656, + [SMALL_STATE(1188)] = 49707, + [SMALL_STATE(1189)] = 49764, + [SMALL_STATE(1190)] = 49821, + [SMALL_STATE(1191)] = 49872, + [SMALL_STATE(1192)] = 49923, + [SMALL_STATE(1193)] = 49978, + [SMALL_STATE(1194)] = 50033, + [SMALL_STATE(1195)] = 50084, + [SMALL_STATE(1196)] = 50141, + [SMALL_STATE(1197)] = 50192, + [SMALL_STATE(1198)] = 50243, + [SMALL_STATE(1199)] = 50294, + [SMALL_STATE(1200)] = 50345, + [SMALL_STATE(1201)] = 50396, + [SMALL_STATE(1202)] = 50447, + [SMALL_STATE(1203)] = 50504, + [SMALL_STATE(1204)] = 50554, + [SMALL_STATE(1205)] = 50608, + [SMALL_STATE(1206)] = 50658, + [SMALL_STATE(1207)] = 50708, + [SMALL_STATE(1208)] = 50758, + [SMALL_STATE(1209)] = 50808, + [SMALL_STATE(1210)] = 50858, + [SMALL_STATE(1211)] = 50914, + [SMALL_STATE(1212)] = 50970, + [SMALL_STATE(1213)] = 51026, + [SMALL_STATE(1214)] = 51082, + [SMALL_STATE(1215)] = 51132, + [SMALL_STATE(1216)] = 51182, + [SMALL_STATE(1217)] = 51236, + [SMALL_STATE(1218)] = 51292, + [SMALL_STATE(1219)] = 51348, + [SMALL_STATE(1220)] = 51404, + [SMALL_STATE(1221)] = 51454, + [SMALL_STATE(1222)] = 51504, + [SMALL_STATE(1223)] = 51554, + [SMALL_STATE(1224)] = 51604, + [SMALL_STATE(1225)] = 51654, + [SMALL_STATE(1226)] = 51704, + [SMALL_STATE(1227)] = 51758, + [SMALL_STATE(1228)] = 51808, + [SMALL_STATE(1229)] = 51858, + [SMALL_STATE(1230)] = 51908, + [SMALL_STATE(1231)] = 51958, + [SMALL_STATE(1232)] = 52014, + [SMALL_STATE(1233)] = 52064, + [SMALL_STATE(1234)] = 52114, + [SMALL_STATE(1235)] = 52164, + [SMALL_STATE(1236)] = 52214, + [SMALL_STATE(1237)] = 52270, + [SMALL_STATE(1238)] = 52320, + [SMALL_STATE(1239)] = 52370, + [SMALL_STATE(1240)] = 52426, + [SMALL_STATE(1241)] = 52480, + [SMALL_STATE(1242)] = 52530, + [SMALL_STATE(1243)] = 52586, + [SMALL_STATE(1244)] = 52636, + [SMALL_STATE(1245)] = 52686, + [SMALL_STATE(1246)] = 52736, + [SMALL_STATE(1247)] = 52786, + [SMALL_STATE(1248)] = 52836, + [SMALL_STATE(1249)] = 52890, + [SMALL_STATE(1250)] = 52940, + [SMALL_STATE(1251)] = 52990, + [SMALL_STATE(1252)] = 53040, + [SMALL_STATE(1253)] = 53090, + [SMALL_STATE(1254)] = 53140, + [SMALL_STATE(1255)] = 53194, + [SMALL_STATE(1256)] = 53244, + [SMALL_STATE(1257)] = 53300, + [SMALL_STATE(1258)] = 53350, + [SMALL_STATE(1259)] = 53400, + [SMALL_STATE(1260)] = 53450, + [SMALL_STATE(1261)] = 53500, + [SMALL_STATE(1262)] = 53550, + [SMALL_STATE(1263)] = 53600, + [SMALL_STATE(1264)] = 53650, + [SMALL_STATE(1265)] = 53700, + [SMALL_STATE(1266)] = 53750, + [SMALL_STATE(1267)] = 53800, + [SMALL_STATE(1268)] = 53850, + [SMALL_STATE(1269)] = 53904, + [SMALL_STATE(1270)] = 53954, + [SMALL_STATE(1271)] = 54010, + [SMALL_STATE(1272)] = 54060, + [SMALL_STATE(1273)] = 54110, + [SMALL_STATE(1274)] = 54160, + [SMALL_STATE(1275)] = 54210, + [SMALL_STATE(1276)] = 54260, + [SMALL_STATE(1277)] = 54310, + [SMALL_STATE(1278)] = 54360, + [SMALL_STATE(1279)] = 54410, + [SMALL_STATE(1280)] = 54460, + [SMALL_STATE(1281)] = 54510, + [SMALL_STATE(1282)] = 54566, + [SMALL_STATE(1283)] = 54616, + [SMALL_STATE(1284)] = 54674, + [SMALL_STATE(1285)] = 54724, + [SMALL_STATE(1286)] = 54774, + [SMALL_STATE(1287)] = 54824, + [SMALL_STATE(1288)] = 54880, + [SMALL_STATE(1289)] = 54930, + [SMALL_STATE(1290)] = 54984, + [SMALL_STATE(1291)] = 55034, + [SMALL_STATE(1292)] = 55090, + [SMALL_STATE(1293)] = 55140, + [SMALL_STATE(1294)] = 55190, + [SMALL_STATE(1295)] = 55240, + [SMALL_STATE(1296)] = 55294, + [SMALL_STATE(1297)] = 55344, + [SMALL_STATE(1298)] = 55394, + [SMALL_STATE(1299)] = 55444, + [SMALL_STATE(1300)] = 55494, + [SMALL_STATE(1301)] = 55544, + [SMALL_STATE(1302)] = 55594, + [SMALL_STATE(1303)] = 55644, + [SMALL_STATE(1304)] = 55700, + [SMALL_STATE(1305)] = 55750, + [SMALL_STATE(1306)] = 55800, + [SMALL_STATE(1307)] = 55850, + [SMALL_STATE(1308)] = 55900, + [SMALL_STATE(1309)] = 55950, + [SMALL_STATE(1310)] = 56000, + [SMALL_STATE(1311)] = 56056, + [SMALL_STATE(1312)] = 56112, + [SMALL_STATE(1313)] = 56162, + [SMALL_STATE(1314)] = 56212, + [SMALL_STATE(1315)] = 56262, + [SMALL_STATE(1316)] = 56312, + [SMALL_STATE(1317)] = 56362, + [SMALL_STATE(1318)] = 56412, + [SMALL_STATE(1319)] = 56462, + [SMALL_STATE(1320)] = 56512, + [SMALL_STATE(1321)] = 56562, + [SMALL_STATE(1322)] = 56612, + [SMALL_STATE(1323)] = 56678, + [SMALL_STATE(1324)] = 56728, + [SMALL_STATE(1325)] = 56790, + [SMALL_STATE(1326)] = 56840, + [SMALL_STATE(1327)] = 56890, + [SMALL_STATE(1328)] = 56940, + [SMALL_STATE(1329)] = 57010, + [SMALL_STATE(1330)] = 57060, + [SMALL_STATE(1331)] = 57110, + [SMALL_STATE(1332)] = 57160, + [SMALL_STATE(1333)] = 57210, + [SMALL_STATE(1334)] = 57260, + [SMALL_STATE(1335)] = 57316, + [SMALL_STATE(1336)] = 57366, + [SMALL_STATE(1337)] = 57420, + [SMALL_STATE(1338)] = 57476, + [SMALL_STATE(1339)] = 57526, + [SMALL_STATE(1340)] = 57582, + [SMALL_STATE(1341)] = 57632, + [SMALL_STATE(1342)] = 57682, + [SMALL_STATE(1343)] = 57732, + [SMALL_STATE(1344)] = 57782, + [SMALL_STATE(1345)] = 57832, + [SMALL_STATE(1346)] = 57886, + [SMALL_STATE(1347)] = 57936, + [SMALL_STATE(1348)] = 57986, + [SMALL_STATE(1349)] = 58040, + [SMALL_STATE(1350)] = 58090, + [SMALL_STATE(1351)] = 58144, + [SMALL_STATE(1352)] = 58194, + [SMALL_STATE(1353)] = 58244, + [SMALL_STATE(1354)] = 58300, + [SMALL_STATE(1355)] = 58356, + [SMALL_STATE(1356)] = 58406, + [SMALL_STATE(1357)] = 58462, + [SMALL_STATE(1358)] = 58512, + [SMALL_STATE(1359)] = 58562, + [SMALL_STATE(1360)] = 58612, + [SMALL_STATE(1361)] = 58662, + [SMALL_STATE(1362)] = 58716, + [SMALL_STATE(1363)] = 58766, + [SMALL_STATE(1364)] = 58815, + [SMALL_STATE(1365)] = 58864, + [SMALL_STATE(1366)] = 58919, + [SMALL_STATE(1367)] = 58974, + [SMALL_STATE(1368)] = 59023, + [SMALL_STATE(1369)] = 59072, + [SMALL_STATE(1370)] = 59127, + [SMALL_STATE(1371)] = 59180, + [SMALL_STATE(1372)] = 59229, + [SMALL_STATE(1373)] = 59282, + [SMALL_STATE(1374)] = 59335, + [SMALL_STATE(1375)] = 59384, + [SMALL_STATE(1376)] = 59439, + [SMALL_STATE(1377)] = 59488, + [SMALL_STATE(1378)] = 59543, + [SMALL_STATE(1379)] = 59598, + [SMALL_STATE(1380)] = 59653, + [SMALL_STATE(1381)] = 59706, + [SMALL_STATE(1382)] = 59761, + [SMALL_STATE(1383)] = 59816, + [SMALL_STATE(1384)] = 59871, + [SMALL_STATE(1385)] = 59926, + [SMALL_STATE(1386)] = 59975, + [SMALL_STATE(1387)] = 60028, + [SMALL_STATE(1388)] = 60083, + [SMALL_STATE(1389)] = 60132, + [SMALL_STATE(1390)] = 60181, + [SMALL_STATE(1391)] = 60234, + [SMALL_STATE(1392)] = 60283, + [SMALL_STATE(1393)] = 60338, + [SMALL_STATE(1394)] = 60393, + [SMALL_STATE(1395)] = 60442, + [SMALL_STATE(1396)] = 60491, + [SMALL_STATE(1397)] = 60540, + [SMALL_STATE(1398)] = 60595, + [SMALL_STATE(1399)] = 60644, + [SMALL_STATE(1400)] = 60693, + [SMALL_STATE(1401)] = 60742, + [SMALL_STATE(1402)] = 60791, + [SMALL_STATE(1403)] = 60840, + [SMALL_STATE(1404)] = 60889, + [SMALL_STATE(1405)] = 60942, + [SMALL_STATE(1406)] = 60991, + [SMALL_STATE(1407)] = 61040, + [SMALL_STATE(1408)] = 61095, + [SMALL_STATE(1409)] = 61148, + [SMALL_STATE(1410)] = 61197, + [SMALL_STATE(1411)] = 61246, + [SMALL_STATE(1412)] = 61295, + [SMALL_STATE(1413)] = 61344, + [SMALL_STATE(1414)] = 61401, + [SMALL_STATE(1415)] = 61458, + [SMALL_STATE(1416)] = 61511, + [SMALL_STATE(1417)] = 61564, + [SMALL_STATE(1418)] = 61613, + [SMALL_STATE(1419)] = 61662, + [SMALL_STATE(1420)] = 61715, + [SMALL_STATE(1421)] = 61764, + [SMALL_STATE(1422)] = 61817, + [SMALL_STATE(1423)] = 61866, + [SMALL_STATE(1424)] = 61915, + [SMALL_STATE(1425)] = 61964, + [SMALL_STATE(1426)] = 62013, + [SMALL_STATE(1427)] = 62062, + [SMALL_STATE(1428)] = 62111, + [SMALL_STATE(1429)] = 62160, + [SMALL_STATE(1430)] = 62209, + [SMALL_STATE(1431)] = 62258, + [SMALL_STATE(1432)] = 62307, + [SMALL_STATE(1433)] = 62356, + [SMALL_STATE(1434)] = 62405, + [SMALL_STATE(1435)] = 62454, + [SMALL_STATE(1436)] = 62503, + [SMALL_STATE(1437)] = 62552, + [SMALL_STATE(1438)] = 62601, + [SMALL_STATE(1439)] = 62654, + [SMALL_STATE(1440)] = 62703, + [SMALL_STATE(1441)] = 62752, + [SMALL_STATE(1442)] = 62801, + [SMALL_STATE(1443)] = 62850, + [SMALL_STATE(1444)] = 62903, + [SMALL_STATE(1445)] = 62952, + [SMALL_STATE(1446)] = 63001, + [SMALL_STATE(1447)] = 63054, + [SMALL_STATE(1448)] = 63103, + [SMALL_STATE(1449)] = 63152, + [SMALL_STATE(1450)] = 63201, + [SMALL_STATE(1451)] = 63257, + [SMALL_STATE(1452)] = 63305, + [SMALL_STATE(1453)] = 63361, + [SMALL_STATE(1454)] = 63417, + [SMALL_STATE(1455)] = 63465, + [SMALL_STATE(1456)] = 63521, + [SMALL_STATE(1457)] = 63577, + [SMALL_STATE(1458)] = 63625, + [SMALL_STATE(1459)] = 63677, + [SMALL_STATE(1460)] = 63729, + [SMALL_STATE(1461)] = 63781, + [SMALL_STATE(1462)] = 63833, + [SMALL_STATE(1463)] = 63889, + [SMALL_STATE(1464)] = 63973, + [SMALL_STATE(1465)] = 64029, + [SMALL_STATE(1466)] = 64081, + [SMALL_STATE(1467)] = 64137, + [SMALL_STATE(1468)] = 64191, + [SMALL_STATE(1469)] = 64239, + [SMALL_STATE(1470)] = 64295, + [SMALL_STATE(1471)] = 64347, + [SMALL_STATE(1472)] = 64399, + [SMALL_STATE(1473)] = 64451, + [SMALL_STATE(1474)] = 64499, + [SMALL_STATE(1475)] = 64555, + [SMALL_STATE(1476)] = 64607, + [SMALL_STATE(1477)] = 64663, + [SMALL_STATE(1478)] = 64719, + [SMALL_STATE(1479)] = 64775, + [SMALL_STATE(1480)] = 64831, + [SMALL_STATE(1481)] = 64879, + [SMALL_STATE(1482)] = 64935, + [SMALL_STATE(1483)] = 64983, + [SMALL_STATE(1484)] = 65039, + [SMALL_STATE(1485)] = 65091, + [SMALL_STATE(1486)] = 65139, + [SMALL_STATE(1487)] = 65187, + [SMALL_STATE(1488)] = 65235, + [SMALL_STATE(1489)] = 65283, + [SMALL_STATE(1490)] = 65339, + [SMALL_STATE(1491)] = 65395, + [SMALL_STATE(1492)] = 65443, + [SMALL_STATE(1493)] = 65499, + [SMALL_STATE(1494)] = 65555, + [SMALL_STATE(1495)] = 65611, + [SMALL_STATE(1496)] = 65659, + [SMALL_STATE(1497)] = 65711, + [SMALL_STATE(1498)] = 65763, + [SMALL_STATE(1499)] = 65819, + [SMALL_STATE(1500)] = 65875, + [SMALL_STATE(1501)] = 65931, + [SMALL_STATE(1502)] = 65987, + [SMALL_STATE(1503)] = 66035, + [SMALL_STATE(1504)] = 66091, + [SMALL_STATE(1505)] = 66139, + [SMALL_STATE(1506)] = 66187, + [SMALL_STATE(1507)] = 66235, + [SMALL_STATE(1508)] = 66289, + [SMALL_STATE(1509)] = 66345, + [SMALL_STATE(1510)] = 66401, + [SMALL_STATE(1511)] = 66457, + [SMALL_STATE(1512)] = 66505, + [SMALL_STATE(1513)] = 66561, + [SMALL_STATE(1514)] = 66613, + [SMALL_STATE(1515)] = 66669, + [SMALL_STATE(1516)] = 66723, + [SMALL_STATE(1517)] = 66779, + [SMALL_STATE(1518)] = 66833, + [SMALL_STATE(1519)] = 66885, + [SMALL_STATE(1520)] = 66937, + [SMALL_STATE(1521)] = 66991, + [SMALL_STATE(1522)] = 67043, + [SMALL_STATE(1523)] = 67091, + [SMALL_STATE(1524)] = 67147, + [SMALL_STATE(1525)] = 67201, + [SMALL_STATE(1526)] = 67255, + [SMALL_STATE(1527)] = 67311, + [SMALL_STATE(1528)] = 67363, + [SMALL_STATE(1529)] = 67411, + [SMALL_STATE(1530)] = 67467, + [SMALL_STATE(1531)] = 67521, + [SMALL_STATE(1532)] = 67577, + [SMALL_STATE(1533)] = 67629, + [SMALL_STATE(1534)] = 67683, + [SMALL_STATE(1535)] = 67739, + [SMALL_STATE(1536)] = 67795, + [SMALL_STATE(1537)] = 67851, + [SMALL_STATE(1538)] = 67899, + [SMALL_STATE(1539)] = 67955, + [SMALL_STATE(1540)] = 68007, + [SMALL_STATE(1541)] = 68063, + [SMALL_STATE(1542)] = 68119, + [SMALL_STATE(1543)] = 68167, + [SMALL_STATE(1544)] = 68223, + [SMALL_STATE(1545)] = 68275, + [SMALL_STATE(1546)] = 68323, + [SMALL_STATE(1547)] = 68377, + [SMALL_STATE(1548)] = 68431, + [SMALL_STATE(1549)] = 68479, + [SMALL_STATE(1550)] = 68535, + [SMALL_STATE(1551)] = 68591, + [SMALL_STATE(1552)] = 68639, + [SMALL_STATE(1553)] = 68695, + [SMALL_STATE(1554)] = 68751, + [SMALL_STATE(1555)] = 68807, + [SMALL_STATE(1556)] = 68859, + [SMALL_STATE(1557)] = 68915, + [SMALL_STATE(1558)] = 68967, + [SMALL_STATE(1559)] = 69015, + [SMALL_STATE(1560)] = 69071, + [SMALL_STATE(1561)] = 69119, + [SMALL_STATE(1562)] = 69167, + [SMALL_STATE(1563)] = 69223, + [SMALL_STATE(1564)] = 69279, + [SMALL_STATE(1565)] = 69327, + [SMALL_STATE(1566)] = 69381, + [SMALL_STATE(1567)] = 69429, + [SMALL_STATE(1568)] = 69485, + [SMALL_STATE(1569)] = 69541, + [SMALL_STATE(1570)] = 69589, + [SMALL_STATE(1571)] = 69643, + [SMALL_STATE(1572)] = 69699, + [SMALL_STATE(1573)] = 69753, + [SMALL_STATE(1574)] = 69806, + [SMALL_STATE(1575)] = 69895, + [SMALL_STATE(1576)] = 69946, + [SMALL_STATE(1577)] = 69999, + [SMALL_STATE(1578)] = 70052, + [SMALL_STATE(1579)] = 70105, + [SMALL_STATE(1580)] = 70158, + [SMALL_STATE(1581)] = 70211, + [SMALL_STATE(1582)] = 70262, + [SMALL_STATE(1583)] = 70313, + [SMALL_STATE(1584)] = 70364, + [SMALL_STATE(1585)] = 70415, + [SMALL_STATE(1586)] = 70470, + [SMALL_STATE(1587)] = 70521, + [SMALL_STATE(1588)] = 70576, + [SMALL_STATE(1589)] = 70627, + [SMALL_STATE(1590)] = 70678, + [SMALL_STATE(1591)] = 70727, + [SMALL_STATE(1592)] = 70774, + [SMALL_STATE(1593)] = 70863, + [SMALL_STATE(1594)] = 70914, + [SMALL_STATE(1595)] = 70967, + [SMALL_STATE(1596)] = 71020, + [SMALL_STATE(1597)] = 71073, + [SMALL_STATE(1598)] = 71126, + [SMALL_STATE(1599)] = 71177, + [SMALL_STATE(1600)] = 71228, + [SMALL_STATE(1601)] = 71279, + [SMALL_STATE(1602)] = 71328, + [SMALL_STATE(1603)] = 71379, + [SMALL_STATE(1604)] = 71434, + [SMALL_STATE(1605)] = 71489, + [SMALL_STATE(1606)] = 71536, + [SMALL_STATE(1607)] = 71589, + [SMALL_STATE(1608)] = 71642, + [SMALL_STATE(1609)] = 71731, + [SMALL_STATE(1610)] = 71820, + [SMALL_STATE(1611)] = 71867, + [SMALL_STATE(1612)] = 71914, + [SMALL_STATE(1613)] = 71967, + [SMALL_STATE(1614)] = 72056, + [SMALL_STATE(1615)] = 72103, + [SMALL_STATE(1616)] = 72192, + [SMALL_STATE(1617)] = 72239, + [SMALL_STATE(1618)] = 72288, + [SMALL_STATE(1619)] = 72341, + [SMALL_STATE(1620)] = 72394, + [SMALL_STATE(1621)] = 72445, + [SMALL_STATE(1622)] = 72534, + [SMALL_STATE(1623)] = 72585, + [SMALL_STATE(1624)] = 72632, + [SMALL_STATE(1625)] = 72679, + [SMALL_STATE(1626)] = 72726, + [SMALL_STATE(1627)] = 72779, + [SMALL_STATE(1628)] = 72868, + [SMALL_STATE(1629)] = 72915, + [SMALL_STATE(1630)] = 72962, + [SMALL_STATE(1631)] = 73015, + [SMALL_STATE(1632)] = 73062, + [SMALL_STATE(1633)] = 73109, + [SMALL_STATE(1634)] = 73156, + [SMALL_STATE(1635)] = 73203, + [SMALL_STATE(1636)] = 73254, + [SMALL_STATE(1637)] = 73305, + [SMALL_STATE(1638)] = 73356, + [SMALL_STATE(1639)] = 73403, + [SMALL_STATE(1640)] = 73450, + [SMALL_STATE(1641)] = 73497, + [SMALL_STATE(1642)] = 73548, + [SMALL_STATE(1643)] = 73637, + [SMALL_STATE(1644)] = 73726, + [SMALL_STATE(1645)] = 73773, + [SMALL_STATE(1646)] = 73820, + [SMALL_STATE(1647)] = 73867, + [SMALL_STATE(1648)] = 73914, + [SMALL_STATE(1649)] = 73967, + [SMALL_STATE(1650)] = 74014, + [SMALL_STATE(1651)] = 74103, + [SMALL_STATE(1652)] = 74156, + [SMALL_STATE(1653)] = 74245, + [SMALL_STATE(1654)] = 74292, + [SMALL_STATE(1655)] = 74339, + [SMALL_STATE(1656)] = 74394, + [SMALL_STATE(1657)] = 74447, + [SMALL_STATE(1658)] = 74502, + [SMALL_STATE(1659)] = 74549, + [SMALL_STATE(1660)] = 74596, + [SMALL_STATE(1661)] = 74649, + [SMALL_STATE(1662)] = 74698, + [SMALL_STATE(1663)] = 74751, + [SMALL_STATE(1664)] = 74800, + [SMALL_STATE(1665)] = 74851, + [SMALL_STATE(1666)] = 74902, + [SMALL_STATE(1667)] = 74949, + [SMALL_STATE(1668)] = 74996, + [SMALL_STATE(1669)] = 75049, + [SMALL_STATE(1670)] = 75096, + [SMALL_STATE(1671)] = 75143, + [SMALL_STATE(1672)] = 75190, + [SMALL_STATE(1673)] = 75237, + [SMALL_STATE(1674)] = 75326, + [SMALL_STATE(1675)] = 75373, + [SMALL_STATE(1676)] = 75420, + [SMALL_STATE(1677)] = 75467, + [SMALL_STATE(1678)] = 75514, + [SMALL_STATE(1679)] = 75561, + [SMALL_STATE(1680)] = 75608, + [SMALL_STATE(1681)] = 75655, + [SMALL_STATE(1682)] = 75702, + [SMALL_STATE(1683)] = 75749, + [SMALL_STATE(1684)] = 75800, + [SMALL_STATE(1685)] = 75889, + [SMALL_STATE(1686)] = 75936, + [SMALL_STATE(1687)] = 76025, + [SMALL_STATE(1688)] = 76078, + [SMALL_STATE(1689)] = 76125, + [SMALL_STATE(1690)] = 76172, + [SMALL_STATE(1691)] = 76219, + [SMALL_STATE(1692)] = 76266, + [SMALL_STATE(1693)] = 76319, + [SMALL_STATE(1694)] = 76370, + [SMALL_STATE(1695)] = 76423, + [SMALL_STATE(1696)] = 76476, + [SMALL_STATE(1697)] = 76529, + [SMALL_STATE(1698)] = 76580, + [SMALL_STATE(1699)] = 76635, + [SMALL_STATE(1700)] = 76690, + [SMALL_STATE(1701)] = 76779, + [SMALL_STATE(1702)] = 76868, + [SMALL_STATE(1703)] = 76957, + [SMALL_STATE(1704)] = 77008, + [SMALL_STATE(1705)] = 77097, + [SMALL_STATE(1706)] = 77186, + [SMALL_STATE(1707)] = 77239, + [SMALL_STATE(1708)] = 77294, + [SMALL_STATE(1709)] = 77349, + [SMALL_STATE(1710)] = 77435, + [SMALL_STATE(1711)] = 77487, + [SMALL_STATE(1712)] = 77537, + [SMALL_STATE(1713)] = 77583, + [SMALL_STATE(1714)] = 77629, + [SMALL_STATE(1715)] = 77715, + [SMALL_STATE(1716)] = 77771, + [SMALL_STATE(1717)] = 77827, + [SMALL_STATE(1718)] = 77913, + [SMALL_STATE(1719)] = 77969, + [SMALL_STATE(1720)] = 78025, + [SMALL_STATE(1721)] = 78071, + [SMALL_STATE(1722)] = 78117, + [SMALL_STATE(1723)] = 78163, + [SMALL_STATE(1724)] = 78219, + [SMALL_STATE(1725)] = 78265, + [SMALL_STATE(1726)] = 78351, + [SMALL_STATE(1727)] = 78407, + [SMALL_STATE(1728)] = 78453, + [SMALL_STATE(1729)] = 78499, + [SMALL_STATE(1730)] = 78549, + [SMALL_STATE(1731)] = 78605, + [SMALL_STATE(1732)] = 78655, + [SMALL_STATE(1733)] = 78711, + [SMALL_STATE(1734)] = 78757, + [SMALL_STATE(1735)] = 78803, + [SMALL_STATE(1736)] = 78889, + [SMALL_STATE(1737)] = 78945, + [SMALL_STATE(1738)] = 79001, + [SMALL_STATE(1739)] = 79047, + [SMALL_STATE(1740)] = 79103, + [SMALL_STATE(1741)] = 79191, + [SMALL_STATE(1742)] = 79277, + [SMALL_STATE(1743)] = 79363, + [SMALL_STATE(1744)] = 79419, + [SMALL_STATE(1745)] = 79465, + [SMALL_STATE(1746)] = 79515, + [SMALL_STATE(1747)] = 79561, + [SMALL_STATE(1748)] = 79647, + [SMALL_STATE(1749)] = 79693, + [SMALL_STATE(1750)] = 79739, + [SMALL_STATE(1751)] = 79795, + [SMALL_STATE(1752)] = 79851, + [SMALL_STATE(1753)] = 79937, + [SMALL_STATE(1754)] = 80023, + [SMALL_STATE(1755)] = 80109, + [SMALL_STATE(1756)] = 80165, + [SMALL_STATE(1757)] = 80215, + [SMALL_STATE(1758)] = 80261, + [SMALL_STATE(1759)] = 80311, + [SMALL_STATE(1760)] = 80367, + [SMALL_STATE(1761)] = 80423, + [SMALL_STATE(1762)] = 80509, + [SMALL_STATE(1763)] = 80565, + [SMALL_STATE(1764)] = 80615, + [SMALL_STATE(1765)] = 80703, + [SMALL_STATE(1766)] = 80753, + [SMALL_STATE(1767)] = 80799, + [SMALL_STATE(1768)] = 80845, + [SMALL_STATE(1769)] = 80901, + [SMALL_STATE(1770)] = 80987, + [SMALL_STATE(1771)] = 81037, + [SMALL_STATE(1772)] = 81087, + [SMALL_STATE(1773)] = 81137, + [SMALL_STATE(1774)] = 81187, + [SMALL_STATE(1775)] = 81273, + [SMALL_STATE(1776)] = 81329, + [SMALL_STATE(1777)] = 81375, + [SMALL_STATE(1778)] = 81431, + [SMALL_STATE(1779)] = 81483, + [SMALL_STATE(1780)] = 81569, + [SMALL_STATE(1781)] = 81621, + [SMALL_STATE(1782)] = 81677, + [SMALL_STATE(1783)] = 81723, + [SMALL_STATE(1784)] = 81773, + [SMALL_STATE(1785)] = 81819, + [SMALL_STATE(1786)] = 81905, + [SMALL_STATE(1787)] = 81991, + [SMALL_STATE(1788)] = 82077, + [SMALL_STATE(1789)] = 82129, + [SMALL_STATE(1790)] = 82175, + [SMALL_STATE(1791)] = 82227, + [SMALL_STATE(1792)] = 82273, + [SMALL_STATE(1793)] = 82319, + [SMALL_STATE(1794)] = 82371, + [SMALL_STATE(1795)] = 82417, + [SMALL_STATE(1796)] = 82463, + [SMALL_STATE(1797)] = 82509, + [SMALL_STATE(1798)] = 82561, + [SMALL_STATE(1799)] = 82647, + [SMALL_STATE(1800)] = 82697, + [SMALL_STATE(1801)] = 82743, + [SMALL_STATE(1802)] = 82829, + [SMALL_STATE(1803)] = 82885, + [SMALL_STATE(1804)] = 82971, + [SMALL_STATE(1805)] = 83017, + [SMALL_STATE(1806)] = 83063, + [SMALL_STATE(1807)] = 83149, + [SMALL_STATE(1808)] = 83195, + [SMALL_STATE(1809)] = 83281, + [SMALL_STATE(1810)] = 83327, + [SMALL_STATE(1811)] = 83373, + [SMALL_STATE(1812)] = 83459, + [SMALL_STATE(1813)] = 83509, + [SMALL_STATE(1814)] = 83555, + [SMALL_STATE(1815)] = 83641, + [SMALL_STATE(1816)] = 83687, + [SMALL_STATE(1817)] = 83733, + [SMALL_STATE(1818)] = 83819, + [SMALL_STATE(1819)] = 83875, + [SMALL_STATE(1820)] = 83963, + [SMALL_STATE(1821)] = 84019, + [SMALL_STATE(1822)] = 84075, + [SMALL_STATE(1823)] = 84121, + [SMALL_STATE(1824)] = 84167, + [SMALL_STATE(1825)] = 84217, + [SMALL_STATE(1826)] = 84273, + [SMALL_STATE(1827)] = 84323, + [SMALL_STATE(1828)] = 84375, + [SMALL_STATE(1829)] = 84421, + [SMALL_STATE(1830)] = 84477, + [SMALL_STATE(1831)] = 84529, + [SMALL_STATE(1832)] = 84579, + [SMALL_STATE(1833)] = 84625, + [SMALL_STATE(1834)] = 84671, + [SMALL_STATE(1835)] = 84717, + [SMALL_STATE(1836)] = 84773, + [SMALL_STATE(1837)] = 84859, + [SMALL_STATE(1838)] = 84915, + [SMALL_STATE(1839)] = 84971, + [SMALL_STATE(1840)] = 85017, + [SMALL_STATE(1841)] = 85103, + [SMALL_STATE(1842)] = 85149, + [SMALL_STATE(1843)] = 85195, + [SMALL_STATE(1844)] = 85251, + [SMALL_STATE(1845)] = 85297, + [SMALL_STATE(1846)] = 85343, + [SMALL_STATE(1847)] = 85391, + [SMALL_STATE(1848)] = 85477, + [SMALL_STATE(1849)] = 85523, + [SMALL_STATE(1850)] = 85569, + [SMALL_STATE(1851)] = 85625, + [SMALL_STATE(1852)] = 85671, + [SMALL_STATE(1853)] = 85717, + [SMALL_STATE(1854)] = 85763, + [SMALL_STATE(1855)] = 85813, + [SMALL_STATE(1856)] = 85899, + [SMALL_STATE(1857)] = 85945, + [SMALL_STATE(1858)] = 85991, + [SMALL_STATE(1859)] = 86077, + [SMALL_STATE(1860)] = 86163, + [SMALL_STATE(1861)] = 86249, + [SMALL_STATE(1862)] = 86295, + [SMALL_STATE(1863)] = 86341, + [SMALL_STATE(1864)] = 86397, + [SMALL_STATE(1865)] = 86443, + [SMALL_STATE(1866)] = 86489, + [SMALL_STATE(1867)] = 86545, + [SMALL_STATE(1868)] = 86591, + [SMALL_STATE(1869)] = 86677, + [SMALL_STATE(1870)] = 86733, + [SMALL_STATE(1871)] = 86819, + [SMALL_STATE(1872)] = 86865, + [SMALL_STATE(1873)] = 86921, + [SMALL_STATE(1874)] = 86977, + [SMALL_STATE(1875)] = 87033, + [SMALL_STATE(1876)] = 87079, + [SMALL_STATE(1877)] = 87125, + [SMALL_STATE(1878)] = 87171, + [SMALL_STATE(1879)] = 87223, + [SMALL_STATE(1880)] = 87279, + [SMALL_STATE(1881)] = 87331, + [SMALL_STATE(1882)] = 87377, + [SMALL_STATE(1883)] = 87423, + [SMALL_STATE(1884)] = 87469, + [SMALL_STATE(1885)] = 87555, + [SMALL_STATE(1886)] = 87601, + [SMALL_STATE(1887)] = 87657, + [SMALL_STATE(1888)] = 87713, + [SMALL_STATE(1889)] = 87799, + [SMALL_STATE(1890)] = 87885, + [SMALL_STATE(1891)] = 87931, + [SMALL_STATE(1892)] = 87981, + [SMALL_STATE(1893)] = 88027, + [SMALL_STATE(1894)] = 88073, + [SMALL_STATE(1895)] = 88123, + [SMALL_STATE(1896)] = 88209, + [SMALL_STATE(1897)] = 88265, + [SMALL_STATE(1898)] = 88321, + [SMALL_STATE(1899)] = 88407, + [SMALL_STATE(1900)] = 88453, + [SMALL_STATE(1901)] = 88499, + [SMALL_STATE(1902)] = 88545, + [SMALL_STATE(1903)] = 88591, + [SMALL_STATE(1904)] = 88637, + [SMALL_STATE(1905)] = 88693, + [SMALL_STATE(1906)] = 88749, + [SMALL_STATE(1907)] = 88835, + [SMALL_STATE(1908)] = 88881, + [SMALL_STATE(1909)] = 88927, + [SMALL_STATE(1910)] = 88983, + [SMALL_STATE(1911)] = 89033, + [SMALL_STATE(1912)] = 89089, + [SMALL_STATE(1913)] = 89175, + [SMALL_STATE(1914)] = 89263, + [SMALL_STATE(1915)] = 89349, + [SMALL_STATE(1916)] = 89395, + [SMALL_STATE(1917)] = 89441, + [SMALL_STATE(1918)] = 89527, + [SMALL_STATE(1919)] = 89579, + [SMALL_STATE(1920)] = 89665, + [SMALL_STATE(1921)] = 89711, + [SMALL_STATE(1922)] = 89767, + [SMALL_STATE(1923)] = 89853, + [SMALL_STATE(1924)] = 89903, + [SMALL_STATE(1925)] = 89949, + [SMALL_STATE(1926)] = 89995, + [SMALL_STATE(1927)] = 90047, + [SMALL_STATE(1928)] = 90103, + [SMALL_STATE(1929)] = 90148, + [SMALL_STATE(1930)] = 90193, + [SMALL_STATE(1931)] = 90238, + [SMALL_STATE(1932)] = 90287, + [SMALL_STATE(1933)] = 90338, + [SMALL_STATE(1934)] = 90383, + [SMALL_STATE(1935)] = 90428, + [SMALL_STATE(1936)] = 90479, + [SMALL_STATE(1937)] = 90524, + [SMALL_STATE(1938)] = 90569, + [SMALL_STATE(1939)] = 90614, + [SMALL_STATE(1940)] = 90659, + [SMALL_STATE(1941)] = 90704, + [SMALL_STATE(1942)] = 90759, + [SMALL_STATE(1943)] = 90804, + [SMALL_STATE(1944)] = 90849, + [SMALL_STATE(1945)] = 90894, + [SMALL_STATE(1946)] = 90945, + [SMALL_STATE(1947)] = 90990, + [SMALL_STATE(1948)] = 91035, + [SMALL_STATE(1949)] = 91090, + [SMALL_STATE(1950)] = 91135, + [SMALL_STATE(1951)] = 91180, + [SMALL_STATE(1952)] = 91229, + [SMALL_STATE(1953)] = 91274, + [SMALL_STATE(1954)] = 91319, + [SMALL_STATE(1955)] = 91374, + [SMALL_STATE(1956)] = 91419, + [SMALL_STATE(1957)] = 91464, + [SMALL_STATE(1958)] = 91509, + [SMALL_STATE(1959)] = 91554, + [SMALL_STATE(1960)] = 91599, + [SMALL_STATE(1961)] = 91644, + [SMALL_STATE(1962)] = 91691, + [SMALL_STATE(1963)] = 91738, + [SMALL_STATE(1964)] = 91783, + [SMALL_STATE(1965)] = 91828, + [SMALL_STATE(1966)] = 91875, + [SMALL_STATE(1967)] = 91920, + [SMALL_STATE(1968)] = 91969, + [SMALL_STATE(1969)] = 92018, + [SMALL_STATE(1970)] = 92063, + [SMALL_STATE(1971)] = 92108, + [SMALL_STATE(1972)] = 92153, + [SMALL_STATE(1973)] = 92200, + [SMALL_STATE(1974)] = 92249, + [SMALL_STATE(1975)] = 92298, + [SMALL_STATE(1976)] = 92343, + [SMALL_STATE(1977)] = 92392, + [SMALL_STATE(1978)] = 92437, + [SMALL_STATE(1979)] = 92482, + [SMALL_STATE(1980)] = 92527, + [SMALL_STATE(1981)] = 92584, + [SMALL_STATE(1982)] = 92629, + [SMALL_STATE(1983)] = 92678, + [SMALL_STATE(1984)] = 92727, + [SMALL_STATE(1985)] = 92772, + [SMALL_STATE(1986)] = 92823, + [SMALL_STATE(1987)] = 92872, + [SMALL_STATE(1988)] = 92917, + [SMALL_STATE(1989)] = 92962, + [SMALL_STATE(1990)] = 93013, + [SMALL_STATE(1991)] = 93064, + [SMALL_STATE(1992)] = 93109, + [SMALL_STATE(1993)] = 93154, + [SMALL_STATE(1994)] = 93203, + [SMALL_STATE(1995)] = 93248, + [SMALL_STATE(1996)] = 93293, + [SMALL_STATE(1997)] = 93338, + [SMALL_STATE(1998)] = 93391, + [SMALL_STATE(1999)] = 93436, + [SMALL_STATE(2000)] = 93481, + [SMALL_STATE(2001)] = 93526, + [SMALL_STATE(2002)] = 93579, + [SMALL_STATE(2003)] = 93624, + [SMALL_STATE(2004)] = 93673, + [SMALL_STATE(2005)] = 93722, + [SMALL_STATE(2006)] = 93767, + [SMALL_STATE(2007)] = 93812, + [SMALL_STATE(2008)] = 93857, + [SMALL_STATE(2009)] = 93902, + [SMALL_STATE(2010)] = 93947, + [SMALL_STATE(2011)] = 93992, + [SMALL_STATE(2012)] = 94037, + [SMALL_STATE(2013)] = 94082, + [SMALL_STATE(2014)] = 94127, + [SMALL_STATE(2015)] = 94172, + [SMALL_STATE(2016)] = 94217, + [SMALL_STATE(2017)] = 94262, + [SMALL_STATE(2018)] = 94307, + [SMALL_STATE(2019)] = 94352, + [SMALL_STATE(2020)] = 94397, + [SMALL_STATE(2021)] = 94446, + [SMALL_STATE(2022)] = 94495, + [SMALL_STATE(2023)] = 94540, + [SMALL_STATE(2024)] = 94587, + [SMALL_STATE(2025)] = 94632, + [SMALL_STATE(2026)] = 94679, + [SMALL_STATE(2027)] = 94724, + [SMALL_STATE(2028)] = 94771, + [SMALL_STATE(2029)] = 94820, + [SMALL_STATE(2030)] = 94865, + [SMALL_STATE(2031)] = 94912, + [SMALL_STATE(2032)] = 94957, + [SMALL_STATE(2033)] = 95002, + [SMALL_STATE(2034)] = 95049, + [SMALL_STATE(2035)] = 95094, + [SMALL_STATE(2036)] = 95138, + [SMALL_STATE(2037)] = 95182, + [SMALL_STATE(2038)] = 95234, + [SMALL_STATE(2039)] = 95282, + [SMALL_STATE(2040)] = 95326, + [SMALL_STATE(2041)] = 95370, + [SMALL_STATE(2042)] = 95420, + [SMALL_STATE(2043)] = 95464, + [SMALL_STATE(2044)] = 95508, + [SMALL_STATE(2045)] = 95552, + [SMALL_STATE(2046)] = 95604, + [SMALL_STATE(2047)] = 95648, + [SMALL_STATE(2048)] = 95692, + [SMALL_STATE(2049)] = 95736, + [SMALL_STATE(2050)] = 95780, + [SMALL_STATE(2051)] = 95824, + [SMALL_STATE(2052)] = 95872, + [SMALL_STATE(2053)] = 95924, + [SMALL_STATE(2054)] = 95972, + [SMALL_STATE(2055)] = 96020, + [SMALL_STATE(2056)] = 96064, + [SMALL_STATE(2057)] = 96116, + [SMALL_STATE(2058)] = 96164, + [SMALL_STATE(2059)] = 96208, + [SMALL_STATE(2060)] = 96252, + [SMALL_STATE(2061)] = 96300, + [SMALL_STATE(2062)] = 96344, + [SMALL_STATE(2063)] = 96396, + [SMALL_STATE(2064)] = 96448, + [SMALL_STATE(2065)] = 96492, + [SMALL_STATE(2066)] = 96536, + [SMALL_STATE(2067)] = 96580, + [SMALL_STATE(2068)] = 96630, + [SMALL_STATE(2069)] = 96674, + [SMALL_STATE(2070)] = 96722, + [SMALL_STATE(2071)] = 96766, + [SMALL_STATE(2072)] = 96810, + [SMALL_STATE(2073)] = 96854, + [SMALL_STATE(2074)] = 96898, + [SMALL_STATE(2075)] = 96950, + [SMALL_STATE(2076)] = 97002, + [SMALL_STATE(2077)] = 97046, + [SMALL_STATE(2078)] = 97090, + [SMALL_STATE(2079)] = 97134, + [SMALL_STATE(2080)] = 97186, + [SMALL_STATE(2081)] = 97230, + [SMALL_STATE(2082)] = 97278, + [SMALL_STATE(2083)] = 97322, + [SMALL_STATE(2084)] = 97366, + [SMALL_STATE(2085)] = 97410, + [SMALL_STATE(2086)] = 97462, + [SMALL_STATE(2087)] = 97506, + [SMALL_STATE(2088)] = 97550, + [SMALL_STATE(2089)] = 97594, + [SMALL_STATE(2090)] = 97646, + [SMALL_STATE(2091)] = 97698, + [SMALL_STATE(2092)] = 97742, + [SMALL_STATE(2093)] = 97794, + [SMALL_STATE(2094)] = 97838, + [SMALL_STATE(2095)] = 97886, + [SMALL_STATE(2096)] = 97938, + [SMALL_STATE(2097)] = 97986, + [SMALL_STATE(2098)] = 98034, + [SMALL_STATE(2099)] = 98078, + [SMALL_STATE(2100)] = 98124, + [SMALL_STATE(2101)] = 98172, + [SMALL_STATE(2102)] = 98216, + [SMALL_STATE(2103)] = 98264, + [SMALL_STATE(2104)] = 98308, + [SMALL_STATE(2105)] = 98352, + [SMALL_STATE(2106)] = 98404, + [SMALL_STATE(2107)] = 98456, + [SMALL_STATE(2108)] = 98504, + [SMALL_STATE(2109)] = 98548, + [SMALL_STATE(2110)] = 98600, + [SMALL_STATE(2111)] = 98644, + [SMALL_STATE(2112)] = 98688, + [SMALL_STATE(2113)] = 98740, + [SMALL_STATE(2114)] = 98784, + [SMALL_STATE(2115)] = 98828, + [SMALL_STATE(2116)] = 98872, + [SMALL_STATE(2117)] = 98922, + [SMALL_STATE(2118)] = 98966, + [SMALL_STATE(2119)] = 99014, + [SMALL_STATE(2120)] = 99058, + [SMALL_STATE(2121)] = 99110, + [SMALL_STATE(2122)] = 99162, + [SMALL_STATE(2123)] = 99210, + [SMALL_STATE(2124)] = 99254, + [SMALL_STATE(2125)] = 99298, + [SMALL_STATE(2126)] = 99346, + [SMALL_STATE(2127)] = 99390, + [SMALL_STATE(2128)] = 99434, + [SMALL_STATE(2129)] = 99486, + [SMALL_STATE(2130)] = 99538, + [SMALL_STATE(2131)] = 99586, + [SMALL_STATE(2132)] = 99630, + [SMALL_STATE(2133)] = 99674, + [SMALL_STATE(2134)] = 99722, + [SMALL_STATE(2135)] = 99770, + [SMALL_STATE(2136)] = 99822, + [SMALL_STATE(2137)] = 99866, + [SMALL_STATE(2138)] = 99916, + [SMALL_STATE(2139)] = 99960, + [SMALL_STATE(2140)] = 100012, + [SMALL_STATE(2141)] = 100060, + [SMALL_STATE(2142)] = 100104, + [SMALL_STATE(2143)] = 100152, + [SMALL_STATE(2144)] = 100204, + [SMALL_STATE(2145)] = 100256, + [SMALL_STATE(2146)] = 100300, + [SMALL_STATE(2147)] = 100344, + [SMALL_STATE(2148)] = 100388, + [SMALL_STATE(2149)] = 100473, + [SMALL_STATE(2150)] = 100520, + [SMALL_STATE(2151)] = 100563, + [SMALL_STATE(2152)] = 100614, + [SMALL_STATE(2153)] = 100699, + [SMALL_STATE(2154)] = 100784, + [SMALL_STATE(2155)] = 100831, + [SMALL_STATE(2156)] = 100878, + [SMALL_STATE(2157)] = 100925, + [SMALL_STATE(2158)] = 101010, + [SMALL_STATE(2159)] = 101095, + [SMALL_STATE(2160)] = 101146, + [SMALL_STATE(2161)] = 101193, + [SMALL_STATE(2162)] = 101244, + [SMALL_STATE(2163)] = 101295, + [SMALL_STATE(2164)] = 101342, + [SMALL_STATE(2165)] = 101393, + [SMALL_STATE(2166)] = 101478, + [SMALL_STATE(2167)] = 101529, + [SMALL_STATE(2168)] = 101580, + [SMALL_STATE(2169)] = 101665, + [SMALL_STATE(2170)] = 101708, + [SMALL_STATE(2171)] = 101751, + [SMALL_STATE(2172)] = 101836, + [SMALL_STATE(2173)] = 101879, + [SMALL_STATE(2174)] = 101926, + [SMALL_STATE(2175)] = 102011, + [SMALL_STATE(2176)] = 102062, + [SMALL_STATE(2177)] = 102105, + [SMALL_STATE(2178)] = 102148, + [SMALL_STATE(2179)] = 102195, + [SMALL_STATE(2180)] = 102244, + [SMALL_STATE(2181)] = 102293, + [SMALL_STATE(2182)] = 102340, + [SMALL_STATE(2183)] = 102425, + [SMALL_STATE(2184)] = 102510, + [SMALL_STATE(2185)] = 102595, + [SMALL_STATE(2186)] = 102642, + [SMALL_STATE(2187)] = 102693, + [SMALL_STATE(2188)] = 102742, + [SMALL_STATE(2189)] = 102784, + [SMALL_STATE(2190)] = 102826, + [SMALL_STATE(2191)] = 102908, + [SMALL_STATE(2192)] = 102990, + [SMALL_STATE(2193)] = 103064, + [SMALL_STATE(2194)] = 103146, + [SMALL_STATE(2195)] = 103188, + [SMALL_STATE(2196)] = 103270, + [SMALL_STATE(2197)] = 103344, + [SMALL_STATE(2198)] = 103386, + [SMALL_STATE(2199)] = 103436, + [SMALL_STATE(2200)] = 103486, + [SMALL_STATE(2201)] = 103528, + [SMALL_STATE(2202)] = 103572, + [SMALL_STATE(2203)] = 103654, + [SMALL_STATE(2204)] = 103696, + [SMALL_STATE(2205)] = 103778, + [SMALL_STATE(2206)] = 103820, + [SMALL_STATE(2207)] = 103862, + [SMALL_STATE(2208)] = 103944, + [SMALL_STATE(2209)] = 104026, + [SMALL_STATE(2210)] = 104068, + [SMALL_STATE(2211)] = 104150, + [SMALL_STATE(2212)] = 104200, + [SMALL_STATE(2213)] = 104250, + [SMALL_STATE(2214)] = 104292, + [SMALL_STATE(2215)] = 104374, + [SMALL_STATE(2216)] = 104456, + [SMALL_STATE(2217)] = 104506, + [SMALL_STATE(2218)] = 104548, + [SMALL_STATE(2219)] = 104598, + [SMALL_STATE(2220)] = 104648, + [SMALL_STATE(2221)] = 104730, + [SMALL_STATE(2222)] = 104780, + [SMALL_STATE(2223)] = 104854, + [SMALL_STATE(2224)] = 104936, + [SMALL_STATE(2225)] = 104978, + [SMALL_STATE(2226)] = 105020, + [SMALL_STATE(2227)] = 105070, + [SMALL_STATE(2228)] = 105152, + [SMALL_STATE(2229)] = 105194, + [SMALL_STATE(2230)] = 105236, + [SMALL_STATE(2231)] = 105318, + [SMALL_STATE(2232)] = 105360, + [SMALL_STATE(2233)] = 105442, + [SMALL_STATE(2234)] = 105516, + [SMALL_STATE(2235)] = 105558, + [SMALL_STATE(2236)] = 105600, + [SMALL_STATE(2237)] = 105682, + [SMALL_STATE(2238)] = 105764, + [SMALL_STATE(2239)] = 105806, + [SMALL_STATE(2240)] = 105848, + [SMALL_STATE(2241)] = 105890, + [SMALL_STATE(2242)] = 105931, + [SMALL_STATE(2243)] = 106008, + [SMALL_STATE(2244)] = 106087, + [SMALL_STATE(2245)] = 106128, + [SMALL_STATE(2246)] = 106169, + [SMALL_STATE(2247)] = 106210, + [SMALL_STATE(2248)] = 106251, + [SMALL_STATE(2249)] = 106300, + [SMALL_STATE(2250)] = 106341, + [SMALL_STATE(2251)] = 106390, + [SMALL_STATE(2252)] = 106469, + [SMALL_STATE(2253)] = 106548, + [SMALL_STATE(2254)] = 106627, + [SMALL_STATE(2255)] = 106668, + [SMALL_STATE(2256)] = 106709, + [SMALL_STATE(2257)] = 106750, + [SMALL_STATE(2258)] = 106791, + [SMALL_STATE(2259)] = 106832, + [SMALL_STATE(2260)] = 106873, + [SMALL_STATE(2261)] = 106918, + [SMALL_STATE(2262)] = 106997, + [SMALL_STATE(2263)] = 107042, + [SMALL_STATE(2264)] = 107121, + [SMALL_STATE(2265)] = 107200, + [SMALL_STATE(2266)] = 107277, + [SMALL_STATE(2267)] = 107356, + [SMALL_STATE(2268)] = 107435, + [SMALL_STATE(2269)] = 107512, + [SMALL_STATE(2270)] = 107557, + [SMALL_STATE(2271)] = 107598, + [SMALL_STATE(2272)] = 107677, + [SMALL_STATE(2273)] = 107756, + [SMALL_STATE(2274)] = 107835, + [SMALL_STATE(2275)] = 107876, + [SMALL_STATE(2276)] = 107917, + [SMALL_STATE(2277)] = 107996, + [SMALL_STATE(2278)] = 108073, + [SMALL_STATE(2279)] = 108114, + [SMALL_STATE(2280)] = 108193, + [SMALL_STATE(2281)] = 108242, + [SMALL_STATE(2282)] = 108291, + [SMALL_STATE(2283)] = 108370, + [SMALL_STATE(2284)] = 108449, + [SMALL_STATE(2285)] = 108528, + [SMALL_STATE(2286)] = 108607, + [SMALL_STATE(2287)] = 108686, + [SMALL_STATE(2288)] = 108765, + [SMALL_STATE(2289)] = 108844, + [SMALL_STATE(2290)] = 108921, + [SMALL_STATE(2291)] = 109000, + [SMALL_STATE(2292)] = 109045, + [SMALL_STATE(2293)] = 109086, + [SMALL_STATE(2294)] = 109165, + [SMALL_STATE(2295)] = 109244, + [SMALL_STATE(2296)] = 109296, + [SMALL_STATE(2297)] = 109338, + [SMALL_STATE(2298)] = 109378, + [SMALL_STATE(2299)] = 109418, + [SMALL_STATE(2300)] = 109458, + [SMALL_STATE(2301)] = 109500, + [SMALL_STATE(2302)] = 109543, + [SMALL_STATE(2303)] = 109616, + [SMALL_STATE(2304)] = 109659, + [SMALL_STATE(2305)] = 109698, + [SMALL_STATE(2306)] = 109737, + [SMALL_STATE(2307)] = 109810, + [SMALL_STATE(2308)] = 109883, + [SMALL_STATE(2309)] = 109956, + [SMALL_STATE(2310)] = 110003, + [SMALL_STATE(2311)] = 110074, + [SMALL_STATE(2312)] = 110113, + [SMALL_STATE(2313)] = 110186, + [SMALL_STATE(2314)] = 110259, + [SMALL_STATE(2315)] = 110306, + [SMALL_STATE(2316)] = 110345, + [SMALL_STATE(2317)] = 110384, + [SMALL_STATE(2318)] = 110457, + [SMALL_STATE(2319)] = 110504, + [SMALL_STATE(2320)] = 110543, + [SMALL_STATE(2321)] = 110582, + [SMALL_STATE(2322)] = 110655, + [SMALL_STATE(2323)] = 110694, + [SMALL_STATE(2324)] = 110767, + [SMALL_STATE(2325)] = 110840, + [SMALL_STATE(2326)] = 110913, + [SMALL_STATE(2327)] = 110960, + [SMALL_STATE(2328)] = 111033, + [SMALL_STATE(2329)] = 111106, + [SMALL_STATE(2330)] = 111179, + [SMALL_STATE(2331)] = 111252, + [SMALL_STATE(2332)] = 111291, + [SMALL_STATE(2333)] = 111330, + [SMALL_STATE(2334)] = 111369, + [SMALL_STATE(2335)] = 111442, + [SMALL_STATE(2336)] = 111515, + [SMALL_STATE(2337)] = 111558, + [SMALL_STATE(2338)] = 111597, + [SMALL_STATE(2339)] = 111636, + [SMALL_STATE(2340)] = 111675, + [SMALL_STATE(2341)] = 111714, + [SMALL_STATE(2342)] = 111787, + [SMALL_STATE(2343)] = 111826, + [SMALL_STATE(2344)] = 111865, + [SMALL_STATE(2345)] = 111904, + [SMALL_STATE(2346)] = 111947, + [SMALL_STATE(2347)] = 111986, + [SMALL_STATE(2348)] = 112059, + [SMALL_STATE(2349)] = 112132, + [SMALL_STATE(2350)] = 112205, + [SMALL_STATE(2351)] = 112278, + [SMALL_STATE(2352)] = 112317, + [SMALL_STATE(2353)] = 112356, + [SMALL_STATE(2354)] = 112395, + [SMALL_STATE(2355)] = 112434, + [SMALL_STATE(2356)] = 112473, + [SMALL_STATE(2357)] = 112546, + [SMALL_STATE(2358)] = 112619, + [SMALL_STATE(2359)] = 112658, + [SMALL_STATE(2360)] = 112697, + [SMALL_STATE(2361)] = 112736, + [SMALL_STATE(2362)] = 112775, + [SMALL_STATE(2363)] = 112814, + [SMALL_STATE(2364)] = 112857, + [SMALL_STATE(2365)] = 112930, + [SMALL_STATE(2366)] = 113003, + [SMALL_STATE(2367)] = 113042, + [SMALL_STATE(2368)] = 113081, + [SMALL_STATE(2369)] = 113124, + [SMALL_STATE(2370)] = 113163, + [SMALL_STATE(2371)] = 113236, + [SMALL_STATE(2372)] = 113279, + [SMALL_STATE(2373)] = 113352, + [SMALL_STATE(2374)] = 113391, + [SMALL_STATE(2375)] = 113464, + [SMALL_STATE(2376)] = 113537, + [SMALL_STATE(2377)] = 113582, + [SMALL_STATE(2378)] = 113627, + [SMALL_STATE(2379)] = 113698, + [SMALL_STATE(2380)] = 113771, + [SMALL_STATE(2381)] = 113842, + [SMALL_STATE(2382)] = 113881, + [SMALL_STATE(2383)] = 113924, + [SMALL_STATE(2384)] = 113997, + [SMALL_STATE(2385)] = 114040, + [SMALL_STATE(2386)] = 114083, + [SMALL_STATE(2387)] = 114153, + [SMALL_STATE(2388)] = 114199, + [SMALL_STATE(2389)] = 114245, + [SMALL_STATE(2390)] = 114283, + [SMALL_STATE(2391)] = 114329, + [SMALL_STATE(2392)] = 114401, + [SMALL_STATE(2393)] = 114473, + [SMALL_STATE(2394)] = 114543, + [SMALL_STATE(2395)] = 114613, + [SMALL_STATE(2396)] = 114651, + [SMALL_STATE(2397)] = 114721, + [SMALL_STATE(2398)] = 114791, + [SMALL_STATE(2399)] = 114863, + [SMALL_STATE(2400)] = 114901, + [SMALL_STATE(2401)] = 114971, + [SMALL_STATE(2402)] = 115017, + [SMALL_STATE(2403)] = 115089, + [SMALL_STATE(2404)] = 115159, + [SMALL_STATE(2405)] = 115229, + [SMALL_STATE(2406)] = 115299, + [SMALL_STATE(2407)] = 115337, + [SMALL_STATE(2408)] = 115407, + [SMALL_STATE(2409)] = 115479, + [SMALL_STATE(2410)] = 115517, + [SMALL_STATE(2411)] = 115589, + [SMALL_STATE(2412)] = 115659, + [SMALL_STATE(2413)] = 115697, + [SMALL_STATE(2414)] = 115735, + [SMALL_STATE(2415)] = 115773, + [SMALL_STATE(2416)] = 115843, + [SMALL_STATE(2417)] = 115913, + [SMALL_STATE(2418)] = 115983, + [SMALL_STATE(2419)] = 116053, + [SMALL_STATE(2420)] = 116123, + [SMALL_STATE(2421)] = 116161, + [SMALL_STATE(2422)] = 116231, + [SMALL_STATE(2423)] = 116301, + [SMALL_STATE(2424)] = 116371, + [SMALL_STATE(2425)] = 116441, + [SMALL_STATE(2426)] = 116479, + [SMALL_STATE(2427)] = 116551, + [SMALL_STATE(2428)] = 116621, + [SMALL_STATE(2429)] = 116659, + [SMALL_STATE(2430)] = 116731, + [SMALL_STATE(2431)] = 116801, + [SMALL_STATE(2432)] = 116871, + [SMALL_STATE(2433)] = 116941, + [SMALL_STATE(2434)] = 117011, + [SMALL_STATE(2435)] = 117081, + [SMALL_STATE(2436)] = 117151, + [SMALL_STATE(2437)] = 117221, + [SMALL_STATE(2438)] = 117291, + [SMALL_STATE(2439)] = 117329, + [SMALL_STATE(2440)] = 117401, + [SMALL_STATE(2441)] = 117439, + [SMALL_STATE(2442)] = 117509, + [SMALL_STATE(2443)] = 117579, + [SMALL_STATE(2444)] = 117617, + [SMALL_STATE(2445)] = 117655, + [SMALL_STATE(2446)] = 117701, + [SMALL_STATE(2447)] = 117739, + [SMALL_STATE(2448)] = 117811, + [SMALL_STATE(2449)] = 117849, + [SMALL_STATE(2450)] = 117919, + [SMALL_STATE(2451)] = 117965, + [SMALL_STATE(2452)] = 118035, + [SMALL_STATE(2453)] = 118105, + [SMALL_STATE(2454)] = 118175, + [SMALL_STATE(2455)] = 118213, + [SMALL_STATE(2456)] = 118251, + [SMALL_STATE(2457)] = 118297, + [SMALL_STATE(2458)] = 118343, + [SMALL_STATE(2459)] = 118389, + [SMALL_STATE(2460)] = 118427, + [SMALL_STATE(2461)] = 118473, + [SMALL_STATE(2462)] = 118543, + [SMALL_STATE(2463)] = 118615, + [SMALL_STATE(2464)] = 118685, + [SMALL_STATE(2465)] = 118757, + [SMALL_STATE(2466)] = 118827, + [SMALL_STATE(2467)] = 118897, + [SMALL_STATE(2468)] = 118967, + [SMALL_STATE(2469)] = 119037, + [SMALL_STATE(2470)] = 119106, + [SMALL_STATE(2471)] = 119175, + [SMALL_STATE(2472)] = 119244, + [SMALL_STATE(2473)] = 119313, + [SMALL_STATE(2474)] = 119380, + [SMALL_STATE(2475)] = 119449, + [SMALL_STATE(2476)] = 119518, + [SMALL_STATE(2477)] = 119587, + [SMALL_STATE(2478)] = 119656, + [SMALL_STATE(2479)] = 119723, + [SMALL_STATE(2480)] = 119790, + [SMALL_STATE(2481)] = 119835, + [SMALL_STATE(2482)] = 119880, + [SMALL_STATE(2483)] = 119949, + [SMALL_STATE(2484)] = 119990, + [SMALL_STATE(2485)] = 120059, + [SMALL_STATE(2486)] = 120128, + [SMALL_STATE(2487)] = 120197, + [SMALL_STATE(2488)] = 120266, + [SMALL_STATE(2489)] = 120333, + [SMALL_STATE(2490)] = 120402, + [SMALL_STATE(2491)] = 120471, + [SMALL_STATE(2492)] = 120540, + [SMALL_STATE(2493)] = 120607, + [SMALL_STATE(2494)] = 120674, + [SMALL_STATE(2495)] = 120743, + [SMALL_STATE(2496)] = 120784, + [SMALL_STATE(2497)] = 120853, + [SMALL_STATE(2498)] = 120920, + [SMALL_STATE(2499)] = 120989, + [SMALL_STATE(2500)] = 121056, + [SMALL_STATE(2501)] = 121123, + [SMALL_STATE(2502)] = 121190, + [SMALL_STATE(2503)] = 121231, + [SMALL_STATE(2504)] = 121300, + [SMALL_STATE(2505)] = 121367, + [SMALL_STATE(2506)] = 121436, + [SMALL_STATE(2507)] = 121500, + [SMALL_STATE(2508)] = 121564, + [SMALL_STATE(2509)] = 121628, + [SMALL_STATE(2510)] = 121692, + [SMALL_STATE(2511)] = 121728, + [SMALL_STATE(2512)] = 121792, + [SMALL_STATE(2513)] = 121856, + [SMALL_STATE(2514)] = 121920, + [SMALL_STATE(2515)] = 121984, + [SMALL_STATE(2516)] = 122048, + [SMALL_STATE(2517)] = 122112, + [SMALL_STATE(2518)] = 122176, + [SMALL_STATE(2519)] = 122240, + [SMALL_STATE(2520)] = 122304, + [SMALL_STATE(2521)] = 122368, + [SMALL_STATE(2522)] = 122432, + [SMALL_STATE(2523)] = 122496, + [SMALL_STATE(2524)] = 122560, + [SMALL_STATE(2525)] = 122624, + [SMALL_STATE(2526)] = 122688, + [SMALL_STATE(2527)] = 122752, + [SMALL_STATE(2528)] = 122816, + [SMALL_STATE(2529)] = 122880, + [SMALL_STATE(2530)] = 122944, + [SMALL_STATE(2531)] = 122980, + [SMALL_STATE(2532)] = 123044, + [SMALL_STATE(2533)] = 123108, + [SMALL_STATE(2534)] = 123172, + [SMALL_STATE(2535)] = 123236, + [SMALL_STATE(2536)] = 123300, + [SMALL_STATE(2537)] = 123364, + [SMALL_STATE(2538)] = 123428, + [SMALL_STATE(2539)] = 123492, + [SMALL_STATE(2540)] = 123556, + [SMALL_STATE(2541)] = 123620, + [SMALL_STATE(2542)] = 123684, + [SMALL_STATE(2543)] = 123748, + [SMALL_STATE(2544)] = 123812, + [SMALL_STATE(2545)] = 123876, + [SMALL_STATE(2546)] = 123940, + [SMALL_STATE(2547)] = 124004, + [SMALL_STATE(2548)] = 124068, + [SMALL_STATE(2549)] = 124132, + [SMALL_STATE(2550)] = 124196, + [SMALL_STATE(2551)] = 124260, + [SMALL_STATE(2552)] = 124324, + [SMALL_STATE(2553)] = 124388, + [SMALL_STATE(2554)] = 124452, + [SMALL_STATE(2555)] = 124516, + [SMALL_STATE(2556)] = 124580, + [SMALL_STATE(2557)] = 124644, + [SMALL_STATE(2558)] = 124708, + [SMALL_STATE(2559)] = 124772, + [SMALL_STATE(2560)] = 124836, + [SMALL_STATE(2561)] = 124900, + [SMALL_STATE(2562)] = 124964, + [SMALL_STATE(2563)] = 125028, + [SMALL_STATE(2564)] = 125092, + [SMALL_STATE(2565)] = 125156, + [SMALL_STATE(2566)] = 125220, + [SMALL_STATE(2567)] = 125284, + [SMALL_STATE(2568)] = 125348, + [SMALL_STATE(2569)] = 125412, + [SMALL_STATE(2570)] = 125476, + [SMALL_STATE(2571)] = 125540, + [SMALL_STATE(2572)] = 125604, + [SMALL_STATE(2573)] = 125668, + [SMALL_STATE(2574)] = 125732, + [SMALL_STATE(2575)] = 125796, + [SMALL_STATE(2576)] = 125860, + [SMALL_STATE(2577)] = 125924, + [SMALL_STATE(2578)] = 125988, + [SMALL_STATE(2579)] = 126052, + [SMALL_STATE(2580)] = 126116, + [SMALL_STATE(2581)] = 126180, + [SMALL_STATE(2582)] = 126244, + [SMALL_STATE(2583)] = 126308, + [SMALL_STATE(2584)] = 126372, + [SMALL_STATE(2585)] = 126436, + [SMALL_STATE(2586)] = 126500, + [SMALL_STATE(2587)] = 126564, + [SMALL_STATE(2588)] = 126628, + [SMALL_STATE(2589)] = 126692, + [SMALL_STATE(2590)] = 126756, + [SMALL_STATE(2591)] = 126820, + [SMALL_STATE(2592)] = 126884, + [SMALL_STATE(2593)] = 126948, + [SMALL_STATE(2594)] = 127012, + [SMALL_STATE(2595)] = 127076, + [SMALL_STATE(2596)] = 127140, + [SMALL_STATE(2597)] = 127204, + [SMALL_STATE(2598)] = 127268, + [SMALL_STATE(2599)] = 127332, + [SMALL_STATE(2600)] = 127396, + [SMALL_STATE(2601)] = 127460, + [SMALL_STATE(2602)] = 127524, + [SMALL_STATE(2603)] = 127588, + [SMALL_STATE(2604)] = 127630, + [SMALL_STATE(2605)] = 127694, + [SMALL_STATE(2606)] = 127730, + [SMALL_STATE(2607)] = 127794, + [SMALL_STATE(2608)] = 127858, + [SMALL_STATE(2609)] = 127922, + [SMALL_STATE(2610)] = 127986, + [SMALL_STATE(2611)] = 128050, + [SMALL_STATE(2612)] = 128114, + [SMALL_STATE(2613)] = 128150, + [SMALL_STATE(2614)] = 128214, + [SMALL_STATE(2615)] = 128278, + [SMALL_STATE(2616)] = 128342, + [SMALL_STATE(2617)] = 128406, + [SMALL_STATE(2618)] = 128470, + [SMALL_STATE(2619)] = 128534, + [SMALL_STATE(2620)] = 128598, + [SMALL_STATE(2621)] = 128662, + [SMALL_STATE(2622)] = 128726, + [SMALL_STATE(2623)] = 128790, + [SMALL_STATE(2624)] = 128854, + [SMALL_STATE(2625)] = 128918, + [SMALL_STATE(2626)] = 128982, + [SMALL_STATE(2627)] = 129046, + [SMALL_STATE(2628)] = 129110, + [SMALL_STATE(2629)] = 129174, + [SMALL_STATE(2630)] = 129238, + [SMALL_STATE(2631)] = 129302, + [SMALL_STATE(2632)] = 129366, + [SMALL_STATE(2633)] = 129430, + [SMALL_STATE(2634)] = 129494, + [SMALL_STATE(2635)] = 129558, + [SMALL_STATE(2636)] = 129622, + [SMALL_STATE(2637)] = 129686, + [SMALL_STATE(2638)] = 129750, + [SMALL_STATE(2639)] = 129814, + [SMALL_STATE(2640)] = 129878, + [SMALL_STATE(2641)] = 129942, + [SMALL_STATE(2642)] = 130006, + [SMALL_STATE(2643)] = 130070, + [SMALL_STATE(2644)] = 130134, + [SMALL_STATE(2645)] = 130198, + [SMALL_STATE(2646)] = 130262, + [SMALL_STATE(2647)] = 130326, + [SMALL_STATE(2648)] = 130390, + [SMALL_STATE(2649)] = 130454, + [SMALL_STATE(2650)] = 130518, + [SMALL_STATE(2651)] = 130582, + [SMALL_STATE(2652)] = 130646, + [SMALL_STATE(2653)] = 130710, + [SMALL_STATE(2654)] = 130774, + [SMALL_STATE(2655)] = 130838, + [SMALL_STATE(2656)] = 130902, + [SMALL_STATE(2657)] = 130966, + [SMALL_STATE(2658)] = 131030, + [SMALL_STATE(2659)] = 131094, + [SMALL_STATE(2660)] = 131158, + [SMALL_STATE(2661)] = 131222, + [SMALL_STATE(2662)] = 131286, + [SMALL_STATE(2663)] = 131350, + [SMALL_STATE(2664)] = 131414, + [SMALL_STATE(2665)] = 131478, + [SMALL_STATE(2666)] = 131542, + [SMALL_STATE(2667)] = 131606, + [SMALL_STATE(2668)] = 131670, + [SMALL_STATE(2669)] = 131734, + [SMALL_STATE(2670)] = 131798, + [SMALL_STATE(2671)] = 131862, + [SMALL_STATE(2672)] = 131926, + [SMALL_STATE(2673)] = 131990, + [SMALL_STATE(2674)] = 132054, + [SMALL_STATE(2675)] = 132118, + [SMALL_STATE(2676)] = 132182, + [SMALL_STATE(2677)] = 132246, + [SMALL_STATE(2678)] = 132310, + [SMALL_STATE(2679)] = 132374, + [SMALL_STATE(2680)] = 132438, + [SMALL_STATE(2681)] = 132502, + [SMALL_STATE(2682)] = 132566, + [SMALL_STATE(2683)] = 132630, + [SMALL_STATE(2684)] = 132694, + [SMALL_STATE(2685)] = 132758, + [SMALL_STATE(2686)] = 132822, + [SMALL_STATE(2687)] = 132886, + [SMALL_STATE(2688)] = 132950, + [SMALL_STATE(2689)] = 133014, + [SMALL_STATE(2690)] = 133078, + [SMALL_STATE(2691)] = 133142, + [SMALL_STATE(2692)] = 133206, + [SMALL_STATE(2693)] = 133270, + [SMALL_STATE(2694)] = 133334, + [SMALL_STATE(2695)] = 133398, + [SMALL_STATE(2696)] = 133462, + [SMALL_STATE(2697)] = 133526, + [SMALL_STATE(2698)] = 133590, + [SMALL_STATE(2699)] = 133654, + [SMALL_STATE(2700)] = 133718, + [SMALL_STATE(2701)] = 133782, + [SMALL_STATE(2702)] = 133846, + [SMALL_STATE(2703)] = 133910, + [SMALL_STATE(2704)] = 133974, + [SMALL_STATE(2705)] = 134038, + [SMALL_STATE(2706)] = 134102, + [SMALL_STATE(2707)] = 134166, + [SMALL_STATE(2708)] = 134230, + [SMALL_STATE(2709)] = 134294, + [SMALL_STATE(2710)] = 134358, + [SMALL_STATE(2711)] = 134397, + [SMALL_STATE(2712)] = 134448, + [SMALL_STATE(2713)] = 134489, + [SMALL_STATE(2714)] = 134530, + [SMALL_STATE(2715)] = 134571, + [SMALL_STATE(2716)] = 134616, + [SMALL_STATE(2717)] = 134667, + [SMALL_STATE(2718)] = 134708, + [SMALL_STATE(2719)] = 134749, + [SMALL_STATE(2720)] = 134786, + [SMALL_STATE(2721)] = 134831, + [SMALL_STATE(2722)] = 134872, + [SMALL_STATE(2723)] = 134913, + [SMALL_STATE(2724)] = 134954, + [SMALL_STATE(2725)] = 134995, + [SMALL_STATE(2726)] = 135036, + [SMALL_STATE(2727)] = 135076, + [SMALL_STATE(2728)] = 135126, + [SMALL_STATE(2729)] = 135160, + [SMALL_STATE(2730)] = 135194, + [SMALL_STATE(2731)] = 135228, + [SMALL_STATE(2732)] = 135262, + [SMALL_STATE(2733)] = 135296, + [SMALL_STATE(2734)] = 135336, + [SMALL_STATE(2735)] = 135370, + [SMALL_STATE(2736)] = 135404, + [SMALL_STATE(2737)] = 135438, + [SMALL_STATE(2738)] = 135472, + [SMALL_STATE(2739)] = 135510, + [SMALL_STATE(2740)] = 135544, + [SMALL_STATE(2741)] = 135578, + [SMALL_STATE(2742)] = 135612, + [SMALL_STATE(2743)] = 135652, + [SMALL_STATE(2744)] = 135686, + [SMALL_STATE(2745)] = 135726, + [SMALL_STATE(2746)] = 135760, + [SMALL_STATE(2747)] = 135794, + [SMALL_STATE(2748)] = 135828, + [SMALL_STATE(2749)] = 135878, + [SMALL_STATE(2750)] = 135918, + [SMALL_STATE(2751)] = 135954, + [SMALL_STATE(2752)] = 135988, + [SMALL_STATE(2753)] = 136028, + [SMALL_STATE(2754)] = 136062, + [SMALL_STATE(2755)] = 136096, + [SMALL_STATE(2756)] = 136130, + [SMALL_STATE(2757)] = 136168, + [SMALL_STATE(2758)] = 136202, + [SMALL_STATE(2759)] = 136240, + [SMALL_STATE(2760)] = 136278, + [SMALL_STATE(2761)] = 136312, + [SMALL_STATE(2762)] = 136346, + [SMALL_STATE(2763)] = 136386, + [SMALL_STATE(2764)] = 136420, + [SMALL_STATE(2765)] = 136454, + [SMALL_STATE(2766)] = 136494, + [SMALL_STATE(2767)] = 136534, + [SMALL_STATE(2768)] = 136568, + [SMALL_STATE(2769)] = 136602, + [SMALL_STATE(2770)] = 136636, + [SMALL_STATE(2771)] = 136670, + [SMALL_STATE(2772)] = 136704, + [SMALL_STATE(2773)] = 136738, + [SMALL_STATE(2774)] = 136778, + [SMALL_STATE(2775)] = 136812, + [SMALL_STATE(2776)] = 136846, + [SMALL_STATE(2777)] = 136886, + [SMALL_STATE(2778)] = 136926, + [SMALL_STATE(2779)] = 136960, + [SMALL_STATE(2780)] = 137000, + [SMALL_STATE(2781)] = 137044, + [SMALL_STATE(2782)] = 137078, + [SMALL_STATE(2783)] = 137112, + [SMALL_STATE(2784)] = 137156, + [SMALL_STATE(2785)] = 137190, + [SMALL_STATE(2786)] = 137224, + [SMALL_STATE(2787)] = 137264, + [SMALL_STATE(2788)] = 137304, + [SMALL_STATE(2789)] = 137342, + [SMALL_STATE(2790)] = 137376, + [SMALL_STATE(2791)] = 137416, + [SMALL_STATE(2792)] = 137456, + [SMALL_STATE(2793)] = 137496, + [SMALL_STATE(2794)] = 137530, + [SMALL_STATE(2795)] = 137569, + [SMALL_STATE(2796)] = 137608, + [SMALL_STATE(2797)] = 137643, + [SMALL_STATE(2798)] = 137686, + [SMALL_STATE(2799)] = 137735, + [SMALL_STATE(2800)] = 137774, + [SMALL_STATE(2801)] = 137817, + [SMALL_STATE(2802)] = 137874, + [SMALL_STATE(2803)] = 137931, + [SMALL_STATE(2804)] = 137988, + [SMALL_STATE(2805)] = 138027, + [SMALL_STATE(2806)] = 138066, + [SMALL_STATE(2807)] = 138099, + [SMALL_STATE(2808)] = 138148, + [SMALL_STATE(2809)] = 138181, + [SMALL_STATE(2810)] = 138224, + [SMALL_STATE(2811)] = 138257, + [SMALL_STATE(2812)] = 138296, + [SMALL_STATE(2813)] = 138335, + [SMALL_STATE(2814)] = 138372, + [SMALL_STATE(2815)] = 138407, + [SMALL_STATE(2816)] = 138440, + [SMALL_STATE(2817)] = 138479, + [SMALL_STATE(2818)] = 138512, + [SMALL_STATE(2819)] = 138545, + [SMALL_STATE(2820)] = 138584, + [SMALL_STATE(2821)] = 138623, + [SMALL_STATE(2822)] = 138672, + [SMALL_STATE(2823)] = 138705, + [SMALL_STATE(2824)] = 138738, + [SMALL_STATE(2825)] = 138771, + [SMALL_STATE(2826)] = 138808, + [SMALL_STATE(2827)] = 138847, + [SMALL_STATE(2828)] = 138880, + [SMALL_STATE(2829)] = 138913, + [SMALL_STATE(2830)] = 138970, + [SMALL_STATE(2831)] = 139009, + [SMALL_STATE(2832)] = 139048, + [SMALL_STATE(2833)] = 139087, + [SMALL_STATE(2834)] = 139136, + [SMALL_STATE(2835)] = 139193, + [SMALL_STATE(2836)] = 139232, + [SMALL_STATE(2837)] = 139271, + [SMALL_STATE(2838)] = 139304, + [SMALL_STATE(2839)] = 139337, + [SMALL_STATE(2840)] = 139370, + [SMALL_STATE(2841)] = 139403, + [SMALL_STATE(2842)] = 139440, + [SMALL_STATE(2843)] = 139473, + [SMALL_STATE(2844)] = 139506, + [SMALL_STATE(2845)] = 139539, + [SMALL_STATE(2846)] = 139576, + [SMALL_STATE(2847)] = 139609, + [SMALL_STATE(2848)] = 139646, + [SMALL_STATE(2849)] = 139685, + [SMALL_STATE(2850)] = 139718, + [SMALL_STATE(2851)] = 139751, + [SMALL_STATE(2852)] = 139800, + [SMALL_STATE(2853)] = 139833, + [SMALL_STATE(2854)] = 139866, + [SMALL_STATE(2855)] = 139909, + [SMALL_STATE(2856)] = 139958, + [SMALL_STATE(2857)] = 139997, + [SMALL_STATE(2858)] = 140036, + [SMALL_STATE(2859)] = 140069, + [SMALL_STATE(2860)] = 140126, + [SMALL_STATE(2861)] = 140165, + [SMALL_STATE(2862)] = 140204, + [SMALL_STATE(2863)] = 140237, + [SMALL_STATE(2864)] = 140270, + [SMALL_STATE(2865)] = 140307, + [SMALL_STATE(2866)] = 140364, + [SMALL_STATE(2867)] = 140403, + [SMALL_STATE(2868)] = 140436, + [SMALL_STATE(2869)] = 140475, + [SMALL_STATE(2870)] = 140514, + [SMALL_STATE(2871)] = 140553, + [SMALL_STATE(2872)] = 140590, + [SMALL_STATE(2873)] = 140647, + [SMALL_STATE(2874)] = 140690, + [SMALL_STATE(2875)] = 140725, + [SMALL_STATE(2876)] = 140758, + [SMALL_STATE(2877)] = 140795, + [SMALL_STATE(2878)] = 140828, + [SMALL_STATE(2879)] = 140861, + [SMALL_STATE(2880)] = 140894, + [SMALL_STATE(2881)] = 140927, + [SMALL_STATE(2882)] = 140960, + [SMALL_STATE(2883)] = 141017, + [SMALL_STATE(2884)] = 141056, + [SMALL_STATE(2885)] = 141095, + [SMALL_STATE(2886)] = 141134, + [SMALL_STATE(2887)] = 141173, + [SMALL_STATE(2888)] = 141206, + [SMALL_STATE(2889)] = 141239, + [SMALL_STATE(2890)] = 141272, + [SMALL_STATE(2891)] = 141311, + [SMALL_STATE(2892)] = 141350, + [SMALL_STATE(2893)] = 141389, + [SMALL_STATE(2894)] = 141422, + [SMALL_STATE(2895)] = 141461, + [SMALL_STATE(2896)] = 141498, + [SMALL_STATE(2897)] = 141531, + [SMALL_STATE(2898)] = 141570, + [SMALL_STATE(2899)] = 141603, + [SMALL_STATE(2900)] = 141642, + [SMALL_STATE(2901)] = 141681, + [SMALL_STATE(2902)] = 141714, + [SMALL_STATE(2903)] = 141757, + [SMALL_STATE(2904)] = 141790, + [SMALL_STATE(2905)] = 141823, + [SMALL_STATE(2906)] = 141857, + [SMALL_STATE(2907)] = 141895, + [SMALL_STATE(2908)] = 141927, + [SMALL_STATE(2909)] = 141959, + [SMALL_STATE(2910)] = 142005, + [SMALL_STATE(2911)] = 142037, + [SMALL_STATE(2912)] = 142069, + [SMALL_STATE(2913)] = 142115, + [SMALL_STATE(2914)] = 142153, + [SMALL_STATE(2915)] = 142199, + [SMALL_STATE(2916)] = 142237, + [SMALL_STATE(2917)] = 142275, + [SMALL_STATE(2918)] = 142313, + [SMALL_STATE(2919)] = 142351, + [SMALL_STATE(2920)] = 142389, + [SMALL_STATE(2921)] = 142427, + [SMALL_STATE(2922)] = 142465, + [SMALL_STATE(2923)] = 142497, + [SMALL_STATE(2924)] = 142529, + [SMALL_STATE(2925)] = 142567, + [SMALL_STATE(2926)] = 142605, + [SMALL_STATE(2927)] = 142637, + [SMALL_STATE(2928)] = 142675, + [SMALL_STATE(2929)] = 142707, + [SMALL_STATE(2930)] = 142739, + [SMALL_STATE(2931)] = 142777, + [SMALL_STATE(2932)] = 142809, + [SMALL_STATE(2933)] = 142847, + [SMALL_STATE(2934)] = 142879, + [SMALL_STATE(2935)] = 142925, + [SMALL_STATE(2936)] = 142963, + [SMALL_STATE(2937)] = 143009, + [SMALL_STATE(2938)] = 143063, + [SMALL_STATE(2939)] = 143095, + [SMALL_STATE(2940)] = 143127, + [SMALL_STATE(2941)] = 143165, + [SMALL_STATE(2942)] = 143207, + [SMALL_STATE(2943)] = 143245, + [SMALL_STATE(2944)] = 143299, + [SMALL_STATE(2945)] = 143353, + [SMALL_STATE(2946)] = 143389, + [SMALL_STATE(2947)] = 143421, + [SMALL_STATE(2948)] = 143459, + [SMALL_STATE(2949)] = 143513, + [SMALL_STATE(2950)] = 143545, + [SMALL_STATE(2951)] = 143583, + [SMALL_STATE(2952)] = 143615, + [SMALL_STATE(2953)] = 143647, + [SMALL_STATE(2954)] = 143689, + [SMALL_STATE(2955)] = 143735, + [SMALL_STATE(2956)] = 143773, + [SMALL_STATE(2957)] = 143819, + [SMALL_STATE(2958)] = 143873, + [SMALL_STATE(2959)] = 143905, + [SMALL_STATE(2960)] = 143951, + [SMALL_STATE(2961)] = 143989, + [SMALL_STATE(2962)] = 144021, + [SMALL_STATE(2963)] = 144053, + [SMALL_STATE(2964)] = 144107, + [SMALL_STATE(2965)] = 144139, + [SMALL_STATE(2966)] = 144177, + [SMALL_STATE(2967)] = 144215, + [SMALL_STATE(2968)] = 144269, + [SMALL_STATE(2969)] = 144301, + [SMALL_STATE(2970)] = 144333, + [SMALL_STATE(2971)] = 144371, + [SMALL_STATE(2972)] = 144409, + [SMALL_STATE(2973)] = 144447, + [SMALL_STATE(2974)] = 144485, + [SMALL_STATE(2975)] = 144523, + [SMALL_STATE(2976)] = 144555, + [SMALL_STATE(2977)] = 144609, + [SMALL_STATE(2978)] = 144647, + [SMALL_STATE(2979)] = 144701, + [SMALL_STATE(2980)] = 144733, + [SMALL_STATE(2981)] = 144765, + [SMALL_STATE(2982)] = 144797, + [SMALL_STATE(2983)] = 144829, + [SMALL_STATE(2984)] = 144867, + [SMALL_STATE(2985)] = 144898, + [SMALL_STATE(2986)] = 144929, + [SMALL_STATE(2987)] = 144960, + [SMALL_STATE(2988)] = 144995, + [SMALL_STATE(2989)] = 145026, + [SMALL_STATE(2990)] = 145063, + [SMALL_STATE(2991)] = 145094, + [SMALL_STATE(2992)] = 145125, + [SMALL_STATE(2993)] = 145156, + [SMALL_STATE(2994)] = 145187, + [SMALL_STATE(2995)] = 145218, + [SMALL_STATE(2996)] = 145249, + [SMALL_STATE(2997)] = 145280, + [SMALL_STATE(2998)] = 145311, + [SMALL_STATE(2999)] = 145348, + [SMALL_STATE(3000)] = 145383, + [SMALL_STATE(3001)] = 145414, + [SMALL_STATE(3002)] = 145445, + [SMALL_STATE(3003)] = 145476, + [SMALL_STATE(3004)] = 145507, + [SMALL_STATE(3005)] = 145538, + [SMALL_STATE(3006)] = 145573, + [SMALL_STATE(3007)] = 145610, + [SMALL_STATE(3008)] = 145647, + [SMALL_STATE(3009)] = 145678, + [SMALL_STATE(3010)] = 145709, + [SMALL_STATE(3011)] = 145746, + [SMALL_STATE(3012)] = 145777, + [SMALL_STATE(3013)] = 145808, + [SMALL_STATE(3014)] = 145839, + [SMALL_STATE(3015)] = 145870, + [SMALL_STATE(3016)] = 145901, + [SMALL_STATE(3017)] = 145938, + [SMALL_STATE(3018)] = 145975, + [SMALL_STATE(3019)] = 146006, + [SMALL_STATE(3020)] = 146037, + [SMALL_STATE(3021)] = 146074, + [SMALL_STATE(3022)] = 146105, + [SMALL_STATE(3023)] = 146136, + [SMALL_STATE(3024)] = 146167, + [SMALL_STATE(3025)] = 146204, + [SMALL_STATE(3026)] = 146235, + [SMALL_STATE(3027)] = 146266, + [SMALL_STATE(3028)] = 146297, + [SMALL_STATE(3029)] = 146328, + [SMALL_STATE(3030)] = 146359, + [SMALL_STATE(3031)] = 146396, + [SMALL_STATE(3032)] = 146427, + [SMALL_STATE(3033)] = 146464, + [SMALL_STATE(3034)] = 146495, + [SMALL_STATE(3035)] = 146532, + [SMALL_STATE(3036)] = 146563, + [SMALL_STATE(3037)] = 146594, + [SMALL_STATE(3038)] = 146625, + [SMALL_STATE(3039)] = 146656, + [SMALL_STATE(3040)] = 146687, + [SMALL_STATE(3041)] = 146718, + [SMALL_STATE(3042)] = 146749, + [SMALL_STATE(3043)] = 146780, + [SMALL_STATE(3044)] = 146811, + [SMALL_STATE(3045)] = 146842, + [SMALL_STATE(3046)] = 146873, + [SMALL_STATE(3047)] = 146904, + [SMALL_STATE(3048)] = 146951, + [SMALL_STATE(3049)] = 146982, + [SMALL_STATE(3050)] = 147019, + [SMALL_STATE(3051)] = 147050, + [SMALL_STATE(3052)] = 147081, + [SMALL_STATE(3053)] = 147112, + [SMALL_STATE(3054)] = 147143, + [SMALL_STATE(3055)] = 147174, + [SMALL_STATE(3056)] = 147205, + [SMALL_STATE(3057)] = 147236, + [SMALL_STATE(3058)] = 147267, + [SMALL_STATE(3059)] = 147298, + [SMALL_STATE(3060)] = 147335, + [SMALL_STATE(3061)] = 147372, + [SMALL_STATE(3062)] = 147403, + [SMALL_STATE(3063)] = 147434, + [SMALL_STATE(3064)] = 147465, + [SMALL_STATE(3065)] = 147496, + [SMALL_STATE(3066)] = 147527, + [SMALL_STATE(3067)] = 147558, + [SMALL_STATE(3068)] = 147589, + [SMALL_STATE(3069)] = 147620, + [SMALL_STATE(3070)] = 147651, + [SMALL_STATE(3071)] = 147682, + [SMALL_STATE(3072)] = 147713, + [SMALL_STATE(3073)] = 147744, + [SMALL_STATE(3074)] = 147775, + [SMALL_STATE(3075)] = 147806, + [SMALL_STATE(3076)] = 147837, + [SMALL_STATE(3077)] = 147868, + [SMALL_STATE(3078)] = 147903, + [SMALL_STATE(3079)] = 147934, + [SMALL_STATE(3080)] = 147965, + [SMALL_STATE(3081)] = 147996, + [SMALL_STATE(3082)] = 148027, + [SMALL_STATE(3083)] = 148058, + [SMALL_STATE(3084)] = 148095, + [SMALL_STATE(3085)] = 148126, + [SMALL_STATE(3086)] = 148157, + [SMALL_STATE(3087)] = 148188, + [SMALL_STATE(3088)] = 148219, + [SMALL_STATE(3089)] = 148250, + [SMALL_STATE(3090)] = 148281, + [SMALL_STATE(3091)] = 148316, + [SMALL_STATE(3092)] = 148353, + [SMALL_STATE(3093)] = 148384, + [SMALL_STATE(3094)] = 148419, + [SMALL_STATE(3095)] = 148455, + [SMALL_STATE(3096)] = 148485, + [SMALL_STATE(3097)] = 148521, + [SMALL_STATE(3098)] = 148555, + [SMALL_STATE(3099)] = 148589, + [SMALL_STATE(3100)] = 148625, + [SMALL_STATE(3101)] = 148655, + [SMALL_STATE(3102)] = 148691, + [SMALL_STATE(3103)] = 148725, + [SMALL_STATE(3104)] = 148761, + [SMALL_STATE(3105)] = 148791, + [SMALL_STATE(3106)] = 148821, + [SMALL_STATE(3107)] = 148871, + [SMALL_STATE(3108)] = 148901, + [SMALL_STATE(3109)] = 148951, + [SMALL_STATE(3110)] = 148981, + [SMALL_STATE(3111)] = 149017, + [SMALL_STATE(3112)] = 149053, + [SMALL_STATE(3113)] = 149083, + [SMALL_STATE(3114)] = 149113, + [SMALL_STATE(3115)] = 149147, + [SMALL_STATE(3116)] = 149177, + [SMALL_STATE(3117)] = 149213, + [SMALL_STATE(3118)] = 149243, + [SMALL_STATE(3119)] = 149273, + [SMALL_STATE(3120)] = 149309, + [SMALL_STATE(3121)] = 149345, + [SMALL_STATE(3122)] = 149375, + [SMALL_STATE(3123)] = 149405, + [SMALL_STATE(3124)] = 149441, + [SMALL_STATE(3125)] = 149477, + [SMALL_STATE(3126)] = 149507, + [SMALL_STATE(3127)] = 149557, + [SMALL_STATE(3128)] = 149607, + [SMALL_STATE(3129)] = 149657, + [SMALL_STATE(3130)] = 149693, + [SMALL_STATE(3131)] = 149723, + [SMALL_STATE(3132)] = 149773, + [SMALL_STATE(3133)] = 149803, + [SMALL_STATE(3134)] = 149833, + [SMALL_STATE(3135)] = 149869, + [SMALL_STATE(3136)] = 149905, + [SMALL_STATE(3137)] = 149941, + [SMALL_STATE(3138)] = 149971, + [SMALL_STATE(3139)] = 150007, + [SMALL_STATE(3140)] = 150043, + [SMALL_STATE(3141)] = 150073, + [SMALL_STATE(3142)] = 150103, + [SMALL_STATE(3143)] = 150133, + [SMALL_STATE(3144)] = 150169, + [SMALL_STATE(3145)] = 150220, + [SMALL_STATE(3146)] = 150271, + [SMALL_STATE(3147)] = 150322, + [SMALL_STATE(3148)] = 150373, + [SMALL_STATE(3149)] = 150416, + [SMALL_STATE(3150)] = 150447, + [SMALL_STATE(3151)] = 150476, + [SMALL_STATE(3152)] = 150511, + [SMALL_STATE(3153)] = 150562, + [SMALL_STATE(3154)] = 150591, + [SMALL_STATE(3155)] = 150642, + [SMALL_STATE(3156)] = 150673, + [SMALL_STATE(3157)] = 150724, + [SMALL_STATE(3158)] = 150759, + [SMALL_STATE(3159)] = 150790, + [SMALL_STATE(3160)] = 150841, + [SMALL_STATE(3161)] = 150872, + [SMALL_STATE(3162)] = 150901, + [SMALL_STATE(3163)] = 150936, + [SMALL_STATE(3164)] = 150987, + [SMALL_STATE(3165)] = 151038, + [SMALL_STATE(3166)] = 151089, + [SMALL_STATE(3167)] = 151140, + [SMALL_STATE(3168)] = 151169, + [SMALL_STATE(3169)] = 151200, + [SMALL_STATE(3170)] = 151235, + [SMALL_STATE(3171)] = 151264, + [SMALL_STATE(3172)] = 151293, + [SMALL_STATE(3173)] = 151344, + [SMALL_STATE(3174)] = 151395, + [SMALL_STATE(3175)] = 151424, + [SMALL_STATE(3176)] = 151455, + [SMALL_STATE(3177)] = 151506, + [SMALL_STATE(3178)] = 151537, + [SMALL_STATE(3179)] = 151566, + [SMALL_STATE(3180)] = 151601, + [SMALL_STATE(3181)] = 151630, + [SMALL_STATE(3182)] = 151681, + [SMALL_STATE(3183)] = 151732, + [SMALL_STATE(3184)] = 151761, + [SMALL_STATE(3185)] = 151812, + [SMALL_STATE(3186)] = 151863, + [SMALL_STATE(3187)] = 151898, + [SMALL_STATE(3188)] = 151949, + [SMALL_STATE(3189)] = 151980, + [SMALL_STATE(3190)] = 152011, + [SMALL_STATE(3191)] = 152042, + [SMALL_STATE(3192)] = 152093, + [SMALL_STATE(3193)] = 152144, + [SMALL_STATE(3194)] = 152195, + [SMALL_STATE(3195)] = 152246, + [SMALL_STATE(3196)] = 152277, + [SMALL_STATE(3197)] = 152328, + [SMALL_STATE(3198)] = 152379, + [SMALL_STATE(3199)] = 152430, + [SMALL_STATE(3200)] = 152461, + [SMALL_STATE(3201)] = 152512, + [SMALL_STATE(3202)] = 152563, + [SMALL_STATE(3203)] = 152594, + [SMALL_STATE(3204)] = 152641, + [SMALL_STATE(3205)] = 152672, + [SMALL_STATE(3206)] = 152723, + [SMALL_STATE(3207)] = 152752, + [SMALL_STATE(3208)] = 152803, + [SMALL_STATE(3209)] = 152854, + [SMALL_STATE(3210)] = 152883, + [SMALL_STATE(3211)] = 152930, + [SMALL_STATE(3212)] = 152961, + [SMALL_STATE(3213)] = 152990, + [SMALL_STATE(3214)] = 153041, + [SMALL_STATE(3215)] = 153074, + [SMALL_STATE(3216)] = 153117, + [SMALL_STATE(3217)] = 153168, + [SMALL_STATE(3218)] = 153201, + [SMALL_STATE(3219)] = 153232, + [SMALL_STATE(3220)] = 153283, + [SMALL_STATE(3221)] = 153334, + [SMALL_STATE(3222)] = 153373, + [SMALL_STATE(3223)] = 153402, + [SMALL_STATE(3224)] = 153453, + [SMALL_STATE(3225)] = 153494, + [SMALL_STATE(3226)] = 153525, + [SMALL_STATE(3227)] = 153564, + [SMALL_STATE(3228)] = 153593, + [SMALL_STATE(3229)] = 153644, + [SMALL_STATE(3230)] = 153673, + [SMALL_STATE(3231)] = 153702, + [SMALL_STATE(3232)] = 153731, + [SMALL_STATE(3233)] = 153782, + [SMALL_STATE(3234)] = 153817, + [SMALL_STATE(3235)] = 153852, + [SMALL_STATE(3236)] = 153881, + [SMALL_STATE(3237)] = 153916, + [SMALL_STATE(3238)] = 153967, + [SMALL_STATE(3239)] = 153998, + [SMALL_STATE(3240)] = 154031, + [SMALL_STATE(3241)] = 154082, + [SMALL_STATE(3242)] = 154113, + [SMALL_STATE(3243)] = 154164, + [SMALL_STATE(3244)] = 154215, + [SMALL_STATE(3245)] = 154266, + [SMALL_STATE(3246)] = 154295, + [SMALL_STATE(3247)] = 154346, + [SMALL_STATE(3248)] = 154397, + [SMALL_STATE(3249)] = 154448, + [SMALL_STATE(3250)] = 154499, + [SMALL_STATE(3251)] = 154530, + [SMALL_STATE(3252)] = 154561, + [SMALL_STATE(3253)] = 154612, + [SMALL_STATE(3254)] = 154643, + [SMALL_STATE(3255)] = 154674, + [SMALL_STATE(3256)] = 154725, + [SMALL_STATE(3257)] = 154756, + [SMALL_STATE(3258)] = 154807, + [SMALL_STATE(3259)] = 154858, + [SMALL_STATE(3260)] = 154909, + [SMALL_STATE(3261)] = 154942, + [SMALL_STATE(3262)] = 154993, + [SMALL_STATE(3263)] = 155028, + [SMALL_STATE(3264)] = 155079, + [SMALL_STATE(3265)] = 155130, + [SMALL_STATE(3266)] = 155177, + [SMALL_STATE(3267)] = 155228, + [SMALL_STATE(3268)] = 155259, + [SMALL_STATE(3269)] = 155310, + [SMALL_STATE(3270)] = 155343, + [SMALL_STATE(3271)] = 155394, + [SMALL_STATE(3272)] = 155445, + [SMALL_STATE(3273)] = 155496, + [SMALL_STATE(3274)] = 155547, + [SMALL_STATE(3275)] = 155598, + [SMALL_STATE(3276)] = 155646, + [SMALL_STATE(3277)] = 155674, + [SMALL_STATE(3278)] = 155722, + [SMALL_STATE(3279)] = 155770, + [SMALL_STATE(3280)] = 155818, + [SMALL_STATE(3281)] = 155866, + [SMALL_STATE(3282)] = 155914, + [SMALL_STATE(3283)] = 155942, + [SMALL_STATE(3284)] = 155990, + [SMALL_STATE(3285)] = 156038, + [SMALL_STATE(3286)] = 156066, + [SMALL_STATE(3287)] = 156098, + [SMALL_STATE(3288)] = 156126, + [SMALL_STATE(3289)] = 156174, + [SMALL_STATE(3290)] = 156208, + [SMALL_STATE(3291)] = 156236, + [SMALL_STATE(3292)] = 156284, + [SMALL_STATE(3293)] = 156312, + [SMALL_STATE(3294)] = 156360, + [SMALL_STATE(3295)] = 156394, + [SMALL_STATE(3296)] = 156442, + [SMALL_STATE(3297)] = 156490, + [SMALL_STATE(3298)] = 156538, + [SMALL_STATE(3299)] = 156586, + [SMALL_STATE(3300)] = 156614, + [SMALL_STATE(3301)] = 156642, + [SMALL_STATE(3302)] = 156690, + [SMALL_STATE(3303)] = 156734, + [SMALL_STATE(3304)] = 156762, + [SMALL_STATE(3305)] = 156790, + [SMALL_STATE(3306)] = 156838, + [SMALL_STATE(3307)] = 156866, + [SMALL_STATE(3308)] = 156914, + [SMALL_STATE(3309)] = 156962, + [SMALL_STATE(3310)] = 157010, + [SMALL_STATE(3311)] = 157038, + [SMALL_STATE(3312)] = 157086, + [SMALL_STATE(3313)] = 157134, + [SMALL_STATE(3314)] = 157162, + [SMALL_STATE(3315)] = 157190, + [SMALL_STATE(3316)] = 157238, + [SMALL_STATE(3317)] = 157266, + [SMALL_STATE(3318)] = 157314, + [SMALL_STATE(3319)] = 157342, + [SMALL_STATE(3320)] = 157370, + [SMALL_STATE(3321)] = 157398, + [SMALL_STATE(3322)] = 157446, + [SMALL_STATE(3323)] = 157494, + [SMALL_STATE(3324)] = 157542, + [SMALL_STATE(3325)] = 157590, + [SMALL_STATE(3326)] = 157638, + [SMALL_STATE(3327)] = 157686, + [SMALL_STATE(3328)] = 157734, + [SMALL_STATE(3329)] = 157762, + [SMALL_STATE(3330)] = 157810, + [SMALL_STATE(3331)] = 157844, + [SMALL_STATE(3332)] = 157892, + [SMALL_STATE(3333)] = 157926, + [SMALL_STATE(3334)] = 157974, + [SMALL_STATE(3335)] = 158008, + [SMALL_STATE(3336)] = 158056, + [SMALL_STATE(3337)] = 158084, + [SMALL_STATE(3338)] = 158112, + [SMALL_STATE(3339)] = 158160, + [SMALL_STATE(3340)] = 158208, + [SMALL_STATE(3341)] = 158256, + [SMALL_STATE(3342)] = 158304, + [SMALL_STATE(3343)] = 158352, + [SMALL_STATE(3344)] = 158400, + [SMALL_STATE(3345)] = 158428, + [SMALL_STATE(3346)] = 158470, + [SMALL_STATE(3347)] = 158498, + [SMALL_STATE(3348)] = 158546, + [SMALL_STATE(3349)] = 158594, + [SMALL_STATE(3350)] = 158642, + [SMALL_STATE(3351)] = 158690, + [SMALL_STATE(3352)] = 158738, + [SMALL_STATE(3353)] = 158786, + [SMALL_STATE(3354)] = 158834, + [SMALL_STATE(3355)] = 158882, + [SMALL_STATE(3356)] = 158914, + [SMALL_STATE(3357)] = 158962, + [SMALL_STATE(3358)] = 159010, + [SMALL_STATE(3359)] = 159058, + [SMALL_STATE(3360)] = 159106, + [SMALL_STATE(3361)] = 159136, + [SMALL_STATE(3362)] = 159184, + [SMALL_STATE(3363)] = 159212, + [SMALL_STATE(3364)] = 159240, + [SMALL_STATE(3365)] = 159272, + [SMALL_STATE(3366)] = 159300, + [SMALL_STATE(3367)] = 159348, + [SMALL_STATE(3368)] = 159396, + [SMALL_STATE(3369)] = 159430, + [SMALL_STATE(3370)] = 159478, + [SMALL_STATE(3371)] = 159522, + [SMALL_STATE(3372)] = 159556, + [SMALL_STATE(3373)] = 159604, + [SMALL_STATE(3374)] = 159632, + [SMALL_STATE(3375)] = 159660, + [SMALL_STATE(3376)] = 159708, + [SMALL_STATE(3377)] = 159756, + [SMALL_STATE(3378)] = 159804, + [SMALL_STATE(3379)] = 159852, + [SMALL_STATE(3380)] = 159880, + [SMALL_STATE(3381)] = 159928, + [SMALL_STATE(3382)] = 159976, + [SMALL_STATE(3383)] = 160008, + [SMALL_STATE(3384)] = 160040, + [SMALL_STATE(3385)] = 160088, + [SMALL_STATE(3386)] = 160116, + [SMALL_STATE(3387)] = 160150, + [SMALL_STATE(3388)] = 160178, + [SMALL_STATE(3389)] = 160206, + [SMALL_STATE(3390)] = 160254, + [SMALL_STATE(3391)] = 160302, + [SMALL_STATE(3392)] = 160330, + [SMALL_STATE(3393)] = 160378, + [SMALL_STATE(3394)] = 160426, + [SMALL_STATE(3395)] = 160474, + [SMALL_STATE(3396)] = 160522, + [SMALL_STATE(3397)] = 160550, + [SMALL_STATE(3398)] = 160578, + [SMALL_STATE(3399)] = 160606, + [SMALL_STATE(3400)] = 160634, + [SMALL_STATE(3401)] = 160662, + [SMALL_STATE(3402)] = 160710, + [SMALL_STATE(3403)] = 160758, + [SMALL_STATE(3404)] = 160806, + [SMALL_STATE(3405)] = 160834, + [SMALL_STATE(3406)] = 160882, + [SMALL_STATE(3407)] = 160916, + [SMALL_STATE(3408)] = 160944, + [SMALL_STATE(3409)] = 160972, + [SMALL_STATE(3410)] = 161020, + [SMALL_STATE(3411)] = 161048, + [SMALL_STATE(3412)] = 161096, + [SMALL_STATE(3413)] = 161128, + [SMALL_STATE(3414)] = 161176, + [SMALL_STATE(3415)] = 161224, + [SMALL_STATE(3416)] = 161252, + [SMALL_STATE(3417)] = 161284, + [SMALL_STATE(3418)] = 161312, + [SMALL_STATE(3419)] = 161344, + [SMALL_STATE(3420)] = 161392, + [SMALL_STATE(3421)] = 161420, + [SMALL_STATE(3422)] = 161468, + [SMALL_STATE(3423)] = 161516, + [SMALL_STATE(3424)] = 161548, + [SMALL_STATE(3425)] = 161596, + [SMALL_STATE(3426)] = 161644, + [SMALL_STATE(3427)] = 161672, + [SMALL_STATE(3428)] = 161720, + [SMALL_STATE(3429)] = 161768, + [SMALL_STATE(3430)] = 161796, + [SMALL_STATE(3431)] = 161828, + [SMALL_STATE(3432)] = 161876, + [SMALL_STATE(3433)] = 161908, + [SMALL_STATE(3434)] = 161942, + [SMALL_STATE(3435)] = 161990, + [SMALL_STATE(3436)] = 162038, + [SMALL_STATE(3437)] = 162072, + [SMALL_STATE(3438)] = 162100, + [SMALL_STATE(3439)] = 162148, + [SMALL_STATE(3440)] = 162196, + [SMALL_STATE(3441)] = 162244, + [SMALL_STATE(3442)] = 162272, + [SMALL_STATE(3443)] = 162300, + [SMALL_STATE(3444)] = 162334, + [SMALL_STATE(3445)] = 162382, + [SMALL_STATE(3446)] = 162430, + [SMALL_STATE(3447)] = 162478, + [SMALL_STATE(3448)] = 162506, + [SMALL_STATE(3449)] = 162534, + [SMALL_STATE(3450)] = 162562, + [SMALL_STATE(3451)] = 162610, + [SMALL_STATE(3452)] = 162652, + [SMALL_STATE(3453)] = 162700, + [SMALL_STATE(3454)] = 162748, + [SMALL_STATE(3455)] = 162796, + [SMALL_STATE(3456)] = 162824, + [SMALL_STATE(3457)] = 162872, + [SMALL_STATE(3458)] = 162900, + [SMALL_STATE(3459)] = 162928, + [SMALL_STATE(3460)] = 162976, + [SMALL_STATE(3461)] = 163004, + [SMALL_STATE(3462)] = 163032, + [SMALL_STATE(3463)] = 163080, + [SMALL_STATE(3464)] = 163108, + [SMALL_STATE(3465)] = 163136, + [SMALL_STATE(3466)] = 163170, + [SMALL_STATE(3467)] = 163218, + [SMALL_STATE(3468)] = 163266, + [SMALL_STATE(3469)] = 163294, + [SMALL_STATE(3470)] = 163342, + [SMALL_STATE(3471)] = 163390, + [SMALL_STATE(3472)] = 163418, + [SMALL_STATE(3473)] = 163466, + [SMALL_STATE(3474)] = 163494, + [SMALL_STATE(3475)] = 163542, + [SMALL_STATE(3476)] = 163570, + [SMALL_STATE(3477)] = 163618, + [SMALL_STATE(3478)] = 163666, + [SMALL_STATE(3479)] = 163694, + [SMALL_STATE(3480)] = 163742, + [SMALL_STATE(3481)] = 163770, + [SMALL_STATE(3482)] = 163818, + [SMALL_STATE(3483)] = 163846, + [SMALL_STATE(3484)] = 163873, + [SMALL_STATE(3485)] = 163900, + [SMALL_STATE(3486)] = 163931, + [SMALL_STATE(3487)] = 163958, + [SMALL_STATE(3488)] = 163991, + [SMALL_STATE(3489)] = 164024, + [SMALL_STATE(3490)] = 164051, + [SMALL_STATE(3491)] = 164084, + [SMALL_STATE(3492)] = 164111, + [SMALL_STATE(3493)] = 164142, + [SMALL_STATE(3494)] = 164169, + [SMALL_STATE(3495)] = 164200, + [SMALL_STATE(3496)] = 164233, + [SMALL_STATE(3497)] = 164260, + [SMALL_STATE(3498)] = 164291, + [SMALL_STATE(3499)] = 164318, + [SMALL_STATE(3500)] = 164349, + [SMALL_STATE(3501)] = 164376, + [SMALL_STATE(3502)] = 164407, + [SMALL_STATE(3503)] = 164438, + [SMALL_STATE(3504)] = 164465, + [SMALL_STATE(3505)] = 164492, + [SMALL_STATE(3506)] = 164519, + [SMALL_STATE(3507)] = 164546, + [SMALL_STATE(3508)] = 164581, + [SMALL_STATE(3509)] = 164608, + [SMALL_STATE(3510)] = 164635, + [SMALL_STATE(3511)] = 164666, + [SMALL_STATE(3512)] = 164697, + [SMALL_STATE(3513)] = 164724, + [SMALL_STATE(3514)] = 164751, + [SMALL_STATE(3515)] = 164778, + [SMALL_STATE(3516)] = 164805, + [SMALL_STATE(3517)] = 164836, + [SMALL_STATE(3518)] = 164863, + [SMALL_STATE(3519)] = 164890, + [SMALL_STATE(3520)] = 164917, + [SMALL_STATE(3521)] = 164944, + [SMALL_STATE(3522)] = 164971, + [SMALL_STATE(3523)] = 164998, + [SMALL_STATE(3524)] = 165025, + [SMALL_STATE(3525)] = 165052, + [SMALL_STATE(3526)] = 165079, + [SMALL_STATE(3527)] = 165106, + [SMALL_STATE(3528)] = 165133, + [SMALL_STATE(3529)] = 165160, + [SMALL_STATE(3530)] = 165187, + [SMALL_STATE(3531)] = 165214, + [SMALL_STATE(3532)] = 165241, + [SMALL_STATE(3533)] = 165268, + [SMALL_STATE(3534)] = 165303, + [SMALL_STATE(3535)] = 165330, + [SMALL_STATE(3536)] = 165357, + [SMALL_STATE(3537)] = 165384, + [SMALL_STATE(3538)] = 165411, + [SMALL_STATE(3539)] = 165438, + [SMALL_STATE(3540)] = 165465, + [SMALL_STATE(3541)] = 165491, + [SMALL_STATE(3542)] = 165517, + [SMALL_STATE(3543)] = 165543, + [SMALL_STATE(3544)] = 165569, + [SMALL_STATE(3545)] = 165595, + [SMALL_STATE(3546)] = 165621, + [SMALL_STATE(3547)] = 165651, + [SMALL_STATE(3548)] = 165683, + [SMALL_STATE(3549)] = 165709, + [SMALL_STATE(3550)] = 165735, + [SMALL_STATE(3551)] = 165761, + [SMALL_STATE(3552)] = 165791, + [SMALL_STATE(3553)] = 165817, + [SMALL_STATE(3554)] = 165843, + [SMALL_STATE(3555)] = 165875, + [SMALL_STATE(3556)] = 165901, + [SMALL_STATE(3557)] = 165927, + [SMALL_STATE(3558)] = 165953, + [SMALL_STATE(3559)] = 165987, + [SMALL_STATE(3560)] = 166013, + [SMALL_STATE(3561)] = 166043, + [SMALL_STATE(3562)] = 166075, + [SMALL_STATE(3563)] = 166101, + [SMALL_STATE(3564)] = 166127, + [SMALL_STATE(3565)] = 166153, + [SMALL_STATE(3566)] = 166179, + [SMALL_STATE(3567)] = 166211, + [SMALL_STATE(3568)] = 166243, + [SMALL_STATE(3569)] = 166277, + [SMALL_STATE(3570)] = 166303, + [SMALL_STATE(3571)] = 166329, + [SMALL_STATE(3572)] = 166355, + [SMALL_STATE(3573)] = 166380, + [SMALL_STATE(3574)] = 166409, + [SMALL_STATE(3575)] = 166434, + [SMALL_STATE(3576)] = 166459, + [SMALL_STATE(3577)] = 166492, + [SMALL_STATE(3578)] = 166517, + [SMALL_STATE(3579)] = 166542, + [SMALL_STATE(3580)] = 166567, + [SMALL_STATE(3581)] = 166592, + [SMALL_STATE(3582)] = 166617, + [SMALL_STATE(3583)] = 166650, + [SMALL_STATE(3584)] = 166675, + [SMALL_STATE(3585)] = 166700, + [SMALL_STATE(3586)] = 166725, + [SMALL_STATE(3587)] = 166758, + [SMALL_STATE(3588)] = 166783, + [SMALL_STATE(3589)] = 166807, + [SMALL_STATE(3590)] = 166831, + [SMALL_STATE(3591)] = 166855, + [SMALL_STATE(3592)] = 166879, + [SMALL_STATE(3593)] = 166903, + [SMALL_STATE(3594)] = 166927, + [SMALL_STATE(3595)] = 166951, + [SMALL_STATE(3596)] = 166975, + [SMALL_STATE(3597)] = 166999, + [SMALL_STATE(3598)] = 167023, + [SMALL_STATE(3599)] = 167047, + [SMALL_STATE(3600)] = 167071, + [SMALL_STATE(3601)] = 167095, + [SMALL_STATE(3602)] = 167119, + [SMALL_STATE(3603)] = 167143, + [SMALL_STATE(3604)] = 167167, + [SMALL_STATE(3605)] = 167191, + [SMALL_STATE(3606)] = 167215, + [SMALL_STATE(3607)] = 167239, + [SMALL_STATE(3608)] = 167263, + [SMALL_STATE(3609)] = 167287, + [SMALL_STATE(3610)] = 167311, + [SMALL_STATE(3611)] = 167335, + [SMALL_STATE(3612)] = 167359, + [SMALL_STATE(3613)] = 167383, + [SMALL_STATE(3614)] = 167407, + [SMALL_STATE(3615)] = 167431, + [SMALL_STATE(3616)] = 167455, + [SMALL_STATE(3617)] = 167479, + [SMALL_STATE(3618)] = 167503, + [SMALL_STATE(3619)] = 167527, + [SMALL_STATE(3620)] = 167551, + [SMALL_STATE(3621)] = 167575, + [SMALL_STATE(3622)] = 167599, + [SMALL_STATE(3623)] = 167623, + [SMALL_STATE(3624)] = 167647, + [SMALL_STATE(3625)] = 167671, + [SMALL_STATE(3626)] = 167695, + [SMALL_STATE(3627)] = 167719, + [SMALL_STATE(3628)] = 167743, + [SMALL_STATE(3629)] = 167767, + [SMALL_STATE(3630)] = 167791, + [SMALL_STATE(3631)] = 167815, + [SMALL_STATE(3632)] = 167844, + [SMALL_STATE(3633)] = 167873, + [SMALL_STATE(3634)] = 167902, + [SMALL_STATE(3635)] = 167931, + [SMALL_STATE(3636)] = 167969, + [SMALL_STATE(3637)] = 168007, + [SMALL_STATE(3638)] = 168045, + [SMALL_STATE(3639)] = 168083, + [SMALL_STATE(3640)] = 168121, + [SMALL_STATE(3641)] = 168159, + [SMALL_STATE(3642)] = 168197, + [SMALL_STATE(3643)] = 168235, + [SMALL_STATE(3644)] = 168273, + [SMALL_STATE(3645)] = 168311, + [SMALL_STATE(3646)] = 168349, + [SMALL_STATE(3647)] = 168387, + [SMALL_STATE(3648)] = 168425, + [SMALL_STATE(3649)] = 168463, + [SMALL_STATE(3650)] = 168501, + [SMALL_STATE(3651)] = 168539, + [SMALL_STATE(3652)] = 168577, + [SMALL_STATE(3653)] = 168615, + [SMALL_STATE(3654)] = 168653, + [SMALL_STATE(3655)] = 168691, + [SMALL_STATE(3656)] = 168729, + [SMALL_STATE(3657)] = 168767, + [SMALL_STATE(3658)] = 168805, + [SMALL_STATE(3659)] = 168843, + [SMALL_STATE(3660)] = 168881, + [SMALL_STATE(3661)] = 168919, + [SMALL_STATE(3662)] = 168957, + [SMALL_STATE(3663)] = 168995, + [SMALL_STATE(3664)] = 169033, + [SMALL_STATE(3665)] = 169071, + [SMALL_STATE(3666)] = 169109, + [SMALL_STATE(3667)] = 169147, + [SMALL_STATE(3668)] = 169185, + [SMALL_STATE(3669)] = 169223, + [SMALL_STATE(3670)] = 169261, + [SMALL_STATE(3671)] = 169299, + [SMALL_STATE(3672)] = 169337, + [SMALL_STATE(3673)] = 169375, + [SMALL_STATE(3674)] = 169413, + [SMALL_STATE(3675)] = 169451, + [SMALL_STATE(3676)] = 169489, + [SMALL_STATE(3677)] = 169527, + [SMALL_STATE(3678)] = 169565, + [SMALL_STATE(3679)] = 169603, + [SMALL_STATE(3680)] = 169641, + [SMALL_STATE(3681)] = 169679, + [SMALL_STATE(3682)] = 169717, + [SMALL_STATE(3683)] = 169755, + [SMALL_STATE(3684)] = 169793, + [SMALL_STATE(3685)] = 169831, + [SMALL_STATE(3686)] = 169869, + [SMALL_STATE(3687)] = 169907, + [SMALL_STATE(3688)] = 169945, + [SMALL_STATE(3689)] = 169983, + [SMALL_STATE(3690)] = 170021, + [SMALL_STATE(3691)] = 170049, + [SMALL_STATE(3692)] = 170077, + [SMALL_STATE(3693)] = 170115, + [SMALL_STATE(3694)] = 170153, + [SMALL_STATE(3695)] = 170191, + [SMALL_STATE(3696)] = 170229, + [SMALL_STATE(3697)] = 170267, + [SMALL_STATE(3698)] = 170295, + [SMALL_STATE(3699)] = 170333, + [SMALL_STATE(3700)] = 170371, + [SMALL_STATE(3701)] = 170409, + [SMALL_STATE(3702)] = 170447, + [SMALL_STATE(3703)] = 170485, + [SMALL_STATE(3704)] = 170523, + [SMALL_STATE(3705)] = 170561, + [SMALL_STATE(3706)] = 170599, + [SMALL_STATE(3707)] = 170637, + [SMALL_STATE(3708)] = 170675, + [SMALL_STATE(3709)] = 170713, + [SMALL_STATE(3710)] = 170741, + [SMALL_STATE(3711)] = 170779, + [SMALL_STATE(3712)] = 170817, + [SMALL_STATE(3713)] = 170855, + [SMALL_STATE(3714)] = 170893, + [SMALL_STATE(3715)] = 170931, + [SMALL_STATE(3716)] = 170969, + [SMALL_STATE(3717)] = 170997, + [SMALL_STATE(3718)] = 171035, + [SMALL_STATE(3719)] = 171073, + [SMALL_STATE(3720)] = 171111, + [SMALL_STATE(3721)] = 171139, + [SMALL_STATE(3722)] = 171177, + [SMALL_STATE(3723)] = 171215, + [SMALL_STATE(3724)] = 171253, + [SMALL_STATE(3725)] = 171291, + [SMALL_STATE(3726)] = 171329, + [SMALL_STATE(3727)] = 171367, + [SMALL_STATE(3728)] = 171405, + [SMALL_STATE(3729)] = 171443, + [SMALL_STATE(3730)] = 171481, + [SMALL_STATE(3731)] = 171519, + [SMALL_STATE(3732)] = 171557, + [SMALL_STATE(3733)] = 171595, + [SMALL_STATE(3734)] = 171633, + [SMALL_STATE(3735)] = 171671, + [SMALL_STATE(3736)] = 171709, + [SMALL_STATE(3737)] = 171747, + [SMALL_STATE(3738)] = 171785, + [SMALL_STATE(3739)] = 171823, + [SMALL_STATE(3740)] = 171861, + [SMALL_STATE(3741)] = 171899, + [SMALL_STATE(3742)] = 171937, + [SMALL_STATE(3743)] = 171965, + [SMALL_STATE(3744)] = 172003, + [SMALL_STATE(3745)] = 172041, + [SMALL_STATE(3746)] = 172079, + [SMALL_STATE(3747)] = 172117, + [SMALL_STATE(3748)] = 172145, + [SMALL_STATE(3749)] = 172170, + [SMALL_STATE(3750)] = 172195, + [SMALL_STATE(3751)] = 172220, + [SMALL_STATE(3752)] = 172245, + [SMALL_STATE(3753)] = 172270, + [SMALL_STATE(3754)] = 172295, + [SMALL_STATE(3755)] = 172320, + [SMALL_STATE(3756)] = 172345, + [SMALL_STATE(3757)] = 172370, + [SMALL_STATE(3758)] = 172395, + [SMALL_STATE(3759)] = 172420, + [SMALL_STATE(3760)] = 172445, + [SMALL_STATE(3761)] = 172470, + [SMALL_STATE(3762)] = 172495, + [SMALL_STATE(3763)] = 172520, + [SMALL_STATE(3764)] = 172545, + [SMALL_STATE(3765)] = 172570, + [SMALL_STATE(3766)] = 172595, + [SMALL_STATE(3767)] = 172620, + [SMALL_STATE(3768)] = 172645, + [SMALL_STATE(3769)] = 172670, + [SMALL_STATE(3770)] = 172695, + [SMALL_STATE(3771)] = 172720, + [SMALL_STATE(3772)] = 172745, + [SMALL_STATE(3773)] = 172770, + [SMALL_STATE(3774)] = 172795, + [SMALL_STATE(3775)] = 172820, + [SMALL_STATE(3776)] = 172845, + [SMALL_STATE(3777)] = 172870, + [SMALL_STATE(3778)] = 172895, + [SMALL_STATE(3779)] = 172920, + [SMALL_STATE(3780)] = 172945, + [SMALL_STATE(3781)] = 172970, + [SMALL_STATE(3782)] = 172995, + [SMALL_STATE(3783)] = 173020, + [SMALL_STATE(3784)] = 173045, + [SMALL_STATE(3785)] = 173070, + [SMALL_STATE(3786)] = 173095, + [SMALL_STATE(3787)] = 173120, + [SMALL_STATE(3788)] = 173145, + [SMALL_STATE(3789)] = 173170, + [SMALL_STATE(3790)] = 173195, + [SMALL_STATE(3791)] = 173220, + [SMALL_STATE(3792)] = 173245, + [SMALL_STATE(3793)] = 173270, + [SMALL_STATE(3794)] = 173295, + [SMALL_STATE(3795)] = 173320, + [SMALL_STATE(3796)] = 173345, + [SMALL_STATE(3797)] = 173370, + [SMALL_STATE(3798)] = 173395, + [SMALL_STATE(3799)] = 173420, + [SMALL_STATE(3800)] = 173445, + [SMALL_STATE(3801)] = 173470, + [SMALL_STATE(3802)] = 173495, + [SMALL_STATE(3803)] = 173520, + [SMALL_STATE(3804)] = 173545, + [SMALL_STATE(3805)] = 173570, + [SMALL_STATE(3806)] = 173595, + [SMALL_STATE(3807)] = 173620, + [SMALL_STATE(3808)] = 173645, + [SMALL_STATE(3809)] = 173670, + [SMALL_STATE(3810)] = 173695, + [SMALL_STATE(3811)] = 173720, + [SMALL_STATE(3812)] = 173745, + [SMALL_STATE(3813)] = 173770, + [SMALL_STATE(3814)] = 173795, + [SMALL_STATE(3815)] = 173820, + [SMALL_STATE(3816)] = 173845, + [SMALL_STATE(3817)] = 173870, + [SMALL_STATE(3818)] = 173895, + [SMALL_STATE(3819)] = 173920, + [SMALL_STATE(3820)] = 173945, + [SMALL_STATE(3821)] = 173970, + [SMALL_STATE(3822)] = 173995, + [SMALL_STATE(3823)] = 174020, + [SMALL_STATE(3824)] = 174045, + [SMALL_STATE(3825)] = 174070, + [SMALL_STATE(3826)] = 174095, + [SMALL_STATE(3827)] = 174120, + [SMALL_STATE(3828)] = 174145, + [SMALL_STATE(3829)] = 174170, + [SMALL_STATE(3830)] = 174195, + [SMALL_STATE(3831)] = 174220, + [SMALL_STATE(3832)] = 174245, + [SMALL_STATE(3833)] = 174270, + [SMALL_STATE(3834)] = 174295, + [SMALL_STATE(3835)] = 174320, + [SMALL_STATE(3836)] = 174345, + [SMALL_STATE(3837)] = 174370, + [SMALL_STATE(3838)] = 174395, + [SMALL_STATE(3839)] = 174420, + [SMALL_STATE(3840)] = 174445, + [SMALL_STATE(3841)] = 174470, + [SMALL_STATE(3842)] = 174495, + [SMALL_STATE(3843)] = 174520, + [SMALL_STATE(3844)] = 174545, + [SMALL_STATE(3845)] = 174570, + [SMALL_STATE(3846)] = 174595, + [SMALL_STATE(3847)] = 174620, + [SMALL_STATE(3848)] = 174645, + [SMALL_STATE(3849)] = 174670, + [SMALL_STATE(3850)] = 174695, + [SMALL_STATE(3851)] = 174720, + [SMALL_STATE(3852)] = 174745, + [SMALL_STATE(3853)] = 174770, + [SMALL_STATE(3854)] = 174795, + [SMALL_STATE(3855)] = 174820, + [SMALL_STATE(3856)] = 174845, + [SMALL_STATE(3857)] = 174870, + [SMALL_STATE(3858)] = 174895, + [SMALL_STATE(3859)] = 174920, + [SMALL_STATE(3860)] = 174945, + [SMALL_STATE(3861)] = 174970, + [SMALL_STATE(3862)] = 174995, + [SMALL_STATE(3863)] = 175020, + [SMALL_STATE(3864)] = 175045, + [SMALL_STATE(3865)] = 175070, + [SMALL_STATE(3866)] = 175095, + [SMALL_STATE(3867)] = 175120, + [SMALL_STATE(3868)] = 175145, + [SMALL_STATE(3869)] = 175170, + [SMALL_STATE(3870)] = 175195, + [SMALL_STATE(3871)] = 175220, + [SMALL_STATE(3872)] = 175245, + [SMALL_STATE(3873)] = 175270, + [SMALL_STATE(3874)] = 175295, + [SMALL_STATE(3875)] = 175320, + [SMALL_STATE(3876)] = 175345, + [SMALL_STATE(3877)] = 175370, + [SMALL_STATE(3878)] = 175395, + [SMALL_STATE(3879)] = 175420, + [SMALL_STATE(3880)] = 175445, + [SMALL_STATE(3881)] = 175470, + [SMALL_STATE(3882)] = 175495, + [SMALL_STATE(3883)] = 175520, + [SMALL_STATE(3884)] = 175545, + [SMALL_STATE(3885)] = 175570, + [SMALL_STATE(3886)] = 175595, + [SMALL_STATE(3887)] = 175620, + [SMALL_STATE(3888)] = 175645, + [SMALL_STATE(3889)] = 175670, + [SMALL_STATE(3890)] = 175695, + [SMALL_STATE(3891)] = 175720, + [SMALL_STATE(3892)] = 175745, + [SMALL_STATE(3893)] = 175770, + [SMALL_STATE(3894)] = 175795, + [SMALL_STATE(3895)] = 175820, + [SMALL_STATE(3896)] = 175845, + [SMALL_STATE(3897)] = 175870, + [SMALL_STATE(3898)] = 175895, + [SMALL_STATE(3899)] = 175920, + [SMALL_STATE(3900)] = 175945, + [SMALL_STATE(3901)] = 175967, + [SMALL_STATE(3902)] = 175992, + [SMALL_STATE(3903)] = 176023, + [SMALL_STATE(3904)] = 176042, + [SMALL_STATE(3905)] = 176067, + [SMALL_STATE(3906)] = 176092, + [SMALL_STATE(3907)] = 176111, + [SMALL_STATE(3908)] = 176142, + [SMALL_STATE(3909)] = 176173, + [SMALL_STATE(3910)] = 176198, + [SMALL_STATE(3911)] = 176223, + [SMALL_STATE(3912)] = 176242, + [SMALL_STATE(3913)] = 176267, + [SMALL_STATE(3914)] = 176292, + [SMALL_STATE(3915)] = 176311, + [SMALL_STATE(3916)] = 176330, + [SMALL_STATE(3917)] = 176355, + [SMALL_STATE(3918)] = 176374, + [SMALL_STATE(3919)] = 176399, + [SMALL_STATE(3920)] = 176415, + [SMALL_STATE(3921)] = 176433, + [SMALL_STATE(3922)] = 176451, + [SMALL_STATE(3923)] = 176469, + [SMALL_STATE(3924)] = 176485, + [SMALL_STATE(3925)] = 176503, + [SMALL_STATE(3926)] = 176521, + [SMALL_STATE(3927)] = 176549, + [SMALL_STATE(3928)] = 176567, + [SMALL_STATE(3929)] = 176585, + [SMALL_STATE(3930)] = 176603, + [SMALL_STATE(3931)] = 176621, + [SMALL_STATE(3932)] = 176639, + [SMALL_STATE(3933)] = 176657, + [SMALL_STATE(3934)] = 176675, + [SMALL_STATE(3935)] = 176690, + [SMALL_STATE(3936)] = 176705, + [SMALL_STATE(3937)] = 176732, + [SMALL_STATE(3938)] = 176755, + [SMALL_STATE(3939)] = 176782, + [SMALL_STATE(3940)] = 176798, + [SMALL_STATE(3941)] = 176814, + [SMALL_STATE(3942)] = 176830, + [SMALL_STATE(3943)] = 176854, + [SMALL_STATE(3944)] = 176878, + [SMALL_STATE(3945)] = 176894, + [SMALL_STATE(3946)] = 176910, + [SMALL_STATE(3947)] = 176932, + [SMALL_STATE(3948)] = 176948, + [SMALL_STATE(3949)] = 176964, + [SMALL_STATE(3950)] = 176980, + [SMALL_STATE(3951)] = 176996, + [SMALL_STATE(3952)] = 177018, + [SMALL_STATE(3953)] = 177042, + [SMALL_STATE(3954)] = 177058, + [SMALL_STATE(3955)] = 177082, + [SMALL_STATE(3956)] = 177098, + [SMALL_STATE(3957)] = 177122, + [SMALL_STATE(3958)] = 177138, + [SMALL_STATE(3959)] = 177162, + [SMALL_STATE(3960)] = 177184, + [SMALL_STATE(3961)] = 177200, + [SMALL_STATE(3962)] = 177216, + [SMALL_STATE(3963)] = 177232, + [SMALL_STATE(3964)] = 177248, + [SMALL_STATE(3965)] = 177264, + [SMALL_STATE(3966)] = 177280, + [SMALL_STATE(3967)] = 177296, + [SMALL_STATE(3968)] = 177311, + [SMALL_STATE(3969)] = 177332, + [SMALL_STATE(3970)] = 177353, + [SMALL_STATE(3971)] = 177368, + [SMALL_STATE(3972)] = 177389, + [SMALL_STATE(3973)] = 177410, + [SMALL_STATE(3974)] = 177425, + [SMALL_STATE(3975)] = 177440, + [SMALL_STATE(3976)] = 177455, + [SMALL_STATE(3977)] = 177476, + [SMALL_STATE(3978)] = 177497, + [SMALL_STATE(3979)] = 177512, + [SMALL_STATE(3980)] = 177527, + [SMALL_STATE(3981)] = 177542, + [SMALL_STATE(3982)] = 177563, + [SMALL_STATE(3983)] = 177578, + [SMALL_STATE(3984)] = 177593, + [SMALL_STATE(3985)] = 177614, + [SMALL_STATE(3986)] = 177629, + [SMALL_STATE(3987)] = 177644, + [SMALL_STATE(3988)] = 177665, + [SMALL_STATE(3989)] = 177686, + [SMALL_STATE(3990)] = 177701, + [SMALL_STATE(3991)] = 177716, + [SMALL_STATE(3992)] = 177731, + [SMALL_STATE(3993)] = 177752, + [SMALL_STATE(3994)] = 177767, + [SMALL_STATE(3995)] = 177782, + [SMALL_STATE(3996)] = 177803, + [SMALL_STATE(3997)] = 177818, + [SMALL_STATE(3998)] = 177839, + [SMALL_STATE(3999)] = 177854, + [SMALL_STATE(4000)] = 177869, + [SMALL_STATE(4001)] = 177890, + [SMALL_STATE(4002)] = 177905, + [SMALL_STATE(4003)] = 177926, + [SMALL_STATE(4004)] = 177941, + [SMALL_STATE(4005)] = 177962, + [SMALL_STATE(4006)] = 177977, + [SMALL_STATE(4007)] = 177992, + [SMALL_STATE(4008)] = 178013, + [SMALL_STATE(4009)] = 178034, + [SMALL_STATE(4010)] = 178053, + [SMALL_STATE(4011)] = 178068, + [SMALL_STATE(4012)] = 178089, + [SMALL_STATE(4013)] = 178110, + [SMALL_STATE(4014)] = 178131, + [SMALL_STATE(4015)] = 178152, + [SMALL_STATE(4016)] = 178173, + [SMALL_STATE(4017)] = 178194, + [SMALL_STATE(4018)] = 178209, + [SMALL_STATE(4019)] = 178230, + [SMALL_STATE(4020)] = 178245, + [SMALL_STATE(4021)] = 178266, + [SMALL_STATE(4022)] = 178281, + [SMALL_STATE(4023)] = 178302, + [SMALL_STATE(4024)] = 178322, + [SMALL_STATE(4025)] = 178342, + [SMALL_STATE(4026)] = 178362, + [SMALL_STATE(4027)] = 178382, + [SMALL_STATE(4028)] = 178402, + [SMALL_STATE(4029)] = 178422, + [SMALL_STATE(4030)] = 178442, + [SMALL_STATE(4031)] = 178462, + [SMALL_STATE(4032)] = 178478, + [SMALL_STATE(4033)] = 178498, + [SMALL_STATE(4034)] = 178518, + [SMALL_STATE(4035)] = 178532, + [SMALL_STATE(4036)] = 178552, + [SMALL_STATE(4037)] = 178570, + [SMALL_STATE(4038)] = 178590, + [SMALL_STATE(4039)] = 178610, + [SMALL_STATE(4040)] = 178630, + [SMALL_STATE(4041)] = 178650, + [SMALL_STATE(4042)] = 178670, + [SMALL_STATE(4043)] = 178690, + [SMALL_STATE(4044)] = 178710, + [SMALL_STATE(4045)] = 178730, + [SMALL_STATE(4046)] = 178750, + [SMALL_STATE(4047)] = 178770, + [SMALL_STATE(4048)] = 178790, + [SMALL_STATE(4049)] = 178807, + [SMALL_STATE(4050)] = 178824, + [SMALL_STATE(4051)] = 178841, + [SMALL_STATE(4052)] = 178860, + [SMALL_STATE(4053)] = 178877, + [SMALL_STATE(4054)] = 178894, + [SMALL_STATE(4055)] = 178911, + [SMALL_STATE(4056)] = 178926, + [SMALL_STATE(4057)] = 178943, + [SMALL_STATE(4058)] = 178962, + [SMALL_STATE(4059)] = 178979, + [SMALL_STATE(4060)] = 178994, + [SMALL_STATE(4061)] = 179011, + [SMALL_STATE(4062)] = 179028, + [SMALL_STATE(4063)] = 179043, + [SMALL_STATE(4064)] = 179060, + [SMALL_STATE(4065)] = 179075, + [SMALL_STATE(4066)] = 179090, + [SMALL_STATE(4067)] = 179107, + [SMALL_STATE(4068)] = 179124, + [SMALL_STATE(4069)] = 179141, + [SMALL_STATE(4070)] = 179158, + [SMALL_STATE(4071)] = 179175, + [SMALL_STATE(4072)] = 179194, + [SMALL_STATE(4073)] = 179209, + [SMALL_STATE(4074)] = 179226, + [SMALL_STATE(4075)] = 179241, + [SMALL_STATE(4076)] = 179260, + [SMALL_STATE(4077)] = 179279, + [SMALL_STATE(4078)] = 179296, + [SMALL_STATE(4079)] = 179313, + [SMALL_STATE(4080)] = 179328, + [SMALL_STATE(4081)] = 179345, + [SMALL_STATE(4082)] = 179360, + [SMALL_STATE(4083)] = 179377, + [SMALL_STATE(4084)] = 179396, + [SMALL_STATE(4085)] = 179413, + [SMALL_STATE(4086)] = 179430, + [SMALL_STATE(4087)] = 179445, + [SMALL_STATE(4088)] = 179460, + [SMALL_STATE(4089)] = 179477, + [SMALL_STATE(4090)] = 179494, + [SMALL_STATE(4091)] = 179513, + [SMALL_STATE(4092)] = 179530, + [SMALL_STATE(4093)] = 179547, + [SMALL_STATE(4094)] = 179557, + [SMALL_STATE(4095)] = 179567, + [SMALL_STATE(4096)] = 179583, + [SMALL_STATE(4097)] = 179599, + [SMALL_STATE(4098)] = 179609, + [SMALL_STATE(4099)] = 179619, + [SMALL_STATE(4100)] = 179635, + [SMALL_STATE(4101)] = 179651, + [SMALL_STATE(4102)] = 179667, + [SMALL_STATE(4103)] = 179677, + [SMALL_STATE(4104)] = 179687, + [SMALL_STATE(4105)] = 179703, + [SMALL_STATE(4106)] = 179713, + [SMALL_STATE(4107)] = 179729, + [SMALL_STATE(4108)] = 179745, + [SMALL_STATE(4109)] = 179755, + [SMALL_STATE(4110)] = 179771, + [SMALL_STATE(4111)] = 179781, + [SMALL_STATE(4112)] = 179791, + [SMALL_STATE(4113)] = 179801, + [SMALL_STATE(4114)] = 179815, + [SMALL_STATE(4115)] = 179825, + [SMALL_STATE(4116)] = 179835, + [SMALL_STATE(4117)] = 179845, + [SMALL_STATE(4118)] = 179855, + [SMALL_STATE(4119)] = 179865, + [SMALL_STATE(4120)] = 179881, + [SMALL_STATE(4121)] = 179891, + [SMALL_STATE(4122)] = 179901, + [SMALL_STATE(4123)] = 179911, + [SMALL_STATE(4124)] = 179921, + [SMALL_STATE(4125)] = 179931, + [SMALL_STATE(4126)] = 179941, + [SMALL_STATE(4127)] = 179953, + [SMALL_STATE(4128)] = 179963, + [SMALL_STATE(4129)] = 179973, + [SMALL_STATE(4130)] = 179989, + [SMALL_STATE(4131)] = 180003, + [SMALL_STATE(4132)] = 180013, + [SMALL_STATE(4133)] = 180023, + [SMALL_STATE(4134)] = 180033, + [SMALL_STATE(4135)] = 180045, + [SMALL_STATE(4136)] = 180059, + [SMALL_STATE(4137)] = 180069, + [SMALL_STATE(4138)] = 180079, + [SMALL_STATE(4139)] = 180089, + [SMALL_STATE(4140)] = 180099, + [SMALL_STATE(4141)] = 180113, + [SMALL_STATE(4142)] = 180123, + [SMALL_STATE(4143)] = 180137, + [SMALL_STATE(4144)] = 180147, + [SMALL_STATE(4145)] = 180157, + [SMALL_STATE(4146)] = 180167, + [SMALL_STATE(4147)] = 180183, + [SMALL_STATE(4148)] = 180197, + [SMALL_STATE(4149)] = 180207, + [SMALL_STATE(4150)] = 180217, + [SMALL_STATE(4151)] = 180233, + [SMALL_STATE(4152)] = 180243, + [SMALL_STATE(4153)] = 180253, + [SMALL_STATE(4154)] = 180263, + [SMALL_STATE(4155)] = 180277, + [SMALL_STATE(4156)] = 180290, + [SMALL_STATE(4157)] = 180303, + [SMALL_STATE(4158)] = 180316, + [SMALL_STATE(4159)] = 180329, + [SMALL_STATE(4160)] = 180342, + [SMALL_STATE(4161)] = 180355, + [SMALL_STATE(4162)] = 180366, + [SMALL_STATE(4163)] = 180377, + [SMALL_STATE(4164)] = 180388, + [SMALL_STATE(4165)] = 180399, + [SMALL_STATE(4166)] = 180412, + [SMALL_STATE(4167)] = 180425, + [SMALL_STATE(4168)] = 180438, + [SMALL_STATE(4169)] = 180449, + [SMALL_STATE(4170)] = 180462, + [SMALL_STATE(4171)] = 180475, + [SMALL_STATE(4172)] = 180486, + [SMALL_STATE(4173)] = 180499, + [SMALL_STATE(4174)] = 180512, + [SMALL_STATE(4175)] = 180525, + [SMALL_STATE(4176)] = 180536, + [SMALL_STATE(4177)] = 180549, + [SMALL_STATE(4178)] = 180560, + [SMALL_STATE(4179)] = 180573, + [SMALL_STATE(4180)] = 180586, + [SMALL_STATE(4181)] = 180597, + [SMALL_STATE(4182)] = 180610, + [SMALL_STATE(4183)] = 180621, + [SMALL_STATE(4184)] = 180634, + [SMALL_STATE(4185)] = 180645, + [SMALL_STATE(4186)] = 180658, + [SMALL_STATE(4187)] = 180669, + [SMALL_STATE(4188)] = 180682, + [SMALL_STATE(4189)] = 180695, + [SMALL_STATE(4190)] = 180708, + [SMALL_STATE(4191)] = 180721, + [SMALL_STATE(4192)] = 180734, + [SMALL_STATE(4193)] = 180747, + [SMALL_STATE(4194)] = 180760, + [SMALL_STATE(4195)] = 180771, + [SMALL_STATE(4196)] = 180784, + [SMALL_STATE(4197)] = 180795, + [SMALL_STATE(4198)] = 180806, + [SMALL_STATE(4199)] = 180819, + [SMALL_STATE(4200)] = 180828, + [SMALL_STATE(4201)] = 180839, + [SMALL_STATE(4202)] = 180850, + [SMALL_STATE(4203)] = 180863, + [SMALL_STATE(4204)] = 180874, + [SMALL_STATE(4205)] = 180887, + [SMALL_STATE(4206)] = 180900, + [SMALL_STATE(4207)] = 180913, + [SMALL_STATE(4208)] = 180926, + [SMALL_STATE(4209)] = 180939, + [SMALL_STATE(4210)] = 180952, + [SMALL_STATE(4211)] = 180965, + [SMALL_STATE(4212)] = 180978, + [SMALL_STATE(4213)] = 180991, + [SMALL_STATE(4214)] = 181002, + [SMALL_STATE(4215)] = 181015, + [SMALL_STATE(4216)] = 181028, + [SMALL_STATE(4217)] = 181039, + [SMALL_STATE(4218)] = 181052, + [SMALL_STATE(4219)] = 181065, + [SMALL_STATE(4220)] = 181078, + [SMALL_STATE(4221)] = 181091, + [SMALL_STATE(4222)] = 181104, + [SMALL_STATE(4223)] = 181117, + [SMALL_STATE(4224)] = 181128, + [SMALL_STATE(4225)] = 181141, + [SMALL_STATE(4226)] = 181154, + [SMALL_STATE(4227)] = 181167, + [SMALL_STATE(4228)] = 181178, + [SMALL_STATE(4229)] = 181191, + [SMALL_STATE(4230)] = 181204, + [SMALL_STATE(4231)] = 181217, + [SMALL_STATE(4232)] = 181230, + [SMALL_STATE(4233)] = 181243, + [SMALL_STATE(4234)] = 181256, + [SMALL_STATE(4235)] = 181269, + [SMALL_STATE(4236)] = 181282, + [SMALL_STATE(4237)] = 181295, + [SMALL_STATE(4238)] = 181306, + [SMALL_STATE(4239)] = 181319, + [SMALL_STATE(4240)] = 181332, + [SMALL_STATE(4241)] = 181343, + [SMALL_STATE(4242)] = 181356, + [SMALL_STATE(4243)] = 181369, + [SMALL_STATE(4244)] = 181382, + [SMALL_STATE(4245)] = 181395, + [SMALL_STATE(4246)] = 181406, + [SMALL_STATE(4247)] = 181419, + [SMALL_STATE(4248)] = 181432, + [SMALL_STATE(4249)] = 181443, + [SMALL_STATE(4250)] = 181456, + [SMALL_STATE(4251)] = 181469, + [SMALL_STATE(4252)] = 181482, + [SMALL_STATE(4253)] = 181495, + [SMALL_STATE(4254)] = 181508, + [SMALL_STATE(4255)] = 181521, + [SMALL_STATE(4256)] = 181534, + [SMALL_STATE(4257)] = 181547, + [SMALL_STATE(4258)] = 181560, + [SMALL_STATE(4259)] = 181571, + [SMALL_STATE(4260)] = 181584, + [SMALL_STATE(4261)] = 181597, + [SMALL_STATE(4262)] = 181608, + [SMALL_STATE(4263)] = 181621, + [SMALL_STATE(4264)] = 181634, + [SMALL_STATE(4265)] = 181647, + [SMALL_STATE(4266)] = 181660, + [SMALL_STATE(4267)] = 181673, + [SMALL_STATE(4268)] = 181686, + [SMALL_STATE(4269)] = 181699, + [SMALL_STATE(4270)] = 181712, + [SMALL_STATE(4271)] = 181725, + [SMALL_STATE(4272)] = 181736, + [SMALL_STATE(4273)] = 181749, + [SMALL_STATE(4274)] = 181762, + [SMALL_STATE(4275)] = 181775, + [SMALL_STATE(4276)] = 181786, + [SMALL_STATE(4277)] = 181799, + [SMALL_STATE(4278)] = 181812, + [SMALL_STATE(4279)] = 181825, + [SMALL_STATE(4280)] = 181838, + [SMALL_STATE(4281)] = 181851, + [SMALL_STATE(4282)] = 181864, + [SMALL_STATE(4283)] = 181877, + [SMALL_STATE(4284)] = 181890, + [SMALL_STATE(4285)] = 181903, + [SMALL_STATE(4286)] = 181916, + [SMALL_STATE(4287)] = 181929, + [SMALL_STATE(4288)] = 181942, + [SMALL_STATE(4289)] = 181953, + [SMALL_STATE(4290)] = 181966, + [SMALL_STATE(4291)] = 181979, + [SMALL_STATE(4292)] = 181992, + [SMALL_STATE(4293)] = 182003, + [SMALL_STATE(4294)] = 182016, + [SMALL_STATE(4295)] = 182026, + [SMALL_STATE(4296)] = 182034, + [SMALL_STATE(4297)] = 182044, + [SMALL_STATE(4298)] = 182054, + [SMALL_STATE(4299)] = 182062, + [SMALL_STATE(4300)] = 182070, + [SMALL_STATE(4301)] = 182078, + [SMALL_STATE(4302)] = 182088, + [SMALL_STATE(4303)] = 182096, + [SMALL_STATE(4304)] = 182106, + [SMALL_STATE(4305)] = 182114, + [SMALL_STATE(4306)] = 182122, + [SMALL_STATE(4307)] = 182130, + [SMALL_STATE(4308)] = 182138, + [SMALL_STATE(4309)] = 182146, + [SMALL_STATE(4310)] = 182156, + [SMALL_STATE(4311)] = 182166, + [SMALL_STATE(4312)] = 182174, + [SMALL_STATE(4313)] = 182184, + [SMALL_STATE(4314)] = 182194, + [SMALL_STATE(4315)] = 182204, + [SMALL_STATE(4316)] = 182214, + [SMALL_STATE(4317)] = 182224, + [SMALL_STATE(4318)] = 182232, + [SMALL_STATE(4319)] = 182242, + [SMALL_STATE(4320)] = 182252, + [SMALL_STATE(4321)] = 182262, + [SMALL_STATE(4322)] = 182270, + [SMALL_STATE(4323)] = 182280, + [SMALL_STATE(4324)] = 182290, + [SMALL_STATE(4325)] = 182300, + [SMALL_STATE(4326)] = 182310, + [SMALL_STATE(4327)] = 182320, + [SMALL_STATE(4328)] = 182330, + [SMALL_STATE(4329)] = 182340, + [SMALL_STATE(4330)] = 182350, + [SMALL_STATE(4331)] = 182360, + [SMALL_STATE(4332)] = 182370, + [SMALL_STATE(4333)] = 182380, + [SMALL_STATE(4334)] = 182388, + [SMALL_STATE(4335)] = 182398, + [SMALL_STATE(4336)] = 182408, + [SMALL_STATE(4337)] = 182418, + [SMALL_STATE(4338)] = 182428, + [SMALL_STATE(4339)] = 182436, + [SMALL_STATE(4340)] = 182446, + [SMALL_STATE(4341)] = 182454, + [SMALL_STATE(4342)] = 182464, + [SMALL_STATE(4343)] = 182472, + [SMALL_STATE(4344)] = 182480, + [SMALL_STATE(4345)] = 182490, + [SMALL_STATE(4346)] = 182500, + [SMALL_STATE(4347)] = 182510, + [SMALL_STATE(4348)] = 182520, + [SMALL_STATE(4349)] = 182528, + [SMALL_STATE(4350)] = 182536, + [SMALL_STATE(4351)] = 182546, + [SMALL_STATE(4352)] = 182556, + [SMALL_STATE(4353)] = 182566, + [SMALL_STATE(4354)] = 182576, + [SMALL_STATE(4355)] = 182586, + [SMALL_STATE(4356)] = 182596, + [SMALL_STATE(4357)] = 182606, + [SMALL_STATE(4358)] = 182616, + [SMALL_STATE(4359)] = 182624, + [SMALL_STATE(4360)] = 182632, + [SMALL_STATE(4361)] = 182640, + [SMALL_STATE(4362)] = 182650, + [SMALL_STATE(4363)] = 182660, + [SMALL_STATE(4364)] = 182668, + [SMALL_STATE(4365)] = 182676, + [SMALL_STATE(4366)] = 182686, + [SMALL_STATE(4367)] = 182694, + [SMALL_STATE(4368)] = 182702, + [SMALL_STATE(4369)] = 182712, + [SMALL_STATE(4370)] = 182720, + [SMALL_STATE(4371)] = 182728, + [SMALL_STATE(4372)] = 182738, + [SMALL_STATE(4373)] = 182746, + [SMALL_STATE(4374)] = 182754, + [SMALL_STATE(4375)] = 182764, + [SMALL_STATE(4376)] = 182774, + [SMALL_STATE(4377)] = 182782, + [SMALL_STATE(4378)] = 182792, + [SMALL_STATE(4379)] = 182802, + [SMALL_STATE(4380)] = 182810, + [SMALL_STATE(4381)] = 182820, + [SMALL_STATE(4382)] = 182830, + [SMALL_STATE(4383)] = 182838, + [SMALL_STATE(4384)] = 182846, + [SMALL_STATE(4385)] = 182856, + [SMALL_STATE(4386)] = 182866, + [SMALL_STATE(4387)] = 182874, + [SMALL_STATE(4388)] = 182882, + [SMALL_STATE(4389)] = 182892, + [SMALL_STATE(4390)] = 182902, + [SMALL_STATE(4391)] = 182912, + [SMALL_STATE(4392)] = 182920, + [SMALL_STATE(4393)] = 182930, + [SMALL_STATE(4394)] = 182940, + [SMALL_STATE(4395)] = 182948, + [SMALL_STATE(4396)] = 182958, + [SMALL_STATE(4397)] = 182966, + [SMALL_STATE(4398)] = 182976, + [SMALL_STATE(4399)] = 182986, + [SMALL_STATE(4400)] = 182996, + [SMALL_STATE(4401)] = 183006, + [SMALL_STATE(4402)] = 183016, + [SMALL_STATE(4403)] = 183026, + [SMALL_STATE(4404)] = 183033, + [SMALL_STATE(4405)] = 183040, + [SMALL_STATE(4406)] = 183047, + [SMALL_STATE(4407)] = 183054, + [SMALL_STATE(4408)] = 183061, + [SMALL_STATE(4409)] = 183068, + [SMALL_STATE(4410)] = 183075, + [SMALL_STATE(4411)] = 183082, + [SMALL_STATE(4412)] = 183089, + [SMALL_STATE(4413)] = 183096, + [SMALL_STATE(4414)] = 183103, + [SMALL_STATE(4415)] = 183110, + [SMALL_STATE(4416)] = 183117, + [SMALL_STATE(4417)] = 183124, + [SMALL_STATE(4418)] = 183131, + [SMALL_STATE(4419)] = 183138, + [SMALL_STATE(4420)] = 183145, + [SMALL_STATE(4421)] = 183152, + [SMALL_STATE(4422)] = 183159, + [SMALL_STATE(4423)] = 183166, + [SMALL_STATE(4424)] = 183173, + [SMALL_STATE(4425)] = 183180, + [SMALL_STATE(4426)] = 183187, + [SMALL_STATE(4427)] = 183194, + [SMALL_STATE(4428)] = 183201, + [SMALL_STATE(4429)] = 183208, + [SMALL_STATE(4430)] = 183215, + [SMALL_STATE(4431)] = 183222, + [SMALL_STATE(4432)] = 183229, + [SMALL_STATE(4433)] = 183236, + [SMALL_STATE(4434)] = 183243, + [SMALL_STATE(4435)] = 183250, + [SMALL_STATE(4436)] = 183257, + [SMALL_STATE(4437)] = 183264, + [SMALL_STATE(4438)] = 183271, + [SMALL_STATE(4439)] = 183278, + [SMALL_STATE(4440)] = 183285, + [SMALL_STATE(4441)] = 183292, + [SMALL_STATE(4442)] = 183299, + [SMALL_STATE(4443)] = 183306, + [SMALL_STATE(4444)] = 183313, + [SMALL_STATE(4445)] = 183320, + [SMALL_STATE(4446)] = 183327, + [SMALL_STATE(4447)] = 183334, + [SMALL_STATE(4448)] = 183341, + [SMALL_STATE(4449)] = 183348, + [SMALL_STATE(4450)] = 183355, + [SMALL_STATE(4451)] = 183362, + [SMALL_STATE(4452)] = 183369, + [SMALL_STATE(4453)] = 183376, + [SMALL_STATE(4454)] = 183383, + [SMALL_STATE(4455)] = 183390, + [SMALL_STATE(4456)] = 183397, + [SMALL_STATE(4457)] = 183404, + [SMALL_STATE(4458)] = 183411, + [SMALL_STATE(4459)] = 183418, + [SMALL_STATE(4460)] = 183425, + [SMALL_STATE(4461)] = 183432, + [SMALL_STATE(4462)] = 183439, + [SMALL_STATE(4463)] = 183446, + [SMALL_STATE(4464)] = 183453, + [SMALL_STATE(4465)] = 183460, + [SMALL_STATE(4466)] = 183467, + [SMALL_STATE(4467)] = 183474, + [SMALL_STATE(4468)] = 183481, + [SMALL_STATE(4469)] = 183488, + [SMALL_STATE(4470)] = 183495, + [SMALL_STATE(4471)] = 183502, + [SMALL_STATE(4472)] = 183509, + [SMALL_STATE(4473)] = 183516, + [SMALL_STATE(4474)] = 183523, + [SMALL_STATE(4475)] = 183530, + [SMALL_STATE(4476)] = 183537, + [SMALL_STATE(4477)] = 183544, + [SMALL_STATE(4478)] = 183551, + [SMALL_STATE(4479)] = 183558, + [SMALL_STATE(4480)] = 183565, + [SMALL_STATE(4481)] = 183572, + [SMALL_STATE(4482)] = 183579, + [SMALL_STATE(4483)] = 183586, + [SMALL_STATE(4484)] = 183593, + [SMALL_STATE(4485)] = 183600, + [SMALL_STATE(4486)] = 183607, + [SMALL_STATE(4487)] = 183614, + [SMALL_STATE(4488)] = 183621, + [SMALL_STATE(4489)] = 183628, + [SMALL_STATE(4490)] = 183635, + [SMALL_STATE(4491)] = 183642, + [SMALL_STATE(4492)] = 183649, + [SMALL_STATE(4493)] = 183656, + [SMALL_STATE(4494)] = 183663, + [SMALL_STATE(4495)] = 183670, + [SMALL_STATE(4496)] = 183677, + [SMALL_STATE(4497)] = 183684, + [SMALL_STATE(4498)] = 183691, + [SMALL_STATE(4499)] = 183698, + [SMALL_STATE(4500)] = 183705, + [SMALL_STATE(4501)] = 183712, + [SMALL_STATE(4502)] = 183719, + [SMALL_STATE(4503)] = 183726, + [SMALL_STATE(4504)] = 183733, + [SMALL_STATE(4505)] = 183740, + [SMALL_STATE(4506)] = 183747, + [SMALL_STATE(4507)] = 183754, + [SMALL_STATE(4508)] = 183761, + [SMALL_STATE(4509)] = 183768, + [SMALL_STATE(4510)] = 183775, + [SMALL_STATE(4511)] = 183782, + [SMALL_STATE(4512)] = 183789, + [SMALL_STATE(4513)] = 183796, + [SMALL_STATE(4514)] = 183803, + [SMALL_STATE(4515)] = 183810, + [SMALL_STATE(4516)] = 183817, + [SMALL_STATE(4517)] = 183824, + [SMALL_STATE(4518)] = 183831, + [SMALL_STATE(4519)] = 183838, + [SMALL_STATE(4520)] = 183845, + [SMALL_STATE(4521)] = 183852, + [SMALL_STATE(4522)] = 183859, + [SMALL_STATE(4523)] = 183866, + [SMALL_STATE(4524)] = 183873, + [SMALL_STATE(4525)] = 183880, + [SMALL_STATE(4526)] = 183887, + [SMALL_STATE(4527)] = 183894, + [SMALL_STATE(4528)] = 183901, + [SMALL_STATE(4529)] = 183908, + [SMALL_STATE(4530)] = 183915, + [SMALL_STATE(4531)] = 183922, + [SMALL_STATE(4532)] = 183929, + [SMALL_STATE(4533)] = 183936, + [SMALL_STATE(4534)] = 183943, + [SMALL_STATE(4535)] = 183950, + [SMALL_STATE(4536)] = 183957, + [SMALL_STATE(4537)] = 183964, + [SMALL_STATE(4538)] = 183971, + [SMALL_STATE(4539)] = 183978, + [SMALL_STATE(4540)] = 183985, + [SMALL_STATE(4541)] = 183992, + [SMALL_STATE(4542)] = 183999, + [SMALL_STATE(4543)] = 184006, + [SMALL_STATE(4544)] = 184013, + [SMALL_STATE(4545)] = 184020, + [SMALL_STATE(4546)] = 184027, + [SMALL_STATE(4547)] = 184034, + [SMALL_STATE(4548)] = 184041, + [SMALL_STATE(4549)] = 184048, + [SMALL_STATE(4550)] = 184055, + [SMALL_STATE(4551)] = 184062, + [SMALL_STATE(4552)] = 184069, + [SMALL_STATE(4553)] = 184076, + [SMALL_STATE(4554)] = 184083, + [SMALL_STATE(4555)] = 184090, + [SMALL_STATE(4556)] = 184097, + [SMALL_STATE(4557)] = 184104, + [SMALL_STATE(4558)] = 184111, + [SMALL_STATE(4559)] = 184118, + [SMALL_STATE(4560)] = 184125, + [SMALL_STATE(4561)] = 184132, + [SMALL_STATE(4562)] = 184139, + [SMALL_STATE(4563)] = 184146, + [SMALL_STATE(4564)] = 184153, + [SMALL_STATE(4565)] = 184160, + [SMALL_STATE(4566)] = 184167, + [SMALL_STATE(4567)] = 184174, + [SMALL_STATE(4568)] = 184181, + [SMALL_STATE(4569)] = 184188, + [SMALL_STATE(4570)] = 184195, + [SMALL_STATE(4571)] = 184202, + [SMALL_STATE(4572)] = 184209, + [SMALL_STATE(4573)] = 184216, + [SMALL_STATE(4574)] = 184223, + [SMALL_STATE(4575)] = 184230, + [SMALL_STATE(4576)] = 184237, + [SMALL_STATE(4577)] = 184244, + [SMALL_STATE(4578)] = 184251, + [SMALL_STATE(4579)] = 184258, + [SMALL_STATE(4580)] = 184265, + [SMALL_STATE(4581)] = 184272, + [SMALL_STATE(4582)] = 184279, + [SMALL_STATE(4583)] = 184286, + [SMALL_STATE(4584)] = 184293, + [SMALL_STATE(4585)] = 184300, + [SMALL_STATE(4586)] = 184307, + [SMALL_STATE(4587)] = 184314, + [SMALL_STATE(4588)] = 184321, + [SMALL_STATE(4589)] = 184328, + [SMALL_STATE(4590)] = 184335, + [SMALL_STATE(4591)] = 184342, + [SMALL_STATE(4592)] = 184349, + [SMALL_STATE(4593)] = 184356, + [SMALL_STATE(4594)] = 184363, + [SMALL_STATE(4595)] = 184370, + [SMALL_STATE(4596)] = 184377, + [SMALL_STATE(4597)] = 184384, + [SMALL_STATE(4598)] = 184391, + [SMALL_STATE(4599)] = 184398, + [SMALL_STATE(4600)] = 184405, + [SMALL_STATE(4601)] = 184412, + [SMALL_STATE(4602)] = 184419, + [SMALL_STATE(4603)] = 184426, + [SMALL_STATE(4604)] = 184433, + [SMALL_STATE(4605)] = 184440, + [SMALL_STATE(4606)] = 184447, + [SMALL_STATE(4607)] = 184454, + [SMALL_STATE(4608)] = 184461, + [SMALL_STATE(4609)] = 184468, + [SMALL_STATE(4610)] = 184475, + [SMALL_STATE(4611)] = 184482, + [SMALL_STATE(4612)] = 184489, + [SMALL_STATE(4613)] = 184496, + [SMALL_STATE(4614)] = 184503, + [SMALL_STATE(4615)] = 184510, + [SMALL_STATE(4616)] = 184517, + [SMALL_STATE(4617)] = 184524, + [SMALL_STATE(4618)] = 184531, + [SMALL_STATE(4619)] = 184538, + [SMALL_STATE(4620)] = 184545, + [SMALL_STATE(4621)] = 184552, + [SMALL_STATE(4622)] = 184559, + [SMALL_STATE(4623)] = 184566, + [SMALL_STATE(4624)] = 184573, + [SMALL_STATE(4625)] = 184580, + [SMALL_STATE(4626)] = 184587, + [SMALL_STATE(4627)] = 184594, + [SMALL_STATE(4628)] = 184601, + [SMALL_STATE(4629)] = 184608, + [SMALL_STATE(4630)] = 184615, + [SMALL_STATE(4631)] = 184622, + [SMALL_STATE(4632)] = 184629, + [SMALL_STATE(4633)] = 184636, + [SMALL_STATE(4634)] = 184643, + [SMALL_STATE(4635)] = 184650, + [SMALL_STATE(4636)] = 184657, + [SMALL_STATE(4637)] = 184664, + [SMALL_STATE(4638)] = 184671, + [SMALL_STATE(4639)] = 184678, + [SMALL_STATE(4640)] = 184685, + [SMALL_STATE(4641)] = 184692, + [SMALL_STATE(4642)] = 184699, + [SMALL_STATE(4643)] = 184706, + [SMALL_STATE(4644)] = 184713, + [SMALL_STATE(4645)] = 184720, + [SMALL_STATE(4646)] = 184727, + [SMALL_STATE(4647)] = 184734, + [SMALL_STATE(4648)] = 184741, + [SMALL_STATE(4649)] = 184748, + [SMALL_STATE(4650)] = 184755, + [SMALL_STATE(4651)] = 184762, + [SMALL_STATE(4652)] = 184769, + [SMALL_STATE(4653)] = 184776, + [SMALL_STATE(4654)] = 184783, + [SMALL_STATE(4655)] = 184790, + [SMALL_STATE(4656)] = 184797, + [SMALL_STATE(4657)] = 184804, + [SMALL_STATE(4658)] = 184811, + [SMALL_STATE(4659)] = 184818, + [SMALL_STATE(4660)] = 184825, + [SMALL_STATE(4661)] = 184832, + [SMALL_STATE(4662)] = 184839, + [SMALL_STATE(4663)] = 184846, + [SMALL_STATE(4664)] = 184853, + [SMALL_STATE(4665)] = 184860, + [SMALL_STATE(4666)] = 184867, + [SMALL_STATE(4667)] = 184874, + [SMALL_STATE(4668)] = 184881, + [SMALL_STATE(4669)] = 184888, + [SMALL_STATE(4670)] = 184895, + [SMALL_STATE(4671)] = 184902, + [SMALL_STATE(4672)] = 184909, + [SMALL_STATE(4673)] = 184916, + [SMALL_STATE(4674)] = 184923, + [SMALL_STATE(4675)] = 184930, + [SMALL_STATE(4676)] = 184937, + [SMALL_STATE(4677)] = 184944, + [SMALL_STATE(4678)] = 184951, + [SMALL_STATE(4679)] = 184958, + [SMALL_STATE(4680)] = 184965, + [SMALL_STATE(4681)] = 184972, + [SMALL_STATE(4682)] = 184979, + [SMALL_STATE(4683)] = 184986, + [SMALL_STATE(4684)] = 184993, + [SMALL_STATE(4685)] = 185000, + [SMALL_STATE(4686)] = 185007, + [SMALL_STATE(4687)] = 185014, + [SMALL_STATE(4688)] = 185021, + [SMALL_STATE(4689)] = 185028, + [SMALL_STATE(4690)] = 185035, + [SMALL_STATE(4691)] = 185042, + [SMALL_STATE(4692)] = 185049, + [SMALL_STATE(4693)] = 185056, + [SMALL_STATE(4694)] = 185063, + [SMALL_STATE(4695)] = 185070, + [SMALL_STATE(4696)] = 185077, + [SMALL_STATE(4697)] = 185084, + [SMALL_STATE(4698)] = 185091, + [SMALL_STATE(4699)] = 185098, + [SMALL_STATE(4700)] = 185105, + [SMALL_STATE(4701)] = 185112, + [SMALL_STATE(4702)] = 185119, + [SMALL_STATE(4703)] = 185126, + [SMALL_STATE(4704)] = 185133, + [SMALL_STATE(4705)] = 185140, + [SMALL_STATE(4706)] = 185147, + [SMALL_STATE(4707)] = 185154, + [SMALL_STATE(4708)] = 185161, + [SMALL_STATE(4709)] = 185168, + [SMALL_STATE(4710)] = 185175, + [SMALL_STATE(4711)] = 185182, + [SMALL_STATE(4712)] = 185189, + [SMALL_STATE(4713)] = 185196, + [SMALL_STATE(4714)] = 185203, + [SMALL_STATE(4715)] = 185210, + [SMALL_STATE(4716)] = 185217, + [SMALL_STATE(4717)] = 185224, + [SMALL_STATE(4718)] = 185231, + [SMALL_STATE(4719)] = 185238, + [SMALL_STATE(4720)] = 185245, + [SMALL_STATE(4721)] = 185252, + [SMALL_STATE(4722)] = 185259, + [SMALL_STATE(4723)] = 185266, + [SMALL_STATE(4724)] = 185273, + [SMALL_STATE(4725)] = 185280, + [SMALL_STATE(4726)] = 185287, + [SMALL_STATE(4727)] = 185294, + [SMALL_STATE(4728)] = 185301, + [SMALL_STATE(4729)] = 185308, + [SMALL_STATE(4730)] = 185315, + [SMALL_STATE(4731)] = 185322, + [SMALL_STATE(4732)] = 185329, + [SMALL_STATE(4733)] = 185336, + [SMALL_STATE(4734)] = 185343, + [SMALL_STATE(4735)] = 185350, + [SMALL_STATE(4736)] = 185357, + [SMALL_STATE(4737)] = 185364, + [SMALL_STATE(4738)] = 185371, + [SMALL_STATE(4739)] = 185378, + [SMALL_STATE(4740)] = 185385, + [SMALL_STATE(4741)] = 185392, + [SMALL_STATE(4742)] = 185399, + [SMALL_STATE(4743)] = 185406, + [SMALL_STATE(4744)] = 185413, + [SMALL_STATE(4745)] = 185420, + [SMALL_STATE(4746)] = 185427, + [SMALL_STATE(4747)] = 185434, + [SMALL_STATE(4748)] = 185441, + [SMALL_STATE(4749)] = 185448, + [SMALL_STATE(4750)] = 185455, + [SMALL_STATE(4751)] = 185462, + [SMALL_STATE(4752)] = 185469, + [SMALL_STATE(4753)] = 185476, + [SMALL_STATE(4754)] = 185483, + [SMALL_STATE(4755)] = 185490, + [SMALL_STATE(4756)] = 185497, + [SMALL_STATE(4757)] = 185504, + [SMALL_STATE(4758)] = 185511, + [SMALL_STATE(4759)] = 185518, + [SMALL_STATE(4760)] = 185525, + [SMALL_STATE(4761)] = 185532, + [SMALL_STATE(4762)] = 185539, + [SMALL_STATE(4763)] = 185546, + [SMALL_STATE(4764)] = 185553, + [SMALL_STATE(4765)] = 185560, + [SMALL_STATE(4766)] = 185567, + [SMALL_STATE(4767)] = 185574, + [SMALL_STATE(4768)] = 185581, + [SMALL_STATE(4769)] = 185588, + [SMALL_STATE(4770)] = 185595, + [SMALL_STATE(4771)] = 185602, + [SMALL_STATE(4772)] = 185609, + [SMALL_STATE(4773)] = 185616, + [SMALL_STATE(4774)] = 185623, + [SMALL_STATE(4775)] = 185630, + [SMALL_STATE(4776)] = 185637, + [SMALL_STATE(4777)] = 185644, + [SMALL_STATE(4778)] = 185651, + [SMALL_STATE(4779)] = 185658, + [SMALL_STATE(4780)] = 185665, + [SMALL_STATE(4781)] = 185672, + [SMALL_STATE(4782)] = 185679, + [SMALL_STATE(4783)] = 185686, + [SMALL_STATE(4784)] = 185693, + [SMALL_STATE(4785)] = 185700, + [SMALL_STATE(4786)] = 185707, + [SMALL_STATE(4787)] = 185714, + [SMALL_STATE(4788)] = 185721, + [SMALL_STATE(4789)] = 185728, + [SMALL_STATE(4790)] = 185735, + [SMALL_STATE(4791)] = 185742, + [SMALL_STATE(4792)] = 185749, + [SMALL_STATE(4793)] = 185756, + [SMALL_STATE(4794)] = 185763, + [SMALL_STATE(4795)] = 185770, + [SMALL_STATE(4796)] = 185777, + [SMALL_STATE(4797)] = 185784, + [SMALL_STATE(4798)] = 185791, + [SMALL_STATE(4799)] = 185798, + [SMALL_STATE(4800)] = 185805, + [SMALL_STATE(4801)] = 185812, + [SMALL_STATE(4802)] = 185819, + [SMALL_STATE(4803)] = 185826, + [SMALL_STATE(4804)] = 185833, + [SMALL_STATE(4805)] = 185840, + [SMALL_STATE(4806)] = 185847, + [SMALL_STATE(4807)] = 185854, + [SMALL_STATE(4808)] = 185861, + [SMALL_STATE(4809)] = 185868, + [SMALL_STATE(4810)] = 185875, + [SMALL_STATE(4811)] = 185882, + [SMALL_STATE(4812)] = 185889, + [SMALL_STATE(4813)] = 185896, + [SMALL_STATE(4814)] = 185903, + [SMALL_STATE(4815)] = 185910, + [SMALL_STATE(4816)] = 185917, + [SMALL_STATE(4817)] = 185924, + [SMALL_STATE(4818)] = 185931, + [SMALL_STATE(4819)] = 185938, + [SMALL_STATE(4820)] = 185945, + [SMALL_STATE(4821)] = 185952, + [SMALL_STATE(4822)] = 185959, + [SMALL_STATE(4823)] = 185966, + [SMALL_STATE(4824)] = 185973, + [SMALL_STATE(4825)] = 185980, + [SMALL_STATE(4826)] = 185987, + [SMALL_STATE(4827)] = 185994, + [SMALL_STATE(4828)] = 186001, + [SMALL_STATE(4829)] = 186008, + [SMALL_STATE(4830)] = 186015, + [SMALL_STATE(4831)] = 186022, + [SMALL_STATE(4832)] = 186029, + [SMALL_STATE(4833)] = 186036, + [SMALL_STATE(4834)] = 186043, + [SMALL_STATE(4835)] = 186050, + [SMALL_STATE(4836)] = 186057, + [SMALL_STATE(4837)] = 186064, + [SMALL_STATE(4838)] = 186071, + [SMALL_STATE(4839)] = 186078, + [SMALL_STATE(4840)] = 186085, + [SMALL_STATE(4841)] = 186092, + [SMALL_STATE(4842)] = 186099, + [SMALL_STATE(4843)] = 186106, + [SMALL_STATE(4844)] = 186113, + [SMALL_STATE(4845)] = 186120, + [SMALL_STATE(4846)] = 186127, + [SMALL_STATE(4847)] = 186134, + [SMALL_STATE(4848)] = 186141, + [SMALL_STATE(4849)] = 186148, + [SMALL_STATE(4850)] = 186155, + [SMALL_STATE(4851)] = 186162, + [SMALL_STATE(4852)] = 186169, + [SMALL_STATE(4853)] = 186176, + [SMALL_STATE(4854)] = 186183, + [SMALL_STATE(4855)] = 186190, + [SMALL_STATE(4856)] = 186197, + [SMALL_STATE(4857)] = 186204, + [SMALL_STATE(4858)] = 186211, + [SMALL_STATE(4859)] = 186218, + [SMALL_STATE(4860)] = 186225, + [SMALL_STATE(4861)] = 186232, + [SMALL_STATE(4862)] = 186239, + [SMALL_STATE(4863)] = 186246, + [SMALL_STATE(4864)] = 186253, + [SMALL_STATE(4865)] = 186260, + [SMALL_STATE(4866)] = 186267, + [SMALL_STATE(4867)] = 186274, + [SMALL_STATE(4868)] = 186281, + [SMALL_STATE(4869)] = 186288, + [SMALL_STATE(4870)] = 186295, + [SMALL_STATE(4871)] = 186302, + [SMALL_STATE(4872)] = 186309, + [SMALL_STATE(4873)] = 186316, + [SMALL_STATE(4874)] = 186323, + [SMALL_STATE(4875)] = 186330, + [SMALL_STATE(4876)] = 186337, + [SMALL_STATE(4877)] = 186344, + [SMALL_STATE(4878)] = 186351, + [SMALL_STATE(4879)] = 186358, + [SMALL_STATE(4880)] = 186365, + [SMALL_STATE(4881)] = 186372, + [SMALL_STATE(4882)] = 186379, + [SMALL_STATE(4883)] = 186386, + [SMALL_STATE(4884)] = 186393, + [SMALL_STATE(4885)] = 186400, + [SMALL_STATE(4886)] = 186407, + [SMALL_STATE(4887)] = 186414, + [SMALL_STATE(4888)] = 186421, + [SMALL_STATE(4889)] = 186428, + [SMALL_STATE(4890)] = 186435, + [SMALL_STATE(4891)] = 186442, + [SMALL_STATE(4892)] = 186449, + [SMALL_STATE(4893)] = 186456, + [SMALL_STATE(4894)] = 186463, + [SMALL_STATE(4895)] = 186470, + [SMALL_STATE(4896)] = 186477, + [SMALL_STATE(4897)] = 186484, + [SMALL_STATE(4898)] = 186491, + [SMALL_STATE(4899)] = 186498, + [SMALL_STATE(4900)] = 186505, + [SMALL_STATE(4901)] = 186512, + [SMALL_STATE(4902)] = 186519, + [SMALL_STATE(4903)] = 186526, + [SMALL_STATE(4904)] = 186533, + [SMALL_STATE(4905)] = 186540, + [SMALL_STATE(4906)] = 186547, + [SMALL_STATE(4907)] = 186554, + [SMALL_STATE(4908)] = 186561, + [SMALL_STATE(4909)] = 186568, + [SMALL_STATE(4910)] = 186575, + [SMALL_STATE(4911)] = 186582, + [SMALL_STATE(4912)] = 186589, + [SMALL_STATE(4913)] = 186596, + [SMALL_STATE(4914)] = 186603, + [SMALL_STATE(4915)] = 186610, + [SMALL_STATE(4916)] = 186617, + [SMALL_STATE(4917)] = 186624, + [SMALL_STATE(4918)] = 186631, + [SMALL_STATE(4919)] = 186638, + [SMALL_STATE(4920)] = 186645, + [SMALL_STATE(4921)] = 186652, + [SMALL_STATE(4922)] = 186659, + [SMALL_STATE(4923)] = 186666, + [SMALL_STATE(4924)] = 186673, + [SMALL_STATE(4925)] = 186680, + [SMALL_STATE(4926)] = 186687, + [SMALL_STATE(4927)] = 186694, + [SMALL_STATE(4928)] = 186701, + [SMALL_STATE(4929)] = 186708, + [SMALL_STATE(4930)] = 186715, + [SMALL_STATE(4931)] = 186722, + [SMALL_STATE(4932)] = 186729, + [SMALL_STATE(4933)] = 186736, + [SMALL_STATE(4934)] = 186743, + [SMALL_STATE(4935)] = 186750, + [SMALL_STATE(4936)] = 186757, + [SMALL_STATE(4937)] = 186764, + [SMALL_STATE(4938)] = 186771, + [SMALL_STATE(4939)] = 186778, + [SMALL_STATE(4940)] = 186785, + [SMALL_STATE(4941)] = 186792, + [SMALL_STATE(4942)] = 186799, + [SMALL_STATE(4943)] = 186806, + [SMALL_STATE(4944)] = 186813, + [SMALL_STATE(4945)] = 186820, + [SMALL_STATE(4946)] = 186827, + [SMALL_STATE(4947)] = 186834, + [SMALL_STATE(4948)] = 186841, + [SMALL_STATE(4949)] = 186848, + [SMALL_STATE(4950)] = 186855, + [SMALL_STATE(4951)] = 186862, + [SMALL_STATE(4952)] = 186869, + [SMALL_STATE(4953)] = 186876, + [SMALL_STATE(4954)] = 186883, + [SMALL_STATE(4955)] = 186890, + [SMALL_STATE(4956)] = 186897, + [SMALL_STATE(4957)] = 186904, + [SMALL_STATE(4958)] = 186911, + [SMALL_STATE(4959)] = 186918, + [SMALL_STATE(4960)] = 186925, + [SMALL_STATE(4961)] = 186932, + [SMALL_STATE(4962)] = 186939, + [SMALL_STATE(4963)] = 186946, + [SMALL_STATE(4964)] = 186953, + [SMALL_STATE(4965)] = 186960, + [SMALL_STATE(4966)] = 186967, + [SMALL_STATE(4967)] = 186974, + [SMALL_STATE(4968)] = 186981, + [SMALL_STATE(4969)] = 186988, + [SMALL_STATE(4970)] = 186995, + [SMALL_STATE(4971)] = 187002, + [SMALL_STATE(4972)] = 187009, + [SMALL_STATE(4973)] = 187016, + [SMALL_STATE(4974)] = 187023, + [SMALL_STATE(4975)] = 187030, + [SMALL_STATE(4976)] = 187037, + [SMALL_STATE(4977)] = 187044, + [SMALL_STATE(4978)] = 187051, + [SMALL_STATE(4979)] = 187058, + [SMALL_STATE(4980)] = 187065, + [SMALL_STATE(4981)] = 187072, + [SMALL_STATE(4982)] = 187079, + [SMALL_STATE(4983)] = 187086, + [SMALL_STATE(4984)] = 187093, + [SMALL_STATE(4985)] = 187100, + [SMALL_STATE(4986)] = 187107, + [SMALL_STATE(4987)] = 187114, + [SMALL_STATE(4988)] = 187121, + [SMALL_STATE(4989)] = 187128, + [SMALL_STATE(4990)] = 187135, + [SMALL_STATE(4991)] = 187142, + [SMALL_STATE(4992)] = 187149, + [SMALL_STATE(4993)] = 187156, + [SMALL_STATE(4994)] = 187163, + [SMALL_STATE(4995)] = 187170, + [SMALL_STATE(4996)] = 187177, + [SMALL_STATE(4997)] = 187184, + [SMALL_STATE(4998)] = 187191, + [SMALL_STATE(4999)] = 187198, + [SMALL_STATE(5000)] = 187205, + [SMALL_STATE(5001)] = 187212, + [SMALL_STATE(5002)] = 187219, + [SMALL_STATE(5003)] = 187226, + [SMALL_STATE(5004)] = 187233, + [SMALL_STATE(5005)] = 187240, + [SMALL_STATE(5006)] = 187247, + [SMALL_STATE(5007)] = 187254, + [SMALL_STATE(5008)] = 187261, + [SMALL_STATE(5009)] = 187268, + [SMALL_STATE(5010)] = 187275, + [SMALL_STATE(5011)] = 187282, + [SMALL_STATE(5012)] = 187289, + [SMALL_STATE(5013)] = 187296, + [SMALL_STATE(5014)] = 187303, + [SMALL_STATE(5015)] = 187310, + [SMALL_STATE(5016)] = 187317, + [SMALL_STATE(5017)] = 187324, + [SMALL_STATE(5018)] = 187331, + [SMALL_STATE(5019)] = 187338, + [SMALL_STATE(5020)] = 187345, + [SMALL_STATE(5021)] = 187352, + [SMALL_STATE(5022)] = 187359, + [SMALL_STATE(5023)] = 187366, + [SMALL_STATE(5024)] = 187373, + [SMALL_STATE(5025)] = 187380, + [SMALL_STATE(5026)] = 187387, + [SMALL_STATE(5027)] = 187394, + [SMALL_STATE(5028)] = 187401, + [SMALL_STATE(5029)] = 187408, + [SMALL_STATE(5030)] = 187415, + [SMALL_STATE(5031)] = 187422, + [SMALL_STATE(5032)] = 187429, + [SMALL_STATE(5033)] = 187436, + [SMALL_STATE(5034)] = 187443, + [SMALL_STATE(5035)] = 187450, + [SMALL_STATE(5036)] = 187457, + [SMALL_STATE(5037)] = 187464, + [SMALL_STATE(5038)] = 187471, + [SMALL_STATE(5039)] = 187478, + [SMALL_STATE(5040)] = 187485, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -207439,5225 +218711,5524 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 1), - [197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 1), REDUCE(sym__expression, 1, .production_id = 1), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 1), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), - [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), - [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), - [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 55), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 39), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 38), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 28), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 51), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 27), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 70), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 73), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), - [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 1), REDUCE(sym__expression, 1, .production_id = 1), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(811), - [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4116), - [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4624), - [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2308), - [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2308), - [690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(158), - [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(135), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements2, 2), - [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(318), - [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2398), - [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4190), - [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(72), - [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(601), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(18), - [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1753), - [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(468), - [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(563), - [725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3008), - [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3743), - [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(913), - [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3736), - [737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1012), - [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1008), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4118), - [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3208), - [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(162), - [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(176), - [755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(181), - [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(195), - [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(962), - [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3817), - [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4033), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4769), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4), - [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 3), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(811), - [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4116), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4624), - [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2308), - [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2308), - [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(134), - [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(135), - [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), - [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(318), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2398), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4190), - [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(72), - [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(601), - [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(18), - [848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1753), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(468), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(563), - [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3008), - [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3743), - [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(913), - [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3736), - [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1012), - [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1008), - [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4118), - [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3208), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(162), - [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(176), - [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(181), - [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(195), - [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(962), - [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3817), - [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4033), - [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4769), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements2, 2), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1), - [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(811), - [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4116), - [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4624), - [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2308), - [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2308), - [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(158), - [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(135), - [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(318), - [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2398), - [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4190), - [1001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(72), - [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(601), - [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(18), - [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1753), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(468), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(563), - [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3008), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3743), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(913), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3736), - [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1012), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1008), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4118), - [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3208), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(162), - [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(176), - [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(181), - [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(195), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(962), - [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3817), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4033), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4769), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), + [145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 1), + [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 1), REDUCE(sym__expression, 1, .production_id = 1), + [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), + [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 1), + [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 65), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4928), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 61), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 47), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 84), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 81), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 48), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 32), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 31), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), + [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 1), REDUCE(sym__expression, 1, .production_id = 1), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(829), + [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4297), + [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4987), + [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3197), + [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2453), + [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2453), + [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(123), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(245), + [663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements2, 2), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(304), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2496), + [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4984), + [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(231), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(579), + [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(15), + [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1717), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(479), + [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(559), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3844), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(932), + [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3693), + [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(959), + [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1031), + [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4393), + [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3440), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(113), + [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(118), + [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(121), + [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(133), + [725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(958), + [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3960), + [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4227), + [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4983), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 3), + [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(829), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4297), + [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4987), + [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3197), + [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2453), + [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2453), + [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(84), + [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(245), + [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(304), + [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2496), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4984), + [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(231), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(579), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(15), + [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1717), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(479), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(559), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3844), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(932), + [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3693), + [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(959), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1031), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4393), + [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3440), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(113), + [868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(118), + [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(121), + [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(133), + [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(958), + [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3960), + [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4227), + [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4983), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements2, 2), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(829), + [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4297), + [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4987), + [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3197), + [947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2453), + [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2453), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(123), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(245), + [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(304), + [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2496), + [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4984), + [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(231), + [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(579), + [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(15), + [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1717), + [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(479), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(559), + [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3844), + [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(932), + [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3693), + [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(959), + [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1031), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4393), + [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3440), + [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(113), + [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(118), + [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(121), + [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(133), + [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(958), + [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3960), + [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4227), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4983), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, .production_id = 1), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, .production_id = 1), + [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4), [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4), - [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, .production_id = 1), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, .production_id = 1), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1), - [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), REDUCE(sym__expression, 1), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, .production_id = 1), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, .production_id = 1), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 1), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 1), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2533), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2533), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4), - [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2441), - [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2441), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_translated_string, 2), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translated_string, 2), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, .production_id = 18), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, .production_id = 18), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 3), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 3), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, .production_id = 6), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, .production_id = 6), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 2), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 2), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), - [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(405), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [1367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(412), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1), REDUCE(sym__expression, 1), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2530), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(439), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [1409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(752), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3085), - [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3699), - [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(713), - [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3651), - [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(861), - [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4181), - [1432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3194), - [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(116), - [1438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(114), - [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(113), - [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(150), - [1447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(444), - [1450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(753), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4002), - [1458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4806), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .production_id = 22), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .production_id = 22), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, .production_id = 2), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, .production_id = 2), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(667), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), - [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(2327), - [1571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(3068), - [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(3750), - [1577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(684), - [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(3718), - [1583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(744), - [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(4183), - [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(3147), - [1592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(139), - [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(138), - [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(136), - [1601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(172), - [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(666), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), - [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(996), - [1612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(4802), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 11), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 11), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 12), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 12), - [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(794), - [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3104), - [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3596), - [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(825), - [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3559), - [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1000), - [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4094), - [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3227), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(86), - [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(84), - [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(83), - [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(108), - [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(454), - [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(795), - [1667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4034), - [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4813), - [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(936), - [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3075), - [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3652), - [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(963), - [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3613), - [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1164), - [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4126), - [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3232), - [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(300), - [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(299), - [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(298), - [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(295), - [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(455), - [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(940), - [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4043), - [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4778), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [1807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(959), - [1810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3097), - [1813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3620), - [1816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1003), - [1819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3685), - [1822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1065), - [1825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4113), - [1828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3140), - [1831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(237), - [1834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(238), - [1837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(246), - [1840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(249), - [1843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(461), - [1846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(958), - [1849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4055), - [1852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4773), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [1861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(748), - [1864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(2314), - [1867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(3092), - [1870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(3634), - [1873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(732), - [1876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(3595), - [1879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(836), - [1882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(4149), - [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(3297), - [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(96), - [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(95), - [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(94), - [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(124), - [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(746), - [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(1144), - [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(4810), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(821), - [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), - [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3086), - [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3682), - [1962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(832), - [1965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3631), - [1968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(890), - [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4173), - [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3228), - [1977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(111), - [1980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(110), - [1983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(109), - [1986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(140), - [1989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(471), - [1992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(820), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), - [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4807), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 13), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 13), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 3), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 3), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [2012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(774), - [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), - [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3077), - [2020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3721), - [2023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(801), - [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3662), - [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1024), - [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4185), - [2035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3179), - [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(122), - [2041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(119), - [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(118), - [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(157), - [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(851), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4805), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1139), - [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1148), - [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(478), - [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1141), - [2074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4011), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [2135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(800), - [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(2311), - [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(3064), - [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(3556), - [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(775), - [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(3574), - [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(960), - [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(4111), - [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(3201), - [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(144), - [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(194), - [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(69), - [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(70), - [2174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(799), - [2177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(1227), - [2180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(4766), - [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2), - [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(831), - [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(2293), - [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(3008), - [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(3743), - [2205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(834), - [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(3736), - [2211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(1008), - [2214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(4118), - [2217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(3208), - [2220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(162), - [2223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(176), - [2226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(181), - [2229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(195), - [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(830), - [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(1256), - [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(4769), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [2261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(968), - [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(2296), - [2267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(913), - [2270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(976), - [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(907), - [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3106), - [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3581), - [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1010), - [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3543), - [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1080), - [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4135), - [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3220), - [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(82), - [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(81), - [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(80), - [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(101), - [2309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(503), - [2312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(909), - [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4814), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), - [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), - [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), - [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(932), - [2379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3089), - [2382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3664), - [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(933), - [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3621), - [2391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1064), - [2394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4165), - [2397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3255), - [2400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(107), - [2403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(106), - [2406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(104), - [2409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(132), - [2412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(931), - [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4808), - [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [2424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(903), - [2427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3096), - [2430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3612), - [2433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(999), - [2436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3568), - [2439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1057), - [2442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4096), - [2445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3235), - [2448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(89), - [2451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(88), - [2454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(87), - [2457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(112), - [2460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(902), - [2463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4812), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [2524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1121), - [2527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3094), - [2530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3667), - [2533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1055), - [2536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3668), - [2539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1324), - [2542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4115), - [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3167), - [2548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(256), - [2551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(257), - [2554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(258), - [2557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(259), - [2560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(524), - [2563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1122), - [2566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4774), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1173), - [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3084), - [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3753), - [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1077), - [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3705), - [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1269), - [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4129), - [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3292), - [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(308), - [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(307), - [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(306), - [2612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(133), - [2615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1174), - [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4776), - [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [2625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1113), - [2628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3041), - [2631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3729), - [2634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1169), - [2637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3735), - [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1270), - [2643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4137), - [2646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3154), - [2649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(137), - [2652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(142), - [2655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(143), - [2658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(145), - [2661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1114), - [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4765), - [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1111), - [2674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3074), - [2677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3615), - [2680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1142), - [2683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3573), - [2686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1213), - [2689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4128), - [2692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3203), - [2695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(296), - [2698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(292), - [2701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(290), - [2704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(305), - [2707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(537), - [2710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1109), - [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4779), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), - [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [2750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1176), - [2753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3109), - [2756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3571), - [2759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1074), - [2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3534), - [2765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1294), - [2768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4093), - [2771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3212), - [2774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(79), - [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(78), - [2780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(77), - [2783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(97), - [2786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1177), - [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4815), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 4), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 4), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 5), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 5), - [2800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT(2944), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1210), - [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3033), - [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3711), - [2818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1185), - [2821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3633), - [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1398), - [2827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4150), - [2830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3248), - [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(252), - [2836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(251), - [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(250), - [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(269), - [2845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1211), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4787), - [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT(3481), - [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT(2958), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1325), - [2868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3073), - [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3564), - [2874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1216), - [2877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3605), - [2880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1356), - [2883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4161), - [2886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3258), - [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(213), - [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(212), - [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(211), - [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(239), - [2901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1326), - [2904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4792), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [2911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1201), - [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1188), - [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(559), - [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1200), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements2, 4), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements2, 4), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [2931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT(3083), - [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), - [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 4), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 4), - [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [3002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1203), - [3005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1189), - [3008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1202), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [3077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1395), - [3080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1430), - [3083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1393), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, .production_id = 7), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [3140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1665), - [3143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3049), - [3146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3597), - [3149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1603), - [3152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3502), - [3155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1665), - [3158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1805), - [3161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4134), - [3164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3145), - [3167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(276), - [3170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(275), - [3173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(274), - [3176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(285), - [3179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(614), - [3182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1659), - [3185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3990), - [3188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4783), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), - [3217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), - [3225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4010), - [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [3246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(1570), - [3249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(2329), - [3252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(3042), - [3255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(3519), - [3258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(1541), - [3261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(3594), - [3264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(1570), - [3267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(1663), - [3270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(4138), - [3273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(3168), - [3276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(268), - [3279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(267), - [3282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(266), - [3285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(277), - [3288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(1444), - [3291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(1871), - [3294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 21), SHIFT_REPEAT(4785), - [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [3317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4068), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminated_statement, 2), - [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminated_statement, 2), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [3338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1588), - [3341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3061), - [3344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3538), - [3347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1645), - [3350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3513), - [3353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1588), - [3356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1749), - [3359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4132), - [3362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3142), - [3365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(284), - [3368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(283), - [3371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(282), - [3374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(297), - [3377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1589), - [3380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4781), - [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [3409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4060), - [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 10), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 10), - [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 9), - [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 9), - [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 19), - [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 19), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), - [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [3500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2586), - [3503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2586), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [3516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4030), - [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1693), - [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3043), - [3529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3579), - [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1776), - [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3520), - [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1693), - [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1833), - [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4136), - [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3157), - [3550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(272), - [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(271), - [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(270), - [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(281), - [3562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(694), - [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1691), - [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4784), - [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), - [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [3577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1787), - [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3037), - [3583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3642), - [3586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1676), - [3589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3679), - [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1787), - [3595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1946), - [3598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4172), - [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3233), - [3604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(189), - [3607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(188), - [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(187), - [3613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(209), - [3616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1786), - [3619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4796), - [3622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1764), - [3625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3032), - [3628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3624), - [3631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1677), - [3634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3661), - [3637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1764), - [3640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1870), - [3643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4170), - [3646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3238), - [3649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(198), - [3652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(68), - [3655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(192), - [3658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(216), - [3661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1763), - [3664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4795), - [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [3685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4007), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [3694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1957), - [3697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3071), - [3700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3745), - [3703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2027), - [3706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3698), - [3709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1957), - [3712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2047), - [3715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4186), - [3718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3143), - [3721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(131), - [3724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(130), - [3727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(129), - [3730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(168), - [3733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1958), - [3736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4803), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [3783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 14), - [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 14), - [3787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 15), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 15), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [3799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4070), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), - [3804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2560), - [3807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2560), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [3840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [3844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), - [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), - [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [3852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2540), - [3855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2540), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 7), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1), - [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [3896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2593), - [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2593), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 7), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [3916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(2098), - [3919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(790), - [3922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(790), - [3925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(911), - [3928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3034), - [3931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3688), - [3934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(2090), - [3937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3722), - [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(2098), - [3943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(2179), - [3946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(4143), - [3949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3225), - [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), - [3954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(260), - [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(255), - [3960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(254), - [3963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(273), - [3966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(2100), - [3969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(4786), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3), - [3978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(879), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [3985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2493), - [3988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2493), - [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 4, .production_id = 7), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 4), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), - [4015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2556), - [4018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2556), - [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), - [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [4039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2468), - [4042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2468), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [4049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), - [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), - [4053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2589), - [4056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2589), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 1), - [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 1), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [4131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2524), - [4134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2524), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [4141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1128), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [4146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2459), - [4149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2459), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [4166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1060), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [4173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2432), - [4176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2432), - [4179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2477), - [4182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2477), - [4185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2549), - [4188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2549), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [4207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1285), - [4210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2481), - [4213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2481), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [4224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2557), - [4227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2557), - [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [4242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2428), - [4245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2428), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [4250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1260), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [4269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1180), - [4272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2461), - [4275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2461), - [4278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1228), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [4285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2430), - [4288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2430), - [4291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [4299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1266), - [4302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1379), - [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [4311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2469), - [4314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2469), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [4325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2400), - [4328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2400), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), - [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [4343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4087), - [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [4360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1384), - [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [4365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1388), - [4368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1392), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [4379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1400), - [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), - [4384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), REDUCE(aux_sym_command_repeat1, 1), - [4387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), REDUCE(aux_sym_command_repeat1, 1), - [4390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2476), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [4399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1492), - [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [4408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2515), - [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [4413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1502), - [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [4424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1523), - [4427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1494), - [4430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1471), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [4437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(390), - [4440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3868), - [4443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3995), - [4446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3313), - [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [4453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3335), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [4462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(927), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [4467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(708), - [4470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1989), - [4473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1920), - [4476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1658), - [4479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3941), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [4484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2795), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [4489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1335), - [4492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1653), - [4495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2774), - [4498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1501), - [4501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2920), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1654), - [4509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2242), - [4512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3263), - [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [4517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2412), - [4520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2887), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [4525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(899), - [4528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2274), - [4531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3069), - [4534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3704), - [4537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2283), - [4540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3537), - [4543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2274), - [4546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2309), - [4549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4131), - [4552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3164), - [4555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(288), - [4558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(287), - [4561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(286), - [4564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(301), - [4567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2272), - [4570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4780), - [4573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1389), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 29), - [4586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 29), - [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [4590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [4596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1631), - [4599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2710), - [4602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2215), - [4605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1242), - [4608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2177), - [4611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1623), - [4614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2057), - [4617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1880), - [4620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1806), - [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [4625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3435), - [4628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(887), - [4631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(863), - [4634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(965), - [4637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1093), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [4642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2681), - [4645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(822), - [4648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2633), - [4651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1078), - [4654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3853), - [4657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(994), - [4660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1096), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [4667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1297), - [4670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1796), - [4673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2319), - [4676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1192), - [4679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1119), - [4682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(361), - [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2), - [4687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [4691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1602), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [4696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1232), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [4709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(427), - [4712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1348), - [4715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2442), - [4718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1032), - [4721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1314), - [4724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3785), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [4729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1944), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [4738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1576), - [4741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2114), - [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), - [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), - [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [4788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1814), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [4833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2475), - [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 23), - [4838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 23), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 24), - [4844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 24), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [4856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2520), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 24), - [4879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 24), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), - [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), - [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 23), - [4897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 23), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [4917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1771), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 5), - [4934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 5), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 4), - [4942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 4), - [4944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2558), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [4953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2547), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 23), - [4968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 23), - [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_unary_expression, 2), - [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [4976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_postfix_expression, 2), - [4978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_postfix_expression, 2), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_parenthesized_expression, 3), - [5000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_parenthesized_expression, 3), - [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_binary_expression, 3, .production_id = 29), - [5004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_binary_expression, 3, .production_id = 29), - [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [5028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [5030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 56), - [5032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 56), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_ternary_expression, 5, .production_id = 56), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [5062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2420), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1842), - [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 24), - [5074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 24), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [5166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2031), - [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [5173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2030), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [5290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2591), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [5295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2102), - [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [5304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2091), - [5307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2082), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), - [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1), - [5358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1), - [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [5384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 1, .production_id = 1), - [5386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 1, .production_id = 1), - [5388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2449), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [5393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2120), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [5400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_postfix_expression, 2), - [5402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_postfix_expression, 2), - [5404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 4), - [5406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 4), - [5408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_unary_expression, 2), - [5410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_unary_expression, 2), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [5444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 3), - [5446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 3), - [5448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2796), - [5451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3010), - [5454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3527), - [5457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2820), - [5460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3565), - [5463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2848), - [5466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4156), - [5469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3282), - [5472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(226), - [5475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(224), - [5478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(223), - [5481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(248), - [5484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2750), - [5487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4790), - [5490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1), - [5492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), - [5500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_binary_expression, 3), - [5502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_binary_expression, 3), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [5542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3889), - [5545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2350), - [5548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3027), - [5551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3604), - [5554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3883), - [5557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3643), - [5560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3889), - [5563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3985), - [5566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4168), - [5569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3241), - [5572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(202), - [5575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(201), - [5578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(200), - [5581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(222), - [5584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3892), - [5587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4054), - [5590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4794), - [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [5677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), - [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [5895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2220), - [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [6086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), - [6088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2301), - [6091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2301), - [6094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), - [6096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3809), - [6099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(4047), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), - [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [6128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3103), - [6131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3025), - [6134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3510), - [6137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3046), - [6140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3528), - [6143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3103), - [6146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3236), - [6149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4153), - [6152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3287), - [6155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(242), - [6158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(241), - [6161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(240), - [6164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(253), - [6167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3125), - [6170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4789), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), - [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [6223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2488), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), - [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), - [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), - [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [6570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [6686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), - [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [6842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2570), - [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), - [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), - [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [7125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 8), - [7127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 8), - [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [7157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignments, 2), - [7159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignments, 2), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [7275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), - [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), - [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [7361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [7385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), - [7387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), - [7389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4010), - [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [7400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [7414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [7418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2455), - [7421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2455), - [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [7434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [7436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [7442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [7482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), - [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [7512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [7548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [7550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [7552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4667), - [7555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2354), - [7558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2377), - [7561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3771), - [7564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [7570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [7572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [7592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [7594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [7596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [7600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [7602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [7604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [7608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [7610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [7614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 32), - [7616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 32), - [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 33), - [7620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 33), - [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [7626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2349), - [7629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2386), - [7632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3764), - [7635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2723), - [7638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, .production_id = 18), - [7640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, .production_id = 18), - [7642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2), - [7644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [7652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2580), - [7655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2580), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [7668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4068), - [7671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2541), - [7674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2541), - [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [7685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 44), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [7719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 81), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [7727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2574), - [7730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2574), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [7735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2839), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [7740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [7748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [7752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [7754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 42), - [7756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2525), - [7759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2525), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [7764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4070), - [7767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4560), - [7770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2334), - [7773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2374), - [7776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3765), - [7779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), - [7781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), - [7783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2354), - [7786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3816), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [7791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4492), - [7794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2323), - [7797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2383), - [7800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3766), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [7809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [7813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2346), - [7816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2376), - [7819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3768), - [7822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4030), - [7825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [7827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 46), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [7831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2767), - [7834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 2), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [7838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 1, .dynamic_precedence = -1), - [7840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 1, .dynamic_precedence = -1), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [7844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 36), - [7846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4060), - [7849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 26), - [7851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 60), - [7853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 58), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [7861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [7879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [7885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [7897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2349), - [7900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3799), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [7907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2356), - [7910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2389), - [7913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3775), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 31), - [7936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 31), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [7954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4007), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [7965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 40), - [7967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 40), - [7969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2484), - [7972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2484), - [7975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2860), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 17), - [7982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 17), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [7986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2508), - [7989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2508), - [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [7996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2857), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [8001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 26), - [8003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 26), - [8005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 27), - [8007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 27), - [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 2), - [8011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 2), - [8013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2346), - [8016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3815), - [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 27), - [8021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 27), - [8023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3), - [8025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [8029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 26), - [8031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 26), - [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [8035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2), - [8037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2), - [8039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3), - [8041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3), - [8043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 4), - [8045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 4), - [8047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 40), - [8049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 40), - [8051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 28), - [8053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 28), - [8055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 28), - [8057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 28), - [8059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 3, .production_id = 32), - [8061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 3, .production_id = 32), - [8063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 16), - [8065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 16), - [8067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 5, .production_id = 35), - [8069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 5, .production_id = 35), - [8071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2334), - [8074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3801), - [8077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [8079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [8081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2988), - [8084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 31), - [8086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 31), - [8088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 27), - [8090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 27), - [8092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 41), - [8094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 41), - [8096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 28), - [8098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 28), - [8100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 27), - [8102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 27), - [8104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, .production_id = 25), - [8106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, .production_id = 25), - [8108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2323), - [8111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3800), - [8114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3), - [8116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3), - [8118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 26), - [8120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 26), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [8128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [8130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [8132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 48), - [8134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 48), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [8138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 27), - [8140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 27), - [8142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 28), - [8144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 28), - [8146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 2), - [8148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 2), - [8150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 28), - [8152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 28), - [8154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 17), - [8156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 17), - [8158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 26), - [8160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 26), - [8162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 4), - [8164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 4), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [8168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [8178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2356), - [8181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3810), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [8188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3063), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [8195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [8205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [8211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [8215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [8221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [8229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [8233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [8235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [8239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [8249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [8251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [8253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [8255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2495), - [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [8260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [8262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [8264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [8274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [8282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [8296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [8298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [8302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [8306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [8308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [8310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [8312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [8314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [8328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [8340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [8342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [8346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [8362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [8366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4632), - [8369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2340), - [8372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2340), - [8375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4632), - [8378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2373), - [8381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3776), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [8410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 94), - [8412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 94), - [8414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 55), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [8428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 88), - [8430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 88), - [8432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 70), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [8464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 76), - [8466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 76), - [8468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 55), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [8494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2564), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [8503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 84), - [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 84), - [8507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 51), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [8535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 86), - [8537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 86), - [8539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 27), - [8541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 99), - [8543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 99), - [8545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 70), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [8561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2583), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [8566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4087), - [8569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 92), - [8571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 92), - [8573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 73), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [8589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 49), - [8591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 49), - [8593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 38), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [8625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 64), - [8627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 64), - [8629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 38), - [8631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 90), - [8633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 90), - [8635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 28), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [8685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 66), - [8687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 66), - [8689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 51), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [8735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 53), - [8737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 53), - [8739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 39), - [8741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 101), - [8743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 101), - [8745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 73), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [8761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4767), - [8764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2326), - [8767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2326), - [8770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4767), - [8773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2391), - [8776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3770), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [8813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [8817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [8837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 74), - [8839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 74), - [8841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 39), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [8853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 68), - [8855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 68), - [8857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 27), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [8875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 71), - [8877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 71), - [8879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 28), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [8893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2595), - [8896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 100), - [8898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 100), - [8900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 72), - [8902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 72), - [8904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 69), - [8906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 69), - [8908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 91), - [8910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 91), - [8912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 77), - [8914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 77), - [8916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 67), - [8918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 67), - [8920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3417), - [8923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 95), - [8925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 95), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [8931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 75), - [8933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 75), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [8937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 102), - [8939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 102), - [8941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 54), - [8943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 54), - [8945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 93), - [8947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 93), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [8951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3430), - [8954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 85), - [8956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 85), - [8958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 65), - [8960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 65), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [8964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 50), - [8966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 50), - [8968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [8970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 89), - [8972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 89), - [8974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 87), - [8976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 87), - [8978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3432), - [8981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2340), - [8984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2340), - [8987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3803), - [8990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3450), - [8993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2326), - [8996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2326), - [8999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3802), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [9004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [9006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [9008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [9012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(3452), - [9015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), - [9017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), - [9019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [9021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), - [9023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), - [9025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [9027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), - [9029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [9031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [9033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [9035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), - [9037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [9039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [9041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), - [9043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), - [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [9049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [9051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [9053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [9057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [9059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [9061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), - [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [9067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [9069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [9071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [9073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [9075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [9077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [9081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [9083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [9085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [9087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [9091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [9093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [9095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [9097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [9099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [9101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [9103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [9105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [9109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [9111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [9115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [9117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [9121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [9123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [9125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [9127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [9129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [9133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [9135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [9137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [9139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [9141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [9147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [9149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [9151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [9153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [9155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [9157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [9161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [9163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [9165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [9167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [9169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [9171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [9173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [9175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [9179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [9181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [9183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [9185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [9195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [9197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [9199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [9201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [9203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [9205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [9207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [9211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [9213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [9215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [9217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [9219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [9221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [9223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [9225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [9227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [9229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [9231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [9233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [9235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [9237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [9239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [9241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [9243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [9245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [9247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [9249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [9251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [9253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [9255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [9257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [9259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [9261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [9263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [9265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [9267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [9269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [9271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [9273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [9275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [9277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [9281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [9283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [9285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [9287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [9289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [9291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [9293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [9295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [9297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [9299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [9301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [9303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [9305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [9307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [9311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [9313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [9315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [9317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [9319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [9321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [9323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [9325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [9329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [9331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [9333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [9335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [9337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [9339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [9341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [9343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [9345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [9347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), - [9349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [9351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [9353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [9355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [9357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [9359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [9361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [9363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [9365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), - [9367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [9369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [9371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [9373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [9375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [9377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [9379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [9381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [9383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [9385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [9387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [9389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [9391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [9393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [9395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [9397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [9399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [9401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [9403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [9405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [9407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [9409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [9411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [9413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [9415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [9417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [9419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [9421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [9423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [9425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [9427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [9429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [9431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [9433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [9435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [9437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [9439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3091), - [9442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3758), - [9445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [9447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3780), - [9450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3217), - [9453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(261), - [9456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(262), - [9459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(264), - [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [9464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [9466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [9468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [9470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [9472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [9474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [9476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [9478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [9480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [9482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), - [9484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [9486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [9488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [9490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [9492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), - [9494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [9496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [9498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [9500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [9502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [9504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [9506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [9508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [9510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [9512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [9514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [9516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [9518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [9522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [9524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [9526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), - [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [9530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), - [9536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [9538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [9540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [9542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [9544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [9546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [9548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [9550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [9552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [9554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), - [9556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [9558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [9560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [9562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [9564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [9566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [9568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [9570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [9572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [9574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [9576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [9578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [9580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [9582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [9584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [9586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [9588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [9590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [9604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [9606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [9608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [9610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [9612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [9614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [9620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [9624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [9630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [9634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [9640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [9644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [9656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [9662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [9666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [9674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [9684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3779), - [9687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3202), - [9690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(171), - [9693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(170), - [9696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(169), - [9699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3774), - [9702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [9706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [9710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [9714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [9720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [9722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [9724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [9726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [9728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), - [9730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [9732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [9736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [9742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2546), - [9745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2546), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [9750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), - [9754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [9756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [9760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [9762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [9766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [9768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [9774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [9778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [9780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [9784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [9786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [9790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [9792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [9796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [9798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [9802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [9806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [9808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [9812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [9814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [9818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [9824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [9832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [9834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [9840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 3), - [9842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 3), - [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [9846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [9860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [9862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1), - [9864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 1), - [9866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), - [9868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 2), - [9870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3899), - [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [9889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [9891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [9897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [9901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [9917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [9927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [9933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [9937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [9943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [9947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [9951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [9957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [9959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), - [9961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2536), - [9964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [9966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(310), - [9969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 28), - [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [9981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), - [9983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2), - [9985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(2779), - [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [9990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [9992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [9996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [9998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), - [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [10002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [10006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [10014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [10016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [10018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 27), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [10024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [10036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [10038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2571), - [10041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 70), - [10043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [10049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 38), - [10051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [10057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [10059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 28), - [10061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [10065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_variable_assignment, 3, .production_id = 34), - [10067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_variable_assignment, 3, .production_id = 34), - [10069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [10077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 39), - [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [10085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 73), - [10087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [10093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 27), - [10095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [10099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 55), - [10101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [10109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [10111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 30), - [10113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4015), - [10116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 51), - [10118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [10126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [10128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [10150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 52), - [10152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 52), SHIFT_REPEAT(2305), - [10155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [10167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [10169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 37), - [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [10177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 47), - [10179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [10183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 62), - [10185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 61), - [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [10191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [10193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(2803), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [10198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 98), - [10200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 97), - [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [10204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 96), - [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [10216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 43), - [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [10228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 57), - [10230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 63), - [10232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [10238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 59), - [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [10242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 82), - [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [10252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 83), - [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [10270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 80), - [10272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(2763), - [10275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 45), - [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [10281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 79), - [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [10289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4125), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [10294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 78), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), - [10314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [10318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 8, .production_id = 103), - [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [10538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), - [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [11048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [11050] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), - [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), - [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), - [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), - [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), - [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), - [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), - [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), - [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), - [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), - [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), - [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), REDUCE(sym__expression, 1), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 1), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 1), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, .production_id = 1), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, .production_id = 1), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2693), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2693), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_translated_string, 2), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translated_string, 2), + [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2659), + [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2659), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 3), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 3), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 4), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 4), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, .production_id = 39), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, .production_id = 39), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 2), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 2), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, .production_id = 21), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, .production_id = 21), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, .production_id = 18), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, .production_id = 18), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, .production_id = 6), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, .production_id = 6), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), + [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(397), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), + [1359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(409), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1), REDUCE(sym__expression, 1), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2600), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, .production_id = 7), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(433), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [1461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(730), + [1464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3240), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3887), + [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(724), + [1475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3667), + [1478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(789), + [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4365), + [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3372), + [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(106), + [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(105), + [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(104), + [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(132), + [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(439), + [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(727), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4184), + [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5030), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .production_id = 25), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .production_id = 25), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(772), + [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3201), + [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3846), + [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(844), + [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3635), + [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1001), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4397), + [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3331), + [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(72), + [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(71), + [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(69), + [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(97), + [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(444), + [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(770), + [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4213), + [1656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5037), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, .production_id = 2), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, .production_id = 2), + [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(673), + [1668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3223), + [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), + [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(2402), + [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3813), + [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(679), + [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3668), + [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(713), + [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(4350), + [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3275), + [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(138), + [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(137), + [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(135), + [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(163), + [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(675), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), + [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(974), + [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(5025), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 12), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 12), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 11), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 11), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(999), + [1748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3246), + [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3761), + [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(893), + [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3640), + [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1084), + [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4314), + [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3305), + [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(240), + [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(243), + [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(244), + [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(257), + [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(454), + [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1000), + [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4186), + [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4998), + [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(758), + [1796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3152), + [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(2429), + [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3878), + [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(733), + [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3703), + [1811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(845), + [1814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(4385), + [1817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3348), + [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(83), + [1823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(82), + [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(81), + [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(112), + [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(757), + [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1183), + [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(5034), + [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(895), + [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3263), + [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3762), + [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(902), + [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3710), + [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1180), + [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4354), + [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3446), + [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(262), + [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(261), + [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(259), + [1874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(64), + [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(456), + [1880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(898), + [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4200), + [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5003), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 5), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 5), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 13), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 13), + [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(784), + [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3273), + [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3877), + [2064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(811), + [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3641), + [2070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(870), + [2073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4361), + [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3378), + [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(111), + [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(110), + [2085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(109), + [2088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(139), + [2091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(785), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [2096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5029), + [2099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(774), + [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3197), + [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(2447), + [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3844), + [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(867), + [2114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3693), + [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1031), + [2120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(4393), + [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3440), + [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(113), + [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(118), + [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(121), + [2135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(133), + [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(773), + [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1265), + [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(4983), + [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1174), + [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1195), + [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(477), + [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1176), + [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4258), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [2176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(769), + [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3249), + [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(2439), + [2185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3825), + [2188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(788), + [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3653), + [2194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(886), + [2197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(4313), + [2200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3279), + [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(268), + [2206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(270), + [2209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(272), + [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(274), + [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(776), + [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1358), + [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(4996), + [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(818), + [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3228), + [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), + [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3896), + [2235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(816), + [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3675), + [2241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(956), + [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4371), + [2247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3361), + [2250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(101), + [2253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(100), + [2256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(99), + [2259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(128), + [2262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(485), + [2265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(817), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), + [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5031), + [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(913), + [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3207), + [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3824), + [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(916), + [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3681), + [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1108), + [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4377), + [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3358), + [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(96), + [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(95), + [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(92), + [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(124), + [2309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(914), + [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5032), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [2325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(942), + [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3192), + [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3858), + [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1013), + [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3718), + [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1082), + [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4395), + [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3335), + [2349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(75), + [2352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(74), + [2355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(73), + [2358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(102), + [2361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(943), + [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5036), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(945), + [2416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(2392), + [2419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(932), + [2422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(944), + [2425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(936), + [2428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3144), + [2431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3830), + [2434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1025), + [2437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3727), + [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1107), + [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4400), + [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3327), + [2449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(68), + [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(67), + [2455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(66), + [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(91), + [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(504), + [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(933), + [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5038), + [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), + [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1135), + [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3266), + [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3811), + [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1156), + [2570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3679), + [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1246), + [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4345), + [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3470), + [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(256), + [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(255), + [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(254), + [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(269), + [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(514), + [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1136), + [2600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5004), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [2613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1129), + [2616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3208), + [2619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3892), + [2622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1073), + [2625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3652), + [2628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1355), + [2631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4375), + [2634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3295), + [2637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(277), + [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(65), + [2643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(70), + [2646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(80), + [2649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1128), + [2652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4977), + [2655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1179), + [2658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3237), + [2661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3816), + [2664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1081), + [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3739), + [2670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1315), + [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4402), + [2676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3325), + [2679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(275), + [2682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(192), + [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(193), + [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(85), + [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1178), + [2694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5039), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1122), + [2728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3259), + [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3822), + [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1125), + [2737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3730), + [2740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1257), + [2743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4378), + [2746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3395), + [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(276), + [2752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(273), + [2755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(271), + [2758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(285), + [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1124), + [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5001), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1091), + [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3247), + [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3897), + [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1078), + [2791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3654), + [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1313), + [2797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4330), + [2800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3281), + [2803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(260), + [2806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(267), + [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(294), + [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(293), + [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(536), + [2818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1080), + [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4999), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1533), + [2831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1507), + [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(538), + [2837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1530), + [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4163), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2), + [2859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1212), + [2862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3193), + [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3750), + [2868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1334), + [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3665), + [2874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1420), + [2877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4309), + [2880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3309), + [2883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(219), + [2886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(63), + [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(216), + [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(228), + [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1213), + [2898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5012), + [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), + [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [2937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1242), + [2940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1219), + [2943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(547), + [2946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1236), + [2949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1287), + [2952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1256), + [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1270), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [2962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1339), + [2965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3147), + [2968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3888), + [2971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1281), + [2974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3700), + [2977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1428), + [2980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4326), + [2983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3434), + [2986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(182), + [2989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(181), + [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(180), + [2995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(205), + [2998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1337), + [3001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5017), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [3142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1382), + [3145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(2391), + [3148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1366), + [3151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1378), + [3154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1375), + [3157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1381), + [3160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1379), + [3163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1588), + [3166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3216), + [3169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3854), + [3172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1697), + [3175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3723), + [3178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1588), + [3181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1844), + [3184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4316), + [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3288), + [3190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(236), + [3193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(235), + [3196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(234), + [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(249), + [3202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(603), + [3205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1589), + [3208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4237), + [3211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5008), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), + [3250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4196), + [3253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1475), + [3256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3200), + [3259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(2408), + [3262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3796), + [3265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1518), + [3268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3677), + [3271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1475), + [3274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1659), + [3277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(4296), + [3280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3280), + [3283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(227), + [3286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(226), + [3289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(225), + [3292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(237), + [3295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1471), + [3298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1991), + [3301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(5010), + [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3), + [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1), + [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [3314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT(3042), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [3325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4216), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [3336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT(3595), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [3341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT(3079), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [3346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1573), + [3349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1656), + [3352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(636), + [3355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1687), + [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminated_statement, 2), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminated_statement, 2), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [3368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1580), + [3371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1576), + [3374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1579), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [3383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1620), + [3386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3272), + [3389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3753), + [3392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1683), + [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3658), + [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1620), + [3401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1784), + [3404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4331), + [3407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3413), + [3410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(248), + [3413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(247), + [3416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(246), + [3419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(258), + [3422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1622), + [3425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5006), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [3436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4171), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [3481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4161), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [3498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1756), + [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3205), + [3504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3798), + [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1783), + [3510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3736), + [3513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1756), + [3516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2016), + [3519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4310), + [3522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3277), + [3525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(232), + [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(230), + [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(229), + [3534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(242), + [3537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(659), + [3540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1758), + [3543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5009), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [3554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1891), + [3557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3159), + [3560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3836), + [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1745), + [3566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3738), + [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1891), + [3572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1969), + [3575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4329), + [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3472), + [3581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(174), + [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(173), + [3587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(172), + [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(191), + [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1894), + [3596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5019), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [3605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1763), + [3608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3145), + [3611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3808), + [3614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1729), + [3617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3744), + [3620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1763), + [3623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1957), + [3626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4332), + [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3481), + [3632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(170), + [3635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(169), + [3638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(168), + [3641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(183), + [3644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1770), + [3647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5020), + [3650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1878), + [3653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1918), + [3656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1880), + [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 9), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 9), + [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 10), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 10), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 23), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 23), + [3677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2611), + [3680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2611), + [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 22), + [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 22), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [3737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4201), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [3764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4197), + [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2643), + [3770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2643), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), + [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), + [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [3785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2702), + [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2702), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 14), + [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 14), + [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 15), + [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 15), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [3851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2020), + [3854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3232), + [3857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3832), + [3860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1951), + [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3656), + [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2020), + [3869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2070), + [3872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4353), + [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3411), + [3878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(131), + [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(130), + [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(129), + [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(158), + [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2021), + [3893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5026), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 7), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [3936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2653), + [3939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2653), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 1), + [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 1), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [3966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 1), REDUCE(sym__expansion_body, 2, .production_id = 20), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [3985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1), + [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1), + [3989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [4001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(872), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2636), + [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2636), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [4020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2670), + [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2670), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), + [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), + [4042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2534), + [4045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2534), + [4048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2558), + [4051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2558), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 4), + [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 4, .production_id = 7), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [4074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(2173), + [4077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(3196), + [4080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(866), + [4083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(866), + [4086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(1026), + [4089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(3870), + [4092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(2160), + [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(3731), + [4098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(2173), + [4101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(2231), + [4104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(4301), + [4107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(3297), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), + [4112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(223), + [4115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(222), + [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(221), + [4121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(233), + [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(2155), + [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(5011), + [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 7), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [4136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2647), + [4139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2647), + [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [4164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2678), + [4167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2678), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [4176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1036), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [4185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2704), + [4188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2704), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2593), + [4214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2593), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1132), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [4228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2615), + [4231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2615), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [4266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2547), + [4269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2547), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [4274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4164), + [4277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1357), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [4282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1352), + [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [4291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1347), + [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [4306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__heredoc_pipeline, 2), + [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [4318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2656), + [4321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2656), + [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [4334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2677), + [4337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2677), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [4348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1274), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [4359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2627), + [4362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2627), + [4365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1282), + [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [4378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2699), + [4381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2699), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [4404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1424), + [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [4409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1367), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), + [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), + [4422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), REDUCE(aux_sym_command_repeat1, 1), + [4425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), REDUCE(aux_sym_command_repeat1, 1), + [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [4434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2525), + [4437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2525), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4292), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [4455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1447), + [4458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1423), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [4465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2536), + [4468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2536), + [4471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1374), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [4476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1468), + [4479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1564), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [4496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1502), + [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [4505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1486), + [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2630), + [4511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1487), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [4518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1677), + [4521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2922), + [4524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1418), + [4527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1032), + [4530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2337), + [4533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3206), + [4536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2368), + [4539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3271), + [4542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3861), + [4545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2382), + [4548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3642), + [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2368), + [4554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2425), + [4557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4337), + [4560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3467), + [4563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(252), + [4566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(251), + [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(250), + [4572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(263), + [4575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2363), + [4578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5005), + [4581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4124), + [4584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1591), + [4587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2817), + [4590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1426), + [4593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2526), + [4596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(981), + [4599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1959), + [4602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(832), + [4605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1947), + [4608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2206), + [4611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(921), + [4614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1647), + [4617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1996), + [4620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2842), + [4623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1864), + [4626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3506), + [4629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4005), + [4632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1638), + [4635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(388), + [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), + [4640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3112), + [4643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1804), + [4646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2438), + [4649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4138), + [4652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3569), + [4655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1251), + [4658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1171), + [4661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(848), + [4664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(370), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [4669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2590), + [4672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1228), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [4679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2256), + [4682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1849), + [4685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2055), + [4688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3920), + [4691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1243), + [4694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2047), + [4697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1320), + [4700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1065), + [4703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2782), + [4706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1038), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [4713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1504), + [4716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2761), + [4719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1087), + [4722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(976), + [4725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2342), + [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [4730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3527), + [4733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(412), + [4736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(997), + [4739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3993), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [4744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1294), + [4747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1035), + [4750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(711), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_literal, 1), + [4775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_literal, 1), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [4791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1823), + [4794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1828), + [4797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 27), + [4799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 27), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [4803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2672), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), + [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [4864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 26), + [4866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 26), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 29), + [4886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 29), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [4892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2), + [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 27), + [4926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 27), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 26), + [4934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 26), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [4938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1883), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [4949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2625), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [4976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2685), + [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 27), + [5043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 27), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 26), + [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 26), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [5073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2584), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 4), + [5094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 4), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [5098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2610), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [5103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2576), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2019), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_ternary_expression, 5, .production_id = 58), + [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 3), + [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 3), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [5147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2029), + [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_unary_expression, 2), + [5152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_unary_expression, 2), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_postfix_expression, 2), + [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_postfix_expression, 2), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [5186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2009), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_binary_expression, 3, .production_id = 29), + [5203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_binary_expression, 3, .production_id = 29), + [5205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_parenthesized_expression, 3), + [5207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_parenthesized_expression, 3), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [5213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2619), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [5236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2), + [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [5250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 58), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), + [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [5278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2123), + [5281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 58), + [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [5285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [5287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2114), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [5358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2176), + [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [5371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2172), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [5412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2150), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [5449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 1, .production_id = 1), + [5451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 1, .production_id = 1), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [5455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2213), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [5472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2562), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), + [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [5507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2811), + [5510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3182), + [5513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3756), + [5516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2830), + [5519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3659), + [5522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2908), + [5525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4319), + [5528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3403), + [5531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(196), + [5534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(195), + [5537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(194), + [5540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(215), + [5543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2812), + [5546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5015), + [5549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1), + [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), + [5571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 3), + [5573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 3), + [5575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3005), + [5578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3172), + [5581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(2330), + [5584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3760), + [5587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(2987), + [5590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3725), + [5593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3005), + [5596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3122), + [5599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(4336), + [5602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3462), + [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), + [5607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(162), + [5610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(160), + [5613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(159), + [5616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(175), + [5619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(2999), + [5622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(5022), + [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), + [5661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_unary_expression, 2), + [5663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_unary_expression, 2), + [5665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_postfix_expression, 2), + [5667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_postfix_expression, 2), + [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [5683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [5749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_binary_expression, 3), + [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [5755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_binary_expression, 3), + [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [5847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 20), + [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [5875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [5883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 19), + [5885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1), + [5887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1), + [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [5933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [5941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4044), + [5944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3166), + [5947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2398), + [5950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3862), + [5953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4031), + [5956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3719), + [5959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4044), + [5962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4141), + [5965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4328), + [5968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3453), + [5971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(178), + [5974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(177), + [5977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(176), + [5980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(197), + [5983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4046), + [5986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4215), + [5989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5018), + [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 20), + [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), + [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 19), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [6150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2299), + [6153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 4), + [6155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 4), + [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [6229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), + [6231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), + [6233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2394), + [6236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2394), + [6239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3945), + [6242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(4182), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [6277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3139), + [6280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3116), + [6283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3138), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [6320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3102), + [6323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3187), + [6326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3827), + [6329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3097), + [6332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3745), + [6335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3102), + [6338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3230), + [6341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4315), + [6344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3349), + [6347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(208), + [6350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(207), + [6353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(206), + [6356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(220), + [6359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3098), + [6362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5014), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [6397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2595), + [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [6686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [6698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 4, .production_id = 33), + [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [6716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 4, .production_id = 36), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), + [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [7000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2510), + [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [7365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [7389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [7419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [7431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [7557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [7609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [7617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [7619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [7653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [7661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [7669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [7685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [7687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [7721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [7725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [7729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [7735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [7743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [7745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [7755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [7757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [7763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [7765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [7767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [7775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [7781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2601), + [7784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2601), + [7787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), + [7789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), + [7791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4196), + [7794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [7796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4905), + [7799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2418), + [7802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [7804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2485), + [7807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3901), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [7812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 8), + [7814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 8), + [7816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [7820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignments, 2), + [7822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignments, 2), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [7826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2705), + [7829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2705), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [7836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2509), + [7839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2509), + [7842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [7848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [7852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2818), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [7861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4216), + [7864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [7866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2881), + [7869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2689), + [7872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2689), + [7875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2), + [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2), + [7879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, .production_id = 18), + [7881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, .production_id = 18), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [7885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 42), + [7887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 42), + [7889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2397), + [7892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2470), + [7895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3913), + [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [7902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 41), + [7904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 41), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [7912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4691), + [7915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2441), + [7918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2489), + [7921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3912), + [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [7928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 1, .dynamic_precedence = -1), + [7930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 1, .dynamic_precedence = -1), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 92), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 51), + [7964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 2), + [7966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [7972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2431), + [7975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2469), + [7978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3916), + [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [7985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [7995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 53), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [8001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 55), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [8007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 45), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [8021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4161), + [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 71), + [8026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2517), + [8029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2517), + [8032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4171), + [8035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 30), + [8037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2467), + [8040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2494), + [8043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3904), + [8046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2931), + [8049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 69), + [8051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4201), + [8054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), + [8056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2418), + [8059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), + [8061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3949), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [8068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2907), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [8093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4197), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [8124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2449), + [8127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2474), + [8130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3909), + [8133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 49), + [8135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 49), + [8137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 17), + [8139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 17), + [8141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 40), + [8143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 40), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [8155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2397), + [8158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3944), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [8183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 32), + [8185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 32), + [8187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 30), + [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 30), + [8191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3), + [8193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 49), + [8199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 49), + [8201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 4), + [8203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 4), + [8205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 50), + [8207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 50), + [8209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3), + [8211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3), + [8213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 16), + [8215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 16), + [8217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3), + [8219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3), + [8221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_heredoc_body, 2), + [8223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_heredoc_body, 2), + [8225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 5, .production_id = 44), + [8227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 5, .production_id = 44), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [8231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 1, .production_id = 1), + [8233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 1, .production_id = 1), + [8235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, .production_id = 28), + [8237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, .production_id = 28), + [8239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 4), + [8241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 4), + [8243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 1), + [8245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 1), + [8247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 57), + [8249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 57), + [8251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 31), + [8253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 31), + [8255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2), + [8257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2), + [8259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 41), + [8261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 41), + [8263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [8265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [8271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 32), + [8273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 32), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [8277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 41), + [8279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 41), + [8281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5), + [8283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [8287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__heredoc_body, 2), + [8289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_body, 2), + [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 31), + [8293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 31), + [8295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [8297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [8299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 40), + [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 40), + [8303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2431), + [8306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3947), + [8309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2441), + [8312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3955), + [8315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 31), + [8317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 31), + [8319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 30), + [8321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 30), + [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 32), + [8325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 32), + [8327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 4), + [8329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 4), + [8331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 30), + [8333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 30), + [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [8355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 32), + [8357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 32), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [8361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 2), + [8363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 2), + [8365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 31), + [8367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 31), + [8369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 30), + [8371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 30), + [8373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 32), + [8375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 32), + [8377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3105), + [8380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 31), + [8382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 31), + [8384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 17), + [8386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 17), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [8392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2467), + [8395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3957), + [8398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2592), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [8407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2449), + [8410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3939), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [8421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2511), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [8444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [8466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4775), + [8469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2465), + [8472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2465), + [8475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4775), + [8478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2482), + [8481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3918), + [8484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 85), + [8486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 85), + [8488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 48), + [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [8498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 112), + [8500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 112), + [8502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 84), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [8510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), + [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [8514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [8524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 103), + [8526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 103), + [8528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 84), + [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [8534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [8538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [8542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [8546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [8550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 87), + [8552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 87), + [8554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 65), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [8558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [8562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [8566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 82), + [8568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 82), + [8570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 32), + [8572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [8580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [8584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [8588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [8592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [8596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 110), + [8598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 110), + [8600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 81), + [8602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 95), + [8604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 95), + [8606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 61), + [8608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [8612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [8616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [8620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [8624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 79), + [8626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 79), + [8628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 31), + [8630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [8634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [8638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [8642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 77), + [8644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 77), + [8646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 61), + [8648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [8652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [8658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [8662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 99), + [8664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 99), + [8666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 81), + [8668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [8680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 105), + [8682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 105), + [8684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 65), + [8686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [8690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3471), + [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [8697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [8699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 59), + [8701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 59), + [8703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 47), + [8705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [8709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [8713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [8717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [8721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_pipeline, 2), + [8723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2421), + [8726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2477), + [8729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3910), + [8732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [8744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [8750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [8754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 101), + [8756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 101), + [8758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 32), + [8760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [8788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 97), + [8790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 97), + [8792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 31), + [8794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [8798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 63), + [8800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 63), + [8802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 48), + [8804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [8808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [8816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [8826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4164), + [8829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [8833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [8837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [8841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 75), + [8843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 75), + [8845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 47), + [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [8851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [8855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [8859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [8889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 111), + [8891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 111), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [8917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 96), + [8919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 96), + [8921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2585), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [8934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 78), + [8936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 78), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [8954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 98), + [8956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 98), + [8958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 83), + [8960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 83), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [8966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 76), + [8968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 76), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [8984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 104), + [8986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 104), + [8988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 100), + [8990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 100), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [9034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 88), + [9036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 88), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [9058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 64), + [9060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 64), + [9062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [9066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [9138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 106), + [9140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 106), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [9154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 113), + [9156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 113), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [9166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 102), + [9168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 102), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [9188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 86), + [9190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 86), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [9204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4292), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [9213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2606), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [9244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3503), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [9277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 80), + [9279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 80), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [9285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4851), + [9288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2433), + [9291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2433), + [9294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4851), + [9297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2503), + [9300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3905), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [9353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 60), + [9355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 60), + [9357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [9361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2421), + [9364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3950), + [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [9371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3559), + [9374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3553), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [9379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2621), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [9384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2465), + [9387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2465), + [9390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3953), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [9395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), + [9397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [9399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [9401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3580), + [9404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2433), + [9407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2433), + [9410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3964), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [9415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(3573), + [9418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), + [9420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), + [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [9428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [9434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [9436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), + [9440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [9446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [9448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [9450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [9452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [9458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [9460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [9464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [9466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [9468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [9470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [9472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [9474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [9476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [9478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [9480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [9482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [9484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [9486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [9488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [9490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [9492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), + [9494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [9496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [9498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [9500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [9502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [9504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [9506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [9508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [9510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [9512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [9514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [9516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [9518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), + [9522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [9524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [9526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [9530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [9536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [9538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [9540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [9542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [9544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [9546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [9548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [9550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [9552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), + [9554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [9556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), + [9558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [9560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [9562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [9564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [9566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [9568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [9570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [9572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [9574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [9576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [9578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [9580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3252), + [9583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3900), + [9586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [9588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3922), + [9591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3291), + [9594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(292), + [9597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(291), + [9600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(290), + [9603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [9605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [9607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [9609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [9611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [9613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [9615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), + [9617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [9619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [9621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [9623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [9625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [9627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [9629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [9631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [9633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [9635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), + [9637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [9639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [9641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [9643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), + [9645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [9647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [9649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [9651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), + [9653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [9655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [9657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [9659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [9661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [9663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), + [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [9667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [9669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [9671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [9673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [9677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [9679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [9681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [9683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [9685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [9693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [9695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [9697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [9699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [9701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [9703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [9705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [9707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [9709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [9711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [9715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [9717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [9719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), + [9721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [9723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [9725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [9727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [9729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [9731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [9733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [9735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [9737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [9739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [9741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [9743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [9745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [9747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [9749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [9751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [9753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [9755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [9757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [9761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [9763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [9765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [9767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [9769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [9771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), + [9773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [9775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [9777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [9779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [9781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [9783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [9787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [9789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [9791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [9793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [9795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [9797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [9801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [9803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [9805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [9807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [9809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [9811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [9813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [9815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [9817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [9821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [9823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [9825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [9827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [9831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [9833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [9835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [9841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [9845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [9849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [9851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [9853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [9855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [9857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [9859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [9861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [9863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [9867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [9869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [9871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [9873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [9875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [9877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [9879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [9881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [9883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [9887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [9889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [9891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [9893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [9895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [9897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [9899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [9901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [9905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), + [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [9909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [9913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [9917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [9919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [9921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [9923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [9925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [9927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [9929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [9931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), + [9933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [9935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [9937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [9939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [9943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [9945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [9947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [9949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [9951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [9953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [9955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [9957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [9959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [9961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [9963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [9965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [9967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [9969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), + [9971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [9973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [9975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [9977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [9979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [9981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [9983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [9985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [9987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [9989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [9991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [9993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [9995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [9997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [9999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [10001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [10003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [10005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [10007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [10009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [10011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [10013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [10015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), + [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [10019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [10025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [10037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1), + [10039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [10041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [10043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [10047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [10053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [10057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [10063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [10065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [10067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3906), + [10070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3384), + [10073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(116), + [10076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(115), + [10079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(114), + [10082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3907), + [10085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [10089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), + [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [10093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [10099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [10103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [10105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [10109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [10115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [10119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [10121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [10123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [10125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [10129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [10133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [10135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [10137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), + [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [10141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [10149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), + [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [10157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [10161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3), + [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [10165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_body, 4), + [10167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), + [10169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [10175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_body, 4, .production_id = 7), + [10177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), + [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [10181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [10185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [10187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [10189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [10193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [10195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [10201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [10207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [10209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2557), + [10212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2557), + [10215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [10217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [10221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [10223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), + [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [10227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [10229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [10233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [10235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), + [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [10243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [10247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [10251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [10255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [10259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [10263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [10267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [10283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4034), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [10314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [10344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [10354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [10360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [10378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 5, .production_id = 33), + [10380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [10382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [10392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 5, .production_id = 36), + [10394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 31), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [10398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 5, .production_id = 67), + [10400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [10402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), + [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [10406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 32), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [10412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [10414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(302), + [10417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2), + [10419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(2978), + [10422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), + [10424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2628), + [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [10431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2549), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [10438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 5, .production_id = 66), + [10440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [10442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), + [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [10456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 84), + [10458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [10464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 61), + [10466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [10472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 65), + [10474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [10480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 81), + [10482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [10488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [10500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [10502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [10508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 48), + [10510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [10514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4199), + [10517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_variable_assignment, 3, .production_id = 43), + [10519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_variable_assignment, 3, .production_id = 43), + [10521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 32), + [10523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [10527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 47), + [10529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [10533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [10539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 31), + [10541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [10545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4248), + [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [10558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 108), + [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [10562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 109), + [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [10598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [10606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [10622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2), SHIFT_REPEAT(3165), + [10625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 62), + [10627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 62), SHIFT_REPEAT(2426), + [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [10648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 54), + [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [10658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 52), + [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [10666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [10672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 46), + [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [10676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 56), + [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [10690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 107), + [10692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 90), + [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [10698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 89), + [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [10704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(2944), + [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [10709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 70), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [10721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 93), + [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [10725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 94), + [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [10737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 91), + [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [10743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 68), + [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [10761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [10765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 8, .production_id = 114), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [10769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [10773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 72), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [10785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 73), + [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [10789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [10797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 74), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [10811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(2963), + [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [10818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [10842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 33), + [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [10848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 36), + [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [10912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 38), + [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [10976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 37), + [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [10980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 35), + [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [11036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 34), + [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [11234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 6, .production_id = 67), + [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), + [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), + [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [11366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 6, .production_id = 36), + [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [11370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 6, .production_id = 66), + [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [11374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 6, .production_id = 33), + [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [11586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 5), + [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [11616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 5, .production_id = 7), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [11660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [11662] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), + [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), + [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), }; #ifdef __cplusplus From 3d134cb16c492413d1aa582508405a5c664fa96a Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 23 Aug 2023 02:56:31 -0400 Subject: [PATCH 7/9] ci: add action to build & upload binaries to a release --- .github/workflows/pack.yml | 93 ++++++++++++++++++++++++++++++++++++++ binding.gyp | 5 +- 2 files changed, 97 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/pack.yml diff --git a/.github/workflows/pack.yml b/.github/workflows/pack.yml new file mode 100644 index 00000000..14a9c9b1 --- /dev/null +++ b/.github/workflows/pack.yml @@ -0,0 +1,93 @@ +name: Pack + +on: + release: + types: + - released + +env: + NODE_PREBUILD_CMD: npx prebuild -t 10.0.0 -t 12.0.0 -t 14.0.0 -t 16.0.0 -t 18.0.0 -t 20.0.0 --strip -u ${{ secrets.GH_TOKEN }} + ELECTRON_PREBUILD_CMD: npx prebuild -r electron -t 3.0.0 -t 4.0.0 -t 5.0.0 -t 6.0.0 -t 7.0.0 -t 8.0.0 -t 9.0.0 -t 10.0.0 -t 11.0.0 -t 12.0.0 -t 13.0.0 -t 14.0.0 -t 15.0.0 -t 16.0.0 -t 17.0.0 -t 18.0.0 -t 19.0.0 -t 20.0.0 -t 21.0.0 -t 22.0.0 -t 23.0.0 -t 24.0.0 -t 25.0.0 --strip -u ${{ secrets.GH_TOKEN }} + +jobs: + test: + strategy: + matrix: + os: + - macos-latest + - ubuntu-latest + node: + - 10 + - 12 + - 14 + - 16 + - 18 + - 20 + fail-fast: false + name: Testing Node ${{ matrix.node }} on ${{ matrix.os }} + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v3 + with: + submodules: true + fetch-depth: 0 + - uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node }} + + - run: npm install + - run: npm test + + test-windows: + strategy: + matrix: + os: + - windows-2019 + node: + - 10 + - 12 + - 14 + - 16 + - 18 + - 20 + fail-fast: false + name: Testing Node ${{ matrix.node }} on ${{ matrix.os }} + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v3 + with: + submodules: true + fetch-depth: 0 + - uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node }} + + - run: npm install + - run: npm run test-windows + + prebuild: + strategy: + matrix: + os: + - windows-2019 + - macos-latest + - ubuntu-latest + fail-fast: false + name: Prebuild for ${{ matrix.os }} + runs-on: ${{ matrix.os }} + needs: [test, test-windows] + steps: + - uses: actions/checkout@v3 + with: + submodules: true + fetch-depth: 0 + - uses: actions/setup-node@v3 + with: + node-version: 20 + - run: npm install + - if: runner.os == 'macOS' + run: ${{ env.NODE_PREBUILD_CMD }} --arch arm64 + - if: runner.os == 'macOS' + run: ${{ env.ELECTRON_PREBUILD_CMD }} --arch arm64 + - run: ${{ env.NODE_PREBUILD_CMD }} + - run: ${{ env.ELECTRON_PREBUILD_CMD }} diff --git a/binding.gyp b/binding.gyp index 393fb83c..92d61b3c 100644 --- a/binding.gyp +++ b/binding.gyp @@ -15,5 +15,8 @@ "-std=c99", ] } - ] + ], + 'variables': { + 'openssl_fips': '', + } } From 1503a26580dc84153571cf9e90f239ba2ec2204f Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 23 Aug 2023 11:00:14 -0400 Subject: [PATCH 8/9] chore: update .gitattributes --- .gitattributes | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.gitattributes b/.gitattributes index 530d2a0f..d1fdd4e4 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,10 +1,6 @@ -/src/** linguist-vendored /examples/* linguist-vendored ++src/tree_sitter/* linguist-generated src/grammar.json linguist-generated src/node-types.json linguist-generated src/parser.c linguist-generated - -src/grammar.json -diff -src/node-types.json -diff -src/parser.c -di From 8857ddcbbe058d77ffcb5d2557f1a4d25b013f32 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 23 Aug 2023 05:27:00 -0400 Subject: [PATCH 9/9] 0.20.2 --- Cargo.toml | 2 +- bindings/rust/README.md | 2 +- package.json | 5 +++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 22d655a9..d0060ac6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-bash" description = "Bash grammar for tree-sitter" -version = "0.20.1" +version = "0.20.2" authors = ["Max Brunsfeld